function column_getCanGroup<TFeatures, TData, TValue>(column): boolean;function column_getCanGroup<TFeatures, TData, TValue>(column): boolean;Defined in: features/column-grouping/columnGroupingFeature.utils.ts:67
Checks whether this column can be used for grouping.
Grouping must be enabled at the column and table level, and the column must either have an accessor or provide getGroupingValue.
TFeatures extends TableFeatures
TData extends RowData
TValue extends unknown = unknown
Column_Internal<TFeatures, TData, TValue>
boolean
const canGroup = column_getCanGroup(column)const canGroup = column_getCanGroup(column)