UniqueGridCell

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

TypeScript
export interface

Properties

PropertyTypeDescription
countnumberHow many times Cell appears in Data Source
displayValueanyDisplay value of Cell (e.g. if formatted)
normalisedValueanyNormalised value of Cell
rawValueanyRaw value of Cell
visiblebooleanIs Cell in a currently filtered Row
visibleCountnumberHow 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