@revolist/revogrid / ColumnGrouping
Type Alias: ColumnGrouping<T>
ts
type ColumnGrouping<T>: {
children: (ColumnGrouping<T> | ColumnRegular)[];
name: DataFormat<T>;
};
ColumnGrouping
type is used to define a grouping in a column.
Type Parameters
Type Parameter | Default type |
---|---|
T | any |
Type declaration
Name | Type | Description | Defined in |
---|---|---|---|
children | (ColumnGrouping <T > | ColumnRegular )[] | An array of objects that represent the children of the grouping. | src/types/interfaces.ts:101 |
name | DataFormat <T > | A DataFormat object that represents the name of the grouping. | src/types/interfaces.ts:105 |