Defined in: features/column-grouping/columnGroupingFeature.types.ts:129
_groupingValuesCache: Record<string, any>;Defined in: features/column-grouping/columnGroupingFeature.types.ts:130
getGroupingValue: (columnId) => unknown;Defined in: features/column-grouping/columnGroupingFeature.types.ts:134
Reads the value used to group this row for a column id.
string
unknown
getIsGrouped: () => boolean;Defined in: features/column-grouping/columnGroupingFeature.types.ts:138
Checks whether this row represents a grouped row.
boolean
optional groupingColumnId: string;Defined in: features/column-grouping/columnGroupingFeature.types.ts:142
If this row is grouped, this is the id of the column that this row is grouped by.
optional groupingValue: unknown;Defined in: features/column-grouping/columnGroupingFeature.types.ts:146
If this row is grouped, this is the unique/shared value for the groupingColumnId for all of the rows in this group.