INTERFACE

ViewReportTab

link GraphQL Schema definition

  • interface ViewReportTab {
  • # Which leading rows and columns stay frozen while scrolling: none, the first row,
  • # the first column, or the first row and column.
  • frozenPanes: FrozenPaneType!
  • # Chart configuration for this report tab.
  • chart: ReportChart!
  • # Additional value fields computed for the report, such as calculated formula
  • # fields, rollup summary fields and converted-currency fields.
  • reportValueFields: [ReportValueField!]!
  • # History configuration when the report tracks field values over time, either as a
  • # comparison against specific dates or as a trend over a period.
  • history: ReportHistory
  • # Identifier of the currency that monetary values in the report are displayed in.
  • currencyId: UUID!
  • }