/** * @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'; import { EventSeriesOptions } from '../api-types/event-series-options.interface'; /** * 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: any); /** * If called, the series highlight is not shown as a result of hovering over the legend item. */ preventDefault(): void; }