@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
26 lines (25 loc) • 1.09 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* Configuration of the mousewheel action for selection.
*/
export interface MousewheelSelect {
/**
* If set to `true`, the option reverses the mousewheel direction. For `"zoom out"`, the regular direction is down. For `"zoom in"`, the regular direction is up.
*/
reverse?: boolean;
/**
* The zoom direction of the selection.
*
* The supported values are:
* * `"both"`—Zooming expands and contracts the selection on both sides.
* * `"left"`—Zooming expands and contracts the selection on the left side only.
* * `"right"`—Zooming expands and contracts the selection on the right side only.
*/
zoom?: 'both' | 'left' | 'right';
}