UNPKG

@progress/kendo-angular-charts

Version:

Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.

40 lines (39 loc) 1.13 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 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; }