@progress/kendo-vue-charts
Version:
39 lines (38 loc) • 1.25 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 { PreventableEvent } from './preventable-event';
import { EventSeriesOptions } from '../api-types/event-series-options.interface';
/**
* Arguments for the `legendItemClick` event.
*/
export declare class LegendItemClickEvent 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 visibility is not toggled as a result of clicking the legend item.
*/
preventDefault(): void;
}