/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the position of the axis labels.
 *
 * The possible values are:
 * - `"start"`&mdash;Positions the labels at the start of the axis, typically located at the left or bottom end of the Chart, unless the crossing axis is reversed.
 * - `"end"`&mdash;Positions the labels at the end of the axis, usually at the top or right end of the Chart, unless the crossing axis is reversed.
 * - `"onAxis"`&mdash;Positions the labels on the axis.
 * - `""`&mdash;Positions the labels based on the axis type.
 *
 * @example
 * ```ts
 * import { Component } from '@angular/core';
 * import { AxisLabelsPosition } from '@progress/kendo-angular-charts';
 *
 * _@Component({
 *   selector: 'my-app',
 *   template: `
 *     <kendo-chart>
 *       <kendo-chart-category-axis>
 *         <kendo-chart-category-axis-item>
 *           <kendo-chart-category-axis-item-labels [position]="position">
 *           </kendo-chart-category-axis-item-labels>
 *         </kendo-chart-category-axis-item>
 *       </kendo-chart-category-axis>
 *     </kendo-chart>
 *   `
 * })
 * class AppComponent {
 *   public position: AxisLabelsPosition = "end";
 * }
 *
 * ```
 */
export type AxisLabelsPosition = 'start' | 'end' | 'onAxis' | '';
