docs/reference/functions/row_getIsGrouped.md
function row_getIsGrouped<TFeatures, TData>(row): boolean;
Defined in: features/column-grouping/columnGroupingFeature.utils.ts:130
TFeatures extends TableFeatures
TData extends RowData
Row_Core<TFeatures, TData> & UnionToIntersection<
| "columnFilteringFeature" extends keyof TFeatures ? Row_ColumnFiltering<TFeatures, TData> : never
| "columnGroupingFeature" extends keyof TFeatures ? Row_ColumnGrouping : never
| "columnPinningFeature" extends keyof TFeatures ? Row_ColumnPinning<TFeatures, TData> : never
| "columnVisibilityFeature" extends keyof TFeatures ? Row_ColumnVisibility<TFeatures, TData> : never
| "rowExpandingFeature" extends keyof TFeatures ? Row_RowExpanding : never
| "rowPinningFeature" extends keyof TFeatures ? Row_RowPinning : never
| "rowSelectionFeature" extends keyof TFeatures ? Row_RowSelection : never> & UnionToIntersection<{ [K in string | number | symbol]: TFeatures[K] extends TableFeature<FeatureConstructorOptions> ? "Row" extends keyof FeatureConstructorOptions ? FeatureConstructorOptions[keyof FeatureConstructorOptions & "Row"] : never : any }[keyof TFeatures]> & Row_Plugins<TFeatures, TData> & Partial<Row_ColumnGrouping>
boolean