UNPKG

@progress/kendo-react-charts

Version:

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

57 lines (56 loc) 1.76 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 { EventSeriesOptions } from '../api-types/event-series-options.interface.js'; import { SeriesPointType } from '../api-types/series-point.interface.js'; import { PreventableEvent } from './preventable-event.js'; /** * Arguments for the `seriesHover` event. */ export declare class SeriesHoverEvent extends PreventableEvent { /** * The data point category. */ category: any; /** * A list of all points that are in the same category. Each item has the same fields—`value`, `series`, `dataItem`, and other. */ categoryPoints: any[]; /** * The original data item. */ dataItem: any; /** * The original user event that triggered the drag action. */ nativeEvent: any; /** * The point value represented as a percentage value. Available only for the Donut, Pie, and 100% stacked charts. */ percentage: number; /** * The hovered series point. */ point: SeriesPointType; /** * The hovered point series options. */ series: EventSeriesOptions; /** * The cumulative point value on the stack. Available only for the stackable series. */ stackValue: number; /** * The data point value. */ value: any; /** * @hidden */ constructor(e: any, target: Charts); }