@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.
15 lines (14 loc) • 705 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 an axis for locking during the pan and zoom operations ([see example](slug:panzoom_chart_charts#toc-disabling-pan-and-zoom-directions)).
*
* The possible values are:
* - `"none"`—No axis is locked.
* - `"x"`—The X axis is locked.
* - `"y"`—The Y axis is locked.
*
*/
export type LockAxis = 'none' | 'x' | 'y';