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

MemberPropertyObject

Lists member properties (also known as attribute relationships) that will be shown on the grid for a specific hierarchy level. This object is used in the slice.memberProperties configuration. Only for the "microsoft analysis services" data source type.

Properties

{
  levelName: string,
  properties: string[]
}
Property/TypeDescription
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"
]
}
]
}
Live example