/**-----------------------------------------------------------------------------------------
* Copyright © 2026 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](https://www.telerik.com/kendo-angular-ui/components/charts/pan-zoom#disabling-pan-and-zoom-directions)).
 *
 * The possible values are:
 * - `"none"`&mdash;Locks no axis.
 * - `"x"`&mdash;Locks the X axis.
 * - `"y"`&mdash;Locks the Y axis.
 *
 */
export type LockAxis = 'none' | 'x' | 'y';
