@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
23 lines (22 loc) • 791 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { LockAxis } from './lock-axis.js';
import { ModifierKey } from './modifier-key.js';
/**
* Configures the drag behavior during the pan and zoom operations.
*/
export interface DragAction {
/**
* Specifies a keyboard key that has to be pressed to activate the gesture.
*/
key?: ModifierKey;
/**
* Specifies an axis that will not be panned or zoomed.
*/
lock?: LockAxis;
}