UNPKG

@progress/kendo-angular-charts

Version:

Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.

34 lines (33 loc) 1.12 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PreventableEvent } from './preventable-event'; import { ChartComponent } from '../chart.component'; import { EventSeriesOptions } from '../api-types/event-series-options.interface'; /** * @hidden */ export declare class LegendEvent 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 for the Pie, Donut, Funnel and Pyramid series. */ pointIndex: number; /** * The text of the legend item. */ text: string; /** * @hidden */ constructor(e: any, sender: ChartComponent); }