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.31 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 { PreventableEvent } from './preventable-event.js'; import { Charts } from '../common/charts.js'; import { EventSeriesOptions } from '../api-types/event-series-options.interface.js'; /** * Arguments for the `legendItemHover` event. */ export declare class LegendItemHoverEvent extends PreventableEvent { /** * An object which contains the series options. */ series: EventSeriesOptions; /** * The index of the series in the parent Chart. */ seriesIndex: number; /** * The point index in the series. Applicable only to the Pie, Donut, Funnel and Pyramid series. */ pointIndex: number; /** * The text of the legend item. */ text: string; /** * @hidden */ constructor(e: any, target: Charts); /** * If called, the series highlight is not shown as a result of hovering over the legend item. */ preventDefault(): void; }