/**----------------------------------------------------------------------------------------- * 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 a note label. * * The possible values are: * - `"inside"`—Positions the note label inside the axis. * - `"outside"`—Positions the note label outside the axis. * * @example * ```ts * import { Component } from '@angular/core'; * import { NoteLabelPosition } from '@progress/kendo-angular-charts'; * * _@Component({ * selector: 'my-app', * template: ` * * * * * * * * * * * ` * }) * class AppComponent { * public position: NoteLabelPosition = "outside"; * } * * ``` */ export type NoteLabelPosition = 'inside' | 'outside';