OBJECT

ViewPivotReportTab

link GraphQL Schema definition

  • type ViewPivotReportTab 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!
  • # Configuration of the totals shown for the pivot table.
  • total: PivotReportTotal!
  • # List of the field IDs that are reported as pivot rows, beware if depth is very
  • # big report generates an Out of size error report
  • rowFields: [PivotField!]!
  • # Width of the leading row-number column; if Null the default width is used.
  • rowNumberColumnWidth: Int
  • # Width of the row-label value columns; if Null the default width is used.
  • rowValueColumnWidth: Int
  • # List of the field IDs that are reported as pivot columns, beware if depth is
  • # very big report generates an Out of size error report
  • columnFields: [PivotField!]!
  • # Value columns aggregated for each cell of the pivot, each with its aggregation
  • # operator and optional comparison.
  • aggregationFields: [AggregationField!]!
  • # Whether users can drill down from a pivot cell into the underlying records.
  • isDrilldownEnabled: Boolean!
  • # List of fields to display as drilldown table
  • drilldownFields: [DisplayFieldItem!]!
  • }