/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { AxisNoteContentArgs, Border, NoteLabelPosition } from '../../common/property-types';
/**
 * Represents the Y-axis notes label options.
 */
export interface YAxisNotesLabel {
    /**
     * Sets the background color of the label.
     * Accepts a valid CSS color string, including HEX and RGB.
     */
    background?: string;
    /**
     * Configures the border of the label.
     */
    border?: Border;
    /**
     * Sets the text color of the label.
     * Accepts a valid CSS color string, including HEX and RGB.
     */
    color?: string;
    /**
     * Sets the function which returns the label content.
     * You can split the text into multiple lines by using line feed characters (`"\n"`).
     */
    content?: (e: AxisNoteContentArgs) => string;
    /**
     * Sets the font style of the label.
     */
    font?: string;
    /**
     * Sets the format for displaying the notes label.
     * Uses the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService` and contains one placeholder (`"{0}"`) which represents the axis value.
     */
    format?: string;
    /**
     * Sets the position of the labels.
     */
    position?: NoteLabelPosition;
    /**
     * Sets the rotation angle of the label.
     * By default, the label is not rotated.
     */
    rotation?: number;
    /**
     * Determines if the Chart displays the Y-axis notes label.
     * By default, the Y-axis notes label is visible.
     */
    visible?: boolean;
}
