UNPKG

@progress/kendo-react-charts

Version:

React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package

40 lines (39 loc) 1.24 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Charts } from '../common/charts.js'; import { BaseEvent } from './base-event.js'; import { EventAxisOptions } from '../api-types/event-axis-options.interface.js'; /** * Arguments for the `axisLabelClick` event. */ export declare class AxisLabelClickEvent extends BaseEvent { /** * The axis options to which the label belongs. */ axis: EventAxisOptions; /** * The original data item that is used to generate the label. Available only for category axes which are populated from the `categoryField` of the series. */ dataItem: any; /** * The label sequential or category index. */ index: number; /** * The label text. */ text: string; /** * The label value or category name. */ value: any; /** * @hidden */ constructor(e: any, target: Charts); }