@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
40 lines (39 loc) • 1.17 kB
TypeScript
/**
* @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 { EventSeriesOptions } from '../api-types/event-series-options.interface.js';
/**
* Arguments for the `noteHover` event.
*/
export declare class NoteHoverEvent extends BaseEvent {
/**
* The data point category. Available only for the Categorical charts (Bar, Line, Area, and similar).
*/
category: any;
/**
* The data item of the point note.
*/
dataItem: any;
/**
* An object containing the note series options.
*/
series: EventSeriesOptions;
/**
* The note value.
*/
value: any;
/**
* The note visual element.
*/
visual: any;
/**
* @hidden
*/
constructor(e: any, target: Charts);
}