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.

38 lines (37 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'; /** * @hidden */ export class LegendEvent extends PreventableEvent { /** * Specifies an object that contains the series options. */ series; /** * Specifies the index of the series in the parent Chart. */ seriesIndex; /** * Specifies the point index in the series. * Applicable only for Pie, Donut, Funnel, and Pyramid series. */ pointIndex; /** * Specifies the text of the legend item. */ text; /** * @hidden */ constructor(e, sender) { super(sender); this.series = e.series; this.seriesIndex = e.seriesIndex; this.pointIndex = e.pointIndex; this.text = e.text; } }