Skip to main content

ICustomDataRow Interface

When implemented, represents a custom data row.

#Declaration

TypeScript
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

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

#Property Value

Type Description
(measureBindingName?: string) => 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

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

#Property Value

Type Description
(property: string) => 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

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

#Property Value

Type Description
(property: string) => any[]

An array of custom data row unique values.

#getValue Property

Gets an array of custom data row values.

#Declaration

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

#Property Value

Type Description
(property: string) => any[]

An array of custom data row values.