function table_setGrouping<TFeatures, TData>(table, updater): void;function table_setGrouping<TFeatures, TData>(table, updater): void;Defined in: features/column-grouping/columnGroupingFeature.utils.ts:211
Routes a grouping updater through the table's grouping change handler.
The updater may be a next GroupingState array or a function of the previous grouping state, matching the instance table.setGrouping behavior.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
void
table_setGrouping(table, (old) => [...old, 'status'])table_setGrouping(table, (old) => [...old, 'status'])