Defined in: features/column-grouping/columnGroupingFeature.types.ts:112
_groupingValuesCache: Record<string, any>;_groupingValuesCache: Record<string, any>;Defined in: features/column-grouping/columnGroupingFeature.types.ts:113
getGroupingValue: (columnId) => unknown;getGroupingValue: (columnId) => unknown;Defined in: features/column-grouping/columnGroupingFeature.types.ts:117
Returns the grouping value for any row and column (including leaf rows).
string
unknown
getIsGrouped: () => boolean;getIsGrouped: () => boolean;Defined in: features/column-grouping/columnGroupingFeature.types.ts:121
Returns whether or not the row is currently grouped.
boolean
optional groupingColumnId: string;optional groupingColumnId: string;Defined in: features/column-grouping/columnGroupingFeature.types.ts:125
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:129
If this row is grouped, this is the unique/shared value for the groupingColumnId for all of the rows in this group.