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