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

26 lines (25 loc) 1.1 kB
import { ComplexBase } from '@syncfusion/ej2-react-base'; import { AccumulationAnnotationSettingsModel } from '@syncfusion/ej2-charts'; export interface AccumulationAnnotationSettingsDirTypecast { content?: string | Function | any; } /** * `AccumulationAnnotationsDirective` directive represent a annotation of the react AccumulationChart. * It must be contained in a Pie component(`AccumulationChart`). * ```tsx * <AccumulationChartComponent> * <AccumulationAnnotationsDirective> * <AccumulationAnnotationDirective></AccumulationAnnotationDirective> * </AccumulationAnnotationsDirective> * </AccumulationChartComponent> * ``` */ export declare class AccumulationAnnotationDirective extends ComplexBase<AccumulationAnnotationSettingsModel | AccumulationAnnotationSettingsDirTypecast & { children?: React.ReactNode; }, AccumulationAnnotationSettingsModel | AccumulationAnnotationSettingsDirTypecast> { static moduleName: string; } export declare class AccumulationAnnotationsDirective extends ComplexBase<{}, {}> { static propertyName: string; static moduleName: string; }