/**----------------------------------------------------------------------------------------- * 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 an axis title. * * The possible values are: * - `"top"`—Positions the title at the top of the axis. * - `"bottom"`—Positions the title at the bottom of the axis. * - `"left"`—Positions the title at the left of the axis. * - `"right"`—Positions the title at the right of the axis. * - `"center"`—Positions the title at the center of the axis. * * @example * ```ts * import { Component } from '@angular/core'; * import { AxisTitlePosition } from '@progress/kendo-angular-charts'; * * _@Component({ * selector: 'my-app', * template: ` * * * * * * * * * ` * }) * class AppComponent { * public position: AxisTitlePosition = "top"; * } * * ``` */ export type AxisTitlePosition = 'top' | 'bottom' | 'left' | 'right' | 'center';