UNPKG

@syncfusion/ej2-vue-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 Vue

25 lines (24 loc) 754 B
import { DefineVueDirective } from '@syncfusion/ej2-vue-base'; import { ChartAnnotationSettingsModel } from '@syncfusion/ej2-charts'; export declare let AnnotationsDirective: any; export declare const AnnotationsPlugin: { name: string; install(Vue: any): void; }; /** * `e-annotation` directive represent a annotation of the VueJS Chart. * It must be contained in a Chart component(`ejs-chart`). * ```vue * <ejs-chart> * <e-annotations> * <e-annotation content='ID' /> * <e-annotation content='ID' /> * </e-annotations> * </ejs-chart> * ``` */ export declare let AnnotationDirective: DefineVueDirective<ChartAnnotationSettingsModel>; export declare const AnnotationPlugin: { name: string; install(Vue: any): void; };