@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
19 lines (18 loc) • 790 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* The scroll mode of the Grid.
*
* The available values are:
* * `none`—Scrollbars are hidden. The Grid cannot be scrolled.
* * `scrollable`—Displays scrollbars in Grid.
* * `virtual`—Enables the [virtual scroll mode](slug:virtualscrolling_grid) of the Grid.
*
* @example
* ```html
* <kendo-grid scrollable="scrollable"></kendo-grid>
* ```
*/
export type ScrollMode = 'none' | 'scrollable' | 'virtual';