@progress/kendo-react-grid
Version:
KendoReact Grid package
14 lines (13 loc) • 477 B
TypeScript
/**
* The settings for grouping the data of the Grid ([see example]({% slug groupingaggregates_grid %})).
*/
export interface GridGroupableSettings {
/**
* Determines if grouping by dragging and dropping the column headers is allowed and if the group header is visible.
*/
enabled?: boolean;
/**
* Determines if the group footer row is visible when the group is collapsed. Defaults to `false`.
*/
footer?: 'always' | 'visible' | 'none';
}