@syncfusion/ej2-react-charts
Version:
Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for React
23 lines (22 loc) • 813 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { IndexesModel } from '@syncfusion/ej2-charts';
/**
* `SelectedDataIndex` directive represent the selected data in react Chart.
* It must be contained in a Chart component(`Chart3DComponent`).
* ```tsx
* <Chart3DComponent>
* <Chart3DSelectedDataIndexesDirective>
* <Chart3DSelectedDataIndexDirective></Chart3DSelectedDataIndexDirective>
* </Chart3DSelectedDataIndexesDirective>
* </Chart3DComponent>
* ```
*/
export declare class Chart3DSelectedDataIndexDirective extends ComplexBase<IndexesModel & {
children?: React.ReactNode;
}, IndexesModel> {
static moduleName: string;
}
export declare class Chart3DSelectedDataIndexesDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}