Defines a Unique Cell Value (incl. how many times it appears in Grid)

TypeScript
export interface

Properties

PropertyDescription
countHow many times Cell appears in Data Source
displayValueDisplay value of Cell (e.g. if formatted)
normalisedValueNormalised value of Cell
rawValueRaw value of Cell
visibleIs Cell in a currently filtered Row
visibleCountHow many times Cell appears in filtered Rows

Property Details

count

How many times Cell appears in Data Source

TypeScript
count: number;
Property Value

number

displayValue

Display value of Cell (e.g. if formatted)

TypeScript
displayValue: any;
Property Value

any

normalisedValue

Normalised value of Cell

TypeScript
normalisedValue: any;
Property Value

any

rawValue

Raw value of Cell

TypeScript
rawValue: any;
Property Value

any

visible

Is Cell in a currently filtered Row

TypeScript
visible: boolean;
Property Value

boolean

visibleCount

How many times Cell appears in filtered Rows

TypeScript
visibleCount: number;
Property Value

number