@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
39 lines (38 loc) • 1.22 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';
/**
* Arguments for the `plotAreaHover` event.
*/
export declare class PlotAreaHoverEvent extends BaseEvent {
/**
* The data point category. Available only for the Categorical charts (Bar, Line, Area, and similar).
*/
category: any;
/**
* The original browser event that triggered the click action.
*/
nativeEvent: any;
/**
* The data point value. Available only for the Categorical charts (Bar, Line, Area, and similar).
*/
value: any;
/**
* The X axis value or array of values for multi-axis charts.
*/
x: any;
/**
* The Y axis value or array of values for multi-axis charts.
*/
y: any;
/**
* @hidden
*/
constructor(e: any, target: Charts);
}