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

    RecordIdentifierObject

    This object is used to save and restore expanded fields and/or drilled-down multilevel hierarchies.

    Properties

    {
      tuple: string[]
    }
    Property/Type Description
    tuple
    String[]
    Consists of unique names that identify the row/column in the table based on the row’s/column's data.

    Example

    The following example shows how to restore expanded fields and drilled-down multilevel hierarchies with the RecordIdentifierObject:

    slice: {
      // Other slice properties
      drills: {
        columns: [
          {
            tuple: ["order date.[2019]"],
          },
        ],
      },
      expands: {
        rows: [
          {
            tuple: ["country.[japan]"],
          },
        ],
      },
    }