@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
30 lines (29 loc) • 1.3 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ChartDrilldownState } from '../api-types/chart-drilldown-state.interface.js';
/**
* Arguments for the `drilldownStateChange` event on the Chart Breadcrumb.
*
* See [Drilldown Charts](https://www.telerik.com/kendo-react-ui/components/charts/drill-down).
*/
export declare class DrilldownStateChangeEvent {
/**
* 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);
}