@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
25 lines (24 loc) • 878 B
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 { Store } from './store/store.js';
import { InstanceObserver } from '@progress/kendo-charts';
import { ChartDrilldownState } from './api-types/chart-drilldown-state.interface.js';
import * as React from 'react';
/**
* @hidden
*/
export interface ChartContextType {
optionsStore: Store;
observersStore: Store;
childrenObserver: InstanceObserver;
drilldownState: ChartDrilldownState;
}
/**
* @hidden
*/
export declare const ChartContext: React.Context<ChartContextType | null>;