@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
22 lines (21 loc) • 1.02 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { GridColSize } from "./grid-col-size";
/**
* Specifies the Grid data layout display mode.
*/
export type DataLayoutMode = 'columns' | 'stacked';
export interface DataLayoutModeSettings {
/**
* Specifies the Grid data layout display mode.
*/
mode?: DataLayoutMode;
/**
* Configures the stacked columns layout and widths. The possible options are:
* * `number` - Sets the number of columns with default widths.
* * `Array<number | string | GridColSize>` - The array size determines the number of columns. The values represent the column widths.
*/
stackedCols?: number | Array<number | string | GridColSize>;
}