UNPKG

@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) 814 B
import { ComplexBase } from '@syncfusion/ej2-react-base'; import { StockEventsSettingsModel } from '@syncfusion/ej2-charts'; /** * `StockChartStockEvents` directive represent a stockevent of the react chart. * It must be contained in a Chart component(`StockChartComponent`). * ```tsx * <StockChartComponent> * <StockChartStockEventsDirective> * <StockChartStockEventDirective></StockChartStockEventDirective> * </StockChartStockEventsDirective> * </StockChartComponent> * ``` */ export declare class StockEventDirective extends ComplexBase<StockEventsSettingsModel & { children?: React.ReactNode; }, StockEventsSettingsModel> { static moduleName: string; } export declare class StockEventsDirective extends ComplexBase<{}, {}> { static propertyName: string; static moduleName: string; }