UniqueGridCell
Defines a Unique Cell Value (incl. how many times it appears in Grid)
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| count | How many times Cell appears in Data Source |
| displayValue | Display value of Cell (e.g. if formatted) |
| normalisedValue | Normalised value of Cell |
| rawValue | Raw value of Cell |
| visible | Is Cell in a currently filtered Row |
| visibleCount | How 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