UNPKG

@progress/kendo-react-charts

Version:

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

28 lines (27 loc) 1.06 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 { ChartContext } from '../../ChartContext.js'; import * as React from 'react'; /** * @hidden */ export interface CollectionConfigurationProps { _chartKey: string; _parentStore?: any; [x: string]: any; } /** * @hidden */ export declare class CollectionConfigurationComponent extends React.Component<CollectionConfigurationProps> { static contextType: React.Context<import('../../ChartContext').ChartContextType | null>; context: React.ContextType<typeof ChartContext>; get optionsStore(): import('../../store/store').Store | undefined; renderChildren(child: any, index: number): React.DetailedReactHTMLElement<any, HTMLElement>; render(): any; }