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.

52 lines (51 loc) 1.69 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ChartComponent } from '../chart.component'; import { BaseEvent } from './base-event'; import { EventSeriesOptions } from '../api-types/event-series-options.interface'; import { SeriesPoint } from '../api-types/series-point.interface'; /** * Represents the arguments for the `seriesClick` event of the Chart component ([see example](slug:events_chart)). */ export declare class SeriesClickEvent extends BaseEvent { /** * Specifies the data point category. */ category: any; /** * Specifies the original data item. */ dataItem: any; /** * Specifies the original user event that triggered the click action. */ originalEvent: any; /** * Specifies the point value represented as a percentage value. * Available only for Donut, Pie, and 100% stacked charts. */ percentage: number; /** * Specifies the clicked series point. */ point: SeriesPoint; /** * Specifies the clicked point series options. */ series: EventSeriesOptions; /** * Specifies the cumulative point value on the stack. * Available only for stackable series. */ stackValue: number; /** * Specifies the data point value. */ value: any; /** * @hidden */ constructor(e: any, sender: ChartComponent); }