@progress/kendo-angular-charts
Version:
Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.
21 lines (20 loc) • 973 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the configuration of the mousewheel action for selection.
*/
export interface MousewheelSelect {
/**
* Determines whether to reverse the mousewheel direction.
* The normal direction is down for `"zoom out"`.
* The normal direction is up for `"zoom in"`.
*/
reverse?: boolean;
/**
* Specifies the zoom direction of the selection.
* Use `both` to enable zooming to expand and contract the selection on both sides, `left` to allow zooming on the left side only, or `right` to permit zooming on the right side only.
*/
zoom?: 'both' | 'left' | 'right';
}