UNPKG

@syncfusion/ej2-angular-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 Angular

35 lines (34 loc) 1.36 kB
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core'; import { IComponentBase } from '@syncfusion/ej2-angular-base'; import { AccumulationChart } from '@syncfusion/ej2-charts'; import { AccumulationSeriesCollectionDirective } from './series.directive'; import { AccumulationAnnotationsDirective } from './annotations.directive'; export declare const inputs: string[]; export declare const outputs: string[]; export declare const twoWays: string[]; /** * AccumulationChart Component * ```html * <ejs-accumulationchart></ejs-accumulationchart> * ``` */ export declare class AccumulationChartComponent extends AccumulationChart implements IComponentBase { private ngEle; private srenderer; private viewContainerRef; private injector; context: any; tagObjects: any; childSeries: QueryList<AccumulationSeriesCollectionDirective>; childAnnotations: QueryList<AccumulationAnnotationsDirective>; tags: string[]; dataSourceChange: any; tooltip_template: any; constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector); ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; ngAfterContentChecked(): void; registerEvents: (eventList: string[]) => void; addTwoWay: (propList: string[]) => void; }