Need a special offer?Find out if your project fits.
+
API reference
  • API Reference for older versions
  • Table of contents

    DrillsObject

    This object stores information about drilled-down multilevel hierarchies.

    Properties

    drills: {
      drillAll: boolean,
      drillAllColumns: boolean,
      drillAllRows: boolean,
      columns: RecordIdentifierObject[],
      rows: RecordIdentifierObject[]
    }
    Property/Type Description
    drillAll
    Boolean
    optional Set this property to true to drill down all multilevel hierarchies. Works for the grid and the charts.
    drillAllColumns
    Boolean
    optional Set this property to true to drill down all multilevel hierarchies in columns. Works for the grid and the charts.
    drillAllRows
    Boolean
    optional Set this property to true to drill down all multilevel hierarchies in rows. Works for the grid and the charts.
    columns
    RecordIdentifierObject[]
    optional Used to save and restore drilled-down columns.
    rows
    RecordIdentifierObject[]
    optional Used to save and restore drilled-down rows.

    Example

    Example with the DrillsObject:

    slice: {
      // Other slice properties
      drills: {
        drillAll: false,
        drillAllColumns: false,
        drillAllRows: false,
        columns: [
          // RecordIdentifierObjects
        ],
      },
    }