@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) • 765 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(`ChartComponent`).
* ```tsx
* <ChartComponent>
* <SelectedDataIndexesDirective>
* <SelectedDataIndexDirective></SelectedDataIndexDirective>
* </SelectedDataIndexesDirective>
* </ChartComponent>
* ```
*/
export declare class SelectedDataIndexDirective extends ComplexBase<IndexesModel & {
children?: React.ReactNode;
}, IndexesModel> {
static moduleName: string;
}
export declare class SelectedDataIndexesDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}