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

47 lines (46 loc) 2.08 kB
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core'; import { IComponentBase } from '@syncfusion/ej2-angular-base'; import { StockChart } from '@syncfusion/ej2-charts'; import { StockChartSeriesCollectionDirective } from './series.directive'; import { StockChartAxesDirective } from './axes.directive'; import { StockChartRowsDirective } from './rows.directive'; import { StockChartAnnotationsDirective } from './annotations.directive'; import { StockChartSelectedDataIndexesDirective } from './selecteddataindexes.directive'; import { StockChartPeriodsDirective } from './periods.directive'; import { StockEventsDirective } from './stockevents.directive'; import { StockChartIndicatorsDirective } from './indicators.directive'; export declare const inputs: string[]; export declare const outputs: string[]; export declare const twoWays: string[]; /** * Stock Chart Component * ```html * <ejs-stockchart></ejs-stockchart> * ``` */ export declare class StockChartComponent extends StockChart implements IComponentBase { private ngEle; private srenderer; private viewContainerRef; private injector; context: any; tagObjects: any; childSeries: QueryList<StockChartSeriesCollectionDirective>; childAxes: QueryList<StockChartAxesDirective>; childRows: QueryList<StockChartRowsDirective>; childAnnotations: QueryList<StockChartAnnotationsDirective>; childSelectedDataIndexes: QueryList<StockChartSelectedDataIndexesDirective>; childPeriods: QueryList<StockChartPeriodsDirective>; childStockEvents: QueryList<StockEventsDirective>; childIndicators: QueryList<StockChartIndicatorsDirective>; 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; }