UNPKG

@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) 839 B
/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Sets the scroll mode of the Grid. * * The available values are: * * `none`&mdash;Hides scrollbars. The Grid does not scroll. * * `scrollable`&mdash;Shows scrollbars in the Grid. * * `virtual`&mdash;Enables the [virtual scroll mode](https://www.telerik.com/kendo-angular-ui/components/grid/scroll-modes/virtual) of the Grid. * * @example * ```html * <kendo-grid scrollable="scrollable"></kendo-grid> * ``` */ export type ScrollMode = 'none' | 'scrollable' | 'virtual';