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