Need a special offer?Find out if your project fits.
+
All documentation
API reference
  • API Reference for older versions
  • MemberPropertyObject

    Allows showing attribute hierarchies (also known as member properties) for a specific hierarchy level.

    Properties

    {
      levelName: string,
      properties: string[]
    }
    Property/Type Description
    levelName
    String
    The hierarchy's unique name.
    properties
    String[]
    Represents the properties to be shown on the grid. Other available member properties can be accessed through the context menu.

    Example

    Example with the MemberPropertyObject:

    slice: {
      // Other slice properties
      memberProperties: [
        {
          levelName: "[Reseller].[Reseller].[Reseller]",
          properties: [
            "Bank Name",
            "Address",
            "Phone"      
          ]
        }
      ]
    }