UNPKG

@progress/kendo-react-charts

Version:

React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package

46 lines (45 loc) 1.76 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Charts } from '../common/charts.js'; import { BaseEvent } from './base-event.js'; import { EventSeriesOptions } from '../api-types/event-series-options.interface.js'; import { SeriesPointType } from '../api-types/series-point.interface.js'; import { ChartDrilldownState } from '../api-types/chart-drilldown-state.interface.js'; /** * Arguments for the `drilldown` event. * * See [Drilldown Charts](https://www.telerik.com/kendo-react-ui/components/charts/drill-down). */ export declare class DrilldownEvent extends BaseEvent { /** * The clicked series point. */ point: SeriesPointType; /** * The clicked point series options. */ series: EventSeriesOptions; /** * The data point value. */ value: any; /** * The current Chart [drilldown state](https://www.telerik.com/kendo-react-ui/components/charts/api/chartprops#toc-drilldownstate). */ currentState: ChartDrilldownState; /** * The Chart [drilldown state](https://www.telerik.com/kendo-react-ui/components/charts/api/chartprops#toc-drilldownstate) that will apply the current drilldown operation. * * See [Drilldown](https://www.telerik.com/kendo-react-ui/components/charts/drill-down) for an application example. */ nextState: ChartDrilldownState; /** * @hidden */ constructor(e: any, target: Charts); }