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) 720 B
import { ComplexBase } from '@syncfusion/ej2-react-base'; import { Chart3DRowModel } from '@syncfusion/ej2-charts'; /** * `Row3D` directive represent a axis row of the react Chart. * It must be contained in a Chart component(`Chart3DComponent`). * ```tsx * <Chart3DComponent> * <Chart3DRowsDirective> * <Chart3DRowDirective></Chart3DRowDirective> * </Chart3DRowsDirective> * </Chart3DComponent> * ``` */ export declare class Chart3DRowDirective extends ComplexBase<Chart3DRowModel & { children?: React.ReactNode; }, Chart3DRowModel> { static moduleName: string; } export declare class Chart3DRowsDirective extends ComplexBase<{}, {}> { static propertyName: string; static moduleName: string; }