OBJECT

ViewTableReportTab

link GraphQL Schema definition

  • type ViewTableReportTab implements 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!
  • # Fields the table rows are sorted by, in priority order, each with its sort
  • # direction.
  • sortFields: [SortField!]!
  • # Fields the table rows are grouped by, in nesting order.
  • groupFields: [GroupField!]!
  • # Configuration of the totals rows shown for groups and the whole table.
  • total: TableReportTotal!
  • # Whether line breaks within text values are preserved when the table is rendered.
  • keepLineBreaks: Boolean!
  • }