@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) • 944 B
JavaScript
/**-----------------------------------------------------------------------------------------
* 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';
/**
* Arguments for the `drilldown` event.
*
* See [Drilldown Charts](slug:drilldown_chart_charts).
*/
export class DrilldownEvent extends PreventableEvent {
/**
* The drilldown field value.
*/
value;
/**
* The clicked series point.
*/
point;
/**
* The clicked point series options.
*/
series;
/**
* @hidden
*/
constructor(e, sender) {
super(sender);
this.value = e.value;
this.point = e.point;
this.series = e.series;
}
}