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.15 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 { /** * Specifies an object that contains the series options. */ series: EventSeriesOptions; /** * Specifies the index of the series in the parent Chart. */ seriesIndex: number; /** * Specifies the point index in the series. * Applicable only for Pie, Donut, Funnel, and Pyramid series. */ pointIndex: number; /** * Specifies the text of the legend item. */ text: string; /** * @hidden */ constructor(e: any, sender: ChartComponent); }