@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
90 lines (89 loc) • 6.39 kB
TypeScript
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
import { IComponentBase } from '@syncfusion/ej2-angular-base';
import { Chart } from '@syncfusion/ej2-charts';
import { SeriesCollectionDirective } from './series.directive';
import { AxesDirective } from './axes.directive';
import { RowsDirective } from './rows.directive';
import { ColumnsDirective } from './columns.directive';
import { RangeColorSettingsDirective } from './rangecolorsettings.directive';
import { AnnotationsDirective } from './annotations.directive';
import { SelectedDataIndexesDirective } from './selecteddataindexes.directive';
import { IndicatorsDirective } from './indicators.directive';
import * as i0 from "@angular/core";
export declare const inputs: string[];
export declare const outputs: string[];
export declare const twoWays: string[];
/**
* Chart Component
* ```html
* <ejschart></ejschart>
* ```
*/
export declare class ChartComponent extends Chart implements IComponentBase {
private ngEle;
private srenderer;
private viewContainerRef;
private injector;
context: any;
tagObjects: any;
afterExport: any;
animationComplete: any;
annotationRender: any;
axisLabelClick: any;
axisLabelRender: any;
axisMultiLabelRender: any;
axisRangeCalculated: any;
beforeExport: any;
beforePrint: any;
beforeResize: any;
chartDoubleClick: any;
chartMouseClick: any;
chartMouseDown: any;
chartMouseLeave: any;
chartMouseMove: any;
chartMouseUp: any;
drag: any;
dragComplete: any;
dragEnd: any;
dragStart: any;
legendClick: any;
legendRender: any;
load: any;
loaded: any;
multiLevelLabelClick: any;
onZooming: any;
pointClick: any;
pointDoubleClick: any;
pointMove: any;
pointRender: any;
resized: any;
scrollChanged: any;
scrollEnd: any;
scrollStart: any;
selectionComplete: any;
seriesRender: any;
sharedTooltipRender: any;
textRender: any;
tooltipRender: any;
zoomComplete: any;
dataSourceChange: any;
childSeries: QueryList<SeriesCollectionDirective>;
childAxes: QueryList<AxesDirective>;
childRows: QueryList<RowsDirective>;
childColumns: QueryList<ColumnsDirective>;
childRangeColorSettings: QueryList<RangeColorSettingsDirective>;
childAnnotations: QueryList<AnnotationsDirective>;
childSelectedDataIndexes: QueryList<SelectedDataIndexesDirective>;
childIndicators: QueryList<IndicatorsDirective>;
tags: string[];
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;
static ɵfac: i0.ɵɵFactoryDeclaration<ChartComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "ejs-chart", never, { "accessibility": "accessibility"; "allowExport": "allowExport"; "allowMultiSelection": "allowMultiSelection"; "annotations": "annotations"; "axes": "axes"; "background": "background"; "backgroundImage": "backgroundImage"; "border": "border"; "chartArea": "chartArea"; "columns": "columns"; "crosshair": "crosshair"; "currencyCode": "currencyCode"; "dataSource": "dataSource"; "description": "description"; "enableAnimation": "enableAnimation"; "enableAutoIntervalOnBothAxis": "enableAutoIntervalOnBothAxis"; "enableCanvas": "enableCanvas"; "enableExport": "enableExport"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableSideBySidePlacement": "enableSideBySidePlacement"; "focusBorderColor": "focusBorderColor"; "focusBorderMargin": "focusBorderMargin"; "focusBorderWidth": "focusBorderWidth"; "height": "height"; "highlightColor": "highlightColor"; "highlightMode": "highlightMode"; "highlightPattern": "highlightPattern"; "indicators": "indicators"; "isMultiSelect": "isMultiSelect"; "isTransposed": "isTransposed"; "legendSettings": "legendSettings"; "locale": "locale"; "margin": "margin"; "noDataTemplate": "noDataTemplate"; "palettes": "palettes"; "primaryXAxis": "primaryXAxis"; "primaryYAxis": "primaryYAxis"; "rangeColorSettings": "rangeColorSettings"; "rows": "rows"; "selectedDataIndexes": "selectedDataIndexes"; "selectionMode": "selectionMode"; "selectionPattern": "selectionPattern"; "series": "series"; "stackLabels": "stackLabels"; "subTitle": "subTitle"; "subTitleStyle": "subTitleStyle"; "tabIndex": "tabIndex"; "theme": "theme"; "title": "title"; "titleStyle": "titleStyle"; "tooltip": "tooltip"; "useGroupingSeparator": "useGroupingSeparator"; "width": "width"; "zoomSettings": "zoomSettings"; }, { "afterExport": "afterExport"; "animationComplete": "animationComplete"; "annotationRender": "annotationRender"; "axisLabelClick": "axisLabelClick"; "axisLabelRender": "axisLabelRender"; "axisMultiLabelRender": "axisMultiLabelRender"; "axisRangeCalculated": "axisRangeCalculated"; "beforeExport": "beforeExport"; "beforePrint": "beforePrint"; "beforeResize": "beforeResize"; "chartDoubleClick": "chartDoubleClick"; "chartMouseClick": "chartMouseClick"; "chartMouseDown": "chartMouseDown"; "chartMouseLeave": "chartMouseLeave"; "chartMouseMove": "chartMouseMove"; "chartMouseUp": "chartMouseUp"; "drag": "drag"; "dragComplete": "dragComplete"; "dragEnd": "dragEnd"; "dragStart": "dragStart"; "legendClick": "legendClick"; "legendRender": "legendRender"; "load": "load"; "loaded": "loaded"; "multiLevelLabelClick": "multiLevelLabelClick"; "onZooming": "onZooming"; "pointClick": "pointClick"; "pointDoubleClick": "pointDoubleClick"; "pointMove": "pointMove"; "pointRender": "pointRender"; "resized": "resized"; "scrollChanged": "scrollChanged"; "scrollEnd": "scrollEnd"; "scrollStart": "scrollStart"; "selectionComplete": "selectionComplete"; "seriesRender": "seriesRender"; "sharedTooltipRender": "sharedTooltipRender"; "textRender": "textRender"; "tooltipRender": "tooltipRender"; "zoomComplete": "zoomComplete"; "dataSourceChange": "dataSourceChange"; }, ["tooltip_template", "childSeries", "childAxes", "childRows", "childColumns", "childRangeColorSettings", "childAnnotations", "childSelectedDataIndexes", "childIndicators"], never>;
}