☝️Small business or a startup? See if you qualify for our special offer.
+
All documentation

ExpandsObject

This object stores information about expanded fields.

Properties

expands: {
  expandAll: boolean,
  expandAllColumns: boolean,
  expandAllRows: boolean,
  columns: MemberIdentifierObject[],
  rows: MemberIdentifierObject[]
}
Property/TypeDescription
expandAll
Boolean
optional Set this property to true to expand all fields. Works for the grid and the charts.
expandAllColumns
Boolean
optional Set this property to true to expand all fields in columns. Works for the grid and the charts.
expandAllRows
Boolean
optional Set this property to true to expand all fields in rows. Works for the grid and the charts.
columns
MemberIdentifierObject[]
optional Used to specify expanded column members.
rows
MemberIdentifierObject[]
optional Used to specify expanded row members.

Example

Example with the ExpandsObject:

slice: {
  // Other slice properties
  expands: {
    expandAll: false,
    expandAllColumns: false,
    expandAllRows: false,
    rows: [
      // MemberIdentifierObjects
    ],
  },
}