/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the context for the axis label `content` function.
 */
export interface AxisLabelContentArgs {
    /**
     * Specifies the value associated with the axis label.
     */
    value: any;
    /**
     * Specifies the data item, if set.
     *
     * Available for category axis with set `categoryField`.
     */
    dataItem?: any;
    /**
     * Specifies the default label text.
     */
    text: string;
    /**
     * Specifies the index of the label.
     */
    index: number;
    /**
     * Specifies the total number of rendered labels.
     */
    count: number;
    /**
     * Specifies the default format string of the label.
     */
    format: string;
    /**
     * Specifies the default culture (if set) of the label.
     */
    culture: string;
}
