UNPKG

@progress/kendo-react-grid

Version:

React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package

26 lines (25 loc) 1.08 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { GridGroupExpandableSettings } from './GridGroupExpandableSettings.js'; /** * The settings for grouping the data of the Grid ([see example](https://www.telerik.com/kendo-react-ui/components/grid/grouping/grouping)). */ 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 `none`. */ footer?: 'always' | 'visible' | 'none'; /** * The group expandable settings. */ expandable?: boolean | GridGroupExpandableSettings; }