Skip to main content
A newer version of this page is available. .

ICustomDataRow Interface

When implemented, represents a custom data row.

Declaration

export interface ICustomDataRow

Remarks

Use the CustomItemViewer.iterateData property to iterate data rows for an item.

Properties

getColor Property

Gets an array of strings that are the custom data row colors.

Declaration

getColor: (measureBindingName?: string) => Array<string>

Property Value

Type Description
(measureBindingName?: string) => Array<string>

An array of strings that are the custom data row colors.

getDisplayText Property

Gets an array of strings that contain the custom data row value as it is displayed.

Declaration

getDisplayText: (property: string) => Array<string>

Property Value

Type Description
(property: string) => Array<string>

An array of strings that contain the custom data row value as it is displayed.

getUniqueValue Property

Gets an array of the custom data row unique values.

Declaration

getUniqueValue: (property: string) => Array<any>

Property Value

Type Description
(property: string) => Array<any>

An array of custom data row unique values.

getValue Property

Gets an array of custom data row values.

Declaration

getValue: (property: string) => Array<any>

Property Value

Type Description
(property: string) => Array<any>

An array of custom data row values.