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.

51 lines (50 loc) 1.57 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2024 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'; /** * Arguments for the `seriesClick` event([see example](slug:events_chart)). */ export declare class SeriesClickEvent extends BaseEvent { /** * The data point category. */ category: any; /** * The original data item. */ dataItem: any; /** * The original user event that triggered the drag action. */ originalEvent: any; /** * The point value represented as a percentage value. * Available only for the Donut, Pie, and 100% stacked charts. */ percentage: number; /** * The clicked series point. */ point: SeriesPoint; /** * The clicked point series options. */ series: EventSeriesOptions; /** * The cumulative point value on the stack. Available only for the stackable series. */ stackValue: number; /** * The data point value. */ value: any; /** * @hidden */ constructor(e: any, sender: ChartComponent); }