@syncfusion/ej2-angular-charts 32.1.24-ngcc → 32.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3791 -0
- package/README.md +8 -1
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/accumulation-chart/accumulationchart-all.module.mjs +53 -0
- package/esm2020/src/accumulation-chart/accumulationchart.component.mjs +146 -0
- package/esm2020/src/accumulation-chart/accumulationchart.module.mjs +43 -0
- package/esm2020/src/accumulation-chart/annotations.directive.mjs +62 -0
- package/esm2020/src/accumulation-chart/series.directive.mjs +62 -0
- package/esm2020/src/bullet-chart/bulletchart-all.module.mjs +32 -0
- package/esm2020/src/bullet-chart/bulletchart.component.mjs +85 -0
- package/esm2020/src/bullet-chart/bulletchart.module.mjs +34 -0
- package/esm2020/src/bullet-chart/ranges.directive.mjs +54 -0
- package/esm2020/src/chart/annotations.directive.mjs +60 -0
- package/esm2020/src/chart/axes.directive.mjs +58 -0
- package/esm2020/src/chart/categories.directive.mjs +59 -0
- package/esm2020/src/chart/chart-all.module.mjs +206 -0
- package/esm2020/src/chart/chart.component.mjs +525 -0
- package/esm2020/src/chart/chart.module.mjs +142 -0
- package/esm2020/src/chart/columns.directive.mjs +52 -0
- package/esm2020/src/chart/indicators.directive.mjs +54 -0
- package/esm2020/src/chart/multilevellabels.directive.mjs +60 -0
- package/esm2020/src/chart/rangecolorsettings.directive.mjs +52 -0
- package/esm2020/src/chart/rows.directive.mjs +52 -0
- package/esm2020/src/chart/segments.directive.mjs +58 -0
- package/esm2020/src/chart/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/chart/series.directive.mjs +68 -0
- package/esm2020/src/chart/striplines.directive.mjs +56 -0
- package/esm2020/src/chart/trendlines.directive.mjs +58 -0
- package/esm2020/src/chart3d/axes.directive.mjs +52 -0
- package/esm2020/src/chart3d/chart3d-all.module.mjs +68 -0
- package/esm2020/src/chart3d/chart3d.component.mjs +189 -0
- package/esm2020/src/chart3d/chart3d.module.mjs +70 -0
- package/esm2020/src/chart3d/columns.directive.mjs +52 -0
- package/esm2020/src/chart3d/rows.directive.mjs +52 -0
- package/esm2020/src/chart3d/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/chart3d/series.directive.mjs +62 -0
- package/esm2020/src/circularchart3d/circularchart3d-all.module.mjs +47 -0
- package/esm2020/src/circularchart3d/circularchart3d.component.mjs +125 -0
- package/esm2020/src/circularchart3d/circularchart3d.module.mjs +43 -0
- package/esm2020/src/circularchart3d/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/circularchart3d/series.directive.mjs +62 -0
- package/esm2020/src/index.mjs +64 -0
- package/esm2020/src/range-navigator/rangenavigator-all.module.mjs +32 -0
- package/esm2020/src/range-navigator/rangenavigator.component.mjs +127 -0
- package/esm2020/src/range-navigator/rangenavigator.module.mjs +34 -0
- package/esm2020/src/range-navigator/series.directive.mjs +54 -0
- package/esm2020/src/smithchart/series.directive.mjs +46 -0
- package/esm2020/src/smithchart/smithchart-all.module.mjs +32 -0
- package/esm2020/src/smithchart/smithchart.component.mjs +78 -0
- package/esm2020/src/smithchart/smithchart.module.mjs +34 -0
- package/esm2020/src/sparkline/rangebandsettings.directive.mjs +46 -0
- package/esm2020/src/sparkline/sparkline-all.module.mjs +29 -0
- package/esm2020/src/sparkline/sparkline.component.mjs +71 -0
- package/esm2020/src/sparkline/sparkline.module.mjs +34 -0
- package/esm2020/src/stock-chart/annotations.directive.mjs +60 -0
- package/esm2020/src/stock-chart/axes.directive.mjs +52 -0
- package/esm2020/src/stock-chart/indicators.directive.mjs +54 -0
- package/esm2020/src/stock-chart/periods.directive.mjs +54 -0
- package/esm2020/src/stock-chart/rows.directive.mjs +52 -0
- package/esm2020/src/stock-chart/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/stock-chart/series.directive.mjs +58 -0
- package/esm2020/src/stock-chart/stockchart-all.module.mjs +29 -0
- package/esm2020/src/stock-chart/stockchart.component.mjs +337 -0
- package/esm2020/src/stock-chart/stockchart.module.mjs +106 -0
- package/esm2020/src/stock-chart/stockevents.directive.mjs +54 -0
- package/esm2020/src/stock-chart/trendlines.directive.mjs +59 -0
- package/esm2020/syncfusion-ej2-angular-charts.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-charts.mjs +4376 -0
- package/fesm2015/syncfusion-ej2-angular-charts.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-charts.mjs +4376 -0
- package/fesm2020/syncfusion-ej2-angular-charts.mjs.map +1 -0
- package/package.json +28 -46
- package/public_api.d.ts +1 -1
- package/src/accumulation-chart/accumulationchart-all.module.d.ts +21 -15
- package/src/accumulation-chart/accumulationchart.component.d.ts +61 -58
- package/src/accumulation-chart/accumulationchart.module.d.ts +13 -5
- package/src/accumulation-chart/annotations.directive.d.ts +85 -80
- package/src/accumulation-chart/series.directive.d.ts +249 -244
- package/src/bullet-chart/bulletchart-all.module.d.ts +14 -8
- package/src/bullet-chart/bulletchart.component.d.ts +41 -38
- package/src/bullet-chart/bulletchart.module.d.ts +12 -5
- package/src/bullet-chart/ranges.directive.d.ts +73 -68
- package/src/chart/annotations.directive.d.ts +101 -96
- package/src/chart/axes.directive.d.ts +409 -381
- package/src/chart/categories.directive.d.ts +74 -69
- package/src/chart/chart-all.module.d.ts +72 -66
- package/src/chart/chart.component.d.ts +89 -86
- package/src/chart/chart.module.d.ts +24 -5
- package/src/chart/columns.directive.d.ts +35 -30
- package/src/chart/indicators.directive.d.ts +255 -250
- package/src/chart/multilevellabels.directive.d.ts +62 -57
- package/src/chart/rangecolorsettings.directive.d.ts +41 -36
- package/src/chart/rows.directive.d.ts +35 -30
- package/src/chart/segments.directive.d.ts +46 -41
- package/src/chart/selecteddataindexes.directive.d.ts +37 -32
- package/src/chart/series.directive.d.ts +488 -483
- package/src/chart/striplines.directive.d.ts +171 -166
- package/src/chart/trendlines.directive.d.ts +117 -112
- package/src/chart3d/axes.directive.d.ts +271 -266
- package/src/chart3d/chart3d-all.module.d.ts +26 -20
- package/src/chart3d/chart3d.component.d.ts +65 -62
- package/src/chart3d/chart3d.module.d.ts +16 -5
- package/src/chart3d/columns.directive.d.ts +31 -26
- package/src/chart3d/rows.directive.d.ts +31 -26
- package/src/chart3d/selecteddataindexes.directive.d.ts +37 -32
- package/src/chart3d/series.directive.d.ts +177 -172
- package/src/circularchart3d/circularchart3d-all.module.d.ts +19 -13
- package/src/circularchart3d/circularchart3d.component.d.ts +58 -55
- package/src/circularchart3d/circularchart3d.module.d.ts +13 -5
- package/src/circularchart3d/selecteddataindexes.directive.d.ts +37 -32
- package/src/circularchart3d/series.directive.d.ts +147 -142
- package/src/index.d.ts +63 -63
- package/src/range-navigator/rangenavigator-all.module.d.ts +14 -8
- package/src/range-navigator/rangenavigator.component.d.ts +44 -41
- package/src/range-navigator/rangenavigator.module.d.ts +12 -5
- package/src/range-navigator/series.directive.d.ts +83 -78
- package/src/smithchart/series.directive.d.ts +93 -88
- package/src/smithchart/smithchart-all.module.d.ts +14 -8
- package/src/smithchart/smithchart.component.d.ts +44 -41
- package/src/smithchart/smithchart.module.d.ts +12 -5
- package/src/sparkline/rangebandsettings.directive.d.ts +38 -33
- package/src/sparkline/sparkline-all.module.d.ts +13 -7
- package/src/sparkline/sparkline.component.d.ts +46 -43
- package/src/sparkline/sparkline.module.d.ts +12 -5
- package/src/stock-chart/annotations.directive.d.ts +89 -84
- package/src/stock-chart/axes.directive.d.ts +291 -286
- package/src/stock-chart/indicators.directive.d.ts +213 -208
- package/src/stock-chart/periods.directive.d.ts +47 -42
- package/src/stock-chart/rows.directive.d.ts +35 -30
- package/src/stock-chart/selecteddataindexes.directive.d.ts +37 -32
- package/src/stock-chart/series.directive.d.ts +247 -242
- package/src/stock-chart/stockchart-all.module.d.ts +13 -7
- package/src/stock-chart/stockchart.component.d.ts +68 -65
- package/src/stock-chart/stockchart.module.d.ts +20 -5
- package/src/stock-chart/stockevents.directive.d.ts +88 -83
- package/src/stock-chart/trendlines.directive.d.ts +118 -113
- package/syncfusion-ej2-angular-charts.d.ts +5 -0
- package/@syncfusion/ej2-angular-charts.es5.js +0 -5029
- package/@syncfusion/ej2-angular-charts.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-charts.js +0 -4747
- package/@syncfusion/ej2-angular-charts.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-charts.umd.js +0 -5719
- package/dist/ej2-angular-charts.umd.js.map +0 -1
- package/dist/ej2-angular-charts.umd.min.js +0 -11
- package/dist/ej2-angular-charts.umd.min.js.map +0 -1
- package/ej2-angular-charts.d.ts +0 -13
- package/ej2-angular-charts.metadata.json +0 -1
|
@@ -0,0 +1,4376 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive, ContentChildren, ContentChild, Component, NgModule, ChangeDetectionStrategy } from '@angular/core';
|
|
3
|
+
import { ComplexBase, setValue, ArrayBase, Template, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
|
|
4
|
+
import { __decorate } from 'tslib';
|
|
5
|
+
import { Chart, LineSeries, ScatterSeries, ColumnSeries, SplineSeries, SplineAreaSeries, StripLine, AreaSeries, ScrollBar, StepLineSeries, StepAreaSeries, StackingColumnSeries, StackingLineSeries, StackingAreaSeries, StackingStepAreaSeries, BarSeries, StackingBarSeries, RangeColumnSeries, BubbleSeries, Tooltip, Crosshair, Category, DateTime, Logarithmic, Legend, Zoom, DataLabel, Selection, ChartAnnotation, HiloSeries, HiloOpenCloseSeries, WaterfallSeries, RangeAreaSeries, RangeStepAreaSeries, SplineRangeAreaSeries, CandleSeries, PolarSeries, RadarSeries, SmaIndicator, TmaIndicator, EmaIndicator, AccumulationDistributionIndicator, MacdIndicator, AtrIndicator, RsiIndicator, MomentumIndicator, StochasticIndicator, BollingerBands, BoxAndWhiskerSeries, HistogramSeries, ErrorBar, Trendlines, DateTimeCategory, MultiColoredLineSeries, MultiColoredAreaSeries, MultiLevelLabel, ParetoSeries, Export, DataEditing, Highlight, LastValueLabel, AccumulationChart, PieSeries, FunnelSeries, PyramidSeries, AccumulationTooltip, AccumulationLegend, AccumulationSelection, AccumulationHighlight, AccumulationDataLabel, AccumulationAnnotation, RangeNavigator, RangeTooltip, PeriodSelector, Sparkline, SparklineTooltip, Smithchart, SmithchartLegend, TooltipRender, StockChart, StockLegend, BulletChart, BulletTooltip, BulletChartLegend, Chart3D, ColumnSeries3D, StackingColumnSeries3D, BarSeries3D, StackingBarSeries3D, Category3D, DateTime3D, DateTimeCategory3D, Logarithmic3D, Tooltip3D, Legend3D, DataLabel3D, Selection3D, Export3D, Highlight3D, CircularChart3D, PieSeries3D, CircularChartTooltip3D, CircularChartLegend3D, CircularChartSelection3D, CircularChartDataLabel3D, CircularChartHighlight3D, CircularChartExport3D } from '@syncfusion/ej2-charts';
|
|
6
|
+
export * from '@syncfusion/ej2-charts';
|
|
7
|
+
import { CommonModule } from '@angular/common';
|
|
8
|
+
|
|
9
|
+
let input$y = ['accessibility', 'animation', 'backwardForecast', 'dashArray', 'enableTooltip', 'fill', 'forwardForecast', 'intercept', 'legendShape', 'marker', 'name', 'period', 'polynomialOrder', 'type', 'visible', 'width'];
|
|
10
|
+
let outputs$H = [];
|
|
11
|
+
/**
|
|
12
|
+
* Series Directive
|
|
13
|
+
* ```html
|
|
14
|
+
* <e-series-collection>
|
|
15
|
+
* <e-series>
|
|
16
|
+
* <e-trendlines>
|
|
17
|
+
* <e-trendline>
|
|
18
|
+
* </e-trendline>
|
|
19
|
+
* </e-trendlines>
|
|
20
|
+
* </e-series-collection>
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
class TrendlineDirective extends ComplexBase {
|
|
24
|
+
constructor(viewContainerRef) {
|
|
25
|
+
super();
|
|
26
|
+
this.viewContainerRef = viewContainerRef;
|
|
27
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
28
|
+
this.registerEvents(outputs$H);
|
|
29
|
+
this.directivePropList = input$y;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
TrendlineDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TrendlineDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33
|
+
TrendlineDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: TrendlineDirective, selector: "e-series>e-trendlines>e-trendline", inputs: { accessibility: "accessibility", animation: "animation", backwardForecast: "backwardForecast", dashArray: "dashArray", enableTooltip: "enableTooltip", fill: "fill", forwardForecast: "forwardForecast", intercept: "intercept", legendShape: "legendShape", marker: "marker", name: "name", period: "period", polynomialOrder: "polynomialOrder", type: "type", visible: "visible", width: "width" }, usesInheritance: true, ngImport: i0 });
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TrendlineDirective, decorators: [{
|
|
35
|
+
type: Directive,
|
|
36
|
+
args: [{
|
|
37
|
+
selector: 'e-series>e-trendlines>e-trendline',
|
|
38
|
+
inputs: input$y,
|
|
39
|
+
outputs: outputs$H,
|
|
40
|
+
queries: {}
|
|
41
|
+
}]
|
|
42
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
43
|
+
/**
|
|
44
|
+
* Trendline Array Directive
|
|
45
|
+
* @private
|
|
46
|
+
*/
|
|
47
|
+
class TrendlinesDirective extends ArrayBase {
|
|
48
|
+
constructor() {
|
|
49
|
+
super('trendlines');
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
TrendlinesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TrendlinesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
53
|
+
TrendlinesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: TrendlinesDirective, selector: "e-series>e-trendlines", queries: [{ propertyName: "children", predicate: TrendlineDirective }], usesInheritance: true, ngImport: i0 });
|
|
54
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TrendlinesDirective, decorators: [{
|
|
55
|
+
type: Directive,
|
|
56
|
+
args: [{
|
|
57
|
+
selector: 'e-series>e-trendlines',
|
|
58
|
+
queries: {
|
|
59
|
+
children: new ContentChildren(TrendlineDirective)
|
|
60
|
+
},
|
|
61
|
+
}]
|
|
62
|
+
}], ctorParameters: function () { return []; } });
|
|
63
|
+
|
|
64
|
+
let input$x = ['color', 'dashArray', 'value'];
|
|
65
|
+
let outputs$G = [];
|
|
66
|
+
/**
|
|
67
|
+
* Series Directive
|
|
68
|
+
* ```html
|
|
69
|
+
* <e-series-collection>
|
|
70
|
+
* <e-series>
|
|
71
|
+
* <e-segments>
|
|
72
|
+
* <e-segment>
|
|
73
|
+
* </e-segment>
|
|
74
|
+
* </e-segments>
|
|
75
|
+
* </e-series-collection>
|
|
76
|
+
* ```
|
|
77
|
+
*/
|
|
78
|
+
class SegmentDirective extends ComplexBase {
|
|
79
|
+
constructor(viewContainerRef) {
|
|
80
|
+
super();
|
|
81
|
+
this.viewContainerRef = viewContainerRef;
|
|
82
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
83
|
+
this.registerEvents(outputs$G);
|
|
84
|
+
this.directivePropList = input$x;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
SegmentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SegmentDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
88
|
+
SegmentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SegmentDirective, selector: "e-series>e-segments>e-segment", inputs: { color: "color", dashArray: "dashArray", value: "value" }, usesInheritance: true, ngImport: i0 });
|
|
89
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SegmentDirective, decorators: [{
|
|
90
|
+
type: Directive,
|
|
91
|
+
args: [{
|
|
92
|
+
selector: 'e-series>e-segments>e-segment',
|
|
93
|
+
inputs: input$x,
|
|
94
|
+
outputs: outputs$G,
|
|
95
|
+
queries: {}
|
|
96
|
+
}]
|
|
97
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
98
|
+
/**
|
|
99
|
+
* Segment Array Directive
|
|
100
|
+
* @private
|
|
101
|
+
*/
|
|
102
|
+
class SegmentsDirective extends ArrayBase {
|
|
103
|
+
constructor() {
|
|
104
|
+
super('segments');
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
SegmentsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SegmentsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
108
|
+
SegmentsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SegmentsDirective, selector: "e-series>e-segments", queries: [{ propertyName: "children", predicate: SegmentDirective }], usesInheritance: true, ngImport: i0 });
|
|
109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SegmentsDirective, decorators: [{
|
|
110
|
+
type: Directive,
|
|
111
|
+
args: [{
|
|
112
|
+
selector: 'e-series>e-segments',
|
|
113
|
+
queries: {
|
|
114
|
+
children: new ContentChildren(SegmentDirective)
|
|
115
|
+
},
|
|
116
|
+
}]
|
|
117
|
+
}], ctorParameters: function () { return []; } });
|
|
118
|
+
|
|
119
|
+
let input$w = ['accessibility', 'animation', 'bearFillColor', 'binInterval', 'border', 'boxPlotMode', 'bullFillColor', 'cardinalSplineTension', 'close', 'colorName', 'columnFacet', 'columnSpacing', 'columnWidth', 'columnWidthInPixel', 'connector', 'cornerRadius', 'dashArray', 'dataSource', 'dragSettings', 'drawType', 'emptyPointSettings', 'enableComplexProperty', 'enableSolidCandles', 'enableTooltip', 'errorBar', 'fill', 'groupName', 'high', 'intermediateSumIndexes', 'isClosed', 'lastValueLabel', 'legendImageUrl', 'legendShape', 'low', 'marker', 'maxRadius', 'minRadius', 'name', 'negativeFillColor', 'noRisers', 'nonHighlightStyle', 'opacity', 'open', 'paretoOptions', 'pointColorMapping', 'query', 'segmentAxis', 'segments', 'selectionStyle', 'showMean', 'showNearestTooltip', 'showNormalDistribution', 'showOutliers', 'size', 'splineType', 'stackingGroup', 'step', 'sumIndexes', 'summaryFillColor', 'tooltipFormat', 'tooltipMappingName', 'trendlines', 'type', 'unSelectedStyle', 'visible', 'volume', 'width', 'xAxisName', 'xName', 'yAxisName', 'yName', 'zOrder'];
|
|
120
|
+
let outputs$F = [];
|
|
121
|
+
/**
|
|
122
|
+
* Series Directive
|
|
123
|
+
* ```html
|
|
124
|
+
* <e-series-collection>
|
|
125
|
+
* <e-series></e-series>
|
|
126
|
+
* </e-series-collection>
|
|
127
|
+
* ```
|
|
128
|
+
*/
|
|
129
|
+
class SeriesDirective extends ComplexBase {
|
|
130
|
+
constructor(viewContainerRef) {
|
|
131
|
+
super();
|
|
132
|
+
this.viewContainerRef = viewContainerRef;
|
|
133
|
+
this.tags = ['trendlines', 'segments'];
|
|
134
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
135
|
+
this.registerEvents(outputs$F);
|
|
136
|
+
this.directivePropList = input$w;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
SeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
140
|
+
SeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SeriesDirective, selector: "e-series-collection>e-series", inputs: { accessibility: "accessibility", animation: "animation", bearFillColor: "bearFillColor", binInterval: "binInterval", border: "border", boxPlotMode: "boxPlotMode", bullFillColor: "bullFillColor", cardinalSplineTension: "cardinalSplineTension", close: "close", colorName: "colorName", columnFacet: "columnFacet", columnSpacing: "columnSpacing", columnWidth: "columnWidth", columnWidthInPixel: "columnWidthInPixel", connector: "connector", cornerRadius: "cornerRadius", dashArray: "dashArray", dataSource: "dataSource", dragSettings: "dragSettings", drawType: "drawType", emptyPointSettings: "emptyPointSettings", enableComplexProperty: "enableComplexProperty", enableSolidCandles: "enableSolidCandles", enableTooltip: "enableTooltip", errorBar: "errorBar", fill: "fill", groupName: "groupName", high: "high", intermediateSumIndexes: "intermediateSumIndexes", isClosed: "isClosed", lastValueLabel: "lastValueLabel", legendImageUrl: "legendImageUrl", legendShape: "legendShape", low: "low", marker: "marker", maxRadius: "maxRadius", minRadius: "minRadius", name: "name", negativeFillColor: "negativeFillColor", noRisers: "noRisers", nonHighlightStyle: "nonHighlightStyle", opacity: "opacity", open: "open", paretoOptions: "paretoOptions", pointColorMapping: "pointColorMapping", query: "query", segmentAxis: "segmentAxis", segments: "segments", selectionStyle: "selectionStyle", showMean: "showMean", showNearestTooltip: "showNearestTooltip", showNormalDistribution: "showNormalDistribution", showOutliers: "showOutliers", size: "size", splineType: "splineType", stackingGroup: "stackingGroup", step: "step", sumIndexes: "sumIndexes", summaryFillColor: "summaryFillColor", tooltipFormat: "tooltipFormat", tooltipMappingName: "tooltipMappingName", trendlines: "trendlines", type: "type", unSelectedStyle: "unSelectedStyle", visible: "visible", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName", yName: "yName", zOrder: "zOrder" }, queries: [{ propertyName: "dataLabel_template", first: true, predicate: ["dataLabelTemplate"], descendants: true }, { propertyName: "childTrendlines", first: true, predicate: TrendlinesDirective, descendants: true }, { propertyName: "childSegments", first: true, predicate: SegmentsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
141
|
+
__decorate([
|
|
142
|
+
Template()
|
|
143
|
+
], SeriesDirective.prototype, "dataLabel_template", void 0);
|
|
144
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SeriesDirective, decorators: [{
|
|
145
|
+
type: Directive,
|
|
146
|
+
args: [{
|
|
147
|
+
selector: 'e-series-collection>e-series',
|
|
148
|
+
inputs: input$w,
|
|
149
|
+
outputs: outputs$F,
|
|
150
|
+
queries: {
|
|
151
|
+
childTrendlines: new ContentChild(TrendlinesDirective),
|
|
152
|
+
childSegments: new ContentChild(SegmentsDirective)
|
|
153
|
+
}
|
|
154
|
+
}]
|
|
155
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { dataLabel_template: [{
|
|
156
|
+
type: ContentChild,
|
|
157
|
+
args: ['dataLabelTemplate']
|
|
158
|
+
}] } });
|
|
159
|
+
/**
|
|
160
|
+
* Series Array Directive
|
|
161
|
+
* @private
|
|
162
|
+
*/
|
|
163
|
+
class SeriesCollectionDirective extends ArrayBase {
|
|
164
|
+
constructor() {
|
|
165
|
+
super('series');
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
SeriesCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SeriesCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
169
|
+
SeriesCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SeriesCollectionDirective, selector: "ej-chart>e-series-collection", queries: [{ propertyName: "children", predicate: SeriesDirective }], usesInheritance: true, ngImport: i0 });
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SeriesCollectionDirective, decorators: [{
|
|
171
|
+
type: Directive,
|
|
172
|
+
args: [{
|
|
173
|
+
selector: 'ej-chart>e-series-collection',
|
|
174
|
+
queries: {
|
|
175
|
+
children: new ContentChildren(SeriesDirective)
|
|
176
|
+
},
|
|
177
|
+
}]
|
|
178
|
+
}], ctorParameters: function () { return []; } });
|
|
179
|
+
|
|
180
|
+
let input$v = ['border', 'color', 'dashArray', 'end', 'horizontalAlignment', 'imageUrl', 'isRepeat', 'isSegmented', 'opacity', 'repeatEvery', 'repeatUntil', 'rotation', 'segmentAxisName', 'segmentEnd', 'segmentStart', 'size', 'sizeType', 'start', 'startFromAxis', 'text', 'textStyle', 'verticalAlignment', 'visible', 'zIndex'];
|
|
181
|
+
let outputs$E = [];
|
|
182
|
+
/**
|
|
183
|
+
* StripLine Directive
|
|
184
|
+
* ```html
|
|
185
|
+
* <e-axis>
|
|
186
|
+
* <e-striplines>
|
|
187
|
+
* <e-stripline></e-stripline>
|
|
188
|
+
* </e-striplines>
|
|
189
|
+
* </e-axis>
|
|
190
|
+
* ```
|
|
191
|
+
*/
|
|
192
|
+
class StripLineDirective extends ComplexBase {
|
|
193
|
+
constructor(viewContainerRef) {
|
|
194
|
+
super();
|
|
195
|
+
this.viewContainerRef = viewContainerRef;
|
|
196
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
197
|
+
this.registerEvents(outputs$E);
|
|
198
|
+
this.directivePropList = input$v;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
StripLineDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StripLineDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
202
|
+
StripLineDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StripLineDirective, selector: "e-axis>e-striplines>e-stripline", inputs: { border: "border", color: "color", dashArray: "dashArray", end: "end", horizontalAlignment: "horizontalAlignment", imageUrl: "imageUrl", isRepeat: "isRepeat", isSegmented: "isSegmented", opacity: "opacity", repeatEvery: "repeatEvery", repeatUntil: "repeatUntil", rotation: "rotation", segmentAxisName: "segmentAxisName", segmentEnd: "segmentEnd", segmentStart: "segmentStart", size: "size", sizeType: "sizeType", start: "start", startFromAxis: "startFromAxis", text: "text", textStyle: "textStyle", verticalAlignment: "verticalAlignment", visible: "visible", zIndex: "zIndex" }, usesInheritance: true, ngImport: i0 });
|
|
203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StripLineDirective, decorators: [{
|
|
204
|
+
type: Directive,
|
|
205
|
+
args: [{
|
|
206
|
+
selector: 'e-axis>e-striplines>e-stripline',
|
|
207
|
+
inputs: input$v,
|
|
208
|
+
outputs: outputs$E,
|
|
209
|
+
queries: {}
|
|
210
|
+
}]
|
|
211
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
212
|
+
/**
|
|
213
|
+
* StripLine Array Directive
|
|
214
|
+
* @private
|
|
215
|
+
*/
|
|
216
|
+
class StripLinesDirective extends ArrayBase {
|
|
217
|
+
constructor() {
|
|
218
|
+
super('striplines');
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
StripLinesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StripLinesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
222
|
+
StripLinesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StripLinesDirective, selector: "e-axis>e-striplines", queries: [{ propertyName: "children", predicate: StripLineDirective }], usesInheritance: true, ngImport: i0 });
|
|
223
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StripLinesDirective, decorators: [{
|
|
224
|
+
type: Directive,
|
|
225
|
+
args: [{
|
|
226
|
+
selector: 'e-axis>e-striplines',
|
|
227
|
+
queries: {
|
|
228
|
+
children: new ContentChildren(StripLineDirective)
|
|
229
|
+
},
|
|
230
|
+
}]
|
|
231
|
+
}], ctorParameters: function () { return []; } });
|
|
232
|
+
|
|
233
|
+
let input$u = ['customAttributes', 'end', 'maximumTextWidth', 'start', 'text', 'type'];
|
|
234
|
+
let outputs$D = [];
|
|
235
|
+
/**
|
|
236
|
+
* MultiLevelLabels Directive
|
|
237
|
+
* ```html
|
|
238
|
+
* <e-multilevellabels>
|
|
239
|
+
* <e-multilevellabel>
|
|
240
|
+
* <e-Categories>
|
|
241
|
+
* <e-Category>
|
|
242
|
+
* </e-Category>
|
|
243
|
+
* </e-Categories>
|
|
244
|
+
* </e-multilevellabel>
|
|
245
|
+
* </e-multilevellabels>
|
|
246
|
+
* ```
|
|
247
|
+
*/
|
|
248
|
+
class CategoryDirective extends ComplexBase {
|
|
249
|
+
constructor(viewContainerRef) {
|
|
250
|
+
super();
|
|
251
|
+
this.viewContainerRef = viewContainerRef;
|
|
252
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
253
|
+
this.registerEvents(outputs$D);
|
|
254
|
+
this.directivePropList = input$u;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
CategoryDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CategoryDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
258
|
+
CategoryDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CategoryDirective, selector: "e-multilevellabel>e-categories>e-category", inputs: { customAttributes: "customAttributes", end: "end", maximumTextWidth: "maximumTextWidth", start: "start", text: "text", type: "type" }, usesInheritance: true, ngImport: i0 });
|
|
259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CategoryDirective, decorators: [{
|
|
260
|
+
type: Directive,
|
|
261
|
+
args: [{
|
|
262
|
+
selector: 'e-multilevellabel>e-categories>e-category',
|
|
263
|
+
inputs: input$u,
|
|
264
|
+
outputs: outputs$D,
|
|
265
|
+
queries: {}
|
|
266
|
+
}]
|
|
267
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
268
|
+
/**
|
|
269
|
+
* Category Array Directive
|
|
270
|
+
* @private
|
|
271
|
+
*/
|
|
272
|
+
class CategoriesDirective extends ArrayBase {
|
|
273
|
+
constructor() {
|
|
274
|
+
super('categories');
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
CategoriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CategoriesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
278
|
+
CategoriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CategoriesDirective, selector: "e-multilevellabel>e-categories", queries: [{ propertyName: "children", predicate: CategoryDirective }], usesInheritance: true, ngImport: i0 });
|
|
279
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CategoriesDirective, decorators: [{
|
|
280
|
+
type: Directive,
|
|
281
|
+
args: [{
|
|
282
|
+
selector: 'e-multilevellabel>e-categories',
|
|
283
|
+
queries: {
|
|
284
|
+
children: new ContentChildren(CategoryDirective)
|
|
285
|
+
},
|
|
286
|
+
}]
|
|
287
|
+
}], ctorParameters: function () { return []; } });
|
|
288
|
+
|
|
289
|
+
let input$t = ['alignment', 'border', 'categories', 'overflow', 'textStyle'];
|
|
290
|
+
let outputs$C = [];
|
|
291
|
+
/**
|
|
292
|
+
* MultiLevelLabel Directive
|
|
293
|
+
* ```html
|
|
294
|
+
* <e-axis>
|
|
295
|
+
* <e-multilevellabels>
|
|
296
|
+
* <e-multilevellabel></e-multilevellabel>
|
|
297
|
+
* </e-multilevellabels>
|
|
298
|
+
* </e-axis>
|
|
299
|
+
* ```
|
|
300
|
+
*/
|
|
301
|
+
class MultiLevelLabelDirective extends ComplexBase {
|
|
302
|
+
constructor(viewContainerRef) {
|
|
303
|
+
super();
|
|
304
|
+
this.viewContainerRef = viewContainerRef;
|
|
305
|
+
this.tags = ['categories'];
|
|
306
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
307
|
+
this.registerEvents(outputs$C);
|
|
308
|
+
this.directivePropList = input$t;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
MultiLevelLabelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiLevelLabelDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
312
|
+
MultiLevelLabelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: MultiLevelLabelDirective, selector: "e-axis>e-multilevellabels>e-multilevellabel", inputs: { alignment: "alignment", border: "border", categories: "categories", overflow: "overflow", textStyle: "textStyle" }, queries: [{ propertyName: "childCategories", first: true, predicate: CategoriesDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
313
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiLevelLabelDirective, decorators: [{
|
|
314
|
+
type: Directive,
|
|
315
|
+
args: [{
|
|
316
|
+
selector: 'e-axis>e-multilevellabels>e-multilevellabel',
|
|
317
|
+
inputs: input$t,
|
|
318
|
+
outputs: outputs$C,
|
|
319
|
+
queries: {
|
|
320
|
+
childCategories: new ContentChild(CategoriesDirective)
|
|
321
|
+
}
|
|
322
|
+
}]
|
|
323
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
324
|
+
/**
|
|
325
|
+
* MultiLevelLabel Array Directive
|
|
326
|
+
* @private
|
|
327
|
+
*/
|
|
328
|
+
class MultiLevelLabelsDirective extends ArrayBase {
|
|
329
|
+
constructor() {
|
|
330
|
+
super('multilevellabels');
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
MultiLevelLabelsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiLevelLabelsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
334
|
+
MultiLevelLabelsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: MultiLevelLabelsDirective, selector: "e-axis>e-multilevellabels", queries: [{ propertyName: "children", predicate: MultiLevelLabelDirective }], usesInheritance: true, ngImport: i0 });
|
|
335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiLevelLabelsDirective, decorators: [{
|
|
336
|
+
type: Directive,
|
|
337
|
+
args: [{
|
|
338
|
+
selector: 'e-axis>e-multilevellabels',
|
|
339
|
+
queries: {
|
|
340
|
+
children: new ContentChildren(MultiLevelLabelDirective)
|
|
341
|
+
},
|
|
342
|
+
}]
|
|
343
|
+
}], ctorParameters: function () { return []; } });
|
|
344
|
+
|
|
345
|
+
let input$s = ['border', 'coefficient', 'columnIndex', 'crossesAt', 'crossesInAxis', 'crosshairTooltip', 'description', 'desiredIntervals', 'edgeLabelPlacement', 'enableAutoIntervalOnZooming', 'enableScrollbarOnZooming', 'enableTrim', 'enableWrap', 'interval', 'intervalType', 'isIndexed', 'isInversed', 'labelFormat', 'labelIntersectAction', 'labelPadding', 'labelPlacement', 'labelPosition', 'labelRotation', 'labelStyle', 'labelTemplate', 'lineBreakAlignment', 'lineStyle', 'logBase', 'majorGridLines', 'majorTickLines', 'maximum', 'maximumLabelWidth', 'maximumLabels', 'minimum', 'minorGridLines', 'minorTickLines', 'minorTicksPerInterval', 'multiLevelLabels', 'name', 'opposedPosition', 'placeNextToAxisLine', 'plotOffset', 'plotOffsetBottom', 'plotOffsetLeft', 'plotOffsetRight', 'plotOffsetTop', 'rangePadding', 'rowIndex', 'scrollbarSettings', 'skeleton', 'skeletonType', 'span', 'startAngle', 'startFromZero', 'stripLines', 'tabIndex', 'tickPosition', 'title', 'titlePadding', 'titleRotation', 'titleStyle', 'valueType', 'visible', 'zoomFactor', 'zoomPosition'];
|
|
346
|
+
let outputs$B = [];
|
|
347
|
+
/**
|
|
348
|
+
* Axis Directive
|
|
349
|
+
* ```html
|
|
350
|
+
* <e-axes><e-axis></e-axis></e-axes>
|
|
351
|
+
* ```
|
|
352
|
+
*/
|
|
353
|
+
class AxisDirective extends ComplexBase {
|
|
354
|
+
constructor(viewContainerRef) {
|
|
355
|
+
super();
|
|
356
|
+
this.viewContainerRef = viewContainerRef;
|
|
357
|
+
this.tags = ['stripLines', 'multiLevelLabels'];
|
|
358
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
359
|
+
this.registerEvents(outputs$B);
|
|
360
|
+
this.directivePropList = input$s;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
AxisDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AxisDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
364
|
+
AxisDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AxisDirective, selector: "e-axes>e-axis", inputs: { border: "border", coefficient: "coefficient", columnIndex: "columnIndex", crossesAt: "crossesAt", crossesInAxis: "crossesInAxis", crosshairTooltip: "crosshairTooltip", description: "description", desiredIntervals: "desiredIntervals", edgeLabelPlacement: "edgeLabelPlacement", enableAutoIntervalOnZooming: "enableAutoIntervalOnZooming", enableScrollbarOnZooming: "enableScrollbarOnZooming", enableTrim: "enableTrim", enableWrap: "enableWrap", interval: "interval", intervalType: "intervalType", isIndexed: "isIndexed", isInversed: "isInversed", labelFormat: "labelFormat", labelIntersectAction: "labelIntersectAction", labelPadding: "labelPadding", labelPlacement: "labelPlacement", labelPosition: "labelPosition", labelRotation: "labelRotation", labelStyle: "labelStyle", labelTemplate: "labelTemplate", lineBreakAlignment: "lineBreakAlignment", lineStyle: "lineStyle", logBase: "logBase", majorGridLines: "majorGridLines", majorTickLines: "majorTickLines", maximum: "maximum", maximumLabelWidth: "maximumLabelWidth", maximumLabels: "maximumLabels", minimum: "minimum", minorGridLines: "minorGridLines", minorTickLines: "minorTickLines", minorTicksPerInterval: "minorTicksPerInterval", multiLevelLabels: "multiLevelLabels", name: "name", opposedPosition: "opposedPosition", placeNextToAxisLine: "placeNextToAxisLine", plotOffset: "plotOffset", plotOffsetBottom: "plotOffsetBottom", plotOffsetLeft: "plotOffsetLeft", plotOffsetRight: "plotOffsetRight", plotOffsetTop: "plotOffsetTop", rangePadding: "rangePadding", rowIndex: "rowIndex", scrollbarSettings: "scrollbarSettings", skeleton: "skeleton", skeletonType: "skeletonType", span: "span", startAngle: "startAngle", startFromZero: "startFromZero", stripLines: "stripLines", tabIndex: "tabIndex", tickPosition: "tickPosition", title: "title", titlePadding: "titlePadding", titleRotation: "titleRotation", titleStyle: "titleStyle", valueType: "valueType", visible: "visible", zoomFactor: "zoomFactor", zoomPosition: "zoomPosition" }, queries: [{ propertyName: "childStripLines", first: true, predicate: StripLinesDirective, descendants: true }, { propertyName: "childMultiLevelLabels", first: true, predicate: MultiLevelLabelsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AxisDirective, decorators: [{
|
|
366
|
+
type: Directive,
|
|
367
|
+
args: [{
|
|
368
|
+
selector: 'e-axes>e-axis',
|
|
369
|
+
inputs: input$s,
|
|
370
|
+
outputs: outputs$B,
|
|
371
|
+
queries: {
|
|
372
|
+
childStripLines: new ContentChild(StripLinesDirective),
|
|
373
|
+
childMultiLevelLabels: new ContentChild(MultiLevelLabelsDirective)
|
|
374
|
+
}
|
|
375
|
+
}]
|
|
376
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
377
|
+
/**
|
|
378
|
+
* Axis Array Directive
|
|
379
|
+
* @private
|
|
380
|
+
*/
|
|
381
|
+
class AxesDirective extends ArrayBase {
|
|
382
|
+
constructor() {
|
|
383
|
+
super('axes');
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
AxesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AxesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
387
|
+
AxesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AxesDirective, selector: "ejs-chart>e-axes", queries: [{ propertyName: "children", predicate: AxisDirective }], usesInheritance: true, ngImport: i0 });
|
|
388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AxesDirective, decorators: [{
|
|
389
|
+
type: Directive,
|
|
390
|
+
args: [{
|
|
391
|
+
selector: 'ejs-chart>e-axes',
|
|
392
|
+
queries: {
|
|
393
|
+
children: new ContentChildren(AxisDirective)
|
|
394
|
+
},
|
|
395
|
+
}]
|
|
396
|
+
}], ctorParameters: function () { return []; } });
|
|
397
|
+
|
|
398
|
+
let input$r = ['border', 'height'];
|
|
399
|
+
let outputs$A = [];
|
|
400
|
+
/**
|
|
401
|
+
* Row Directive
|
|
402
|
+
* ```html
|
|
403
|
+
* <e-rows><e-row></e-row><e-rows>
|
|
404
|
+
* ```
|
|
405
|
+
*/
|
|
406
|
+
class RowDirective extends ComplexBase {
|
|
407
|
+
constructor(viewContainerRef) {
|
|
408
|
+
super();
|
|
409
|
+
this.viewContainerRef = viewContainerRef;
|
|
410
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
411
|
+
this.registerEvents(outputs$A);
|
|
412
|
+
this.directivePropList = input$r;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
RowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RowDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
416
|
+
RowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RowDirective, selector: "e-rows>e-row", inputs: { border: "border", height: "height" }, usesInheritance: true, ngImport: i0 });
|
|
417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RowDirective, decorators: [{
|
|
418
|
+
type: Directive,
|
|
419
|
+
args: [{
|
|
420
|
+
selector: 'e-rows>e-row',
|
|
421
|
+
inputs: input$r,
|
|
422
|
+
outputs: outputs$A,
|
|
423
|
+
queries: {}
|
|
424
|
+
}]
|
|
425
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
426
|
+
/**
|
|
427
|
+
* Row Array Directive
|
|
428
|
+
* @private
|
|
429
|
+
*/
|
|
430
|
+
class RowsDirective extends ArrayBase {
|
|
431
|
+
constructor() {
|
|
432
|
+
super('rows');
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
RowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RowsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
436
|
+
RowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RowsDirective, selector: "ejs-chart>e-rows", queries: [{ propertyName: "children", predicate: RowDirective }], usesInheritance: true, ngImport: i0 });
|
|
437
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RowsDirective, decorators: [{
|
|
438
|
+
type: Directive,
|
|
439
|
+
args: [{
|
|
440
|
+
selector: 'ejs-chart>e-rows',
|
|
441
|
+
queries: {
|
|
442
|
+
children: new ContentChildren(RowDirective)
|
|
443
|
+
},
|
|
444
|
+
}]
|
|
445
|
+
}], ctorParameters: function () { return []; } });
|
|
446
|
+
|
|
447
|
+
let input$q = ['border', 'width'];
|
|
448
|
+
let outputs$z = [];
|
|
449
|
+
/**
|
|
450
|
+
* Column Directive
|
|
451
|
+
* ```html
|
|
452
|
+
* <e-columns><e-column></e-column><e-columns>
|
|
453
|
+
* ```
|
|
454
|
+
*/
|
|
455
|
+
class ColumnDirective extends ComplexBase {
|
|
456
|
+
constructor(viewContainerRef) {
|
|
457
|
+
super();
|
|
458
|
+
this.viewContainerRef = viewContainerRef;
|
|
459
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
460
|
+
this.registerEvents(outputs$z);
|
|
461
|
+
this.directivePropList = input$q;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
ColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
465
|
+
ColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColumnDirective, selector: "e-columns>e-column", inputs: { border: "border", width: "width" }, usesInheritance: true, ngImport: i0 });
|
|
466
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnDirective, decorators: [{
|
|
467
|
+
type: Directive,
|
|
468
|
+
args: [{
|
|
469
|
+
selector: 'e-columns>e-column',
|
|
470
|
+
inputs: input$q,
|
|
471
|
+
outputs: outputs$z,
|
|
472
|
+
queries: {}
|
|
473
|
+
}]
|
|
474
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
475
|
+
/**
|
|
476
|
+
* Column Array Directive
|
|
477
|
+
* @private
|
|
478
|
+
*/
|
|
479
|
+
class ColumnsDirective extends ArrayBase {
|
|
480
|
+
constructor() {
|
|
481
|
+
super('columns');
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
ColumnsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
485
|
+
ColumnsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColumnsDirective, selector: "ejs-chart>e-columns", queries: [{ propertyName: "children", predicate: ColumnDirective }], usesInheritance: true, ngImport: i0 });
|
|
486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnsDirective, decorators: [{
|
|
487
|
+
type: Directive,
|
|
488
|
+
args: [{
|
|
489
|
+
selector: 'ejs-chart>e-columns',
|
|
490
|
+
queries: {
|
|
491
|
+
children: new ContentChildren(ColumnDirective)
|
|
492
|
+
},
|
|
493
|
+
}]
|
|
494
|
+
}], ctorParameters: function () { return []; } });
|
|
495
|
+
|
|
496
|
+
let input$p = ['colors', 'end', 'label', 'start'];
|
|
497
|
+
let outputs$y = [];
|
|
498
|
+
/**
|
|
499
|
+
* RangeColorSetting Directive
|
|
500
|
+
* ```html
|
|
501
|
+
* <e-rangeColorSettings><e-rangeColorSetting></e-rangeColorSetting><e-rangeColorSettings>
|
|
502
|
+
* ```
|
|
503
|
+
*/
|
|
504
|
+
class RangeColorSettingDirective extends ComplexBase {
|
|
505
|
+
constructor(viewContainerRef) {
|
|
506
|
+
super();
|
|
507
|
+
this.viewContainerRef = viewContainerRef;
|
|
508
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
509
|
+
this.registerEvents(outputs$y);
|
|
510
|
+
this.directivePropList = input$p;
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
RangeColorSettingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeColorSettingDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
514
|
+
RangeColorSettingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangeColorSettingDirective, selector: "e-rangecolorsettings>e-rangecolorsetting", inputs: { colors: "colors", end: "end", label: "label", start: "start" }, usesInheritance: true, ngImport: i0 });
|
|
515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeColorSettingDirective, decorators: [{
|
|
516
|
+
type: Directive,
|
|
517
|
+
args: [{
|
|
518
|
+
selector: 'e-rangecolorsettings>e-rangecolorsetting',
|
|
519
|
+
inputs: input$p,
|
|
520
|
+
outputs: outputs$y,
|
|
521
|
+
queries: {}
|
|
522
|
+
}]
|
|
523
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
524
|
+
/**
|
|
525
|
+
* RangeColorSetting Array Directive
|
|
526
|
+
* @private
|
|
527
|
+
*/
|
|
528
|
+
class RangeColorSettingsDirective extends ArrayBase {
|
|
529
|
+
constructor() {
|
|
530
|
+
super('rangecolorsettings');
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
RangeColorSettingsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeColorSettingsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
534
|
+
RangeColorSettingsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangeColorSettingsDirective, selector: "ejs-chart>e-rangecolorsettings", queries: [{ propertyName: "children", predicate: RangeColorSettingDirective }], usesInheritance: true, ngImport: i0 });
|
|
535
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeColorSettingsDirective, decorators: [{
|
|
536
|
+
type: Directive,
|
|
537
|
+
args: [{
|
|
538
|
+
selector: 'ejs-chart>e-rangecolorsettings',
|
|
539
|
+
queries: {
|
|
540
|
+
children: new ContentChildren(RangeColorSettingDirective)
|
|
541
|
+
},
|
|
542
|
+
}]
|
|
543
|
+
}], ctorParameters: function () { return []; } });
|
|
544
|
+
|
|
545
|
+
let input$o = ['accessibility', 'content', 'coordinateUnits', 'description', 'horizontalAlignment', 'region', 'verticalAlignment', 'x', 'xAxisName', 'y', 'yAxisName'];
|
|
546
|
+
let outputs$x = [];
|
|
547
|
+
/**
|
|
548
|
+
* Annotation Directive
|
|
549
|
+
* ```html
|
|
550
|
+
* <e-annotations><e-annotation></e-annotation><e-annotations>
|
|
551
|
+
* ```
|
|
552
|
+
*/
|
|
553
|
+
class AnnotationDirective extends ComplexBase {
|
|
554
|
+
constructor(viewContainerRef) {
|
|
555
|
+
super();
|
|
556
|
+
this.viewContainerRef = viewContainerRef;
|
|
557
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
558
|
+
this.registerEvents(outputs$x);
|
|
559
|
+
this.directivePropList = input$o;
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
AnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
563
|
+
AnnotationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AnnotationDirective, selector: "e-annotations>e-annotation", inputs: { accessibility: "accessibility", content: "content", coordinateUnits: "coordinateUnits", description: "description", horizontalAlignment: "horizontalAlignment", region: "region", verticalAlignment: "verticalAlignment", x: "x", xAxisName: "xAxisName", y: "y", yAxisName: "yAxisName" }, queries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
564
|
+
__decorate([
|
|
565
|
+
Template()
|
|
566
|
+
], AnnotationDirective.prototype, "content", void 0);
|
|
567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationDirective, decorators: [{
|
|
568
|
+
type: Directive,
|
|
569
|
+
args: [{
|
|
570
|
+
selector: 'e-annotations>e-annotation',
|
|
571
|
+
inputs: input$o,
|
|
572
|
+
outputs: outputs$x,
|
|
573
|
+
queries: {}
|
|
574
|
+
}]
|
|
575
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
|
576
|
+
type: ContentChild,
|
|
577
|
+
args: ['content']
|
|
578
|
+
}] } });
|
|
579
|
+
/**
|
|
580
|
+
* Annotation Array Directive
|
|
581
|
+
* @private
|
|
582
|
+
*/
|
|
583
|
+
class AnnotationsDirective extends ArrayBase {
|
|
584
|
+
constructor() {
|
|
585
|
+
super('annotations');
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
AnnotationsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
589
|
+
AnnotationsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AnnotationsDirective, selector: "ejs-chart>e-annotations", queries: [{ propertyName: "children", predicate: AnnotationDirective }], usesInheritance: true, ngImport: i0 });
|
|
590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationsDirective, decorators: [{
|
|
591
|
+
type: Directive,
|
|
592
|
+
args: [{
|
|
593
|
+
selector: 'ejs-chart>e-annotations',
|
|
594
|
+
queries: {
|
|
595
|
+
children: new ContentChildren(AnnotationDirective)
|
|
596
|
+
},
|
|
597
|
+
}]
|
|
598
|
+
}], ctorParameters: function () { return []; } });
|
|
599
|
+
|
|
600
|
+
let input$n = ['point', 'series'];
|
|
601
|
+
let outputs$w = [];
|
|
602
|
+
/**
|
|
603
|
+
* Selected Data Directive
|
|
604
|
+
* ```html
|
|
605
|
+
* <e-selecteddataindexes><e-selecteddataindex></e-selecteddataindex><e-selecteddataindexes>
|
|
606
|
+
* ```
|
|
607
|
+
*/
|
|
608
|
+
class SelectedDataIndexDirective extends ComplexBase {
|
|
609
|
+
constructor(viewContainerRef) {
|
|
610
|
+
super();
|
|
611
|
+
this.viewContainerRef = viewContainerRef;
|
|
612
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
613
|
+
this.registerEvents(outputs$w);
|
|
614
|
+
this.directivePropList = input$n;
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
SelectedDataIndexDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SelectedDataIndexDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
618
|
+
SelectedDataIndexDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SelectedDataIndexDirective, selector: "e-selecteddataindexes>e-selecteddataindex", inputs: { point: "point", series: "series" }, usesInheritance: true, ngImport: i0 });
|
|
619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SelectedDataIndexDirective, decorators: [{
|
|
620
|
+
type: Directive,
|
|
621
|
+
args: [{
|
|
622
|
+
selector: 'e-selecteddataindexes>e-selecteddataindex',
|
|
623
|
+
inputs: input$n,
|
|
624
|
+
outputs: outputs$w,
|
|
625
|
+
queries: {}
|
|
626
|
+
}]
|
|
627
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
628
|
+
/**
|
|
629
|
+
* SelectedDataIndex Array Directive
|
|
630
|
+
* @private
|
|
631
|
+
*/
|
|
632
|
+
class SelectedDataIndexesDirective extends ArrayBase {
|
|
633
|
+
constructor() {
|
|
634
|
+
super('selecteddataindexes');
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
SelectedDataIndexesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SelectedDataIndexesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
638
|
+
SelectedDataIndexesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SelectedDataIndexesDirective, selector: "ejs-chart>e-selecteddataindexes", queries: [{ propertyName: "children", predicate: SelectedDataIndexDirective }], usesInheritance: true, ngImport: i0 });
|
|
639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SelectedDataIndexesDirective, decorators: [{
|
|
640
|
+
type: Directive,
|
|
641
|
+
args: [{
|
|
642
|
+
selector: 'ejs-chart>e-selecteddataindexes',
|
|
643
|
+
queries: {
|
|
644
|
+
children: new ContentChildren(SelectedDataIndexDirective)
|
|
645
|
+
},
|
|
646
|
+
}]
|
|
647
|
+
}], ctorParameters: function () { return []; } });
|
|
648
|
+
|
|
649
|
+
let input$m = ['accessibility', 'animation', 'bandColor', 'close', 'colorName', 'dPeriod', 'dashArray', 'dataSource', 'enableComplexProperty', 'fastPeriod', 'field', 'fill', 'high', 'kPeriod', 'low', 'lowerLine', 'macdLine', 'macdNegativeColor', 'macdPositiveColor', 'macdType', 'open', 'overBought', 'overSold', 'period', 'periodLine', 'pointColorMapping', 'query', 'segmentAxis', 'segments', 'seriesName', 'showZones', 'slowPeriod', 'standardDeviation', 'type', 'upperLine', 'visible', 'volume', 'width', 'xAxisName', 'xName', 'yAxisName'];
|
|
650
|
+
let outputs$v = [];
|
|
651
|
+
/**
|
|
652
|
+
* Indicator Directive
|
|
653
|
+
* ```html
|
|
654
|
+
* <e-indicators>
|
|
655
|
+
* <e-indicator></e-indicator>
|
|
656
|
+
* </e-indicators>
|
|
657
|
+
* ```
|
|
658
|
+
*/
|
|
659
|
+
class IndicatorDirective extends ComplexBase {
|
|
660
|
+
constructor(viewContainerRef) {
|
|
661
|
+
super();
|
|
662
|
+
this.viewContainerRef = viewContainerRef;
|
|
663
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
664
|
+
this.registerEvents(outputs$v);
|
|
665
|
+
this.directivePropList = input$m;
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
IndicatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: IndicatorDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
669
|
+
IndicatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: IndicatorDirective, selector: "e-indicators>e-indicator", inputs: { accessibility: "accessibility", animation: "animation", bandColor: "bandColor", close: "close", colorName: "colorName", dPeriod: "dPeriod", dashArray: "dashArray", dataSource: "dataSource", enableComplexProperty: "enableComplexProperty", fastPeriod: "fastPeriod", field: "field", fill: "fill", high: "high", kPeriod: "kPeriod", low: "low", lowerLine: "lowerLine", macdLine: "macdLine", macdNegativeColor: "macdNegativeColor", macdPositiveColor: "macdPositiveColor", macdType: "macdType", open: "open", overBought: "overBought", overSold: "overSold", period: "period", periodLine: "periodLine", pointColorMapping: "pointColorMapping", query: "query", segmentAxis: "segmentAxis", segments: "segments", seriesName: "seriesName", showZones: "showZones", slowPeriod: "slowPeriod", standardDeviation: "standardDeviation", type: "type", upperLine: "upperLine", visible: "visible", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName" }, usesInheritance: true, ngImport: i0 });
|
|
670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: IndicatorDirective, decorators: [{
|
|
671
|
+
type: Directive,
|
|
672
|
+
args: [{
|
|
673
|
+
selector: 'e-indicators>e-indicator',
|
|
674
|
+
inputs: input$m,
|
|
675
|
+
outputs: outputs$v,
|
|
676
|
+
queries: {}
|
|
677
|
+
}]
|
|
678
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
679
|
+
/**
|
|
680
|
+
* Indicator Array Directive
|
|
681
|
+
* @private
|
|
682
|
+
*/
|
|
683
|
+
class IndicatorsDirective extends ArrayBase {
|
|
684
|
+
constructor() {
|
|
685
|
+
super('indicators');
|
|
686
|
+
}
|
|
687
|
+
}
|
|
688
|
+
IndicatorsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: IndicatorsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
689
|
+
IndicatorsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: IndicatorsDirective, selector: "ej-chart>e-indicators", queries: [{ propertyName: "children", predicate: IndicatorDirective }], usesInheritance: true, ngImport: i0 });
|
|
690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: IndicatorsDirective, decorators: [{
|
|
691
|
+
type: Directive,
|
|
692
|
+
args: [{
|
|
693
|
+
selector: 'ej-chart>e-indicators',
|
|
694
|
+
queries: {
|
|
695
|
+
children: new ContentChildren(IndicatorDirective)
|
|
696
|
+
},
|
|
697
|
+
}]
|
|
698
|
+
}], ctorParameters: function () { return []; } });
|
|
699
|
+
|
|
700
|
+
const inputs$8 = ['accessibility', 'allowExport', 'allowMultiSelection', 'annotations', 'axes', 'background', 'backgroundImage', 'border', 'chartArea', 'columns', 'crosshair', 'currencyCode', 'dataSource', 'description', 'enableAnimation', 'enableAutoIntervalOnBothAxis', 'enableCanvas', 'enableExport', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableSideBySidePlacement', 'focusBorderColor', 'focusBorderMargin', 'focusBorderWidth', 'height', 'highlightColor', 'highlightMode', 'highlightPattern', 'indicators', 'isMultiSelect', 'isTransposed', 'legendSettings', 'locale', 'margin', 'noDataTemplate', 'palettes', 'primaryXAxis', 'primaryYAxis', 'rangeColorSettings', 'rows', 'selectedDataIndexes', 'selectionMode', 'selectionPattern', 'series', 'stackLabels', 'subTitle', 'subTitleStyle', 'tabIndex', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'zoomSettings'];
|
|
701
|
+
const outputs$u = ['afterExport', 'animationComplete', 'annotationRender', 'axisLabelClick', 'axisLabelRender', 'axisMultiLabelRender', 'axisRangeCalculated', 'beforeExport', 'beforePrint', 'beforeResize', 'chartDoubleClick', 'chartMouseClick', 'chartMouseDown', 'chartMouseLeave', 'chartMouseMove', 'chartMouseUp', 'drag', 'dragComplete', 'dragEnd', 'dragStart', 'legendClick', 'legendRender', 'load', 'loaded', 'multiLevelLabelClick', 'onZooming', 'pointClick', 'pointDoubleClick', 'pointMove', 'pointRender', 'resized', 'scrollChanged', 'scrollEnd', 'scrollStart', 'selectionComplete', 'seriesRender', 'sharedTooltipRender', 'textRender', 'tooltipRender', 'zoomComplete', 'dataSourceChange'];
|
|
702
|
+
const twoWays$8 = ['dataSource'];
|
|
703
|
+
/**
|
|
704
|
+
* Chart Component
|
|
705
|
+
* ```html
|
|
706
|
+
* <ejschart></ejschart>
|
|
707
|
+
* ```
|
|
708
|
+
*/
|
|
709
|
+
let ChartComponent = class ChartComponent extends Chart {
|
|
710
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
711
|
+
super();
|
|
712
|
+
this.ngEle = ngEle;
|
|
713
|
+
this.srenderer = srenderer;
|
|
714
|
+
this.viewContainerRef = viewContainerRef;
|
|
715
|
+
this.injector = injector;
|
|
716
|
+
this.tags = ['series', 'axes', 'rows', 'columns', 'rangeColorSettings', 'annotations', 'selectedDataIndexes', 'indicators'];
|
|
717
|
+
this.element = this.ngEle.nativeElement;
|
|
718
|
+
this.injectedModules = this.injectedModules || [];
|
|
719
|
+
try {
|
|
720
|
+
let mod = this.injector.get('ChartsLineSeries');
|
|
721
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
722
|
+
this.injectedModules.push(mod);
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
catch { }
|
|
726
|
+
try {
|
|
727
|
+
let mod = this.injector.get('ChartsScatterSeries');
|
|
728
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
729
|
+
this.injectedModules.push(mod);
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
catch { }
|
|
733
|
+
try {
|
|
734
|
+
let mod = this.injector.get('ChartsColumnSeries');
|
|
735
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
736
|
+
this.injectedModules.push(mod);
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
catch { }
|
|
740
|
+
try {
|
|
741
|
+
let mod = this.injector.get('ChartsSplineSeries');
|
|
742
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
743
|
+
this.injectedModules.push(mod);
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
catch { }
|
|
747
|
+
try {
|
|
748
|
+
let mod = this.injector.get('ChartsSplineAreaSeries');
|
|
749
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
750
|
+
this.injectedModules.push(mod);
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
catch { }
|
|
754
|
+
try {
|
|
755
|
+
let mod = this.injector.get('ChartsStripLine');
|
|
756
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
757
|
+
this.injectedModules.push(mod);
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
catch { }
|
|
761
|
+
try {
|
|
762
|
+
let mod = this.injector.get('ChartsAreaSeries');
|
|
763
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
764
|
+
this.injectedModules.push(mod);
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
catch { }
|
|
768
|
+
try {
|
|
769
|
+
let mod = this.injector.get('ChartsScrollBar');
|
|
770
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
771
|
+
this.injectedModules.push(mod);
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
catch { }
|
|
775
|
+
try {
|
|
776
|
+
let mod = this.injector.get('ChartsStepLineSeries');
|
|
777
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
778
|
+
this.injectedModules.push(mod);
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
catch { }
|
|
782
|
+
try {
|
|
783
|
+
let mod = this.injector.get('ChartsStepAreaSeries');
|
|
784
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
785
|
+
this.injectedModules.push(mod);
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
catch { }
|
|
789
|
+
try {
|
|
790
|
+
let mod = this.injector.get('ChartsStackingColumnSeries');
|
|
791
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
792
|
+
this.injectedModules.push(mod);
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
catch { }
|
|
796
|
+
try {
|
|
797
|
+
let mod = this.injector.get('ChartsStackingLineSeries');
|
|
798
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
799
|
+
this.injectedModules.push(mod);
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
catch { }
|
|
803
|
+
try {
|
|
804
|
+
let mod = this.injector.get('ChartsStackingAreaSeries');
|
|
805
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
806
|
+
this.injectedModules.push(mod);
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
catch { }
|
|
810
|
+
try {
|
|
811
|
+
let mod = this.injector.get('ChartsStackingStepAreaSeries');
|
|
812
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
813
|
+
this.injectedModules.push(mod);
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
catch { }
|
|
817
|
+
try {
|
|
818
|
+
let mod = this.injector.get('ChartsBarSeries');
|
|
819
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
820
|
+
this.injectedModules.push(mod);
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
catch { }
|
|
824
|
+
try {
|
|
825
|
+
let mod = this.injector.get('ChartsStackingBarSeries');
|
|
826
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
827
|
+
this.injectedModules.push(mod);
|
|
828
|
+
}
|
|
829
|
+
}
|
|
830
|
+
catch { }
|
|
831
|
+
try {
|
|
832
|
+
let mod = this.injector.get('ChartsRangeColumnSeries');
|
|
833
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
834
|
+
this.injectedModules.push(mod);
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
catch { }
|
|
838
|
+
try {
|
|
839
|
+
let mod = this.injector.get('ChartsBubbleSeries');
|
|
840
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
841
|
+
this.injectedModules.push(mod);
|
|
842
|
+
}
|
|
843
|
+
}
|
|
844
|
+
catch { }
|
|
845
|
+
try {
|
|
846
|
+
let mod = this.injector.get('ChartsTooltip');
|
|
847
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
848
|
+
this.injectedModules.push(mod);
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
catch { }
|
|
852
|
+
try {
|
|
853
|
+
let mod = this.injector.get('ChartsCrosshair');
|
|
854
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
855
|
+
this.injectedModules.push(mod);
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
catch { }
|
|
859
|
+
try {
|
|
860
|
+
let mod = this.injector.get('ChartsCategory');
|
|
861
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
862
|
+
this.injectedModules.push(mod);
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
catch { }
|
|
866
|
+
try {
|
|
867
|
+
let mod = this.injector.get('ChartsDateTime');
|
|
868
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
869
|
+
this.injectedModules.push(mod);
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
catch { }
|
|
873
|
+
try {
|
|
874
|
+
let mod = this.injector.get('ChartsLogarithmic');
|
|
875
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
876
|
+
this.injectedModules.push(mod);
|
|
877
|
+
}
|
|
878
|
+
}
|
|
879
|
+
catch { }
|
|
880
|
+
try {
|
|
881
|
+
let mod = this.injector.get('ChartsLegend');
|
|
882
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
883
|
+
this.injectedModules.push(mod);
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
catch { }
|
|
887
|
+
try {
|
|
888
|
+
let mod = this.injector.get('ChartsZoom');
|
|
889
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
890
|
+
this.injectedModules.push(mod);
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
catch { }
|
|
894
|
+
try {
|
|
895
|
+
let mod = this.injector.get('ChartsDataLabel');
|
|
896
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
897
|
+
this.injectedModules.push(mod);
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
catch { }
|
|
901
|
+
try {
|
|
902
|
+
let mod = this.injector.get('ChartsSelection');
|
|
903
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
904
|
+
this.injectedModules.push(mod);
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
catch { }
|
|
908
|
+
try {
|
|
909
|
+
let mod = this.injector.get('ChartsChartAnnotation');
|
|
910
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
911
|
+
this.injectedModules.push(mod);
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
catch { }
|
|
915
|
+
try {
|
|
916
|
+
let mod = this.injector.get('ChartsHiloSeries');
|
|
917
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
918
|
+
this.injectedModules.push(mod);
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
catch { }
|
|
922
|
+
try {
|
|
923
|
+
let mod = this.injector.get('ChartsHiloOpenCloseSeries');
|
|
924
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
925
|
+
this.injectedModules.push(mod);
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
catch { }
|
|
929
|
+
try {
|
|
930
|
+
let mod = this.injector.get('ChartsWaterfallSeries');
|
|
931
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
932
|
+
this.injectedModules.push(mod);
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
catch { }
|
|
936
|
+
try {
|
|
937
|
+
let mod = this.injector.get('ChartsRangeAreaSeries');
|
|
938
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
939
|
+
this.injectedModules.push(mod);
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
catch { }
|
|
943
|
+
try {
|
|
944
|
+
let mod = this.injector.get('ChartsRangeStepAreaSeries');
|
|
945
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
946
|
+
this.injectedModules.push(mod);
|
|
947
|
+
}
|
|
948
|
+
}
|
|
949
|
+
catch { }
|
|
950
|
+
try {
|
|
951
|
+
let mod = this.injector.get('ChartsSplineRangeAreaSeries');
|
|
952
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
953
|
+
this.injectedModules.push(mod);
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
catch { }
|
|
957
|
+
try {
|
|
958
|
+
let mod = this.injector.get('ChartsCandleSeries');
|
|
959
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
960
|
+
this.injectedModules.push(mod);
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
catch { }
|
|
964
|
+
try {
|
|
965
|
+
let mod = this.injector.get('ChartsPolarSeries');
|
|
966
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
967
|
+
this.injectedModules.push(mod);
|
|
968
|
+
}
|
|
969
|
+
}
|
|
970
|
+
catch { }
|
|
971
|
+
try {
|
|
972
|
+
let mod = this.injector.get('ChartsRadarSeries');
|
|
973
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
974
|
+
this.injectedModules.push(mod);
|
|
975
|
+
}
|
|
976
|
+
}
|
|
977
|
+
catch { }
|
|
978
|
+
try {
|
|
979
|
+
let mod = this.injector.get('ChartsSmaIndicator');
|
|
980
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
981
|
+
this.injectedModules.push(mod);
|
|
982
|
+
}
|
|
983
|
+
}
|
|
984
|
+
catch { }
|
|
985
|
+
try {
|
|
986
|
+
let mod = this.injector.get('ChartsTmaIndicator');
|
|
987
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
988
|
+
this.injectedModules.push(mod);
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
catch { }
|
|
992
|
+
try {
|
|
993
|
+
let mod = this.injector.get('ChartsEmaIndicator');
|
|
994
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
995
|
+
this.injectedModules.push(mod);
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
catch { }
|
|
999
|
+
try {
|
|
1000
|
+
let mod = this.injector.get('ChartsAccumulationDistributionIndicator');
|
|
1001
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1002
|
+
this.injectedModules.push(mod);
|
|
1003
|
+
}
|
|
1004
|
+
}
|
|
1005
|
+
catch { }
|
|
1006
|
+
try {
|
|
1007
|
+
let mod = this.injector.get('ChartsMacdIndicator');
|
|
1008
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1009
|
+
this.injectedModules.push(mod);
|
|
1010
|
+
}
|
|
1011
|
+
}
|
|
1012
|
+
catch { }
|
|
1013
|
+
try {
|
|
1014
|
+
let mod = this.injector.get('ChartsAtrIndicator');
|
|
1015
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1016
|
+
this.injectedModules.push(mod);
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
catch { }
|
|
1020
|
+
try {
|
|
1021
|
+
let mod = this.injector.get('ChartsRsiIndicator');
|
|
1022
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1023
|
+
this.injectedModules.push(mod);
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
catch { }
|
|
1027
|
+
try {
|
|
1028
|
+
let mod = this.injector.get('ChartsMomentumIndicator');
|
|
1029
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1030
|
+
this.injectedModules.push(mod);
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
catch { }
|
|
1034
|
+
try {
|
|
1035
|
+
let mod = this.injector.get('ChartsStochasticIndicator');
|
|
1036
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1037
|
+
this.injectedModules.push(mod);
|
|
1038
|
+
}
|
|
1039
|
+
}
|
|
1040
|
+
catch { }
|
|
1041
|
+
try {
|
|
1042
|
+
let mod = this.injector.get('ChartsBollingerBands');
|
|
1043
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1044
|
+
this.injectedModules.push(mod);
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
catch { }
|
|
1048
|
+
try {
|
|
1049
|
+
let mod = this.injector.get('ChartsBoxAndWhiskerSeries');
|
|
1050
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1051
|
+
this.injectedModules.push(mod);
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
catch { }
|
|
1055
|
+
try {
|
|
1056
|
+
let mod = this.injector.get('ChartsHistogramSeries');
|
|
1057
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1058
|
+
this.injectedModules.push(mod);
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
catch { }
|
|
1062
|
+
try {
|
|
1063
|
+
let mod = this.injector.get('ChartsErrorBar');
|
|
1064
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1065
|
+
this.injectedModules.push(mod);
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
catch { }
|
|
1069
|
+
try {
|
|
1070
|
+
let mod = this.injector.get('ChartsTrendlines');
|
|
1071
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1072
|
+
this.injectedModules.push(mod);
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
catch { }
|
|
1076
|
+
try {
|
|
1077
|
+
let mod = this.injector.get('ChartsDateTimeCategory');
|
|
1078
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1079
|
+
this.injectedModules.push(mod);
|
|
1080
|
+
}
|
|
1081
|
+
}
|
|
1082
|
+
catch { }
|
|
1083
|
+
try {
|
|
1084
|
+
let mod = this.injector.get('ChartsMultiColoredLineSeries');
|
|
1085
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1086
|
+
this.injectedModules.push(mod);
|
|
1087
|
+
}
|
|
1088
|
+
}
|
|
1089
|
+
catch { }
|
|
1090
|
+
try {
|
|
1091
|
+
let mod = this.injector.get('ChartsMultiColoredAreaSeries');
|
|
1092
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1093
|
+
this.injectedModules.push(mod);
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
catch { }
|
|
1097
|
+
try {
|
|
1098
|
+
let mod = this.injector.get('ChartsMultiLevelLabel');
|
|
1099
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1100
|
+
this.injectedModules.push(mod);
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
catch { }
|
|
1104
|
+
try {
|
|
1105
|
+
let mod = this.injector.get('ChartsParetoSeries');
|
|
1106
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1107
|
+
this.injectedModules.push(mod);
|
|
1108
|
+
}
|
|
1109
|
+
}
|
|
1110
|
+
catch { }
|
|
1111
|
+
try {
|
|
1112
|
+
let mod = this.injector.get('ChartsExport');
|
|
1113
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1114
|
+
this.injectedModules.push(mod);
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1117
|
+
catch { }
|
|
1118
|
+
try {
|
|
1119
|
+
let mod = this.injector.get('ChartsDataEditing');
|
|
1120
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1121
|
+
this.injectedModules.push(mod);
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
catch { }
|
|
1125
|
+
try {
|
|
1126
|
+
let mod = this.injector.get('ChartsHighlight');
|
|
1127
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1128
|
+
this.injectedModules.push(mod);
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
catch { }
|
|
1132
|
+
try {
|
|
1133
|
+
let mod = this.injector.get('ChartsLastValueLabel');
|
|
1134
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1135
|
+
this.injectedModules.push(mod);
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
catch { }
|
|
1139
|
+
this.registerEvents(outputs$u);
|
|
1140
|
+
this.addTwoWay.call(this, twoWays$8);
|
|
1141
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
1142
|
+
this.context = new ComponentBase();
|
|
1143
|
+
}
|
|
1144
|
+
ngOnInit() {
|
|
1145
|
+
this.context.ngOnInit(this);
|
|
1146
|
+
}
|
|
1147
|
+
ngAfterViewInit() {
|
|
1148
|
+
this.context.ngAfterViewInit(this);
|
|
1149
|
+
}
|
|
1150
|
+
ngOnDestroy() {
|
|
1151
|
+
this.context.ngOnDestroy(this);
|
|
1152
|
+
}
|
|
1153
|
+
ngAfterContentChecked() {
|
|
1154
|
+
this.tagObjects[0].instance = this.childSeries;
|
|
1155
|
+
if (this.childAxes) {
|
|
1156
|
+
this.tagObjects[1].instance = this.childAxes;
|
|
1157
|
+
}
|
|
1158
|
+
if (this.childRows) {
|
|
1159
|
+
this.tagObjects[2].instance = this.childRows;
|
|
1160
|
+
}
|
|
1161
|
+
if (this.childColumns) {
|
|
1162
|
+
this.tagObjects[3].instance = this.childColumns;
|
|
1163
|
+
}
|
|
1164
|
+
if (this.childRangeColorSettings) {
|
|
1165
|
+
this.tagObjects[4].instance = this.childRangeColorSettings;
|
|
1166
|
+
}
|
|
1167
|
+
if (this.childAnnotations) {
|
|
1168
|
+
this.tagObjects[5].instance = this.childAnnotations;
|
|
1169
|
+
}
|
|
1170
|
+
if (this.childSelectedDataIndexes) {
|
|
1171
|
+
this.tagObjects[6].instance = this.childSelectedDataIndexes;
|
|
1172
|
+
}
|
|
1173
|
+
if (this.childIndicators) {
|
|
1174
|
+
this.tagObjects[7].instance = this.childIndicators;
|
|
1175
|
+
}
|
|
1176
|
+
this.context.ngAfterContentChecked(this);
|
|
1177
|
+
}
|
|
1178
|
+
};
|
|
1179
|
+
ChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
1180
|
+
ChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: ChartComponent, selector: "ejs-chart", inputs: { 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" }, outputs: { 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" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: SeriesCollectionDirective, descendants: true }, { propertyName: "childAxes", first: true, predicate: AxesDirective, descendants: true }, { propertyName: "childRows", first: true, predicate: RowsDirective, descendants: true }, { propertyName: "childColumns", first: true, predicate: ColumnsDirective, descendants: true }, { propertyName: "childRangeColorSettings", first: true, predicate: RangeColorSettingsDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: AnnotationsDirective, descendants: true }, { propertyName: "childSelectedDataIndexes", first: true, predicate: SelectedDataIndexesDirective, descendants: true }, { propertyName: "childIndicators", first: true, predicate: IndicatorsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
1181
|
+
__decorate([
|
|
1182
|
+
Template()
|
|
1183
|
+
], ChartComponent.prototype, "tooltip_template", void 0);
|
|
1184
|
+
ChartComponent = __decorate([
|
|
1185
|
+
ComponentMixins([ComponentBase])
|
|
1186
|
+
], ChartComponent);
|
|
1187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartComponent, decorators: [{
|
|
1188
|
+
type: Component,
|
|
1189
|
+
args: [{
|
|
1190
|
+
selector: 'ejs-chart',
|
|
1191
|
+
inputs: inputs$8,
|
|
1192
|
+
outputs: outputs$u,
|
|
1193
|
+
template: '',
|
|
1194
|
+
queries: {
|
|
1195
|
+
childSeries: new ContentChild(SeriesCollectionDirective),
|
|
1196
|
+
childAxes: new ContentChild(AxesDirective),
|
|
1197
|
+
childRows: new ContentChild(RowsDirective),
|
|
1198
|
+
childColumns: new ContentChild(ColumnsDirective),
|
|
1199
|
+
childRangeColorSettings: new ContentChild(RangeColorSettingsDirective),
|
|
1200
|
+
childAnnotations: new ContentChild(AnnotationsDirective),
|
|
1201
|
+
childSelectedDataIndexes: new ContentChild(SelectedDataIndexesDirective),
|
|
1202
|
+
childIndicators: new ContentChild(IndicatorsDirective)
|
|
1203
|
+
}
|
|
1204
|
+
}]
|
|
1205
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
1206
|
+
type: ContentChild,
|
|
1207
|
+
args: ['tooltipTemplate']
|
|
1208
|
+
}] } });
|
|
1209
|
+
|
|
1210
|
+
/**
|
|
1211
|
+
* NgModule definition for the Chart component.
|
|
1212
|
+
*/
|
|
1213
|
+
class ChartModule {
|
|
1214
|
+
}
|
|
1215
|
+
ChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1216
|
+
ChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartModule, declarations: [ChartComponent,
|
|
1217
|
+
TrendlineDirective,
|
|
1218
|
+
TrendlinesDirective,
|
|
1219
|
+
SegmentDirective,
|
|
1220
|
+
SegmentsDirective,
|
|
1221
|
+
SeriesDirective,
|
|
1222
|
+
SeriesCollectionDirective,
|
|
1223
|
+
StripLineDirective,
|
|
1224
|
+
StripLinesDirective,
|
|
1225
|
+
CategoryDirective,
|
|
1226
|
+
CategoriesDirective,
|
|
1227
|
+
MultiLevelLabelDirective,
|
|
1228
|
+
MultiLevelLabelsDirective,
|
|
1229
|
+
AxisDirective,
|
|
1230
|
+
AxesDirective,
|
|
1231
|
+
RowDirective,
|
|
1232
|
+
RowsDirective,
|
|
1233
|
+
ColumnDirective,
|
|
1234
|
+
ColumnsDirective,
|
|
1235
|
+
RangeColorSettingDirective,
|
|
1236
|
+
RangeColorSettingsDirective,
|
|
1237
|
+
AnnotationDirective,
|
|
1238
|
+
AnnotationsDirective,
|
|
1239
|
+
SelectedDataIndexDirective,
|
|
1240
|
+
SelectedDataIndexesDirective,
|
|
1241
|
+
IndicatorDirective,
|
|
1242
|
+
IndicatorsDirective], imports: [CommonModule], exports: [ChartComponent,
|
|
1243
|
+
TrendlineDirective,
|
|
1244
|
+
TrendlinesDirective,
|
|
1245
|
+
SegmentDirective,
|
|
1246
|
+
SegmentsDirective,
|
|
1247
|
+
SeriesDirective,
|
|
1248
|
+
SeriesCollectionDirective,
|
|
1249
|
+
StripLineDirective,
|
|
1250
|
+
StripLinesDirective,
|
|
1251
|
+
CategoryDirective,
|
|
1252
|
+
CategoriesDirective,
|
|
1253
|
+
MultiLevelLabelDirective,
|
|
1254
|
+
MultiLevelLabelsDirective,
|
|
1255
|
+
AxisDirective,
|
|
1256
|
+
AxesDirective,
|
|
1257
|
+
RowDirective,
|
|
1258
|
+
RowsDirective,
|
|
1259
|
+
ColumnDirective,
|
|
1260
|
+
ColumnsDirective,
|
|
1261
|
+
RangeColorSettingDirective,
|
|
1262
|
+
RangeColorSettingsDirective,
|
|
1263
|
+
AnnotationDirective,
|
|
1264
|
+
AnnotationsDirective,
|
|
1265
|
+
SelectedDataIndexDirective,
|
|
1266
|
+
SelectedDataIndexesDirective,
|
|
1267
|
+
IndicatorDirective,
|
|
1268
|
+
IndicatorsDirective] });
|
|
1269
|
+
ChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartModule, imports: [[CommonModule]] });
|
|
1270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartModule, decorators: [{
|
|
1271
|
+
type: NgModule,
|
|
1272
|
+
args: [{
|
|
1273
|
+
imports: [CommonModule],
|
|
1274
|
+
declarations: [
|
|
1275
|
+
ChartComponent,
|
|
1276
|
+
TrendlineDirective,
|
|
1277
|
+
TrendlinesDirective,
|
|
1278
|
+
SegmentDirective,
|
|
1279
|
+
SegmentsDirective,
|
|
1280
|
+
SeriesDirective,
|
|
1281
|
+
SeriesCollectionDirective,
|
|
1282
|
+
StripLineDirective,
|
|
1283
|
+
StripLinesDirective,
|
|
1284
|
+
CategoryDirective,
|
|
1285
|
+
CategoriesDirective,
|
|
1286
|
+
MultiLevelLabelDirective,
|
|
1287
|
+
MultiLevelLabelsDirective,
|
|
1288
|
+
AxisDirective,
|
|
1289
|
+
AxesDirective,
|
|
1290
|
+
RowDirective,
|
|
1291
|
+
RowsDirective,
|
|
1292
|
+
ColumnDirective,
|
|
1293
|
+
ColumnsDirective,
|
|
1294
|
+
RangeColorSettingDirective,
|
|
1295
|
+
RangeColorSettingsDirective,
|
|
1296
|
+
AnnotationDirective,
|
|
1297
|
+
AnnotationsDirective,
|
|
1298
|
+
SelectedDataIndexDirective,
|
|
1299
|
+
SelectedDataIndexesDirective,
|
|
1300
|
+
IndicatorDirective,
|
|
1301
|
+
IndicatorsDirective
|
|
1302
|
+
],
|
|
1303
|
+
exports: [
|
|
1304
|
+
ChartComponent,
|
|
1305
|
+
TrendlineDirective,
|
|
1306
|
+
TrendlinesDirective,
|
|
1307
|
+
SegmentDirective,
|
|
1308
|
+
SegmentsDirective,
|
|
1309
|
+
SeriesDirective,
|
|
1310
|
+
SeriesCollectionDirective,
|
|
1311
|
+
StripLineDirective,
|
|
1312
|
+
StripLinesDirective,
|
|
1313
|
+
CategoryDirective,
|
|
1314
|
+
CategoriesDirective,
|
|
1315
|
+
MultiLevelLabelDirective,
|
|
1316
|
+
MultiLevelLabelsDirective,
|
|
1317
|
+
AxisDirective,
|
|
1318
|
+
AxesDirective,
|
|
1319
|
+
RowDirective,
|
|
1320
|
+
RowsDirective,
|
|
1321
|
+
ColumnDirective,
|
|
1322
|
+
ColumnsDirective,
|
|
1323
|
+
RangeColorSettingDirective,
|
|
1324
|
+
RangeColorSettingsDirective,
|
|
1325
|
+
AnnotationDirective,
|
|
1326
|
+
AnnotationsDirective,
|
|
1327
|
+
SelectedDataIndexDirective,
|
|
1328
|
+
SelectedDataIndexesDirective,
|
|
1329
|
+
IndicatorDirective,
|
|
1330
|
+
IndicatorsDirective
|
|
1331
|
+
]
|
|
1332
|
+
}]
|
|
1333
|
+
}] });
|
|
1334
|
+
|
|
1335
|
+
const LineSeriesService = { provide: 'ChartsLineSeries', useValue: LineSeries };
|
|
1336
|
+
const ScatterSeriesService = { provide: 'ChartsScatterSeries', useValue: ScatterSeries };
|
|
1337
|
+
const ColumnSeriesService = { provide: 'ChartsColumnSeries', useValue: ColumnSeries };
|
|
1338
|
+
const SplineSeriesService = { provide: 'ChartsSplineSeries', useValue: SplineSeries };
|
|
1339
|
+
const SplineAreaSeriesService = { provide: 'ChartsSplineAreaSeries', useValue: SplineAreaSeries };
|
|
1340
|
+
const StripLineService = { provide: 'ChartsStripLine', useValue: StripLine };
|
|
1341
|
+
const AreaSeriesService = { provide: 'ChartsAreaSeries', useValue: AreaSeries };
|
|
1342
|
+
const ScrollBarService = { provide: 'ChartsScrollBar', useValue: ScrollBar };
|
|
1343
|
+
const StepLineSeriesService = { provide: 'ChartsStepLineSeries', useValue: StepLineSeries };
|
|
1344
|
+
const StepAreaSeriesService = { provide: 'ChartsStepAreaSeries', useValue: StepAreaSeries };
|
|
1345
|
+
const StackingColumnSeriesService = { provide: 'ChartsStackingColumnSeries', useValue: StackingColumnSeries };
|
|
1346
|
+
const StackingLineSeriesService = { provide: 'ChartsStackingLineSeries', useValue: StackingLineSeries };
|
|
1347
|
+
const StackingAreaSeriesService = { provide: 'ChartsStackingAreaSeries', useValue: StackingAreaSeries };
|
|
1348
|
+
const StackingStepAreaSeriesService = { provide: 'ChartsStackingStepAreaSeries', useValue: StackingStepAreaSeries };
|
|
1349
|
+
const BarSeriesService = { provide: 'ChartsBarSeries', useValue: BarSeries };
|
|
1350
|
+
const StackingBarSeriesService = { provide: 'ChartsStackingBarSeries', useValue: StackingBarSeries };
|
|
1351
|
+
const RangeColumnSeriesService = { provide: 'ChartsRangeColumnSeries', useValue: RangeColumnSeries };
|
|
1352
|
+
const BubbleSeriesService = { provide: 'ChartsBubbleSeries', useValue: BubbleSeries };
|
|
1353
|
+
const TooltipService = { provide: 'ChartsTooltip', useValue: Tooltip };
|
|
1354
|
+
const CrosshairService = { provide: 'ChartsCrosshair', useValue: Crosshair };
|
|
1355
|
+
const CategoryService = { provide: 'ChartsCategory', useValue: Category };
|
|
1356
|
+
const DateTimeService = { provide: 'ChartsDateTime', useValue: DateTime };
|
|
1357
|
+
const LogarithmicService = { provide: 'ChartsLogarithmic', useValue: Logarithmic };
|
|
1358
|
+
const LegendService = { provide: 'ChartsLegend', useValue: Legend };
|
|
1359
|
+
const ZoomService = { provide: 'ChartsZoom', useValue: Zoom };
|
|
1360
|
+
const DataLabelService = { provide: 'ChartsDataLabel', useValue: DataLabel };
|
|
1361
|
+
const SelectionService = { provide: 'ChartsSelection', useValue: Selection };
|
|
1362
|
+
const ChartAnnotationService = { provide: 'ChartsChartAnnotation', useValue: ChartAnnotation };
|
|
1363
|
+
const HiloSeriesService = { provide: 'ChartsHiloSeries', useValue: HiloSeries };
|
|
1364
|
+
const HiloOpenCloseSeriesService = { provide: 'ChartsHiloOpenCloseSeries', useValue: HiloOpenCloseSeries };
|
|
1365
|
+
const WaterfallSeriesService = { provide: 'ChartsWaterfallSeries', useValue: WaterfallSeries };
|
|
1366
|
+
const RangeAreaSeriesService = { provide: 'ChartsRangeAreaSeries', useValue: RangeAreaSeries };
|
|
1367
|
+
const RangeStepAreaSeriesService = { provide: 'ChartsRangeStepAreaSeries', useValue: RangeStepAreaSeries };
|
|
1368
|
+
const SplineRangeAreaSeriesService = { provide: 'ChartsSplineRangeAreaSeries', useValue: SplineRangeAreaSeries };
|
|
1369
|
+
const CandleSeriesService = { provide: 'ChartsCandleSeries', useValue: CandleSeries };
|
|
1370
|
+
const PolarSeriesService = { provide: 'ChartsPolarSeries', useValue: PolarSeries };
|
|
1371
|
+
const RadarSeriesService = { provide: 'ChartsRadarSeries', useValue: RadarSeries };
|
|
1372
|
+
const SmaIndicatorService = { provide: 'ChartsSmaIndicator', useValue: SmaIndicator };
|
|
1373
|
+
const TmaIndicatorService = { provide: 'ChartsTmaIndicator', useValue: TmaIndicator };
|
|
1374
|
+
const EmaIndicatorService = { provide: 'ChartsEmaIndicator', useValue: EmaIndicator };
|
|
1375
|
+
const AccumulationDistributionIndicatorService = { provide: 'ChartsAccumulationDistributionIndicator', useValue: AccumulationDistributionIndicator };
|
|
1376
|
+
const MacdIndicatorService = { provide: 'ChartsMacdIndicator', useValue: MacdIndicator };
|
|
1377
|
+
const AtrIndicatorService = { provide: 'ChartsAtrIndicator', useValue: AtrIndicator };
|
|
1378
|
+
const RsiIndicatorService = { provide: 'ChartsRsiIndicator', useValue: RsiIndicator };
|
|
1379
|
+
const MomentumIndicatorService = { provide: 'ChartsMomentumIndicator', useValue: MomentumIndicator };
|
|
1380
|
+
const StochasticIndicatorService = { provide: 'ChartsStochasticIndicator', useValue: StochasticIndicator };
|
|
1381
|
+
const BollingerBandsService = { provide: 'ChartsBollingerBands', useValue: BollingerBands };
|
|
1382
|
+
const BoxAndWhiskerSeriesService = { provide: 'ChartsBoxAndWhiskerSeries', useValue: BoxAndWhiskerSeries };
|
|
1383
|
+
const HistogramSeriesService = { provide: 'ChartsHistogramSeries', useValue: HistogramSeries };
|
|
1384
|
+
const ErrorBarService = { provide: 'ChartsErrorBar', useValue: ErrorBar };
|
|
1385
|
+
const TrendlinesService = { provide: 'ChartsTrendlines', useValue: Trendlines };
|
|
1386
|
+
const DateTimeCategoryService = { provide: 'ChartsDateTimeCategory', useValue: DateTimeCategory };
|
|
1387
|
+
const MultiColoredLineSeriesService = { provide: 'ChartsMultiColoredLineSeries', useValue: MultiColoredLineSeries };
|
|
1388
|
+
const MultiColoredAreaSeriesService = { provide: 'ChartsMultiColoredAreaSeries', useValue: MultiColoredAreaSeries };
|
|
1389
|
+
const MultiLevelLabelService = { provide: 'ChartsMultiLevelLabel', useValue: MultiLevelLabel };
|
|
1390
|
+
const ParetoSeriesService = { provide: 'ChartsParetoSeries', useValue: ParetoSeries };
|
|
1391
|
+
const ExportService = { provide: 'ChartsExport', useValue: Export };
|
|
1392
|
+
const DataEditingService = { provide: 'ChartsDataEditing', useValue: DataEditing };
|
|
1393
|
+
const HighlightService = { provide: 'ChartsHighlight', useValue: Highlight };
|
|
1394
|
+
const LastValueLabelService = { provide: 'ChartsLastValueLabel', useValue: LastValueLabel };
|
|
1395
|
+
/**
|
|
1396
|
+
* NgModule definition for the Chart component with providers.
|
|
1397
|
+
*/
|
|
1398
|
+
class ChartAllModule {
|
|
1399
|
+
}
|
|
1400
|
+
ChartAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1401
|
+
ChartAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartAllModule, imports: [CommonModule, ChartModule], exports: [ChartModule] });
|
|
1402
|
+
ChartAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartAllModule, providers: [
|
|
1403
|
+
LineSeriesService,
|
|
1404
|
+
ScatterSeriesService,
|
|
1405
|
+
ColumnSeriesService,
|
|
1406
|
+
SplineSeriesService,
|
|
1407
|
+
SplineAreaSeriesService,
|
|
1408
|
+
StripLineService,
|
|
1409
|
+
AreaSeriesService,
|
|
1410
|
+
ScrollBarService,
|
|
1411
|
+
StepLineSeriesService,
|
|
1412
|
+
StepAreaSeriesService,
|
|
1413
|
+
StackingColumnSeriesService,
|
|
1414
|
+
StackingLineSeriesService,
|
|
1415
|
+
StackingAreaSeriesService,
|
|
1416
|
+
StackingStepAreaSeriesService,
|
|
1417
|
+
BarSeriesService,
|
|
1418
|
+
StackingBarSeriesService,
|
|
1419
|
+
RangeColumnSeriesService,
|
|
1420
|
+
BubbleSeriesService,
|
|
1421
|
+
TooltipService,
|
|
1422
|
+
CrosshairService,
|
|
1423
|
+
CategoryService,
|
|
1424
|
+
DateTimeService,
|
|
1425
|
+
LogarithmicService,
|
|
1426
|
+
LegendService,
|
|
1427
|
+
ZoomService,
|
|
1428
|
+
DataLabelService,
|
|
1429
|
+
SelectionService,
|
|
1430
|
+
ChartAnnotationService,
|
|
1431
|
+
HiloSeriesService,
|
|
1432
|
+
HiloOpenCloseSeriesService,
|
|
1433
|
+
WaterfallSeriesService,
|
|
1434
|
+
RangeAreaSeriesService,
|
|
1435
|
+
RangeStepAreaSeriesService,
|
|
1436
|
+
SplineRangeAreaSeriesService,
|
|
1437
|
+
CandleSeriesService,
|
|
1438
|
+
PolarSeriesService,
|
|
1439
|
+
RadarSeriesService,
|
|
1440
|
+
SmaIndicatorService,
|
|
1441
|
+
TmaIndicatorService,
|
|
1442
|
+
EmaIndicatorService,
|
|
1443
|
+
AccumulationDistributionIndicatorService,
|
|
1444
|
+
MacdIndicatorService,
|
|
1445
|
+
AtrIndicatorService,
|
|
1446
|
+
RsiIndicatorService,
|
|
1447
|
+
MomentumIndicatorService,
|
|
1448
|
+
StochasticIndicatorService,
|
|
1449
|
+
BollingerBandsService,
|
|
1450
|
+
BoxAndWhiskerSeriesService,
|
|
1451
|
+
HistogramSeriesService,
|
|
1452
|
+
ErrorBarService,
|
|
1453
|
+
TrendlinesService,
|
|
1454
|
+
DateTimeCategoryService,
|
|
1455
|
+
MultiColoredLineSeriesService,
|
|
1456
|
+
MultiColoredAreaSeriesService,
|
|
1457
|
+
MultiLevelLabelService,
|
|
1458
|
+
ParetoSeriesService,
|
|
1459
|
+
ExportService,
|
|
1460
|
+
DataEditingService,
|
|
1461
|
+
HighlightService,
|
|
1462
|
+
LastValueLabelService
|
|
1463
|
+
], imports: [[CommonModule, ChartModule], ChartModule] });
|
|
1464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartAllModule, decorators: [{
|
|
1465
|
+
type: NgModule,
|
|
1466
|
+
args: [{
|
|
1467
|
+
imports: [CommonModule, ChartModule],
|
|
1468
|
+
exports: [
|
|
1469
|
+
ChartModule
|
|
1470
|
+
],
|
|
1471
|
+
providers: [
|
|
1472
|
+
LineSeriesService,
|
|
1473
|
+
ScatterSeriesService,
|
|
1474
|
+
ColumnSeriesService,
|
|
1475
|
+
SplineSeriesService,
|
|
1476
|
+
SplineAreaSeriesService,
|
|
1477
|
+
StripLineService,
|
|
1478
|
+
AreaSeriesService,
|
|
1479
|
+
ScrollBarService,
|
|
1480
|
+
StepLineSeriesService,
|
|
1481
|
+
StepAreaSeriesService,
|
|
1482
|
+
StackingColumnSeriesService,
|
|
1483
|
+
StackingLineSeriesService,
|
|
1484
|
+
StackingAreaSeriesService,
|
|
1485
|
+
StackingStepAreaSeriesService,
|
|
1486
|
+
BarSeriesService,
|
|
1487
|
+
StackingBarSeriesService,
|
|
1488
|
+
RangeColumnSeriesService,
|
|
1489
|
+
BubbleSeriesService,
|
|
1490
|
+
TooltipService,
|
|
1491
|
+
CrosshairService,
|
|
1492
|
+
CategoryService,
|
|
1493
|
+
DateTimeService,
|
|
1494
|
+
LogarithmicService,
|
|
1495
|
+
LegendService,
|
|
1496
|
+
ZoomService,
|
|
1497
|
+
DataLabelService,
|
|
1498
|
+
SelectionService,
|
|
1499
|
+
ChartAnnotationService,
|
|
1500
|
+
HiloSeriesService,
|
|
1501
|
+
HiloOpenCloseSeriesService,
|
|
1502
|
+
WaterfallSeriesService,
|
|
1503
|
+
RangeAreaSeriesService,
|
|
1504
|
+
RangeStepAreaSeriesService,
|
|
1505
|
+
SplineRangeAreaSeriesService,
|
|
1506
|
+
CandleSeriesService,
|
|
1507
|
+
PolarSeriesService,
|
|
1508
|
+
RadarSeriesService,
|
|
1509
|
+
SmaIndicatorService,
|
|
1510
|
+
TmaIndicatorService,
|
|
1511
|
+
EmaIndicatorService,
|
|
1512
|
+
AccumulationDistributionIndicatorService,
|
|
1513
|
+
MacdIndicatorService,
|
|
1514
|
+
AtrIndicatorService,
|
|
1515
|
+
RsiIndicatorService,
|
|
1516
|
+
MomentumIndicatorService,
|
|
1517
|
+
StochasticIndicatorService,
|
|
1518
|
+
BollingerBandsService,
|
|
1519
|
+
BoxAndWhiskerSeriesService,
|
|
1520
|
+
HistogramSeriesService,
|
|
1521
|
+
ErrorBarService,
|
|
1522
|
+
TrendlinesService,
|
|
1523
|
+
DateTimeCategoryService,
|
|
1524
|
+
MultiColoredLineSeriesService,
|
|
1525
|
+
MultiColoredAreaSeriesService,
|
|
1526
|
+
MultiLevelLabelService,
|
|
1527
|
+
ParetoSeriesService,
|
|
1528
|
+
ExportService,
|
|
1529
|
+
DataEditingService,
|
|
1530
|
+
HighlightService,
|
|
1531
|
+
LastValueLabelService
|
|
1532
|
+
]
|
|
1533
|
+
}]
|
|
1534
|
+
}] });
|
|
1535
|
+
|
|
1536
|
+
let input$l = ['accessibility', 'animation', 'applyPattern', 'border', 'borderRadius', 'dashArray', 'dataLabel', 'dataSource', 'emptyPointSettings', 'enableTooltip', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'funnelMode', 'gapRatio', 'groupMode', 'groupTo', 'height', 'innerRadius', 'legendImageUrl', 'legendShape', 'name', 'neckHeight', 'neckWidth', 'opacity', 'palettes', 'pointColorMapping', 'pyramidMode', 'query', 'radius', 'selectionStyle', 'startAngle', 'tooltipMappingName', 'type', 'visible', 'width', 'xName', 'yName'];
|
|
1537
|
+
let outputs$t = [];
|
|
1538
|
+
/**
|
|
1539
|
+
* AccumulationSeries Directive
|
|
1540
|
+
* ```html
|
|
1541
|
+
* <e-accumulation-series-collection>
|
|
1542
|
+
* <e-accumulation-series></e-accumulation-series>
|
|
1543
|
+
* </e-accumulation-series-collection>
|
|
1544
|
+
* ```
|
|
1545
|
+
*/
|
|
1546
|
+
class AccumulationSeriesDirective extends ComplexBase {
|
|
1547
|
+
constructor(viewContainerRef) {
|
|
1548
|
+
super();
|
|
1549
|
+
this.viewContainerRef = viewContainerRef;
|
|
1550
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
1551
|
+
this.registerEvents(outputs$t);
|
|
1552
|
+
this.directivePropList = input$l;
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
AccumulationSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1556
|
+
AccumulationSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AccumulationSeriesDirective, selector: "e-accumulation-series-collection>e-accumulation-series", inputs: { accessibility: "accessibility", animation: "animation", applyPattern: "applyPattern", border: "border", borderRadius: "borderRadius", dashArray: "dashArray", dataLabel: "dataLabel", dataSource: "dataSource", emptyPointSettings: "emptyPointSettings", enableTooltip: "enableTooltip", endAngle: "endAngle", explode: "explode", explodeAll: "explodeAll", explodeIndex: "explodeIndex", explodeOffset: "explodeOffset", funnelMode: "funnelMode", gapRatio: "gapRatio", groupMode: "groupMode", groupTo: "groupTo", height: "height", innerRadius: "innerRadius", legendImageUrl: "legendImageUrl", legendShape: "legendShape", name: "name", neckHeight: "neckHeight", neckWidth: "neckWidth", opacity: "opacity", palettes: "palettes", pointColorMapping: "pointColorMapping", pyramidMode: "pyramidMode", query: "query", radius: "radius", selectionStyle: "selectionStyle", startAngle: "startAngle", tooltipMappingName: "tooltipMappingName", type: "type", visible: "visible", width: "width", xName: "xName", yName: "yName" }, queries: [{ propertyName: "dataLabel_template", first: true, predicate: ["dataLabelTemplate"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
1557
|
+
__decorate([
|
|
1558
|
+
Template()
|
|
1559
|
+
], AccumulationSeriesDirective.prototype, "dataLabel_template", void 0);
|
|
1560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationSeriesDirective, decorators: [{
|
|
1561
|
+
type: Directive,
|
|
1562
|
+
args: [{
|
|
1563
|
+
selector: 'e-accumulation-series-collection>e-accumulation-series',
|
|
1564
|
+
inputs: input$l,
|
|
1565
|
+
outputs: outputs$t,
|
|
1566
|
+
queries: {}
|
|
1567
|
+
}]
|
|
1568
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { dataLabel_template: [{
|
|
1569
|
+
type: ContentChild,
|
|
1570
|
+
args: ['dataLabelTemplate']
|
|
1571
|
+
}] } });
|
|
1572
|
+
/**
|
|
1573
|
+
* AccumulationSeries Array Directive
|
|
1574
|
+
* @private
|
|
1575
|
+
*/
|
|
1576
|
+
class AccumulationSeriesCollectionDirective extends ArrayBase {
|
|
1577
|
+
constructor() {
|
|
1578
|
+
super('series');
|
|
1579
|
+
}
|
|
1580
|
+
}
|
|
1581
|
+
AccumulationSeriesCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationSeriesCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1582
|
+
AccumulationSeriesCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AccumulationSeriesCollectionDirective, selector: "ej-accumulationchart>e-accumulation-series-collection", queries: [{ propertyName: "children", predicate: AccumulationSeriesDirective }], usesInheritance: true, ngImport: i0 });
|
|
1583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationSeriesCollectionDirective, decorators: [{
|
|
1584
|
+
type: Directive,
|
|
1585
|
+
args: [{
|
|
1586
|
+
selector: 'ej-accumulationchart>e-accumulation-series-collection',
|
|
1587
|
+
queries: {
|
|
1588
|
+
children: new ContentChildren(AccumulationSeriesDirective)
|
|
1589
|
+
},
|
|
1590
|
+
}]
|
|
1591
|
+
}], ctorParameters: function () { return []; } });
|
|
1592
|
+
|
|
1593
|
+
let input$k = ['content', 'coordinateUnits', 'description', 'horizontalAlignment', 'region', 'verticalAlignment', 'x', 'y'];
|
|
1594
|
+
let outputs$s = [];
|
|
1595
|
+
/**
|
|
1596
|
+
* AccumulationAnnotations Directive
|
|
1597
|
+
* ```html
|
|
1598
|
+
* <e-accumulation-annotations>
|
|
1599
|
+
* <e-accumulation-annotation></e-accumulation-annotation>
|
|
1600
|
+
* </e-accumulation-annotations>
|
|
1601
|
+
* ```
|
|
1602
|
+
*/
|
|
1603
|
+
class AccumulationAnnotationDirective extends ComplexBase {
|
|
1604
|
+
constructor(viewContainerRef) {
|
|
1605
|
+
super();
|
|
1606
|
+
this.viewContainerRef = viewContainerRef;
|
|
1607
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
1608
|
+
this.registerEvents(outputs$s);
|
|
1609
|
+
this.directivePropList = input$k;
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
AccumulationAnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationAnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1613
|
+
AccumulationAnnotationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AccumulationAnnotationDirective, selector: "e-accumulation-annotations>e-accumulation-annotation", inputs: { content: "content", coordinateUnits: "coordinateUnits", description: "description", horizontalAlignment: "horizontalAlignment", region: "region", verticalAlignment: "verticalAlignment", x: "x", y: "y" }, queries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
1614
|
+
__decorate([
|
|
1615
|
+
Template()
|
|
1616
|
+
], AccumulationAnnotationDirective.prototype, "content", void 0);
|
|
1617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationAnnotationDirective, decorators: [{
|
|
1618
|
+
type: Directive,
|
|
1619
|
+
args: [{
|
|
1620
|
+
selector: 'e-accumulation-annotations>e-accumulation-annotation',
|
|
1621
|
+
inputs: input$k,
|
|
1622
|
+
outputs: outputs$s,
|
|
1623
|
+
queries: {}
|
|
1624
|
+
}]
|
|
1625
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
|
1626
|
+
type: ContentChild,
|
|
1627
|
+
args: ['content']
|
|
1628
|
+
}] } });
|
|
1629
|
+
/**
|
|
1630
|
+
* AccumulationAnnotation Array Directive
|
|
1631
|
+
* @private
|
|
1632
|
+
*/
|
|
1633
|
+
class AccumulationAnnotationsDirective extends ArrayBase {
|
|
1634
|
+
constructor() {
|
|
1635
|
+
super('annotations');
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
AccumulationAnnotationsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationAnnotationsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1639
|
+
AccumulationAnnotationsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AccumulationAnnotationsDirective, selector: "ej-accumulationchart>e-accumulation-annotations", queries: [{ propertyName: "children", predicate: AccumulationAnnotationDirective }], usesInheritance: true, ngImport: i0 });
|
|
1640
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationAnnotationsDirective, decorators: [{
|
|
1641
|
+
type: Directive,
|
|
1642
|
+
args: [{
|
|
1643
|
+
selector: 'ej-accumulationchart>e-accumulation-annotations',
|
|
1644
|
+
queries: {
|
|
1645
|
+
children: new ContentChildren(AccumulationAnnotationDirective)
|
|
1646
|
+
},
|
|
1647
|
+
}]
|
|
1648
|
+
}], ctorParameters: function () { return []; } });
|
|
1649
|
+
|
|
1650
|
+
const inputs$7 = ['accessibility', 'allowExport', 'annotations', 'background', 'backgroundImage', 'border', 'center', 'centerLabel', 'currencyCode', 'dataSource', 'enableAnimation', 'enableBorderOnMouseMove', 'enableExport', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableSmartLabels', 'focusBorderColor', 'focusBorderMargin', 'focusBorderWidth', 'height', 'highlightColor', 'highlightMode', 'highlightPattern', 'isMultiSelect', 'legendSettings', 'locale', 'margin', 'noDataTemplate', 'selectedDataIndexes', 'selectionMode', 'selectionPattern', 'series', 'subTitle', 'subTitleStyle', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width'];
|
|
1651
|
+
const outputs$r = ['afterExport', 'animationComplete', 'annotationRender', 'beforeExport', 'beforePrint', 'beforeResize', 'chartDoubleClick', 'chartMouseClick', 'chartMouseDown', 'chartMouseLeave', 'chartMouseMove', 'chartMouseUp', 'legendClick', 'legendRender', 'load', 'loaded', 'pointClick', 'pointMove', 'pointRender', 'resized', 'selectionComplete', 'seriesRender', 'textRender', 'tooltipRender', 'dataSourceChange'];
|
|
1652
|
+
const twoWays$7 = ['dataSource'];
|
|
1653
|
+
/**
|
|
1654
|
+
* AccumulationChart Component
|
|
1655
|
+
* ```html
|
|
1656
|
+
* <ejs-accumulationchart></ejs-accumulationchart>
|
|
1657
|
+
* ```
|
|
1658
|
+
*/
|
|
1659
|
+
let AccumulationChartComponent = class AccumulationChartComponent extends AccumulationChart {
|
|
1660
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
1661
|
+
super();
|
|
1662
|
+
this.ngEle = ngEle;
|
|
1663
|
+
this.srenderer = srenderer;
|
|
1664
|
+
this.viewContainerRef = viewContainerRef;
|
|
1665
|
+
this.injector = injector;
|
|
1666
|
+
this.tags = ['series', 'annotations'];
|
|
1667
|
+
this.element = this.ngEle.nativeElement;
|
|
1668
|
+
this.injectedModules = this.injectedModules || [];
|
|
1669
|
+
try {
|
|
1670
|
+
let mod = this.injector.get('ChartsPieSeries');
|
|
1671
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1672
|
+
this.injectedModules.push(mod);
|
|
1673
|
+
}
|
|
1674
|
+
}
|
|
1675
|
+
catch { }
|
|
1676
|
+
try {
|
|
1677
|
+
let mod = this.injector.get('ChartsFunnelSeries');
|
|
1678
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1679
|
+
this.injectedModules.push(mod);
|
|
1680
|
+
}
|
|
1681
|
+
}
|
|
1682
|
+
catch { }
|
|
1683
|
+
try {
|
|
1684
|
+
let mod = this.injector.get('ChartsPyramidSeries');
|
|
1685
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1686
|
+
this.injectedModules.push(mod);
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1689
|
+
catch { }
|
|
1690
|
+
try {
|
|
1691
|
+
let mod = this.injector.get('ChartsAccumulationTooltip');
|
|
1692
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1693
|
+
this.injectedModules.push(mod);
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1696
|
+
catch { }
|
|
1697
|
+
try {
|
|
1698
|
+
let mod = this.injector.get('ChartsAccumulationLegend');
|
|
1699
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1700
|
+
this.injectedModules.push(mod);
|
|
1701
|
+
}
|
|
1702
|
+
}
|
|
1703
|
+
catch { }
|
|
1704
|
+
try {
|
|
1705
|
+
let mod = this.injector.get('ChartsAccumulationSelection');
|
|
1706
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1707
|
+
this.injectedModules.push(mod);
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
catch { }
|
|
1711
|
+
try {
|
|
1712
|
+
let mod = this.injector.get('ChartsAccumulationHighlight');
|
|
1713
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1714
|
+
this.injectedModules.push(mod);
|
|
1715
|
+
}
|
|
1716
|
+
}
|
|
1717
|
+
catch { }
|
|
1718
|
+
try {
|
|
1719
|
+
let mod = this.injector.get('ChartsAccumulationDataLabel');
|
|
1720
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1721
|
+
this.injectedModules.push(mod);
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1724
|
+
catch { }
|
|
1725
|
+
try {
|
|
1726
|
+
let mod = this.injector.get('ChartsAccumulationAnnotation');
|
|
1727
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1728
|
+
this.injectedModules.push(mod);
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1731
|
+
catch { }
|
|
1732
|
+
try {
|
|
1733
|
+
let mod = this.injector.get('ChartsExport');
|
|
1734
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1735
|
+
this.injectedModules.push(mod);
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
catch { }
|
|
1739
|
+
this.registerEvents(outputs$r);
|
|
1740
|
+
this.addTwoWay.call(this, twoWays$7);
|
|
1741
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
1742
|
+
this.context = new ComponentBase();
|
|
1743
|
+
}
|
|
1744
|
+
ngOnInit() {
|
|
1745
|
+
this.context.ngOnInit(this);
|
|
1746
|
+
}
|
|
1747
|
+
ngAfterViewInit() {
|
|
1748
|
+
this.context.ngAfterViewInit(this);
|
|
1749
|
+
}
|
|
1750
|
+
ngOnDestroy() {
|
|
1751
|
+
this.context.ngOnDestroy(this);
|
|
1752
|
+
}
|
|
1753
|
+
ngAfterContentChecked() {
|
|
1754
|
+
this.tagObjects[0].instance = this.childSeries;
|
|
1755
|
+
if (this.childAnnotations) {
|
|
1756
|
+
this.tagObjects[1].instance = this.childAnnotations;
|
|
1757
|
+
}
|
|
1758
|
+
this.context.ngAfterContentChecked(this);
|
|
1759
|
+
}
|
|
1760
|
+
};
|
|
1761
|
+
AccumulationChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
1762
|
+
AccumulationChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: AccumulationChartComponent, selector: "ejs-accumulationchart", inputs: { accessibility: "accessibility", allowExport: "allowExport", annotations: "annotations", background: "background", backgroundImage: "backgroundImage", border: "border", center: "center", centerLabel: "centerLabel", currencyCode: "currencyCode", dataSource: "dataSource", enableAnimation: "enableAnimation", enableBorderOnMouseMove: "enableBorderOnMouseMove", enableExport: "enableExport", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSmartLabels: "enableSmartLabels", focusBorderColor: "focusBorderColor", focusBorderMargin: "focusBorderMargin", focusBorderWidth: "focusBorderWidth", height: "height", highlightColor: "highlightColor", highlightMode: "highlightMode", highlightPattern: "highlightPattern", isMultiSelect: "isMultiSelect", legendSettings: "legendSettings", locale: "locale", margin: "margin", noDataTemplate: "noDataTemplate", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", selectionPattern: "selectionPattern", series: "series", subTitle: "subTitle", subTitleStyle: "subTitleStyle", theme: "theme", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", useGroupingSeparator: "useGroupingSeparator", width: "width" }, outputs: { afterExport: "afterExport", animationComplete: "animationComplete", annotationRender: "annotationRender", beforeExport: "beforeExport", beforePrint: "beforePrint", beforeResize: "beforeResize", chartDoubleClick: "chartDoubleClick", chartMouseClick: "chartMouseClick", chartMouseDown: "chartMouseDown", chartMouseLeave: "chartMouseLeave", chartMouseMove: "chartMouseMove", chartMouseUp: "chartMouseUp", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", pointClick: "pointClick", pointMove: "pointMove", pointRender: "pointRender", resized: "resized", selectionComplete: "selectionComplete", seriesRender: "seriesRender", textRender: "textRender", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: AccumulationSeriesCollectionDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: AccumulationAnnotationsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1763
|
+
__decorate([
|
|
1764
|
+
Template()
|
|
1765
|
+
], AccumulationChartComponent.prototype, "tooltip_template", void 0);
|
|
1766
|
+
AccumulationChartComponent = __decorate([
|
|
1767
|
+
ComponentMixins([ComponentBase])
|
|
1768
|
+
], AccumulationChartComponent);
|
|
1769
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartComponent, decorators: [{
|
|
1770
|
+
type: Component,
|
|
1771
|
+
args: [{
|
|
1772
|
+
selector: 'ejs-accumulationchart',
|
|
1773
|
+
inputs: inputs$7,
|
|
1774
|
+
outputs: outputs$r,
|
|
1775
|
+
template: '',
|
|
1776
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1777
|
+
queries: {
|
|
1778
|
+
childSeries: new ContentChild(AccumulationSeriesCollectionDirective),
|
|
1779
|
+
childAnnotations: new ContentChild(AccumulationAnnotationsDirective)
|
|
1780
|
+
}
|
|
1781
|
+
}]
|
|
1782
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
1783
|
+
type: ContentChild,
|
|
1784
|
+
args: ['tooltipTemplate']
|
|
1785
|
+
}] } });
|
|
1786
|
+
|
|
1787
|
+
/**
|
|
1788
|
+
* NgModule definition for the AccumulationChart component.
|
|
1789
|
+
*/
|
|
1790
|
+
class AccumulationChartModule {
|
|
1791
|
+
}
|
|
1792
|
+
AccumulationChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1793
|
+
AccumulationChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartModule, declarations: [AccumulationChartComponent,
|
|
1794
|
+
AccumulationSeriesDirective,
|
|
1795
|
+
AccumulationSeriesCollectionDirective,
|
|
1796
|
+
AccumulationAnnotationDirective,
|
|
1797
|
+
AccumulationAnnotationsDirective], imports: [CommonModule], exports: [AccumulationChartComponent,
|
|
1798
|
+
AccumulationSeriesDirective,
|
|
1799
|
+
AccumulationSeriesCollectionDirective,
|
|
1800
|
+
AccumulationAnnotationDirective,
|
|
1801
|
+
AccumulationAnnotationsDirective] });
|
|
1802
|
+
AccumulationChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartModule, imports: [[CommonModule]] });
|
|
1803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartModule, decorators: [{
|
|
1804
|
+
type: NgModule,
|
|
1805
|
+
args: [{
|
|
1806
|
+
imports: [CommonModule],
|
|
1807
|
+
declarations: [
|
|
1808
|
+
AccumulationChartComponent,
|
|
1809
|
+
AccumulationSeriesDirective,
|
|
1810
|
+
AccumulationSeriesCollectionDirective,
|
|
1811
|
+
AccumulationAnnotationDirective,
|
|
1812
|
+
AccumulationAnnotationsDirective
|
|
1813
|
+
],
|
|
1814
|
+
exports: [
|
|
1815
|
+
AccumulationChartComponent,
|
|
1816
|
+
AccumulationSeriesDirective,
|
|
1817
|
+
AccumulationSeriesCollectionDirective,
|
|
1818
|
+
AccumulationAnnotationDirective,
|
|
1819
|
+
AccumulationAnnotationsDirective
|
|
1820
|
+
]
|
|
1821
|
+
}]
|
|
1822
|
+
}] });
|
|
1823
|
+
|
|
1824
|
+
const PieSeriesService = { provide: 'ChartsPieSeries', useValue: PieSeries };
|
|
1825
|
+
const FunnelSeriesService = { provide: 'ChartsFunnelSeries', useValue: FunnelSeries };
|
|
1826
|
+
const PyramidSeriesService = { provide: 'ChartsPyramidSeries', useValue: PyramidSeries };
|
|
1827
|
+
const AccumulationTooltipService = { provide: 'ChartsAccumulationTooltip', useValue: AccumulationTooltip };
|
|
1828
|
+
const AccumulationLegendService = { provide: 'ChartsAccumulationLegend', useValue: AccumulationLegend };
|
|
1829
|
+
const AccumulationSelectionService = { provide: 'ChartsAccumulationSelection', useValue: AccumulationSelection };
|
|
1830
|
+
const AccumulationHighlightService = { provide: 'ChartsAccumulationHighlight', useValue: AccumulationHighlight };
|
|
1831
|
+
const AccumulationDataLabelService = { provide: 'ChartsAccumulationDataLabel', useValue: AccumulationDataLabel };
|
|
1832
|
+
const AccumulationAnnotationService = { provide: 'ChartsAccumulationAnnotation', useValue: AccumulationAnnotation };
|
|
1833
|
+
/**
|
|
1834
|
+
* NgModule definition for the AccumulationChart component with providers.
|
|
1835
|
+
*/
|
|
1836
|
+
class AccumulationChartAllModule {
|
|
1837
|
+
}
|
|
1838
|
+
AccumulationChartAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1839
|
+
AccumulationChartAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartAllModule, imports: [CommonModule, AccumulationChartModule], exports: [AccumulationChartModule] });
|
|
1840
|
+
AccumulationChartAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartAllModule, providers: [
|
|
1841
|
+
PieSeriesService,
|
|
1842
|
+
FunnelSeriesService,
|
|
1843
|
+
PyramidSeriesService,
|
|
1844
|
+
AccumulationTooltipService,
|
|
1845
|
+
AccumulationLegendService,
|
|
1846
|
+
AccumulationSelectionService,
|
|
1847
|
+
AccumulationHighlightService,
|
|
1848
|
+
AccumulationDataLabelService,
|
|
1849
|
+
AccumulationAnnotationService
|
|
1850
|
+
], imports: [[CommonModule, AccumulationChartModule], AccumulationChartModule] });
|
|
1851
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartAllModule, decorators: [{
|
|
1852
|
+
type: NgModule,
|
|
1853
|
+
args: [{
|
|
1854
|
+
imports: [CommonModule, AccumulationChartModule],
|
|
1855
|
+
exports: [
|
|
1856
|
+
AccumulationChartModule
|
|
1857
|
+
],
|
|
1858
|
+
providers: [
|
|
1859
|
+
PieSeriesService,
|
|
1860
|
+
FunnelSeriesService,
|
|
1861
|
+
PyramidSeriesService,
|
|
1862
|
+
AccumulationTooltipService,
|
|
1863
|
+
AccumulationLegendService,
|
|
1864
|
+
AccumulationSelectionService,
|
|
1865
|
+
AccumulationHighlightService,
|
|
1866
|
+
AccumulationDataLabelService,
|
|
1867
|
+
AccumulationAnnotationService
|
|
1868
|
+
]
|
|
1869
|
+
}]
|
|
1870
|
+
}] });
|
|
1871
|
+
|
|
1872
|
+
let input$j = ['animation', 'border', 'dashArray', 'dataSource', 'fill', 'opacity', 'query', 'type', 'width', 'xName', 'yName'];
|
|
1873
|
+
let outputs$q = [];
|
|
1874
|
+
/**
|
|
1875
|
+
* RangenavigatorSeries Directive
|
|
1876
|
+
* ```html
|
|
1877
|
+
* <e-rangenavigator-series-collection>
|
|
1878
|
+
* <e-rangenavigator-series></e-rangenavigator-series>
|
|
1879
|
+
* </e-rangenavigator-series-collection>
|
|
1880
|
+
* ```
|
|
1881
|
+
*/
|
|
1882
|
+
class RangenavigatorSeriesDirective extends ComplexBase {
|
|
1883
|
+
constructor(viewContainerRef) {
|
|
1884
|
+
super();
|
|
1885
|
+
this.viewContainerRef = viewContainerRef;
|
|
1886
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
1887
|
+
this.registerEvents(outputs$q);
|
|
1888
|
+
this.directivePropList = input$j;
|
|
1889
|
+
}
|
|
1890
|
+
}
|
|
1891
|
+
RangenavigatorSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangenavigatorSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1892
|
+
RangenavigatorSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangenavigatorSeriesDirective, selector: "e-rangenavigator-series-collection>e-rangenavigator-series", inputs: { animation: "animation", border: "border", dashArray: "dashArray", dataSource: "dataSource", fill: "fill", opacity: "opacity", query: "query", type: "type", width: "width", xName: "xName", yName: "yName" }, usesInheritance: true, ngImport: i0 });
|
|
1893
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangenavigatorSeriesDirective, decorators: [{
|
|
1894
|
+
type: Directive,
|
|
1895
|
+
args: [{
|
|
1896
|
+
selector: 'e-rangenavigator-series-collection>e-rangenavigator-series',
|
|
1897
|
+
inputs: input$j,
|
|
1898
|
+
outputs: outputs$q,
|
|
1899
|
+
queries: {}
|
|
1900
|
+
}]
|
|
1901
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
1902
|
+
/**
|
|
1903
|
+
* RangenavigatorSeries Array Directive
|
|
1904
|
+
* @private
|
|
1905
|
+
*/
|
|
1906
|
+
class RangenavigatorSeriesCollectionDirective extends ArrayBase {
|
|
1907
|
+
constructor() {
|
|
1908
|
+
super('series');
|
|
1909
|
+
}
|
|
1910
|
+
}
|
|
1911
|
+
RangenavigatorSeriesCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangenavigatorSeriesCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1912
|
+
RangenavigatorSeriesCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangenavigatorSeriesCollectionDirective, selector: "ej-rangenavigator>e-rangenavigator-series-collection", queries: [{ propertyName: "children", predicate: RangenavigatorSeriesDirective }], usesInheritance: true, ngImport: i0 });
|
|
1913
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangenavigatorSeriesCollectionDirective, decorators: [{
|
|
1914
|
+
type: Directive,
|
|
1915
|
+
args: [{
|
|
1916
|
+
selector: 'ej-rangenavigator>e-rangenavigator-series-collection',
|
|
1917
|
+
queries: {
|
|
1918
|
+
children: new ContentChildren(RangenavigatorSeriesDirective)
|
|
1919
|
+
},
|
|
1920
|
+
}]
|
|
1921
|
+
}], ctorParameters: function () { return []; } });
|
|
1922
|
+
|
|
1923
|
+
const inputs$6 = ['allowIntervalData', 'allowSnapping', 'animationDuration', 'background', 'dataSource', 'disableRangeSelector', 'enableDeferredUpdate', 'enableGrouping', 'enablePersistence', 'enableRtl', 'groupBy', 'height', 'interval', 'intervalType', 'labelFormat', 'labelIntersectAction', 'labelPlacement', 'labelPosition', 'labelStyle', 'locale', 'logBase', 'majorGridLines', 'majorTickLines', 'margin', 'maximum', 'minimum', 'navigatorBorder', 'navigatorStyleSettings', 'periodSelectorSettings', 'query', 'secondaryLabelAlignment', 'series', 'skeleton', 'skeletonType', 'theme', 'tickPosition', 'tooltip', 'useGroupingSeparator', 'value', 'valueType', 'width', 'xName', 'yName'];
|
|
1924
|
+
const outputs$p = ['beforePrint', 'beforeResize', 'changed', 'labelRender', 'load', 'loaded', 'resized', 'selectorRender', 'tooltipRender', 'dataSourceChange'];
|
|
1925
|
+
const twoWays$6 = ['dataSource'];
|
|
1926
|
+
/**
|
|
1927
|
+
* RangeNavigator Component
|
|
1928
|
+
* ```html
|
|
1929
|
+
* <ejs-rangenavigator></ejs-rangenavigator>
|
|
1930
|
+
* ```
|
|
1931
|
+
*/
|
|
1932
|
+
let RangeNavigatorComponent = class RangeNavigatorComponent extends RangeNavigator {
|
|
1933
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
1934
|
+
super();
|
|
1935
|
+
this.ngEle = ngEle;
|
|
1936
|
+
this.srenderer = srenderer;
|
|
1937
|
+
this.viewContainerRef = viewContainerRef;
|
|
1938
|
+
this.injector = injector;
|
|
1939
|
+
this.tags = ['series'];
|
|
1940
|
+
this.element = this.ngEle.nativeElement;
|
|
1941
|
+
this.injectedModules = this.injectedModules || [];
|
|
1942
|
+
try {
|
|
1943
|
+
let mod = this.injector.get('ChartsRangeTooltip');
|
|
1944
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1945
|
+
this.injectedModules.push(mod);
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1948
|
+
catch { }
|
|
1949
|
+
try {
|
|
1950
|
+
let mod = this.injector.get('ChartsPeriodSelector');
|
|
1951
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1952
|
+
this.injectedModules.push(mod);
|
|
1953
|
+
}
|
|
1954
|
+
}
|
|
1955
|
+
catch { }
|
|
1956
|
+
try {
|
|
1957
|
+
let mod = this.injector.get('ChartsAreaSeries');
|
|
1958
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1959
|
+
this.injectedModules.push(mod);
|
|
1960
|
+
}
|
|
1961
|
+
}
|
|
1962
|
+
catch { }
|
|
1963
|
+
try {
|
|
1964
|
+
let mod = this.injector.get('ChartsStepLineSeries');
|
|
1965
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1966
|
+
this.injectedModules.push(mod);
|
|
1967
|
+
}
|
|
1968
|
+
}
|
|
1969
|
+
catch { }
|
|
1970
|
+
try {
|
|
1971
|
+
let mod = this.injector.get('ChartsDateTime');
|
|
1972
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1973
|
+
this.injectedModules.push(mod);
|
|
1974
|
+
}
|
|
1975
|
+
}
|
|
1976
|
+
catch { }
|
|
1977
|
+
try {
|
|
1978
|
+
let mod = this.injector.get('ChartsLogarithmic');
|
|
1979
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1980
|
+
this.injectedModules.push(mod);
|
|
1981
|
+
}
|
|
1982
|
+
}
|
|
1983
|
+
catch { }
|
|
1984
|
+
try {
|
|
1985
|
+
let mod = this.injector.get('ChartsExport');
|
|
1986
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1987
|
+
this.injectedModules.push(mod);
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1990
|
+
catch { }
|
|
1991
|
+
try {
|
|
1992
|
+
let mod = this.injector.get('ChartsDateTimeCategory');
|
|
1993
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1994
|
+
this.injectedModules.push(mod);
|
|
1995
|
+
}
|
|
1996
|
+
}
|
|
1997
|
+
catch { }
|
|
1998
|
+
this.registerEvents(outputs$p);
|
|
1999
|
+
this.addTwoWay.call(this, twoWays$6);
|
|
2000
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2001
|
+
this.context = new ComponentBase();
|
|
2002
|
+
}
|
|
2003
|
+
ngOnInit() {
|
|
2004
|
+
this.context.ngOnInit(this);
|
|
2005
|
+
}
|
|
2006
|
+
ngAfterViewInit() {
|
|
2007
|
+
this.context.ngAfterViewInit(this);
|
|
2008
|
+
}
|
|
2009
|
+
ngOnDestroy() {
|
|
2010
|
+
this.context.ngOnDestroy(this);
|
|
2011
|
+
}
|
|
2012
|
+
ngAfterContentChecked() {
|
|
2013
|
+
this.tagObjects[0].instance = this.childSeries;
|
|
2014
|
+
this.context.ngAfterContentChecked(this);
|
|
2015
|
+
}
|
|
2016
|
+
};
|
|
2017
|
+
RangeNavigatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
2018
|
+
RangeNavigatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: RangeNavigatorComponent, selector: "ejs-rangenavigator", inputs: { allowIntervalData: "allowIntervalData", allowSnapping: "allowSnapping", animationDuration: "animationDuration", background: "background", dataSource: "dataSource", disableRangeSelector: "disableRangeSelector", enableDeferredUpdate: "enableDeferredUpdate", enableGrouping: "enableGrouping", enablePersistence: "enablePersistence", enableRtl: "enableRtl", groupBy: "groupBy", height: "height", interval: "interval", intervalType: "intervalType", labelFormat: "labelFormat", labelIntersectAction: "labelIntersectAction", labelPlacement: "labelPlacement", labelPosition: "labelPosition", labelStyle: "labelStyle", locale: "locale", logBase: "logBase", majorGridLines: "majorGridLines", majorTickLines: "majorTickLines", margin: "margin", maximum: "maximum", minimum: "minimum", navigatorBorder: "navigatorBorder", navigatorStyleSettings: "navigatorStyleSettings", periodSelectorSettings: "periodSelectorSettings", query: "query", secondaryLabelAlignment: "secondaryLabelAlignment", series: "series", skeleton: "skeleton", skeletonType: "skeletonType", theme: "theme", tickPosition: "tickPosition", tooltip: "tooltip", useGroupingSeparator: "useGroupingSeparator", value: "value", valueType: "valueType", width: "width", xName: "xName", yName: "yName" }, outputs: { beforePrint: "beforePrint", beforeResize: "beforeResize", changed: "changed", labelRender: "labelRender", load: "load", loaded: "loaded", resized: "resized", selectorRender: "selectorRender", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: RangenavigatorSeriesCollectionDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2019
|
+
__decorate([
|
|
2020
|
+
Template()
|
|
2021
|
+
], RangeNavigatorComponent.prototype, "tooltip_template", void 0);
|
|
2022
|
+
RangeNavigatorComponent = __decorate([
|
|
2023
|
+
ComponentMixins([ComponentBase])
|
|
2024
|
+
], RangeNavigatorComponent);
|
|
2025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorComponent, decorators: [{
|
|
2026
|
+
type: Component,
|
|
2027
|
+
args: [{
|
|
2028
|
+
selector: 'ejs-rangenavigator',
|
|
2029
|
+
inputs: inputs$6,
|
|
2030
|
+
outputs: outputs$p,
|
|
2031
|
+
template: '',
|
|
2032
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2033
|
+
queries: {
|
|
2034
|
+
childSeries: new ContentChild(RangenavigatorSeriesCollectionDirective)
|
|
2035
|
+
}
|
|
2036
|
+
}]
|
|
2037
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
2038
|
+
type: ContentChild,
|
|
2039
|
+
args: ['tooltipTemplate']
|
|
2040
|
+
}] } });
|
|
2041
|
+
|
|
2042
|
+
/**
|
|
2043
|
+
* NgModule definition for the RangeNavigator component.
|
|
2044
|
+
*/
|
|
2045
|
+
class RangeNavigatorModule {
|
|
2046
|
+
}
|
|
2047
|
+
RangeNavigatorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2048
|
+
RangeNavigatorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorModule, declarations: [RangeNavigatorComponent,
|
|
2049
|
+
RangenavigatorSeriesDirective,
|
|
2050
|
+
RangenavigatorSeriesCollectionDirective], imports: [CommonModule], exports: [RangeNavigatorComponent,
|
|
2051
|
+
RangenavigatorSeriesDirective,
|
|
2052
|
+
RangenavigatorSeriesCollectionDirective] });
|
|
2053
|
+
RangeNavigatorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorModule, imports: [[CommonModule]] });
|
|
2054
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorModule, decorators: [{
|
|
2055
|
+
type: NgModule,
|
|
2056
|
+
args: [{
|
|
2057
|
+
imports: [CommonModule],
|
|
2058
|
+
declarations: [
|
|
2059
|
+
RangeNavigatorComponent,
|
|
2060
|
+
RangenavigatorSeriesDirective,
|
|
2061
|
+
RangenavigatorSeriesCollectionDirective
|
|
2062
|
+
],
|
|
2063
|
+
exports: [
|
|
2064
|
+
RangeNavigatorComponent,
|
|
2065
|
+
RangenavigatorSeriesDirective,
|
|
2066
|
+
RangenavigatorSeriesCollectionDirective
|
|
2067
|
+
]
|
|
2068
|
+
}]
|
|
2069
|
+
}] });
|
|
2070
|
+
|
|
2071
|
+
const RangeTooltipService = { provide: 'ChartsRangeTooltip', useValue: RangeTooltip };
|
|
2072
|
+
const PeriodSelectorService = { provide: 'ChartsPeriodSelector', useValue: PeriodSelector };
|
|
2073
|
+
/**
|
|
2074
|
+
* NgModule definition for the RangeNavigator component with providers.
|
|
2075
|
+
*/
|
|
2076
|
+
class RangeNavigatorAllModule {
|
|
2077
|
+
}
|
|
2078
|
+
RangeNavigatorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2079
|
+
RangeNavigatorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorAllModule, imports: [CommonModule, RangeNavigatorModule], exports: [RangeNavigatorModule] });
|
|
2080
|
+
RangeNavigatorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorAllModule, providers: [
|
|
2081
|
+
RangeTooltipService,
|
|
2082
|
+
PeriodSelectorService
|
|
2083
|
+
], imports: [[CommonModule, RangeNavigatorModule], RangeNavigatorModule] });
|
|
2084
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeNavigatorAllModule, decorators: [{
|
|
2085
|
+
type: NgModule,
|
|
2086
|
+
args: [{
|
|
2087
|
+
imports: [CommonModule, RangeNavigatorModule],
|
|
2088
|
+
exports: [
|
|
2089
|
+
RangeNavigatorModule
|
|
2090
|
+
],
|
|
2091
|
+
providers: [
|
|
2092
|
+
RangeTooltipService,
|
|
2093
|
+
PeriodSelectorService
|
|
2094
|
+
]
|
|
2095
|
+
}]
|
|
2096
|
+
}] });
|
|
2097
|
+
|
|
2098
|
+
let input$i = ['color', 'endRange', 'opacity', 'startRange'];
|
|
2099
|
+
let outputs$o = [];
|
|
2100
|
+
class RangeBandSettingDirective extends ComplexBase {
|
|
2101
|
+
constructor(viewContainerRef) {
|
|
2102
|
+
super();
|
|
2103
|
+
this.viewContainerRef = viewContainerRef;
|
|
2104
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2105
|
+
this.registerEvents(outputs$o);
|
|
2106
|
+
this.directivePropList = input$i;
|
|
2107
|
+
}
|
|
2108
|
+
}
|
|
2109
|
+
RangeBandSettingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeBandSettingDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2110
|
+
RangeBandSettingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangeBandSettingDirective, selector: "e-rangeBandSettings>e-rangeBandSetting", inputs: { color: "color", endRange: "endRange", opacity: "opacity", startRange: "startRange" }, usesInheritance: true, ngImport: i0 });
|
|
2111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeBandSettingDirective, decorators: [{
|
|
2112
|
+
type: Directive,
|
|
2113
|
+
args: [{
|
|
2114
|
+
selector: 'e-rangeBandSettings>e-rangeBandSetting',
|
|
2115
|
+
inputs: input$i,
|
|
2116
|
+
outputs: outputs$o,
|
|
2117
|
+
queries: {}
|
|
2118
|
+
}]
|
|
2119
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2120
|
+
/**
|
|
2121
|
+
* RangeBandSetting Array Directive
|
|
2122
|
+
* @private
|
|
2123
|
+
*/
|
|
2124
|
+
class RangeBandSettingsDirective extends ArrayBase {
|
|
2125
|
+
constructor() {
|
|
2126
|
+
super('rangebandsettings');
|
|
2127
|
+
}
|
|
2128
|
+
}
|
|
2129
|
+
RangeBandSettingsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeBandSettingsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2130
|
+
RangeBandSettingsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangeBandSettingsDirective, selector: "ejs-sparkline>e-rangeBandSettings", queries: [{ propertyName: "children", predicate: RangeBandSettingDirective }], usesInheritance: true, ngImport: i0 });
|
|
2131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeBandSettingsDirective, decorators: [{
|
|
2132
|
+
type: Directive,
|
|
2133
|
+
args: [{
|
|
2134
|
+
selector: 'ejs-sparkline>e-rangeBandSettings',
|
|
2135
|
+
queries: {
|
|
2136
|
+
children: new ContentChildren(RangeBandSettingDirective)
|
|
2137
|
+
},
|
|
2138
|
+
}]
|
|
2139
|
+
}], ctorParameters: function () { return []; } });
|
|
2140
|
+
|
|
2141
|
+
const inputs$5 = ['axisSettings', 'border', 'containerArea', 'dataLabelSettings', 'dataSource', 'enablePersistence', 'enableRtl', 'endPointColor', 'fill', 'format', 'height', 'highPointColor', 'lineWidth', 'locale', 'lowPointColor', 'markerSettings', 'negativePointColor', 'opacity', 'padding', 'palette', 'query', 'rangeBandSettings', 'rangePadding', 'startPointColor', 'theme', 'tiePointColor', 'tooltipSettings', 'type', 'useGroupingSeparator', 'valueType', 'width', 'xName', 'yName'];
|
|
2142
|
+
const outputs$n = ['axisRendering', 'dataLabelRendering', 'load', 'loaded', 'markerRendering', 'pointRegionMouseClick', 'pointRegionMouseMove', 'pointRendering', 'resize', 'seriesRendering', 'sparklineMouseClick', 'sparklineMouseMove', 'tooltipInitialize'];
|
|
2143
|
+
const twoWays$5 = [''];
|
|
2144
|
+
/**
|
|
2145
|
+
* Sparkline Component
|
|
2146
|
+
* ```html
|
|
2147
|
+
* <ejs-sparkline></ejs-sparkline>
|
|
2148
|
+
* ```
|
|
2149
|
+
*/
|
|
2150
|
+
let SparklineComponent = class SparklineComponent extends Sparkline {
|
|
2151
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
2152
|
+
super();
|
|
2153
|
+
this.ngEle = ngEle;
|
|
2154
|
+
this.srenderer = srenderer;
|
|
2155
|
+
this.viewContainerRef = viewContainerRef;
|
|
2156
|
+
this.injector = injector;
|
|
2157
|
+
this.tags = ['rangeBandSettings'];
|
|
2158
|
+
this.element = this.ngEle.nativeElement;
|
|
2159
|
+
this.injectedModules = this.injectedModules || [];
|
|
2160
|
+
try {
|
|
2161
|
+
let mod = this.injector.get('ChartsSparklineTooltip');
|
|
2162
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2163
|
+
this.injectedModules.push(mod);
|
|
2164
|
+
}
|
|
2165
|
+
}
|
|
2166
|
+
catch { }
|
|
2167
|
+
this.registerEvents(outputs$n);
|
|
2168
|
+
this.addTwoWay.call(this, twoWays$5);
|
|
2169
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2170
|
+
this.context = new ComponentBase();
|
|
2171
|
+
}
|
|
2172
|
+
ngOnInit() {
|
|
2173
|
+
this.context.ngOnInit(this);
|
|
2174
|
+
}
|
|
2175
|
+
ngAfterViewInit() {
|
|
2176
|
+
this.context.ngAfterViewInit(this);
|
|
2177
|
+
}
|
|
2178
|
+
ngOnDestroy() {
|
|
2179
|
+
this.context.ngOnDestroy(this);
|
|
2180
|
+
}
|
|
2181
|
+
ngAfterContentChecked() {
|
|
2182
|
+
this.tagObjects[0].instance = this.childRangeBandSettings;
|
|
2183
|
+
this.context.ngAfterContentChecked(this);
|
|
2184
|
+
}
|
|
2185
|
+
};
|
|
2186
|
+
SparklineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
2187
|
+
SparklineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SparklineComponent, selector: "ejs-sparkline", inputs: { axisSettings: "axisSettings", border: "border", containerArea: "containerArea", dataLabelSettings: "dataLabelSettings", dataSource: "dataSource", enablePersistence: "enablePersistence", enableRtl: "enableRtl", endPointColor: "endPointColor", fill: "fill", format: "format", height: "height", highPointColor: "highPointColor", lineWidth: "lineWidth", locale: "locale", lowPointColor: "lowPointColor", markerSettings: "markerSettings", negativePointColor: "negativePointColor", opacity: "opacity", padding: "padding", palette: "palette", query: "query", rangeBandSettings: "rangeBandSettings", rangePadding: "rangePadding", startPointColor: "startPointColor", theme: "theme", tiePointColor: "tiePointColor", tooltipSettings: "tooltipSettings", type: "type", useGroupingSeparator: "useGroupingSeparator", valueType: "valueType", width: "width", xName: "xName", yName: "yName" }, outputs: { axisRendering: "axisRendering", dataLabelRendering: "dataLabelRendering", load: "load", loaded: "loaded", markerRendering: "markerRendering", pointRegionMouseClick: "pointRegionMouseClick", pointRegionMouseMove: "pointRegionMouseMove", pointRendering: "pointRendering", resize: "resize", seriesRendering: "seriesRendering", sparklineMouseClick: "sparklineMouseClick", sparklineMouseMove: "sparklineMouseMove", tooltipInitialize: "tooltipInitialize" }, queries: [{ propertyName: "childRangeBandSettings", first: true, predicate: RangeBandSettingsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2188
|
+
SparklineComponent = __decorate([
|
|
2189
|
+
ComponentMixins([ComponentBase])
|
|
2190
|
+
], SparklineComponent);
|
|
2191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineComponent, decorators: [{
|
|
2192
|
+
type: Component,
|
|
2193
|
+
args: [{
|
|
2194
|
+
selector: 'ejs-sparkline',
|
|
2195
|
+
inputs: inputs$5,
|
|
2196
|
+
outputs: outputs$n,
|
|
2197
|
+
template: '',
|
|
2198
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2199
|
+
queries: {
|
|
2200
|
+
childRangeBandSettings: new ContentChild(RangeBandSettingsDirective)
|
|
2201
|
+
}
|
|
2202
|
+
}]
|
|
2203
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
|
2204
|
+
|
|
2205
|
+
/**
|
|
2206
|
+
* NgModule definition for the Sparkline component.
|
|
2207
|
+
*/
|
|
2208
|
+
class SparklineModule {
|
|
2209
|
+
}
|
|
2210
|
+
SparklineModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2211
|
+
SparklineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineModule, declarations: [SparklineComponent,
|
|
2212
|
+
RangeBandSettingDirective,
|
|
2213
|
+
RangeBandSettingsDirective], imports: [CommonModule], exports: [SparklineComponent,
|
|
2214
|
+
RangeBandSettingDirective,
|
|
2215
|
+
RangeBandSettingsDirective] });
|
|
2216
|
+
SparklineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineModule, imports: [[CommonModule]] });
|
|
2217
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineModule, decorators: [{
|
|
2218
|
+
type: NgModule,
|
|
2219
|
+
args: [{
|
|
2220
|
+
imports: [CommonModule],
|
|
2221
|
+
declarations: [
|
|
2222
|
+
SparklineComponent,
|
|
2223
|
+
RangeBandSettingDirective,
|
|
2224
|
+
RangeBandSettingsDirective
|
|
2225
|
+
],
|
|
2226
|
+
exports: [
|
|
2227
|
+
SparklineComponent,
|
|
2228
|
+
RangeBandSettingDirective,
|
|
2229
|
+
RangeBandSettingsDirective
|
|
2230
|
+
]
|
|
2231
|
+
}]
|
|
2232
|
+
}] });
|
|
2233
|
+
|
|
2234
|
+
const SparklineTooltipService = { provide: 'ChartsSparklineTooltip', useValue: SparklineTooltip };
|
|
2235
|
+
/**
|
|
2236
|
+
* NgModule definition for the Sparkline component with providers.
|
|
2237
|
+
*/
|
|
2238
|
+
class SparklineAllModule {
|
|
2239
|
+
}
|
|
2240
|
+
SparklineAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2241
|
+
SparklineAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineAllModule, imports: [CommonModule, SparklineModule], exports: [SparklineModule] });
|
|
2242
|
+
SparklineAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineAllModule, providers: [
|
|
2243
|
+
SparklineTooltipService
|
|
2244
|
+
], imports: [[CommonModule, SparklineModule], SparklineModule] });
|
|
2245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SparklineAllModule, decorators: [{
|
|
2246
|
+
type: NgModule,
|
|
2247
|
+
args: [{
|
|
2248
|
+
imports: [CommonModule, SparklineModule],
|
|
2249
|
+
exports: [
|
|
2250
|
+
SparklineModule
|
|
2251
|
+
],
|
|
2252
|
+
providers: [
|
|
2253
|
+
SparklineTooltipService
|
|
2254
|
+
]
|
|
2255
|
+
}]
|
|
2256
|
+
}] });
|
|
2257
|
+
|
|
2258
|
+
let input$h = ['animationDuration', 'dataSource', 'enableAnimation', 'enableSmartLabels', 'fill', 'marker', 'name', 'opacity', 'points', 'reactance', 'resistance', 'tooltip', 'tooltipMappingName', 'visibility', 'width'];
|
|
2259
|
+
let outputs$m = [];
|
|
2260
|
+
class SmithchartSeriesDirective extends ComplexBase {
|
|
2261
|
+
constructor(viewContainerRef) {
|
|
2262
|
+
super();
|
|
2263
|
+
this.viewContainerRef = viewContainerRef;
|
|
2264
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2265
|
+
this.registerEvents(outputs$m);
|
|
2266
|
+
this.directivePropList = input$h;
|
|
2267
|
+
}
|
|
2268
|
+
}
|
|
2269
|
+
SmithchartSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2270
|
+
SmithchartSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SmithchartSeriesDirective, selector: "e-seriesCollection>e-series", inputs: { animationDuration: "animationDuration", dataSource: "dataSource", enableAnimation: "enableAnimation", enableSmartLabels: "enableSmartLabels", fill: "fill", marker: "marker", name: "name", opacity: "opacity", points: "points", reactance: "reactance", resistance: "resistance", tooltip: "tooltip", tooltipMappingName: "tooltipMappingName", visibility: "visibility", width: "width" }, usesInheritance: true, ngImport: i0 });
|
|
2271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartSeriesDirective, decorators: [{
|
|
2272
|
+
type: Directive,
|
|
2273
|
+
args: [{
|
|
2274
|
+
selector: 'e-seriesCollection>e-series',
|
|
2275
|
+
inputs: input$h,
|
|
2276
|
+
outputs: outputs$m,
|
|
2277
|
+
queries: {}
|
|
2278
|
+
}]
|
|
2279
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2280
|
+
/**
|
|
2281
|
+
* SmithchartSeries Array Directive
|
|
2282
|
+
* @private
|
|
2283
|
+
*/
|
|
2284
|
+
class SmithchartSeriesCollectionDirective extends ArrayBase {
|
|
2285
|
+
constructor() {
|
|
2286
|
+
super('series');
|
|
2287
|
+
}
|
|
2288
|
+
}
|
|
2289
|
+
SmithchartSeriesCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartSeriesCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2290
|
+
SmithchartSeriesCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SmithchartSeriesCollectionDirective, selector: "ejs-smithchart>e-seriesCollection", queries: [{ propertyName: "children", predicate: SmithchartSeriesDirective }], usesInheritance: true, ngImport: i0 });
|
|
2291
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartSeriesCollectionDirective, decorators: [{
|
|
2292
|
+
type: Directive,
|
|
2293
|
+
args: [{
|
|
2294
|
+
selector: 'ejs-smithchart>e-seriesCollection',
|
|
2295
|
+
queries: {
|
|
2296
|
+
children: new ContentChildren(SmithchartSeriesDirective)
|
|
2297
|
+
},
|
|
2298
|
+
}]
|
|
2299
|
+
}], ctorParameters: function () { return []; } });
|
|
2300
|
+
|
|
2301
|
+
const inputs$4 = ['background', 'border', 'elementSpacing', 'enablePersistence', 'enableRtl', 'font', 'height', 'horizontalAxis', 'legendSettings', 'locale', 'margin', 'radialAxis', 'radius', 'renderType', 'series', 'theme', 'title', 'width'];
|
|
2302
|
+
const outputs$l = ['animationComplete', 'axisLabelRender', 'beforePrint', 'legendRender', 'load', 'loaded', 'seriesRender', 'subtitleRender', 'textRender', 'titleRender', 'tooltipRender'];
|
|
2303
|
+
const twoWays$4 = [''];
|
|
2304
|
+
/**
|
|
2305
|
+
* Smithchart Component
|
|
2306
|
+
* ```html
|
|
2307
|
+
* <ejs-smithchart></ejs-smithchart>
|
|
2308
|
+
* ```
|
|
2309
|
+
*/
|
|
2310
|
+
let SmithchartComponent = class SmithchartComponent extends Smithchart {
|
|
2311
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
2312
|
+
super();
|
|
2313
|
+
this.ngEle = ngEle;
|
|
2314
|
+
this.srenderer = srenderer;
|
|
2315
|
+
this.viewContainerRef = viewContainerRef;
|
|
2316
|
+
this.injector = injector;
|
|
2317
|
+
this.tags = ['series'];
|
|
2318
|
+
this.element = this.ngEle.nativeElement;
|
|
2319
|
+
this.injectedModules = this.injectedModules || [];
|
|
2320
|
+
try {
|
|
2321
|
+
let mod = this.injector.get('ChartsSmithchartLegend');
|
|
2322
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2323
|
+
this.injectedModules.push(mod);
|
|
2324
|
+
}
|
|
2325
|
+
}
|
|
2326
|
+
catch { }
|
|
2327
|
+
try {
|
|
2328
|
+
let mod = this.injector.get('ChartsTooltipRender');
|
|
2329
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2330
|
+
this.injectedModules.push(mod);
|
|
2331
|
+
}
|
|
2332
|
+
}
|
|
2333
|
+
catch { }
|
|
2334
|
+
this.registerEvents(outputs$l);
|
|
2335
|
+
this.addTwoWay.call(this, twoWays$4);
|
|
2336
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2337
|
+
this.context = new ComponentBase();
|
|
2338
|
+
}
|
|
2339
|
+
ngOnInit() {
|
|
2340
|
+
this.context.ngOnInit(this);
|
|
2341
|
+
}
|
|
2342
|
+
ngAfterViewInit() {
|
|
2343
|
+
this.context.ngAfterViewInit(this);
|
|
2344
|
+
}
|
|
2345
|
+
ngOnDestroy() {
|
|
2346
|
+
this.context.ngOnDestroy(this);
|
|
2347
|
+
}
|
|
2348
|
+
ngAfterContentChecked() {
|
|
2349
|
+
this.tagObjects[0].instance = this.childSeries;
|
|
2350
|
+
this.context.ngAfterContentChecked(this);
|
|
2351
|
+
}
|
|
2352
|
+
};
|
|
2353
|
+
SmithchartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
2354
|
+
SmithchartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SmithchartComponent, selector: "ejs-smithchart", inputs: { background: "background", border: "border", elementSpacing: "elementSpacing", enablePersistence: "enablePersistence", enableRtl: "enableRtl", font: "font", height: "height", horizontalAxis: "horizontalAxis", legendSettings: "legendSettings", locale: "locale", margin: "margin", radialAxis: "radialAxis", radius: "radius", renderType: "renderType", series: "series", theme: "theme", title: "title", width: "width" }, outputs: { animationComplete: "animationComplete", axisLabelRender: "axisLabelRender", beforePrint: "beforePrint", legendRender: "legendRender", load: "load", loaded: "loaded", seriesRender: "seriesRender", subtitleRender: "subtitleRender", textRender: "textRender", titleRender: "titleRender", tooltipRender: "tooltipRender" }, queries: [{ propertyName: "childSeries", first: true, predicate: SmithchartSeriesCollectionDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2355
|
+
SmithchartComponent = __decorate([
|
|
2356
|
+
ComponentMixins([ComponentBase])
|
|
2357
|
+
], SmithchartComponent);
|
|
2358
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartComponent, decorators: [{
|
|
2359
|
+
type: Component,
|
|
2360
|
+
args: [{
|
|
2361
|
+
selector: 'ejs-smithchart',
|
|
2362
|
+
inputs: inputs$4,
|
|
2363
|
+
outputs: outputs$l,
|
|
2364
|
+
template: '',
|
|
2365
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2366
|
+
queries: {
|
|
2367
|
+
childSeries: new ContentChild(SmithchartSeriesCollectionDirective)
|
|
2368
|
+
}
|
|
2369
|
+
}]
|
|
2370
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
|
2371
|
+
|
|
2372
|
+
/**
|
|
2373
|
+
* NgModule definition for the Smithchart component.
|
|
2374
|
+
*/
|
|
2375
|
+
class SmithchartModule {
|
|
2376
|
+
}
|
|
2377
|
+
SmithchartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2378
|
+
SmithchartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartModule, declarations: [SmithchartComponent,
|
|
2379
|
+
SmithchartSeriesDirective,
|
|
2380
|
+
SmithchartSeriesCollectionDirective], imports: [CommonModule], exports: [SmithchartComponent,
|
|
2381
|
+
SmithchartSeriesDirective,
|
|
2382
|
+
SmithchartSeriesCollectionDirective] });
|
|
2383
|
+
SmithchartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartModule, imports: [[CommonModule]] });
|
|
2384
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartModule, decorators: [{
|
|
2385
|
+
type: NgModule,
|
|
2386
|
+
args: [{
|
|
2387
|
+
imports: [CommonModule],
|
|
2388
|
+
declarations: [
|
|
2389
|
+
SmithchartComponent,
|
|
2390
|
+
SmithchartSeriesDirective,
|
|
2391
|
+
SmithchartSeriesCollectionDirective
|
|
2392
|
+
],
|
|
2393
|
+
exports: [
|
|
2394
|
+
SmithchartComponent,
|
|
2395
|
+
SmithchartSeriesDirective,
|
|
2396
|
+
SmithchartSeriesCollectionDirective
|
|
2397
|
+
]
|
|
2398
|
+
}]
|
|
2399
|
+
}] });
|
|
2400
|
+
|
|
2401
|
+
const SmithchartLegendService = { provide: 'ChartsSmithchartLegend', useValue: SmithchartLegend };
|
|
2402
|
+
const TooltipRenderService = { provide: 'ChartsTooltipRender', useValue: TooltipRender };
|
|
2403
|
+
/**
|
|
2404
|
+
* NgModule definition for the Smithchart component with providers.
|
|
2405
|
+
*/
|
|
2406
|
+
class SmithchartAllModule {
|
|
2407
|
+
}
|
|
2408
|
+
SmithchartAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2409
|
+
SmithchartAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartAllModule, imports: [CommonModule, SmithchartModule], exports: [SmithchartModule] });
|
|
2410
|
+
SmithchartAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartAllModule, providers: [
|
|
2411
|
+
SmithchartLegendService,
|
|
2412
|
+
TooltipRenderService
|
|
2413
|
+
], imports: [[CommonModule, SmithchartModule], SmithchartModule] });
|
|
2414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartAllModule, decorators: [{
|
|
2415
|
+
type: NgModule,
|
|
2416
|
+
args: [{
|
|
2417
|
+
imports: [CommonModule, SmithchartModule],
|
|
2418
|
+
exports: [
|
|
2419
|
+
SmithchartModule
|
|
2420
|
+
],
|
|
2421
|
+
providers: [
|
|
2422
|
+
SmithchartLegendService,
|
|
2423
|
+
TooltipRenderService
|
|
2424
|
+
]
|
|
2425
|
+
}]
|
|
2426
|
+
}] });
|
|
2427
|
+
|
|
2428
|
+
let input$g = ['accessibility', 'animation', 'backwardForecast', 'dashArray', 'enableTooltip', 'fill', 'forwardForecast', 'intercept', 'legendShape', 'marker', 'name', 'period', 'polynomialOrder', 'type', 'visible', 'width'];
|
|
2429
|
+
let outputs$k = [];
|
|
2430
|
+
/**
|
|
2431
|
+
* Series Directive
|
|
2432
|
+
* ```html
|
|
2433
|
+
* <e-stockchart-series-collection>
|
|
2434
|
+
* <e-stockchart-series>
|
|
2435
|
+
* <e-trendlines>
|
|
2436
|
+
* </e-trendline>
|
|
2437
|
+
* <e-trendline>
|
|
2438
|
+
* </e-trendlines>
|
|
2439
|
+
* </e-stockchart-series>
|
|
2440
|
+
* </e-stockchart-series-collection>
|
|
2441
|
+
* ```
|
|
2442
|
+
*/
|
|
2443
|
+
class StockChartTrendlineDirective extends ComplexBase {
|
|
2444
|
+
constructor(viewContainerRef) {
|
|
2445
|
+
super();
|
|
2446
|
+
this.viewContainerRef = viewContainerRef;
|
|
2447
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2448
|
+
this.registerEvents(outputs$k);
|
|
2449
|
+
this.directivePropList = input$g;
|
|
2450
|
+
}
|
|
2451
|
+
}
|
|
2452
|
+
StockChartTrendlineDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartTrendlineDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2453
|
+
StockChartTrendlineDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartTrendlineDirective, selector: "e-stockchart-series>e-trendlines>e-trendline", inputs: { accessibility: "accessibility", animation: "animation", backwardForecast: "backwardForecast", dashArray: "dashArray", enableTooltip: "enableTooltip", fill: "fill", forwardForecast: "forwardForecast", intercept: "intercept", legendShape: "legendShape", marker: "marker", name: "name", period: "period", polynomialOrder: "polynomialOrder", type: "type", visible: "visible", width: "width" }, usesInheritance: true, ngImport: i0 });
|
|
2454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartTrendlineDirective, decorators: [{
|
|
2455
|
+
type: Directive,
|
|
2456
|
+
args: [{
|
|
2457
|
+
selector: 'e-stockchart-series>e-trendlines>e-trendline',
|
|
2458
|
+
inputs: input$g,
|
|
2459
|
+
outputs: outputs$k,
|
|
2460
|
+
queries: {}
|
|
2461
|
+
}]
|
|
2462
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2463
|
+
/**
|
|
2464
|
+
* StockChartTrendline Array Directive
|
|
2465
|
+
* @private
|
|
2466
|
+
*/
|
|
2467
|
+
class StockChartTrendlinesDirective extends ArrayBase {
|
|
2468
|
+
constructor() {
|
|
2469
|
+
super('trendlines');
|
|
2470
|
+
}
|
|
2471
|
+
}
|
|
2472
|
+
StockChartTrendlinesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartTrendlinesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2473
|
+
StockChartTrendlinesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartTrendlinesDirective, selector: "e-stockchart-series>e-trendlines", queries: [{ propertyName: "children", predicate: StockChartTrendlineDirective }], usesInheritance: true, ngImport: i0 });
|
|
2474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartTrendlinesDirective, decorators: [{
|
|
2475
|
+
type: Directive,
|
|
2476
|
+
args: [{
|
|
2477
|
+
selector: 'e-stockchart-series>e-trendlines',
|
|
2478
|
+
queries: {
|
|
2479
|
+
children: new ContentChildren(StockChartTrendlineDirective)
|
|
2480
|
+
},
|
|
2481
|
+
}]
|
|
2482
|
+
}], ctorParameters: function () { return []; } });
|
|
2483
|
+
|
|
2484
|
+
let input$f = ['animation', 'bearFillColor', 'border', 'bullFillColor', 'cardinalSplineTension', 'close', 'columnSpacing', 'columnWidth', 'cornerRadius', 'dashArray', 'dataSource', 'emptyPointSettings', 'enableSolidCandles', 'enableTooltip', 'fill', 'high', 'lastValueLabel', 'legendImageUrl', 'legendShape', 'low', 'marker', 'name', 'opacity', 'open', 'pointColorMapping', 'query', 'selectionStyle', 'showNearestTooltip', 'tooltipMappingName', 'trendlines', 'type', 'visible', 'volume', 'width', 'xAxisName', 'xName', 'yAxisName', 'yName'];
|
|
2485
|
+
let outputs$j = [];
|
|
2486
|
+
/**
|
|
2487
|
+
* Series Directive
|
|
2488
|
+
* ```html
|
|
2489
|
+
* <e-stockchart-series-collection>
|
|
2490
|
+
* <e-stockchart-series></e-stockchart-series>
|
|
2491
|
+
* </e-stockchart-series-collection>
|
|
2492
|
+
* ```
|
|
2493
|
+
*/
|
|
2494
|
+
class StockChartSeriesDirective extends ComplexBase {
|
|
2495
|
+
constructor(viewContainerRef) {
|
|
2496
|
+
super();
|
|
2497
|
+
this.viewContainerRef = viewContainerRef;
|
|
2498
|
+
this.tags = ['trendlines'];
|
|
2499
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2500
|
+
this.registerEvents(outputs$j);
|
|
2501
|
+
this.directivePropList = input$f;
|
|
2502
|
+
}
|
|
2503
|
+
}
|
|
2504
|
+
StockChartSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2505
|
+
StockChartSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartSeriesDirective, selector: "e-stockchart-series-collection>e-stockchart-series", inputs: { animation: "animation", bearFillColor: "bearFillColor", border: "border", bullFillColor: "bullFillColor", cardinalSplineTension: "cardinalSplineTension", close: "close", columnSpacing: "columnSpacing", columnWidth: "columnWidth", cornerRadius: "cornerRadius", dashArray: "dashArray", dataSource: "dataSource", emptyPointSettings: "emptyPointSettings", enableSolidCandles: "enableSolidCandles", enableTooltip: "enableTooltip", fill: "fill", high: "high", lastValueLabel: "lastValueLabel", legendImageUrl: "legendImageUrl", legendShape: "legendShape", low: "low", marker: "marker", name: "name", opacity: "opacity", open: "open", pointColorMapping: "pointColorMapping", query: "query", selectionStyle: "selectionStyle", showNearestTooltip: "showNearestTooltip", tooltipMappingName: "tooltipMappingName", trendlines: "trendlines", type: "type", visible: "visible", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName", yName: "yName" }, queries: [{ propertyName: "childTrendlines", first: true, predicate: StockChartTrendlinesDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
2506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSeriesDirective, decorators: [{
|
|
2507
|
+
type: Directive,
|
|
2508
|
+
args: [{
|
|
2509
|
+
selector: 'e-stockchart-series-collection>e-stockchart-series',
|
|
2510
|
+
inputs: input$f,
|
|
2511
|
+
outputs: outputs$j,
|
|
2512
|
+
queries: {
|
|
2513
|
+
childTrendlines: new ContentChild(StockChartTrendlinesDirective)
|
|
2514
|
+
}
|
|
2515
|
+
}]
|
|
2516
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2517
|
+
/**
|
|
2518
|
+
* StockChartSeries Array Directive
|
|
2519
|
+
* @private
|
|
2520
|
+
*/
|
|
2521
|
+
class StockChartSeriesCollectionDirective extends ArrayBase {
|
|
2522
|
+
constructor() {
|
|
2523
|
+
super('series');
|
|
2524
|
+
}
|
|
2525
|
+
}
|
|
2526
|
+
StockChartSeriesCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSeriesCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2527
|
+
StockChartSeriesCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartSeriesCollectionDirective, selector: "ejs-stockchart>e-stockchart-series-collection", queries: [{ propertyName: "children", predicate: StockChartSeriesDirective }], usesInheritance: true, ngImport: i0 });
|
|
2528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSeriesCollectionDirective, decorators: [{
|
|
2529
|
+
type: Directive,
|
|
2530
|
+
args: [{
|
|
2531
|
+
selector: 'ejs-stockchart>e-stockchart-series-collection',
|
|
2532
|
+
queries: {
|
|
2533
|
+
children: new ContentChildren(StockChartSeriesDirective)
|
|
2534
|
+
},
|
|
2535
|
+
}]
|
|
2536
|
+
}], ctorParameters: function () { return []; } });
|
|
2537
|
+
|
|
2538
|
+
let input$e = ['coefficient', 'crossesAt', 'crossesInAxis', 'crosshairTooltip', 'description', 'desiredIntervals', 'edgeLabelPlacement', 'enableAutoIntervalOnZooming', 'enableTrim', 'interval', 'intervalType', 'isInversed', 'labelFormat', 'labelIntersectAction', 'labelPlacement', 'labelPosition', 'labelRotation', 'labelStyle', 'lineStyle', 'logBase', 'majorGridLines', 'majorTickLines', 'maximum', 'maximumLabelWidth', 'maximumLabels', 'minimum', 'minorGridLines', 'minorTickLines', 'minorTicksPerInterval', 'name', 'opposedPosition', 'placeNextToAxisLine', 'plotOffset', 'rangePadding', 'rowIndex', 'skeleton', 'skeletonType', 'span', 'startAngle', 'stripLines', 'tabIndex', 'tickPosition', 'title', 'titleStyle', 'valueType', 'visible', 'zoomFactor', 'zoomPosition'];
|
|
2539
|
+
let outputs$i = [];
|
|
2540
|
+
/**
|
|
2541
|
+
* Axis Directive
|
|
2542
|
+
* ```html
|
|
2543
|
+
* <e-stockchart-axes><e-stockchart-axis></e-stockchart-axis></e-stockchart-axes>
|
|
2544
|
+
* ```
|
|
2545
|
+
*/
|
|
2546
|
+
class StockChartAxisDirective extends ComplexBase {
|
|
2547
|
+
constructor(viewContainerRef) {
|
|
2548
|
+
super();
|
|
2549
|
+
this.viewContainerRef = viewContainerRef;
|
|
2550
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2551
|
+
this.registerEvents(outputs$i);
|
|
2552
|
+
this.directivePropList = input$e;
|
|
2553
|
+
}
|
|
2554
|
+
}
|
|
2555
|
+
StockChartAxisDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAxisDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2556
|
+
StockChartAxisDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartAxisDirective, selector: "e-stockchart-axes>e-stockchart-axis", inputs: { coefficient: "coefficient", crossesAt: "crossesAt", crossesInAxis: "crossesInAxis", crosshairTooltip: "crosshairTooltip", description: "description", desiredIntervals: "desiredIntervals", edgeLabelPlacement: "edgeLabelPlacement", enableAutoIntervalOnZooming: "enableAutoIntervalOnZooming", enableTrim: "enableTrim", interval: "interval", intervalType: "intervalType", isInversed: "isInversed", labelFormat: "labelFormat", labelIntersectAction: "labelIntersectAction", labelPlacement: "labelPlacement", labelPosition: "labelPosition", labelRotation: "labelRotation", labelStyle: "labelStyle", lineStyle: "lineStyle", logBase: "logBase", majorGridLines: "majorGridLines", majorTickLines: "majorTickLines", maximum: "maximum", maximumLabelWidth: "maximumLabelWidth", maximumLabels: "maximumLabels", minimum: "minimum", minorGridLines: "minorGridLines", minorTickLines: "minorTickLines", minorTicksPerInterval: "minorTicksPerInterval", name: "name", opposedPosition: "opposedPosition", placeNextToAxisLine: "placeNextToAxisLine", plotOffset: "plotOffset", rangePadding: "rangePadding", rowIndex: "rowIndex", skeleton: "skeleton", skeletonType: "skeletonType", span: "span", startAngle: "startAngle", stripLines: "stripLines", tabIndex: "tabIndex", tickPosition: "tickPosition", title: "title", titleStyle: "titleStyle", valueType: "valueType", visible: "visible", zoomFactor: "zoomFactor", zoomPosition: "zoomPosition" }, usesInheritance: true, ngImport: i0 });
|
|
2557
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAxisDirective, decorators: [{
|
|
2558
|
+
type: Directive,
|
|
2559
|
+
args: [{
|
|
2560
|
+
selector: 'e-stockchart-axes>e-stockchart-axis',
|
|
2561
|
+
inputs: input$e,
|
|
2562
|
+
outputs: outputs$i,
|
|
2563
|
+
queries: {}
|
|
2564
|
+
}]
|
|
2565
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2566
|
+
/**
|
|
2567
|
+
* StockChartAxis Array Directive
|
|
2568
|
+
* @private
|
|
2569
|
+
*/
|
|
2570
|
+
class StockChartAxesDirective extends ArrayBase {
|
|
2571
|
+
constructor() {
|
|
2572
|
+
super('axes');
|
|
2573
|
+
}
|
|
2574
|
+
}
|
|
2575
|
+
StockChartAxesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAxesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2576
|
+
StockChartAxesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartAxesDirective, selector: "ejs-stockchart>e-stockchart-axes", queries: [{ propertyName: "children", predicate: StockChartAxisDirective }], usesInheritance: true, ngImport: i0 });
|
|
2577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAxesDirective, decorators: [{
|
|
2578
|
+
type: Directive,
|
|
2579
|
+
args: [{
|
|
2580
|
+
selector: 'ejs-stockchart>e-stockchart-axes',
|
|
2581
|
+
queries: {
|
|
2582
|
+
children: new ContentChildren(StockChartAxisDirective)
|
|
2583
|
+
},
|
|
2584
|
+
}]
|
|
2585
|
+
}], ctorParameters: function () { return []; } });
|
|
2586
|
+
|
|
2587
|
+
let input$d = ['border', 'height'];
|
|
2588
|
+
let outputs$h = [];
|
|
2589
|
+
/**
|
|
2590
|
+
* Row Directive
|
|
2591
|
+
* ```html
|
|
2592
|
+
* <e-rows><e-row></e-row><e-rows>
|
|
2593
|
+
* ```
|
|
2594
|
+
*/
|
|
2595
|
+
class StockChartRowDirective extends ComplexBase {
|
|
2596
|
+
constructor(viewContainerRef) {
|
|
2597
|
+
super();
|
|
2598
|
+
this.viewContainerRef = viewContainerRef;
|
|
2599
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2600
|
+
this.registerEvents(outputs$h);
|
|
2601
|
+
this.directivePropList = input$d;
|
|
2602
|
+
}
|
|
2603
|
+
}
|
|
2604
|
+
StockChartRowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartRowDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2605
|
+
StockChartRowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartRowDirective, selector: "e-stockchart-rows>e-striplines>e-stockchart-row", inputs: { border: "border", height: "height" }, usesInheritance: true, ngImport: i0 });
|
|
2606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartRowDirective, decorators: [{
|
|
2607
|
+
type: Directive,
|
|
2608
|
+
args: [{
|
|
2609
|
+
selector: 'e-stockchart-rows>e-striplines>e-stockchart-row',
|
|
2610
|
+
inputs: input$d,
|
|
2611
|
+
outputs: outputs$h,
|
|
2612
|
+
queries: {}
|
|
2613
|
+
}]
|
|
2614
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2615
|
+
/**
|
|
2616
|
+
* StockChartRow Array Directive
|
|
2617
|
+
* @private
|
|
2618
|
+
*/
|
|
2619
|
+
class StockChartRowsDirective extends ArrayBase {
|
|
2620
|
+
constructor() {
|
|
2621
|
+
super('rows');
|
|
2622
|
+
}
|
|
2623
|
+
}
|
|
2624
|
+
StockChartRowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartRowsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2625
|
+
StockChartRowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartRowsDirective, selector: "ejs-stockchart>e-stockchart-rows", queries: [{ propertyName: "children", predicate: StockChartRowDirective }], usesInheritance: true, ngImport: i0 });
|
|
2626
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartRowsDirective, decorators: [{
|
|
2627
|
+
type: Directive,
|
|
2628
|
+
args: [{
|
|
2629
|
+
selector: 'ejs-stockchart>e-stockchart-rows',
|
|
2630
|
+
queries: {
|
|
2631
|
+
children: new ContentChildren(StockChartRowDirective)
|
|
2632
|
+
},
|
|
2633
|
+
}]
|
|
2634
|
+
}], ctorParameters: function () { return []; } });
|
|
2635
|
+
|
|
2636
|
+
let input$c = ['content', 'coordinateUnits', 'description', 'horizontalAlignment', 'region', 'verticalAlignment', 'x', 'xAxisName', 'y', 'yAxisName'];
|
|
2637
|
+
let outputs$g = [];
|
|
2638
|
+
/**
|
|
2639
|
+
* Annotation Directive
|
|
2640
|
+
* ```html
|
|
2641
|
+
* <e-stockchart-annotations><e-stockchart-annotation></e-stockchart-annotation><e-stockchart-annotations>
|
|
2642
|
+
* ```
|
|
2643
|
+
*/
|
|
2644
|
+
class StockChartAnnotationDirective extends ComplexBase {
|
|
2645
|
+
constructor(viewContainerRef) {
|
|
2646
|
+
super();
|
|
2647
|
+
this.viewContainerRef = viewContainerRef;
|
|
2648
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2649
|
+
this.registerEvents(outputs$g);
|
|
2650
|
+
this.directivePropList = input$c;
|
|
2651
|
+
}
|
|
2652
|
+
}
|
|
2653
|
+
StockChartAnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2654
|
+
StockChartAnnotationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartAnnotationDirective, selector: "ejs-stockchart-annotations>e-stockchart-annotation", inputs: { content: "content", coordinateUnits: "coordinateUnits", description: "description", horizontalAlignment: "horizontalAlignment", region: "region", verticalAlignment: "verticalAlignment", x: "x", xAxisName: "xAxisName", y: "y", yAxisName: "yAxisName" }, queries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
2655
|
+
__decorate([
|
|
2656
|
+
Template()
|
|
2657
|
+
], StockChartAnnotationDirective.prototype, "content", void 0);
|
|
2658
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAnnotationDirective, decorators: [{
|
|
2659
|
+
type: Directive,
|
|
2660
|
+
args: [{
|
|
2661
|
+
selector: 'ejs-stockchart-annotations>e-stockchart-annotation',
|
|
2662
|
+
inputs: input$c,
|
|
2663
|
+
outputs: outputs$g,
|
|
2664
|
+
queries: {}
|
|
2665
|
+
}]
|
|
2666
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
|
2667
|
+
type: ContentChild,
|
|
2668
|
+
args: ['content']
|
|
2669
|
+
}] } });
|
|
2670
|
+
/**
|
|
2671
|
+
* StockChartAnnotation Array Directive
|
|
2672
|
+
* @private
|
|
2673
|
+
*/
|
|
2674
|
+
class StockChartAnnotationsDirective extends ArrayBase {
|
|
2675
|
+
constructor() {
|
|
2676
|
+
super('annotations');
|
|
2677
|
+
}
|
|
2678
|
+
}
|
|
2679
|
+
StockChartAnnotationsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAnnotationsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2680
|
+
StockChartAnnotationsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartAnnotationsDirective, selector: "ejs-stockchart>e-stockchart-annotations", queries: [{ propertyName: "children", predicate: StockChartAnnotationDirective }], usesInheritance: true, ngImport: i0 });
|
|
2681
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAnnotationsDirective, decorators: [{
|
|
2682
|
+
type: Directive,
|
|
2683
|
+
args: [{
|
|
2684
|
+
selector: 'ejs-stockchart>e-stockchart-annotations',
|
|
2685
|
+
queries: {
|
|
2686
|
+
children: new ContentChildren(StockChartAnnotationDirective)
|
|
2687
|
+
},
|
|
2688
|
+
}]
|
|
2689
|
+
}], ctorParameters: function () { return []; } });
|
|
2690
|
+
|
|
2691
|
+
let input$b = ['point', 'series'];
|
|
2692
|
+
let outputs$f = [];
|
|
2693
|
+
/**
|
|
2694
|
+
* Selected Data Directive
|
|
2695
|
+
* ```html
|
|
2696
|
+
* <e-selecteddataindexes><e-selecteddataindex></e-selecteddataindex><e-selecteddataindexes>
|
|
2697
|
+
* ```
|
|
2698
|
+
*/
|
|
2699
|
+
class StockChartSelectedDataIndexDirective extends ComplexBase {
|
|
2700
|
+
constructor(viewContainerRef) {
|
|
2701
|
+
super();
|
|
2702
|
+
this.viewContainerRef = viewContainerRef;
|
|
2703
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2704
|
+
this.registerEvents(outputs$f);
|
|
2705
|
+
this.directivePropList = input$b;
|
|
2706
|
+
}
|
|
2707
|
+
}
|
|
2708
|
+
StockChartSelectedDataIndexDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSelectedDataIndexDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2709
|
+
StockChartSelectedDataIndexDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartSelectedDataIndexDirective, selector: "ejs-stockchart-selectedDataIndexes>e-stockchart-selectedDataIndex", inputs: { point: "point", series: "series" }, usesInheritance: true, ngImport: i0 });
|
|
2710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSelectedDataIndexDirective, decorators: [{
|
|
2711
|
+
type: Directive,
|
|
2712
|
+
args: [{
|
|
2713
|
+
selector: 'ejs-stockchart-selectedDataIndexes>e-stockchart-selectedDataIndex',
|
|
2714
|
+
inputs: input$b,
|
|
2715
|
+
outputs: outputs$f,
|
|
2716
|
+
queries: {}
|
|
2717
|
+
}]
|
|
2718
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2719
|
+
/**
|
|
2720
|
+
* StockChartSelectedDataIndex Array Directive
|
|
2721
|
+
* @private
|
|
2722
|
+
*/
|
|
2723
|
+
class StockChartSelectedDataIndexesDirective extends ArrayBase {
|
|
2724
|
+
constructor() {
|
|
2725
|
+
super('selecteddataindexes');
|
|
2726
|
+
}
|
|
2727
|
+
}
|
|
2728
|
+
StockChartSelectedDataIndexesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSelectedDataIndexesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2729
|
+
StockChartSelectedDataIndexesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartSelectedDataIndexesDirective, selector: "ejs-stockchart>e-stockchart-selectedDataIndexes", queries: [{ propertyName: "children", predicate: StockChartSelectedDataIndexDirective }], usesInheritance: true, ngImport: i0 });
|
|
2730
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSelectedDataIndexesDirective, decorators: [{
|
|
2731
|
+
type: Directive,
|
|
2732
|
+
args: [{
|
|
2733
|
+
selector: 'ejs-stockchart>e-stockchart-selectedDataIndexes',
|
|
2734
|
+
queries: {
|
|
2735
|
+
children: new ContentChildren(StockChartSelectedDataIndexDirective)
|
|
2736
|
+
},
|
|
2737
|
+
}]
|
|
2738
|
+
}], ctorParameters: function () { return []; } });
|
|
2739
|
+
|
|
2740
|
+
let input$a = ['interval', 'intervalType', 'selected', 'text'];
|
|
2741
|
+
let outputs$e = [];
|
|
2742
|
+
/**
|
|
2743
|
+
* Indicator Directive
|
|
2744
|
+
* ```html
|
|
2745
|
+
* <e-stockchart-periods>
|
|
2746
|
+
* <e-stockchart-period></e-stockchart-period>
|
|
2747
|
+
* </e-stockchart-periods>
|
|
2748
|
+
* ```
|
|
2749
|
+
*/
|
|
2750
|
+
class StockChartPeriodDirective extends ComplexBase {
|
|
2751
|
+
constructor(viewContainerRef) {
|
|
2752
|
+
super();
|
|
2753
|
+
this.viewContainerRef = viewContainerRef;
|
|
2754
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2755
|
+
this.registerEvents(outputs$e);
|
|
2756
|
+
this.directivePropList = input$a;
|
|
2757
|
+
}
|
|
2758
|
+
}
|
|
2759
|
+
StockChartPeriodDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartPeriodDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2760
|
+
StockChartPeriodDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartPeriodDirective, selector: "e-stockchart-indicators>e-stockchart-period", inputs: { interval: "interval", intervalType: "intervalType", selected: "selected", text: "text" }, usesInheritance: true, ngImport: i0 });
|
|
2761
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartPeriodDirective, decorators: [{
|
|
2762
|
+
type: Directive,
|
|
2763
|
+
args: [{
|
|
2764
|
+
selector: 'e-stockchart-indicators>e-stockchart-period',
|
|
2765
|
+
inputs: input$a,
|
|
2766
|
+
outputs: outputs$e,
|
|
2767
|
+
queries: {}
|
|
2768
|
+
}]
|
|
2769
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2770
|
+
/**
|
|
2771
|
+
* StockChartPeriod Array Directive
|
|
2772
|
+
* @private
|
|
2773
|
+
*/
|
|
2774
|
+
class StockChartPeriodsDirective extends ArrayBase {
|
|
2775
|
+
constructor() {
|
|
2776
|
+
super('periods');
|
|
2777
|
+
}
|
|
2778
|
+
}
|
|
2779
|
+
StockChartPeriodsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartPeriodsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2780
|
+
StockChartPeriodsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartPeriodsDirective, selector: "ejs-stockchart>e-stockchart-periods", queries: [{ propertyName: "children", predicate: StockChartPeriodDirective }], usesInheritance: true, ngImport: i0 });
|
|
2781
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartPeriodsDirective, decorators: [{
|
|
2782
|
+
type: Directive,
|
|
2783
|
+
args: [{
|
|
2784
|
+
selector: 'ejs-stockchart>e-stockchart-periods',
|
|
2785
|
+
queries: {
|
|
2786
|
+
children: new ContentChildren(StockChartPeriodDirective)
|
|
2787
|
+
},
|
|
2788
|
+
}]
|
|
2789
|
+
}], ctorParameters: function () { return []; } });
|
|
2790
|
+
|
|
2791
|
+
let input$9 = ['background', 'border', 'date', 'description', 'placeAt', 'seriesIndexes', 'showOnSeries', 'text', 'textStyle', 'type'];
|
|
2792
|
+
let outputs$d = [];
|
|
2793
|
+
/**
|
|
2794
|
+
* StockEvents
|
|
2795
|
+
* ```html
|
|
2796
|
+
* <e-stockchart-stockevents>
|
|
2797
|
+
* <e-stockchart-stockevent></e-stockchart-stockevent>
|
|
2798
|
+
* </e-stockchart-stockevents>
|
|
2799
|
+
* ```
|
|
2800
|
+
*/
|
|
2801
|
+
class StockEventDirective extends ComplexBase {
|
|
2802
|
+
constructor(viewContainerRef) {
|
|
2803
|
+
super();
|
|
2804
|
+
this.viewContainerRef = viewContainerRef;
|
|
2805
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2806
|
+
this.registerEvents(outputs$d);
|
|
2807
|
+
this.directivePropList = input$9;
|
|
2808
|
+
}
|
|
2809
|
+
}
|
|
2810
|
+
StockEventDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockEventDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2811
|
+
StockEventDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockEventDirective, selector: "e-stockchart-indicators>e-stockchart-stockevent", inputs: { background: "background", border: "border", date: "date", description: "description", placeAt: "placeAt", seriesIndexes: "seriesIndexes", showOnSeries: "showOnSeries", text: "text", textStyle: "textStyle", type: "type" }, usesInheritance: true, ngImport: i0 });
|
|
2812
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockEventDirective, decorators: [{
|
|
2813
|
+
type: Directive,
|
|
2814
|
+
args: [{
|
|
2815
|
+
selector: 'e-stockchart-indicators>e-stockchart-stockevent',
|
|
2816
|
+
inputs: input$9,
|
|
2817
|
+
outputs: outputs$d,
|
|
2818
|
+
queries: {}
|
|
2819
|
+
}]
|
|
2820
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2821
|
+
/**
|
|
2822
|
+
* StockEvent Array Directive
|
|
2823
|
+
* @private
|
|
2824
|
+
*/
|
|
2825
|
+
class StockEventsDirective extends ArrayBase {
|
|
2826
|
+
constructor() {
|
|
2827
|
+
super('stockevents');
|
|
2828
|
+
}
|
|
2829
|
+
}
|
|
2830
|
+
StockEventsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockEventsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2831
|
+
StockEventsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockEventsDirective, selector: "ejs-stockchart>e-stockchart-stockevents", queries: [{ propertyName: "children", predicate: StockEventDirective }], usesInheritance: true, ngImport: i0 });
|
|
2832
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockEventsDirective, decorators: [{
|
|
2833
|
+
type: Directive,
|
|
2834
|
+
args: [{
|
|
2835
|
+
selector: 'ejs-stockchart>e-stockchart-stockevents',
|
|
2836
|
+
queries: {
|
|
2837
|
+
children: new ContentChildren(StockEventDirective)
|
|
2838
|
+
},
|
|
2839
|
+
}]
|
|
2840
|
+
}], ctorParameters: function () { return []; } });
|
|
2841
|
+
|
|
2842
|
+
let input$8 = ['animation', 'bandColor', 'close', 'dPeriod', 'dashArray', 'dataSource', 'fastPeriod', 'field', 'fill', 'high', 'kPeriod', 'low', 'lowerLine', 'macdLine', 'macdNegativeColor', 'macdPositiveColor', 'macdType', 'open', 'overBought', 'overSold', 'period', 'periodLine', 'pointColorMapping', 'query', 'seriesName', 'showZones', 'slowPeriod', 'standardDeviation', 'type', 'upperLine', 'volume', 'width', 'xAxisName', 'xName', 'yAxisName'];
|
|
2843
|
+
let outputs$c = [];
|
|
2844
|
+
/**
|
|
2845
|
+
* Indicator Directive
|
|
2846
|
+
* ```html
|
|
2847
|
+
* <e-stockchart-indicators>
|
|
2848
|
+
* <e-stockchart-indicator></e-stockchart-indicator>
|
|
2849
|
+
* </e-stockchart-indicators>
|
|
2850
|
+
* ```
|
|
2851
|
+
*/
|
|
2852
|
+
class StockChartIndicatorDirective extends ComplexBase {
|
|
2853
|
+
constructor(viewContainerRef) {
|
|
2854
|
+
super();
|
|
2855
|
+
this.viewContainerRef = viewContainerRef;
|
|
2856
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
2857
|
+
this.registerEvents(outputs$c);
|
|
2858
|
+
this.directivePropList = input$8;
|
|
2859
|
+
}
|
|
2860
|
+
}
|
|
2861
|
+
StockChartIndicatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartIndicatorDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2862
|
+
StockChartIndicatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartIndicatorDirective, selector: "e-stockchart-indicators>e-stockchart-indicator", inputs: { animation: "animation", bandColor: "bandColor", close: "close", dPeriod: "dPeriod", dashArray: "dashArray", dataSource: "dataSource", fastPeriod: "fastPeriod", field: "field", fill: "fill", high: "high", kPeriod: "kPeriod", low: "low", lowerLine: "lowerLine", macdLine: "macdLine", macdNegativeColor: "macdNegativeColor", macdPositiveColor: "macdPositiveColor", macdType: "macdType", open: "open", overBought: "overBought", overSold: "overSold", period: "period", periodLine: "periodLine", pointColorMapping: "pointColorMapping", query: "query", seriesName: "seriesName", showZones: "showZones", slowPeriod: "slowPeriod", standardDeviation: "standardDeviation", type: "type", upperLine: "upperLine", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName" }, usesInheritance: true, ngImport: i0 });
|
|
2863
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartIndicatorDirective, decorators: [{
|
|
2864
|
+
type: Directive,
|
|
2865
|
+
args: [{
|
|
2866
|
+
selector: 'e-stockchart-indicators>e-stockchart-indicator',
|
|
2867
|
+
inputs: input$8,
|
|
2868
|
+
outputs: outputs$c,
|
|
2869
|
+
queries: {}
|
|
2870
|
+
}]
|
|
2871
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
2872
|
+
/**
|
|
2873
|
+
* StockChartIndicator Array Directive
|
|
2874
|
+
* @private
|
|
2875
|
+
*/
|
|
2876
|
+
class StockChartIndicatorsDirective extends ArrayBase {
|
|
2877
|
+
constructor() {
|
|
2878
|
+
super('indicators');
|
|
2879
|
+
}
|
|
2880
|
+
}
|
|
2881
|
+
StockChartIndicatorsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartIndicatorsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2882
|
+
StockChartIndicatorsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartIndicatorsDirective, selector: "ejs-stockchart>e-stockchart-indicators", queries: [{ propertyName: "children", predicate: StockChartIndicatorDirective }], usesInheritance: true, ngImport: i0 });
|
|
2883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartIndicatorsDirective, decorators: [{
|
|
2884
|
+
type: Directive,
|
|
2885
|
+
args: [{
|
|
2886
|
+
selector: 'ejs-stockchart>e-stockchart-indicators',
|
|
2887
|
+
queries: {
|
|
2888
|
+
children: new ContentChildren(StockChartIndicatorDirective)
|
|
2889
|
+
},
|
|
2890
|
+
}]
|
|
2891
|
+
}], ctorParameters: function () { return []; } });
|
|
2892
|
+
|
|
2893
|
+
const inputs$3 = ['annotations', 'axes', 'background', 'border', 'chartArea', 'crosshair', 'dataSource', 'enableCustomRange', 'enablePeriodSelector', 'enablePersistence', 'enableRtl', 'enableSelector', 'exportType', 'height', 'indicatorType', 'indicators', 'isMultiSelect', 'isSelect', 'isTransposed', 'legendSettings', 'locale', 'margin', 'noDataTemplate', 'periods', 'primaryXAxis', 'primaryYAxis', 'rows', 'selectedDataIndexes', 'selectionMode', 'series', 'seriesType', 'stockEvents', 'theme', 'title', 'titleStyle', 'tooltip', 'trendlineType', 'width', 'zoomSettings'];
|
|
2894
|
+
const outputs$b = ['axisLabelRender', 'beforeExport', 'legendClick', 'legendRender', 'load', 'loaded', 'onZooming', 'pointClick', 'pointMove', 'rangeChange', 'selectorRender', 'seriesRender', 'stockChartMouseClick', 'stockChartMouseDown', 'stockChartMouseLeave', 'stockChartMouseMove', 'stockChartMouseUp', 'stockEventRender', 'tooltipRender', 'dataSourceChange'];
|
|
2895
|
+
const twoWays$3 = ['dataSource'];
|
|
2896
|
+
/**
|
|
2897
|
+
* Stock Chart Component
|
|
2898
|
+
* ```html
|
|
2899
|
+
* <ejs-stockchart></ejs-stockchart>
|
|
2900
|
+
* ```
|
|
2901
|
+
*/
|
|
2902
|
+
let StockChartComponent = class StockChartComponent extends StockChart {
|
|
2903
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
2904
|
+
super();
|
|
2905
|
+
this.ngEle = ngEle;
|
|
2906
|
+
this.srenderer = srenderer;
|
|
2907
|
+
this.viewContainerRef = viewContainerRef;
|
|
2908
|
+
this.injector = injector;
|
|
2909
|
+
this.tags = ['series', 'axes', 'rows', 'annotations', 'selectedDataIndexes', 'periods', 'stockEvents', 'indicators'];
|
|
2910
|
+
this.element = this.ngEle.nativeElement;
|
|
2911
|
+
this.injectedModules = this.injectedModules || [];
|
|
2912
|
+
try {
|
|
2913
|
+
let mod = this.injector.get('ChartsLineSeries');
|
|
2914
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2915
|
+
this.injectedModules.push(mod);
|
|
2916
|
+
}
|
|
2917
|
+
}
|
|
2918
|
+
catch { }
|
|
2919
|
+
try {
|
|
2920
|
+
let mod = this.injector.get('ChartsColumnSeries');
|
|
2921
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2922
|
+
this.injectedModules.push(mod);
|
|
2923
|
+
}
|
|
2924
|
+
}
|
|
2925
|
+
catch { }
|
|
2926
|
+
try {
|
|
2927
|
+
let mod = this.injector.get('ChartsSplineSeries');
|
|
2928
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2929
|
+
this.injectedModules.push(mod);
|
|
2930
|
+
}
|
|
2931
|
+
}
|
|
2932
|
+
catch { }
|
|
2933
|
+
try {
|
|
2934
|
+
let mod = this.injector.get('ChartsSplineAreaSeries');
|
|
2935
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2936
|
+
this.injectedModules.push(mod);
|
|
2937
|
+
}
|
|
2938
|
+
}
|
|
2939
|
+
catch { }
|
|
2940
|
+
try {
|
|
2941
|
+
let mod = this.injector.get('ChartsStripLine');
|
|
2942
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2943
|
+
this.injectedModules.push(mod);
|
|
2944
|
+
}
|
|
2945
|
+
}
|
|
2946
|
+
catch { }
|
|
2947
|
+
try {
|
|
2948
|
+
let mod = this.injector.get('ChartsAreaSeries');
|
|
2949
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2950
|
+
this.injectedModules.push(mod);
|
|
2951
|
+
}
|
|
2952
|
+
}
|
|
2953
|
+
catch { }
|
|
2954
|
+
try {
|
|
2955
|
+
let mod = this.injector.get('ChartsRangeAreaSeries');
|
|
2956
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2957
|
+
this.injectedModules.push(mod);
|
|
2958
|
+
}
|
|
2959
|
+
}
|
|
2960
|
+
catch { }
|
|
2961
|
+
try {
|
|
2962
|
+
let mod = this.injector.get('ChartsTooltip');
|
|
2963
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2964
|
+
this.injectedModules.push(mod);
|
|
2965
|
+
}
|
|
2966
|
+
}
|
|
2967
|
+
catch { }
|
|
2968
|
+
try {
|
|
2969
|
+
let mod = this.injector.get('ChartsCrosshair');
|
|
2970
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2971
|
+
this.injectedModules.push(mod);
|
|
2972
|
+
}
|
|
2973
|
+
}
|
|
2974
|
+
catch { }
|
|
2975
|
+
try {
|
|
2976
|
+
let mod = this.injector.get('ChartsDateTime');
|
|
2977
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2978
|
+
this.injectedModules.push(mod);
|
|
2979
|
+
}
|
|
2980
|
+
}
|
|
2981
|
+
catch { }
|
|
2982
|
+
try {
|
|
2983
|
+
let mod = this.injector.get('ChartsZoom');
|
|
2984
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2985
|
+
this.injectedModules.push(mod);
|
|
2986
|
+
}
|
|
2987
|
+
}
|
|
2988
|
+
catch { }
|
|
2989
|
+
try {
|
|
2990
|
+
let mod = this.injector.get('ChartsDataLabel');
|
|
2991
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2992
|
+
this.injectedModules.push(mod);
|
|
2993
|
+
}
|
|
2994
|
+
}
|
|
2995
|
+
catch { }
|
|
2996
|
+
try {
|
|
2997
|
+
let mod = this.injector.get('ChartsSelection');
|
|
2998
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
2999
|
+
this.injectedModules.push(mod);
|
|
3000
|
+
}
|
|
3001
|
+
}
|
|
3002
|
+
catch { }
|
|
3003
|
+
try {
|
|
3004
|
+
let mod = this.injector.get('ChartsChartAnnotation');
|
|
3005
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3006
|
+
this.injectedModules.push(mod);
|
|
3007
|
+
}
|
|
3008
|
+
}
|
|
3009
|
+
catch { }
|
|
3010
|
+
try {
|
|
3011
|
+
let mod = this.injector.get('ChartsHiloSeries');
|
|
3012
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3013
|
+
this.injectedModules.push(mod);
|
|
3014
|
+
}
|
|
3015
|
+
}
|
|
3016
|
+
catch { }
|
|
3017
|
+
try {
|
|
3018
|
+
let mod = this.injector.get('ChartsHiloOpenCloseSeries');
|
|
3019
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3020
|
+
this.injectedModules.push(mod);
|
|
3021
|
+
}
|
|
3022
|
+
}
|
|
3023
|
+
catch { }
|
|
3024
|
+
try {
|
|
3025
|
+
let mod = this.injector.get('ChartsCandleSeries');
|
|
3026
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3027
|
+
this.injectedModules.push(mod);
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
3030
|
+
catch { }
|
|
3031
|
+
try {
|
|
3032
|
+
let mod = this.injector.get('ChartsSmaIndicator');
|
|
3033
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3034
|
+
this.injectedModules.push(mod);
|
|
3035
|
+
}
|
|
3036
|
+
}
|
|
3037
|
+
catch { }
|
|
3038
|
+
try {
|
|
3039
|
+
let mod = this.injector.get('ChartsTmaIndicator');
|
|
3040
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3041
|
+
this.injectedModules.push(mod);
|
|
3042
|
+
}
|
|
3043
|
+
}
|
|
3044
|
+
catch { }
|
|
3045
|
+
try {
|
|
3046
|
+
let mod = this.injector.get('ChartsEmaIndicator');
|
|
3047
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3048
|
+
this.injectedModules.push(mod);
|
|
3049
|
+
}
|
|
3050
|
+
}
|
|
3051
|
+
catch { }
|
|
3052
|
+
try {
|
|
3053
|
+
let mod = this.injector.get('ChartsAccumulationDistributionIndicator');
|
|
3054
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3055
|
+
this.injectedModules.push(mod);
|
|
3056
|
+
}
|
|
3057
|
+
}
|
|
3058
|
+
catch { }
|
|
3059
|
+
try {
|
|
3060
|
+
let mod = this.injector.get('ChartsMacdIndicator');
|
|
3061
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3062
|
+
this.injectedModules.push(mod);
|
|
3063
|
+
}
|
|
3064
|
+
}
|
|
3065
|
+
catch { }
|
|
3066
|
+
try {
|
|
3067
|
+
let mod = this.injector.get('ChartsAtrIndicator');
|
|
3068
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3069
|
+
this.injectedModules.push(mod);
|
|
3070
|
+
}
|
|
3071
|
+
}
|
|
3072
|
+
catch { }
|
|
3073
|
+
try {
|
|
3074
|
+
let mod = this.injector.get('ChartsRsiIndicator');
|
|
3075
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3076
|
+
this.injectedModules.push(mod);
|
|
3077
|
+
}
|
|
3078
|
+
}
|
|
3079
|
+
catch { }
|
|
3080
|
+
try {
|
|
3081
|
+
let mod = this.injector.get('ChartsMomentumIndicator');
|
|
3082
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3083
|
+
this.injectedModules.push(mod);
|
|
3084
|
+
}
|
|
3085
|
+
}
|
|
3086
|
+
catch { }
|
|
3087
|
+
try {
|
|
3088
|
+
let mod = this.injector.get('ChartsStochasticIndicator');
|
|
3089
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3090
|
+
this.injectedModules.push(mod);
|
|
3091
|
+
}
|
|
3092
|
+
}
|
|
3093
|
+
catch { }
|
|
3094
|
+
try {
|
|
3095
|
+
let mod = this.injector.get('ChartsBollingerBands');
|
|
3096
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3097
|
+
this.injectedModules.push(mod);
|
|
3098
|
+
}
|
|
3099
|
+
}
|
|
3100
|
+
catch { }
|
|
3101
|
+
try {
|
|
3102
|
+
let mod = this.injector.get('ChartsTrendlines');
|
|
3103
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3104
|
+
this.injectedModules.push(mod);
|
|
3105
|
+
}
|
|
3106
|
+
}
|
|
3107
|
+
catch { }
|
|
3108
|
+
try {
|
|
3109
|
+
let mod = this.injector.get('ChartsRangeTooltip');
|
|
3110
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3111
|
+
this.injectedModules.push(mod);
|
|
3112
|
+
}
|
|
3113
|
+
}
|
|
3114
|
+
catch { }
|
|
3115
|
+
try {
|
|
3116
|
+
let mod = this.injector.get('ChartsExport');
|
|
3117
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3118
|
+
this.injectedModules.push(mod);
|
|
3119
|
+
}
|
|
3120
|
+
}
|
|
3121
|
+
catch { }
|
|
3122
|
+
try {
|
|
3123
|
+
let mod = this.injector.get('ChartsStockLegend');
|
|
3124
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3125
|
+
this.injectedModules.push(mod);
|
|
3126
|
+
}
|
|
3127
|
+
}
|
|
3128
|
+
catch { }
|
|
3129
|
+
try {
|
|
3130
|
+
let mod = this.injector.get('ChartsDateTimeCategory');
|
|
3131
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3132
|
+
this.injectedModules.push(mod);
|
|
3133
|
+
}
|
|
3134
|
+
}
|
|
3135
|
+
catch { }
|
|
3136
|
+
try {
|
|
3137
|
+
let mod = this.injector.get('ChartsLastValueLabel');
|
|
3138
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3139
|
+
this.injectedModules.push(mod);
|
|
3140
|
+
}
|
|
3141
|
+
}
|
|
3142
|
+
catch { }
|
|
3143
|
+
this.registerEvents(outputs$b);
|
|
3144
|
+
this.addTwoWay.call(this, twoWays$3);
|
|
3145
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
3146
|
+
this.context = new ComponentBase();
|
|
3147
|
+
}
|
|
3148
|
+
ngOnInit() {
|
|
3149
|
+
this.context.ngOnInit(this);
|
|
3150
|
+
}
|
|
3151
|
+
ngAfterViewInit() {
|
|
3152
|
+
this.context.ngAfterViewInit(this);
|
|
3153
|
+
}
|
|
3154
|
+
ngOnDestroy() {
|
|
3155
|
+
this.context.ngOnDestroy(this);
|
|
3156
|
+
}
|
|
3157
|
+
ngAfterContentChecked() {
|
|
3158
|
+
this.tagObjects[0].instance = this.childSeries;
|
|
3159
|
+
if (this.childAxes) {
|
|
3160
|
+
this.tagObjects[1].instance = this.childAxes;
|
|
3161
|
+
}
|
|
3162
|
+
if (this.childRows) {
|
|
3163
|
+
this.tagObjects[2].instance = this.childRows;
|
|
3164
|
+
}
|
|
3165
|
+
if (this.childAnnotations) {
|
|
3166
|
+
this.tagObjects[3].instance = this.childAnnotations;
|
|
3167
|
+
}
|
|
3168
|
+
if (this.childSelectedDataIndexes) {
|
|
3169
|
+
this.tagObjects[4].instance = this.childSelectedDataIndexes;
|
|
3170
|
+
}
|
|
3171
|
+
if (this.childPeriods) {
|
|
3172
|
+
this.tagObjects[5].instance = this.childPeriods;
|
|
3173
|
+
}
|
|
3174
|
+
if (this.childStockEvents) {
|
|
3175
|
+
this.tagObjects[6].instance = this.childStockEvents;
|
|
3176
|
+
}
|
|
3177
|
+
if (this.childIndicators) {
|
|
3178
|
+
this.tagObjects[7].instance = this.childIndicators;
|
|
3179
|
+
}
|
|
3180
|
+
this.context.ngAfterContentChecked(this);
|
|
3181
|
+
}
|
|
3182
|
+
};
|
|
3183
|
+
StockChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3184
|
+
StockChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: StockChartComponent, selector: "ejs-stockchart", inputs: { annotations: "annotations", axes: "axes", background: "background", border: "border", chartArea: "chartArea", crosshair: "crosshair", dataSource: "dataSource", enableCustomRange: "enableCustomRange", enablePeriodSelector: "enablePeriodSelector", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSelector: "enableSelector", exportType: "exportType", height: "height", indicatorType: "indicatorType", indicators: "indicators", isMultiSelect: "isMultiSelect", isSelect: "isSelect", isTransposed: "isTransposed", legendSettings: "legendSettings", locale: "locale", margin: "margin", noDataTemplate: "noDataTemplate", periods: "periods", primaryXAxis: "primaryXAxis", primaryYAxis: "primaryYAxis", rows: "rows", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", series: "series", seriesType: "seriesType", stockEvents: "stockEvents", theme: "theme", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", trendlineType: "trendlineType", width: "width", zoomSettings: "zoomSettings" }, outputs: { axisLabelRender: "axisLabelRender", beforeExport: "beforeExport", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", onZooming: "onZooming", pointClick: "pointClick", pointMove: "pointMove", rangeChange: "rangeChange", selectorRender: "selectorRender", seriesRender: "seriesRender", stockChartMouseClick: "stockChartMouseClick", stockChartMouseDown: "stockChartMouseDown", stockChartMouseLeave: "stockChartMouseLeave", stockChartMouseMove: "stockChartMouseMove", stockChartMouseUp: "stockChartMouseUp", stockEventRender: "stockEventRender", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: StockChartSeriesCollectionDirective, descendants: true }, { propertyName: "childAxes", first: true, predicate: StockChartAxesDirective, descendants: true }, { propertyName: "childRows", first: true, predicate: StockChartRowsDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: StockChartAnnotationsDirective, descendants: true }, { propertyName: "childSelectedDataIndexes", first: true, predicate: StockChartSelectedDataIndexesDirective, descendants: true }, { propertyName: "childPeriods", first: true, predicate: StockChartPeriodsDirective, descendants: true }, { propertyName: "childStockEvents", first: true, predicate: StockEventsDirective, descendants: true }, { propertyName: "childIndicators", first: true, predicate: StockChartIndicatorsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3185
|
+
__decorate([
|
|
3186
|
+
Template()
|
|
3187
|
+
], StockChartComponent.prototype, "tooltip_template", void 0);
|
|
3188
|
+
StockChartComponent = __decorate([
|
|
3189
|
+
ComponentMixins([ComponentBase])
|
|
3190
|
+
], StockChartComponent);
|
|
3191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartComponent, decorators: [{
|
|
3192
|
+
type: Component,
|
|
3193
|
+
args: [{
|
|
3194
|
+
selector: 'ejs-stockchart',
|
|
3195
|
+
inputs: inputs$3,
|
|
3196
|
+
outputs: outputs$b,
|
|
3197
|
+
template: '',
|
|
3198
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3199
|
+
queries: {
|
|
3200
|
+
childSeries: new ContentChild(StockChartSeriesCollectionDirective),
|
|
3201
|
+
childAxes: new ContentChild(StockChartAxesDirective),
|
|
3202
|
+
childRows: new ContentChild(StockChartRowsDirective),
|
|
3203
|
+
childAnnotations: new ContentChild(StockChartAnnotationsDirective),
|
|
3204
|
+
childSelectedDataIndexes: new ContentChild(StockChartSelectedDataIndexesDirective),
|
|
3205
|
+
childPeriods: new ContentChild(StockChartPeriodsDirective),
|
|
3206
|
+
childStockEvents: new ContentChild(StockEventsDirective),
|
|
3207
|
+
childIndicators: new ContentChild(StockChartIndicatorsDirective)
|
|
3208
|
+
}
|
|
3209
|
+
}]
|
|
3210
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
3211
|
+
type: ContentChild,
|
|
3212
|
+
args: ['tooltipTemplate']
|
|
3213
|
+
}] } });
|
|
3214
|
+
|
|
3215
|
+
/**
|
|
3216
|
+
* NgModule definition for the StockChart component.
|
|
3217
|
+
*/
|
|
3218
|
+
class StockChartModule {
|
|
3219
|
+
}
|
|
3220
|
+
StockChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3221
|
+
StockChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartModule, declarations: [StockChartComponent,
|
|
3222
|
+
StockChartTrendlineDirective,
|
|
3223
|
+
StockChartTrendlinesDirective,
|
|
3224
|
+
StockChartSeriesDirective,
|
|
3225
|
+
StockChartSeriesCollectionDirective,
|
|
3226
|
+
StockChartAxisDirective,
|
|
3227
|
+
StockChartAxesDirective,
|
|
3228
|
+
StockChartRowDirective,
|
|
3229
|
+
StockChartRowsDirective,
|
|
3230
|
+
StockChartAnnotationDirective,
|
|
3231
|
+
StockChartAnnotationsDirective,
|
|
3232
|
+
StockChartSelectedDataIndexDirective,
|
|
3233
|
+
StockChartSelectedDataIndexesDirective,
|
|
3234
|
+
StockChartPeriodDirective,
|
|
3235
|
+
StockChartPeriodsDirective,
|
|
3236
|
+
StockEventDirective,
|
|
3237
|
+
StockEventsDirective,
|
|
3238
|
+
StockChartIndicatorDirective,
|
|
3239
|
+
StockChartIndicatorsDirective], imports: [CommonModule], exports: [StockChartComponent,
|
|
3240
|
+
StockChartTrendlineDirective,
|
|
3241
|
+
StockChartTrendlinesDirective,
|
|
3242
|
+
StockChartSeriesDirective,
|
|
3243
|
+
StockChartSeriesCollectionDirective,
|
|
3244
|
+
StockChartAxisDirective,
|
|
3245
|
+
StockChartAxesDirective,
|
|
3246
|
+
StockChartRowDirective,
|
|
3247
|
+
StockChartRowsDirective,
|
|
3248
|
+
StockChartAnnotationDirective,
|
|
3249
|
+
StockChartAnnotationsDirective,
|
|
3250
|
+
StockChartSelectedDataIndexDirective,
|
|
3251
|
+
StockChartSelectedDataIndexesDirective,
|
|
3252
|
+
StockChartPeriodDirective,
|
|
3253
|
+
StockChartPeriodsDirective,
|
|
3254
|
+
StockEventDirective,
|
|
3255
|
+
StockEventsDirective,
|
|
3256
|
+
StockChartIndicatorDirective,
|
|
3257
|
+
StockChartIndicatorsDirective] });
|
|
3258
|
+
StockChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartModule, imports: [[CommonModule]] });
|
|
3259
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartModule, decorators: [{
|
|
3260
|
+
type: NgModule,
|
|
3261
|
+
args: [{
|
|
3262
|
+
imports: [CommonModule],
|
|
3263
|
+
declarations: [
|
|
3264
|
+
StockChartComponent,
|
|
3265
|
+
StockChartTrendlineDirective,
|
|
3266
|
+
StockChartTrendlinesDirective,
|
|
3267
|
+
StockChartSeriesDirective,
|
|
3268
|
+
StockChartSeriesCollectionDirective,
|
|
3269
|
+
StockChartAxisDirective,
|
|
3270
|
+
StockChartAxesDirective,
|
|
3271
|
+
StockChartRowDirective,
|
|
3272
|
+
StockChartRowsDirective,
|
|
3273
|
+
StockChartAnnotationDirective,
|
|
3274
|
+
StockChartAnnotationsDirective,
|
|
3275
|
+
StockChartSelectedDataIndexDirective,
|
|
3276
|
+
StockChartSelectedDataIndexesDirective,
|
|
3277
|
+
StockChartPeriodDirective,
|
|
3278
|
+
StockChartPeriodsDirective,
|
|
3279
|
+
StockEventDirective,
|
|
3280
|
+
StockEventsDirective,
|
|
3281
|
+
StockChartIndicatorDirective,
|
|
3282
|
+
StockChartIndicatorsDirective
|
|
3283
|
+
],
|
|
3284
|
+
exports: [
|
|
3285
|
+
StockChartComponent,
|
|
3286
|
+
StockChartTrendlineDirective,
|
|
3287
|
+
StockChartTrendlinesDirective,
|
|
3288
|
+
StockChartSeriesDirective,
|
|
3289
|
+
StockChartSeriesCollectionDirective,
|
|
3290
|
+
StockChartAxisDirective,
|
|
3291
|
+
StockChartAxesDirective,
|
|
3292
|
+
StockChartRowDirective,
|
|
3293
|
+
StockChartRowsDirective,
|
|
3294
|
+
StockChartAnnotationDirective,
|
|
3295
|
+
StockChartAnnotationsDirective,
|
|
3296
|
+
StockChartSelectedDataIndexDirective,
|
|
3297
|
+
StockChartSelectedDataIndexesDirective,
|
|
3298
|
+
StockChartPeriodDirective,
|
|
3299
|
+
StockChartPeriodsDirective,
|
|
3300
|
+
StockEventDirective,
|
|
3301
|
+
StockEventsDirective,
|
|
3302
|
+
StockChartIndicatorDirective,
|
|
3303
|
+
StockChartIndicatorsDirective
|
|
3304
|
+
]
|
|
3305
|
+
}]
|
|
3306
|
+
}] });
|
|
3307
|
+
|
|
3308
|
+
const StockLegendService = { provide: 'ChartsStockLegend', useValue: StockLegend };
|
|
3309
|
+
/**
|
|
3310
|
+
* NgModule definition for the StockChart component with providers.
|
|
3311
|
+
*/
|
|
3312
|
+
class StockChartAllModule {
|
|
3313
|
+
}
|
|
3314
|
+
StockChartAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3315
|
+
StockChartAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAllModule, imports: [CommonModule, StockChartModule], exports: [StockChartModule] });
|
|
3316
|
+
StockChartAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAllModule, providers: [
|
|
3317
|
+
StockLegendService
|
|
3318
|
+
], imports: [[CommonModule, StockChartModule], StockChartModule] });
|
|
3319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAllModule, decorators: [{
|
|
3320
|
+
type: NgModule,
|
|
3321
|
+
args: [{
|
|
3322
|
+
imports: [CommonModule, StockChartModule],
|
|
3323
|
+
exports: [
|
|
3324
|
+
StockChartModule
|
|
3325
|
+
],
|
|
3326
|
+
providers: [
|
|
3327
|
+
StockLegendService
|
|
3328
|
+
]
|
|
3329
|
+
}]
|
|
3330
|
+
}] });
|
|
3331
|
+
|
|
3332
|
+
let input$7 = ['color', 'end', 'index', 'legendImageUrl', 'name', 'opacity', 'shape'];
|
|
3333
|
+
let outputs$a = [];
|
|
3334
|
+
/**
|
|
3335
|
+
* BulletRange Directive
|
|
3336
|
+
* ```html
|
|
3337
|
+
* <e-bullet-range-collection>
|
|
3338
|
+
* <e-bullet-range></e-bullet-range>
|
|
3339
|
+
* </e-bullet-range-collection>
|
|
3340
|
+
* ```
|
|
3341
|
+
*/
|
|
3342
|
+
class BulletRangeDirective extends ComplexBase {
|
|
3343
|
+
constructor(viewContainerRef) {
|
|
3344
|
+
super();
|
|
3345
|
+
this.viewContainerRef = viewContainerRef;
|
|
3346
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
3347
|
+
this.registerEvents(outputs$a);
|
|
3348
|
+
this.directivePropList = input$7;
|
|
3349
|
+
}
|
|
3350
|
+
}
|
|
3351
|
+
BulletRangeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletRangeDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3352
|
+
BulletRangeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: BulletRangeDirective, selector: "e-bullet-range-collection>e-bullet-range", inputs: { color: "color", end: "end", index: "index", legendImageUrl: "legendImageUrl", name: "name", opacity: "opacity", shape: "shape" }, usesInheritance: true, ngImport: i0 });
|
|
3353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletRangeDirective, decorators: [{
|
|
3354
|
+
type: Directive,
|
|
3355
|
+
args: [{
|
|
3356
|
+
selector: 'e-bullet-range-collection>e-bullet-range',
|
|
3357
|
+
inputs: input$7,
|
|
3358
|
+
outputs: outputs$a,
|
|
3359
|
+
queries: {}
|
|
3360
|
+
}]
|
|
3361
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
3362
|
+
/**
|
|
3363
|
+
* BulletRange Array Directive
|
|
3364
|
+
* @private
|
|
3365
|
+
*/
|
|
3366
|
+
class BulletRangeCollectionDirective extends ArrayBase {
|
|
3367
|
+
constructor() {
|
|
3368
|
+
super('ranges');
|
|
3369
|
+
}
|
|
3370
|
+
}
|
|
3371
|
+
BulletRangeCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletRangeCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3372
|
+
BulletRangeCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: BulletRangeCollectionDirective, selector: "ej-bulletchart>e-bullet-range-collection", queries: [{ propertyName: "children", predicate: BulletRangeDirective }], usesInheritance: true, ngImport: i0 });
|
|
3373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletRangeCollectionDirective, decorators: [{
|
|
3374
|
+
type: Directive,
|
|
3375
|
+
args: [{
|
|
3376
|
+
selector: 'ej-bulletchart>e-bullet-range-collection',
|
|
3377
|
+
queries: {
|
|
3378
|
+
children: new ContentChildren(BulletRangeDirective)
|
|
3379
|
+
},
|
|
3380
|
+
}]
|
|
3381
|
+
}], ctorParameters: function () { return []; } });
|
|
3382
|
+
|
|
3383
|
+
const inputs$2 = ['animation', 'border', 'categoryField', 'categoryLabelStyle', 'dataLabel', 'dataSource', 'enableGroupSeparator', 'enablePersistence', 'enableRtl', 'height', 'interval', 'labelFormat', 'labelPosition', 'labelStyle', 'legendSettings', 'locale', 'majorTickLines', 'margin', 'maximum', 'minimum', 'minorTickLines', 'minorTicksPerInterval', 'opposedPosition', 'orientation', 'query', 'ranges', 'subtitle', 'subtitleStyle', 'tabIndex', 'targetColor', 'targetField', 'targetTypes', 'targetWidth', 'theme', 'tickPosition', 'title', 'titlePosition', 'titleStyle', 'tooltip', 'type', 'valueBorder', 'valueField', 'valueFill', 'valueHeight', 'width'];
|
|
3384
|
+
const outputs$9 = ['beforePrint', 'bulletChartMouseClick', 'legendRender', 'load', 'loaded', 'tooltipRender', 'dataSourceChange'];
|
|
3385
|
+
const twoWays$2 = ['dataSource'];
|
|
3386
|
+
/**
|
|
3387
|
+
* BulletChart Component
|
|
3388
|
+
* ```html
|
|
3389
|
+
* <ejs-bulletchart></ejs-bulletchart>
|
|
3390
|
+
* ```
|
|
3391
|
+
*/
|
|
3392
|
+
let BulletChartComponent = class BulletChartComponent extends BulletChart {
|
|
3393
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
3394
|
+
super();
|
|
3395
|
+
this.ngEle = ngEle;
|
|
3396
|
+
this.srenderer = srenderer;
|
|
3397
|
+
this.viewContainerRef = viewContainerRef;
|
|
3398
|
+
this.injector = injector;
|
|
3399
|
+
this.tags = ['ranges'];
|
|
3400
|
+
this.element = this.ngEle.nativeElement;
|
|
3401
|
+
this.injectedModules = this.injectedModules || [];
|
|
3402
|
+
try {
|
|
3403
|
+
let mod = this.injector.get('ChartsBulletTooltip');
|
|
3404
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3405
|
+
this.injectedModules.push(mod);
|
|
3406
|
+
}
|
|
3407
|
+
}
|
|
3408
|
+
catch { }
|
|
3409
|
+
try {
|
|
3410
|
+
let mod = this.injector.get('ChartsBulletChartLegend');
|
|
3411
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3412
|
+
this.injectedModules.push(mod);
|
|
3413
|
+
}
|
|
3414
|
+
}
|
|
3415
|
+
catch { }
|
|
3416
|
+
this.registerEvents(outputs$9);
|
|
3417
|
+
this.addTwoWay.call(this, twoWays$2);
|
|
3418
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
3419
|
+
this.context = new ComponentBase();
|
|
3420
|
+
}
|
|
3421
|
+
ngOnInit() {
|
|
3422
|
+
this.context.ngOnInit(this);
|
|
3423
|
+
}
|
|
3424
|
+
ngAfterViewInit() {
|
|
3425
|
+
this.context.ngAfterViewInit(this);
|
|
3426
|
+
}
|
|
3427
|
+
ngOnDestroy() {
|
|
3428
|
+
this.context.ngOnDestroy(this);
|
|
3429
|
+
}
|
|
3430
|
+
ngAfterContentChecked() {
|
|
3431
|
+
this.tagObjects[0].instance = this.childRanges;
|
|
3432
|
+
this.context.ngAfterContentChecked(this);
|
|
3433
|
+
}
|
|
3434
|
+
};
|
|
3435
|
+
BulletChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3436
|
+
BulletChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: BulletChartComponent, selector: "ejs-bulletchart", inputs: { animation: "animation", border: "border", categoryField: "categoryField", categoryLabelStyle: "categoryLabelStyle", dataLabel: "dataLabel", dataSource: "dataSource", enableGroupSeparator: "enableGroupSeparator", enablePersistence: "enablePersistence", enableRtl: "enableRtl", height: "height", interval: "interval", labelFormat: "labelFormat", labelPosition: "labelPosition", labelStyle: "labelStyle", legendSettings: "legendSettings", locale: "locale", majorTickLines: "majorTickLines", margin: "margin", maximum: "maximum", minimum: "minimum", minorTickLines: "minorTickLines", minorTicksPerInterval: "minorTicksPerInterval", opposedPosition: "opposedPosition", orientation: "orientation", query: "query", ranges: "ranges", subtitle: "subtitle", subtitleStyle: "subtitleStyle", tabIndex: "tabIndex", targetColor: "targetColor", targetField: "targetField", targetTypes: "targetTypes", targetWidth: "targetWidth", theme: "theme", tickPosition: "tickPosition", title: "title", titlePosition: "titlePosition", titleStyle: "titleStyle", tooltip: "tooltip", type: "type", valueBorder: "valueBorder", valueField: "valueField", valueFill: "valueFill", valueHeight: "valueHeight", width: "width" }, outputs: { beforePrint: "beforePrint", bulletChartMouseClick: "bulletChartMouseClick", legendRender: "legendRender", load: "load", loaded: "loaded", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childRanges", first: true, predicate: BulletRangeCollectionDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3437
|
+
__decorate([
|
|
3438
|
+
Template()
|
|
3439
|
+
], BulletChartComponent.prototype, "tooltip_template", void 0);
|
|
3440
|
+
BulletChartComponent = __decorate([
|
|
3441
|
+
ComponentMixins([ComponentBase])
|
|
3442
|
+
], BulletChartComponent);
|
|
3443
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartComponent, decorators: [{
|
|
3444
|
+
type: Component,
|
|
3445
|
+
args: [{
|
|
3446
|
+
selector: 'ejs-bulletchart',
|
|
3447
|
+
inputs: inputs$2,
|
|
3448
|
+
outputs: outputs$9,
|
|
3449
|
+
template: '',
|
|
3450
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3451
|
+
queries: {
|
|
3452
|
+
childRanges: new ContentChild(BulletRangeCollectionDirective)
|
|
3453
|
+
}
|
|
3454
|
+
}]
|
|
3455
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
3456
|
+
type: ContentChild,
|
|
3457
|
+
args: ['tooltipTemplate']
|
|
3458
|
+
}] } });
|
|
3459
|
+
|
|
3460
|
+
/**
|
|
3461
|
+
* NgModule definition for the BulletChart component.
|
|
3462
|
+
*/
|
|
3463
|
+
class BulletChartModule {
|
|
3464
|
+
}
|
|
3465
|
+
BulletChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3466
|
+
BulletChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartModule, declarations: [BulletChartComponent,
|
|
3467
|
+
BulletRangeDirective,
|
|
3468
|
+
BulletRangeCollectionDirective], imports: [CommonModule], exports: [BulletChartComponent,
|
|
3469
|
+
BulletRangeDirective,
|
|
3470
|
+
BulletRangeCollectionDirective] });
|
|
3471
|
+
BulletChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartModule, imports: [[CommonModule]] });
|
|
3472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartModule, decorators: [{
|
|
3473
|
+
type: NgModule,
|
|
3474
|
+
args: [{
|
|
3475
|
+
imports: [CommonModule],
|
|
3476
|
+
declarations: [
|
|
3477
|
+
BulletChartComponent,
|
|
3478
|
+
BulletRangeDirective,
|
|
3479
|
+
BulletRangeCollectionDirective
|
|
3480
|
+
],
|
|
3481
|
+
exports: [
|
|
3482
|
+
BulletChartComponent,
|
|
3483
|
+
BulletRangeDirective,
|
|
3484
|
+
BulletRangeCollectionDirective
|
|
3485
|
+
]
|
|
3486
|
+
}]
|
|
3487
|
+
}] });
|
|
3488
|
+
|
|
3489
|
+
const BulletTooltipService = { provide: 'ChartsBulletTooltip', useValue: BulletTooltip };
|
|
3490
|
+
const BulletChartLegendService = { provide: 'ChartsBulletChartLegend', useValue: BulletChartLegend };
|
|
3491
|
+
/**
|
|
3492
|
+
* NgModule definition for the BulletChart component with providers.
|
|
3493
|
+
*/
|
|
3494
|
+
class BulletChartAllModule {
|
|
3495
|
+
}
|
|
3496
|
+
BulletChartAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3497
|
+
BulletChartAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartAllModule, imports: [CommonModule, BulletChartModule], exports: [BulletChartModule] });
|
|
3498
|
+
BulletChartAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartAllModule, providers: [
|
|
3499
|
+
BulletTooltipService,
|
|
3500
|
+
BulletChartLegendService
|
|
3501
|
+
], imports: [[CommonModule, BulletChartModule], BulletChartModule] });
|
|
3502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletChartAllModule, decorators: [{
|
|
3503
|
+
type: NgModule,
|
|
3504
|
+
args: [{
|
|
3505
|
+
imports: [CommonModule, BulletChartModule],
|
|
3506
|
+
exports: [
|
|
3507
|
+
BulletChartModule
|
|
3508
|
+
],
|
|
3509
|
+
providers: [
|
|
3510
|
+
BulletTooltipService,
|
|
3511
|
+
BulletChartLegendService
|
|
3512
|
+
]
|
|
3513
|
+
}]
|
|
3514
|
+
}] });
|
|
3515
|
+
|
|
3516
|
+
let input$6 = ['animation', 'columnFacet', 'columnSpacing', 'columnWidth', 'dataLabel', 'dataSource', 'emptyPointSettings', 'enableTooltip', 'fill', 'groupName', 'legendImageUrl', 'legendShape', 'name', 'opacity', 'pointColorMapping', 'query', 'size', 'stackingGroup', 'tooltipFormat', 'tooltipMappingName', 'type', 'visible', 'xAxisName', 'xName', 'yAxisName', 'yName'];
|
|
3517
|
+
let outputs$8 = [];
|
|
3518
|
+
/**
|
|
3519
|
+
* Series3D Directive
|
|
3520
|
+
* ```html
|
|
3521
|
+
* <e-chart3d-series-collection>
|
|
3522
|
+
* <e-chart3d-series></e-chart3d-series>
|
|
3523
|
+
* </e-chart3d-series-collection>
|
|
3524
|
+
* ```
|
|
3525
|
+
*/
|
|
3526
|
+
class Chart3DSeriesDirective extends ComplexBase {
|
|
3527
|
+
constructor(viewContainerRef) {
|
|
3528
|
+
super();
|
|
3529
|
+
this.viewContainerRef = viewContainerRef;
|
|
3530
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
3531
|
+
this.registerEvents(outputs$8);
|
|
3532
|
+
this.directivePropList = input$6;
|
|
3533
|
+
}
|
|
3534
|
+
}
|
|
3535
|
+
Chart3DSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3536
|
+
Chart3DSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DSeriesDirective, selector: "e-chart3d-series-collection>e-chart3d-series", inputs: { animation: "animation", columnFacet: "columnFacet", columnSpacing: "columnSpacing", columnWidth: "columnWidth", dataLabel: "dataLabel", dataSource: "dataSource", emptyPointSettings: "emptyPointSettings", enableTooltip: "enableTooltip", fill: "fill", groupName: "groupName", legendImageUrl: "legendImageUrl", legendShape: "legendShape", name: "name", opacity: "opacity", pointColorMapping: "pointColorMapping", query: "query", size: "size", stackingGroup: "stackingGroup", tooltipFormat: "tooltipFormat", tooltipMappingName: "tooltipMappingName", type: "type", visible: "visible", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName", yName: "yName" }, queries: [{ propertyName: "dataLabel_template", first: true, predicate: ["dataLabelTemplate"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
3537
|
+
__decorate([
|
|
3538
|
+
Template()
|
|
3539
|
+
], Chart3DSeriesDirective.prototype, "dataLabel_template", void 0);
|
|
3540
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSeriesDirective, decorators: [{
|
|
3541
|
+
type: Directive,
|
|
3542
|
+
args: [{
|
|
3543
|
+
selector: 'e-chart3d-series-collection>e-chart3d-series',
|
|
3544
|
+
inputs: input$6,
|
|
3545
|
+
outputs: outputs$8,
|
|
3546
|
+
queries: {}
|
|
3547
|
+
}]
|
|
3548
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { dataLabel_template: [{
|
|
3549
|
+
type: ContentChild,
|
|
3550
|
+
args: ['dataLabelTemplate']
|
|
3551
|
+
}] } });
|
|
3552
|
+
/**
|
|
3553
|
+
* Chart3DSeries Array Directive
|
|
3554
|
+
* @private
|
|
3555
|
+
*/
|
|
3556
|
+
class Chart3DSeriesCollectionDirective extends ArrayBase {
|
|
3557
|
+
constructor() {
|
|
3558
|
+
super('series');
|
|
3559
|
+
}
|
|
3560
|
+
}
|
|
3561
|
+
Chart3DSeriesCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSeriesCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3562
|
+
Chart3DSeriesCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DSeriesCollectionDirective, selector: "ejs-chart3d>e-chart3d-series-collection", queries: [{ propertyName: "children", predicate: Chart3DSeriesDirective }], usesInheritance: true, ngImport: i0 });
|
|
3563
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSeriesCollectionDirective, decorators: [{
|
|
3564
|
+
type: Directive,
|
|
3565
|
+
args: [{
|
|
3566
|
+
selector: 'ejs-chart3d>e-chart3d-series-collection',
|
|
3567
|
+
queries: {
|
|
3568
|
+
children: new ContentChildren(Chart3DSeriesDirective)
|
|
3569
|
+
},
|
|
3570
|
+
}]
|
|
3571
|
+
}], ctorParameters: function () { return []; } });
|
|
3572
|
+
|
|
3573
|
+
let input$5 = ['columnIndex', 'desiredIntervals', 'edgeLabelPlacement', 'enableTrim', 'interval', 'intervalType', 'isIndexed', 'isInversed', 'labelFormat', 'labelIntersectAction', 'labelPadding', 'labelPlacement', 'labelRotation', 'labelStyle', 'logBase', 'majorGridLines', 'majorTickLines', 'maximum', 'maximumLabelWidth', 'maximumLabels', 'minimum', 'minorGridLines', 'minorTickLines', 'minorTicksPerInterval', 'name', 'opposedPosition', 'plotOffset', 'plotOffsetBottom', 'plotOffsetLeft', 'plotOffsetRight', 'plotOffsetTop', 'rangePadding', 'rowIndex', 'skeleton', 'skeletonType', 'span', 'startFromZero', 'title', 'titlePadding', 'titleRotation', 'titleStyle', 'valueType', 'visible'];
|
|
3574
|
+
let outputs$7 = [];
|
|
3575
|
+
/**
|
|
3576
|
+
* Axis3D Directive
|
|
3577
|
+
* ```html
|
|
3578
|
+
* <e-axes><e-axis></e-axis></e-axes>
|
|
3579
|
+
* ```
|
|
3580
|
+
*/
|
|
3581
|
+
class Chart3DAxisDirective extends ComplexBase {
|
|
3582
|
+
constructor(viewContainerRef) {
|
|
3583
|
+
super();
|
|
3584
|
+
this.viewContainerRef = viewContainerRef;
|
|
3585
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
3586
|
+
this.registerEvents(outputs$7);
|
|
3587
|
+
this.directivePropList = input$5;
|
|
3588
|
+
}
|
|
3589
|
+
}
|
|
3590
|
+
Chart3DAxisDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DAxisDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3591
|
+
Chart3DAxisDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DAxisDirective, selector: "e-chart3daxes>e-chart3daxis", inputs: { columnIndex: "columnIndex", desiredIntervals: "desiredIntervals", edgeLabelPlacement: "edgeLabelPlacement", enableTrim: "enableTrim", interval: "interval", intervalType: "intervalType", isIndexed: "isIndexed", isInversed: "isInversed", labelFormat: "labelFormat", labelIntersectAction: "labelIntersectAction", labelPadding: "labelPadding", labelPlacement: "labelPlacement", labelRotation: "labelRotation", labelStyle: "labelStyle", logBase: "logBase", majorGridLines: "majorGridLines", majorTickLines: "majorTickLines", maximum: "maximum", maximumLabelWidth: "maximumLabelWidth", maximumLabels: "maximumLabels", minimum: "minimum", minorGridLines: "minorGridLines", minorTickLines: "minorTickLines", minorTicksPerInterval: "minorTicksPerInterval", name: "name", opposedPosition: "opposedPosition", plotOffset: "plotOffset", plotOffsetBottom: "plotOffsetBottom", plotOffsetLeft: "plotOffsetLeft", plotOffsetRight: "plotOffsetRight", plotOffsetTop: "plotOffsetTop", rangePadding: "rangePadding", rowIndex: "rowIndex", skeleton: "skeleton", skeletonType: "skeletonType", span: "span", startFromZero: "startFromZero", title: "title", titlePadding: "titlePadding", titleRotation: "titleRotation", titleStyle: "titleStyle", valueType: "valueType", visible: "visible" }, usesInheritance: true, ngImport: i0 });
|
|
3592
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DAxisDirective, decorators: [{
|
|
3593
|
+
type: Directive,
|
|
3594
|
+
args: [{
|
|
3595
|
+
selector: 'e-chart3daxes>e-chart3daxis',
|
|
3596
|
+
inputs: input$5,
|
|
3597
|
+
outputs: outputs$7,
|
|
3598
|
+
queries: {}
|
|
3599
|
+
}]
|
|
3600
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
3601
|
+
/**
|
|
3602
|
+
* Chart3DAxis Array Directive
|
|
3603
|
+
* @private
|
|
3604
|
+
*/
|
|
3605
|
+
class Chart3DAxesDirective extends ArrayBase {
|
|
3606
|
+
constructor() {
|
|
3607
|
+
super('axes');
|
|
3608
|
+
}
|
|
3609
|
+
}
|
|
3610
|
+
Chart3DAxesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DAxesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3611
|
+
Chart3DAxesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DAxesDirective, selector: "ejs-chart3d>e-chart3daxes", queries: [{ propertyName: "children", predicate: Chart3DAxisDirective }], usesInheritance: true, ngImport: i0 });
|
|
3612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DAxesDirective, decorators: [{
|
|
3613
|
+
type: Directive,
|
|
3614
|
+
args: [{
|
|
3615
|
+
selector: 'ejs-chart3d>e-chart3daxes',
|
|
3616
|
+
queries: {
|
|
3617
|
+
children: new ContentChildren(Chart3DAxisDirective)
|
|
3618
|
+
},
|
|
3619
|
+
}]
|
|
3620
|
+
}], ctorParameters: function () { return []; } });
|
|
3621
|
+
|
|
3622
|
+
let input$4 = ['height'];
|
|
3623
|
+
let outputs$6 = [];
|
|
3624
|
+
/**
|
|
3625
|
+
* Row3D Directive
|
|
3626
|
+
* ```html
|
|
3627
|
+
* <e-rows><e-row></e-row><e-rows>
|
|
3628
|
+
* ```
|
|
3629
|
+
*/
|
|
3630
|
+
class Chart3DRowDirective extends ComplexBase {
|
|
3631
|
+
constructor(viewContainerRef) {
|
|
3632
|
+
super();
|
|
3633
|
+
this.viewContainerRef = viewContainerRef;
|
|
3634
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
3635
|
+
this.registerEvents(outputs$6);
|
|
3636
|
+
this.directivePropList = input$4;
|
|
3637
|
+
}
|
|
3638
|
+
}
|
|
3639
|
+
Chart3DRowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DRowDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3640
|
+
Chart3DRowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DRowDirective, selector: "e-chart3d-rows>e-chart3d-row", inputs: { height: "height" }, usesInheritance: true, ngImport: i0 });
|
|
3641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DRowDirective, decorators: [{
|
|
3642
|
+
type: Directive,
|
|
3643
|
+
args: [{
|
|
3644
|
+
selector: 'e-chart3d-rows>e-chart3d-row',
|
|
3645
|
+
inputs: input$4,
|
|
3646
|
+
outputs: outputs$6,
|
|
3647
|
+
queries: {}
|
|
3648
|
+
}]
|
|
3649
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
3650
|
+
/**
|
|
3651
|
+
* Chart3DRow Array Directive
|
|
3652
|
+
* @private
|
|
3653
|
+
*/
|
|
3654
|
+
class Chart3DRowsDirective extends ArrayBase {
|
|
3655
|
+
constructor() {
|
|
3656
|
+
super('rows');
|
|
3657
|
+
}
|
|
3658
|
+
}
|
|
3659
|
+
Chart3DRowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DRowsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3660
|
+
Chart3DRowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DRowsDirective, selector: "ejs-chart3d>e-chart3d-rows", queries: [{ propertyName: "children", predicate: Chart3DRowDirective }], usesInheritance: true, ngImport: i0 });
|
|
3661
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DRowsDirective, decorators: [{
|
|
3662
|
+
type: Directive,
|
|
3663
|
+
args: [{
|
|
3664
|
+
selector: 'ejs-chart3d>e-chart3d-rows',
|
|
3665
|
+
queries: {
|
|
3666
|
+
children: new ContentChildren(Chart3DRowDirective)
|
|
3667
|
+
},
|
|
3668
|
+
}]
|
|
3669
|
+
}], ctorParameters: function () { return []; } });
|
|
3670
|
+
|
|
3671
|
+
let input$3 = ['width'];
|
|
3672
|
+
let outputs$5 = [];
|
|
3673
|
+
/**
|
|
3674
|
+
* Column3D Directive
|
|
3675
|
+
* ```html
|
|
3676
|
+
* <e-columns><e-column></e-column><e-columns>
|
|
3677
|
+
* ```
|
|
3678
|
+
*/
|
|
3679
|
+
class Chart3DColumnDirective extends ComplexBase {
|
|
3680
|
+
constructor(viewContainerRef) {
|
|
3681
|
+
super();
|
|
3682
|
+
this.viewContainerRef = viewContainerRef;
|
|
3683
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
3684
|
+
this.registerEvents(outputs$5);
|
|
3685
|
+
this.directivePropList = input$3;
|
|
3686
|
+
}
|
|
3687
|
+
}
|
|
3688
|
+
Chart3DColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DColumnDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3689
|
+
Chart3DColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DColumnDirective, selector: "e-chart3d-columns>e-chart3d-columns", inputs: { width: "width" }, usesInheritance: true, ngImport: i0 });
|
|
3690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DColumnDirective, decorators: [{
|
|
3691
|
+
type: Directive,
|
|
3692
|
+
args: [{
|
|
3693
|
+
selector: 'e-chart3d-columns>e-chart3d-columns',
|
|
3694
|
+
inputs: input$3,
|
|
3695
|
+
outputs: outputs$5,
|
|
3696
|
+
queries: {}
|
|
3697
|
+
}]
|
|
3698
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
3699
|
+
/**
|
|
3700
|
+
* Chart3DColumn Array Directive
|
|
3701
|
+
* @private
|
|
3702
|
+
*/
|
|
3703
|
+
class Chart3DColumnsDirective extends ArrayBase {
|
|
3704
|
+
constructor() {
|
|
3705
|
+
super('columns');
|
|
3706
|
+
}
|
|
3707
|
+
}
|
|
3708
|
+
Chart3DColumnsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DColumnsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3709
|
+
Chart3DColumnsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DColumnsDirective, selector: "ejs-chart3d>e-chart3d-columns", queries: [{ propertyName: "children", predicate: Chart3DColumnDirective }], usesInheritance: true, ngImport: i0 });
|
|
3710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DColumnsDirective, decorators: [{
|
|
3711
|
+
type: Directive,
|
|
3712
|
+
args: [{
|
|
3713
|
+
selector: 'ejs-chart3d>e-chart3d-columns',
|
|
3714
|
+
queries: {
|
|
3715
|
+
children: new ContentChildren(Chart3DColumnDirective)
|
|
3716
|
+
},
|
|
3717
|
+
}]
|
|
3718
|
+
}], ctorParameters: function () { return []; } });
|
|
3719
|
+
|
|
3720
|
+
let input$2 = ['point', 'series'];
|
|
3721
|
+
let outputs$4 = [];
|
|
3722
|
+
/**
|
|
3723
|
+
* Selected Data Directive
|
|
3724
|
+
* ```html
|
|
3725
|
+
* <e-selecteddataindexes><e-selecteddataindex></e-selecteddataindex><e-selecteddataindexes>
|
|
3726
|
+
* ```
|
|
3727
|
+
*/
|
|
3728
|
+
class Chart3DSelectedDataIndexDirective extends ComplexBase {
|
|
3729
|
+
constructor(viewContainerRef) {
|
|
3730
|
+
super();
|
|
3731
|
+
this.viewContainerRef = viewContainerRef;
|
|
3732
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
3733
|
+
this.registerEvents(outputs$4);
|
|
3734
|
+
this.directivePropList = input$2;
|
|
3735
|
+
}
|
|
3736
|
+
}
|
|
3737
|
+
Chart3DSelectedDataIndexDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSelectedDataIndexDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3738
|
+
Chart3DSelectedDataIndexDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DSelectedDataIndexDirective, selector: "e-chart3d-selecteddataindexes>e-chart3d-selecteddataindex", inputs: { point: "point", series: "series" }, usesInheritance: true, ngImport: i0 });
|
|
3739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSelectedDataIndexDirective, decorators: [{
|
|
3740
|
+
type: Directive,
|
|
3741
|
+
args: [{
|
|
3742
|
+
selector: 'e-chart3d-selecteddataindexes>e-chart3d-selecteddataindex',
|
|
3743
|
+
inputs: input$2,
|
|
3744
|
+
outputs: outputs$4,
|
|
3745
|
+
queries: {}
|
|
3746
|
+
}]
|
|
3747
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
3748
|
+
/**
|
|
3749
|
+
* Chart3DSelectedDataIndex Array Directive
|
|
3750
|
+
* @private
|
|
3751
|
+
*/
|
|
3752
|
+
class Chart3DSelectedDataIndexesDirective extends ArrayBase {
|
|
3753
|
+
constructor() {
|
|
3754
|
+
super('selecteddataindexes');
|
|
3755
|
+
}
|
|
3756
|
+
}
|
|
3757
|
+
Chart3DSelectedDataIndexesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSelectedDataIndexesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3758
|
+
Chart3DSelectedDataIndexesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DSelectedDataIndexesDirective, selector: "ejs-chart3d>e-chart3d-selecteddataindexes", queries: [{ propertyName: "children", predicate: Chart3DSelectedDataIndexDirective }], usesInheritance: true, ngImport: i0 });
|
|
3759
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSelectedDataIndexesDirective, decorators: [{
|
|
3760
|
+
type: Directive,
|
|
3761
|
+
args: [{
|
|
3762
|
+
selector: 'ejs-chart3d>e-chart3d-selecteddataindexes',
|
|
3763
|
+
queries: {
|
|
3764
|
+
children: new ContentChildren(Chart3DSelectedDataIndexDirective)
|
|
3765
|
+
},
|
|
3766
|
+
}]
|
|
3767
|
+
}], ctorParameters: function () { return []; } });
|
|
3768
|
+
|
|
3769
|
+
const inputs$1 = ['axes', 'background', 'backgroundImage', 'border', 'columns', 'currencyCode', 'dataSource', 'depth', 'description', 'enableExport', 'enablePersistence', 'enableRotation', 'enableRtl', 'enableSideBySidePlacement', 'height', 'highlightColor', 'highlightMode', 'highlightPattern', 'isMultiSelect', 'isTransposed', 'legendSettings', 'locale', 'margin', 'palettes', 'perspectiveAngle', 'primaryXAxis', 'primaryYAxis', 'rotation', 'rows', 'selectedDataIndexes', 'selectionMode', 'selectionPattern', 'series', 'subTitle', 'subTitleStyle', 'theme', 'tilt', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'wallColor', 'wallSize', 'width'];
|
|
3770
|
+
const outputs$3 = ['afterExport', 'axisLabelRender', 'beforeExport', 'beforePrint', 'beforeResize', 'chart3DMouseClick', 'chart3DMouseDown', 'chart3DMouseLeave', 'chart3DMouseMove', 'chart3DMouseUp', 'legendClick', 'legendRender', 'load', 'loaded', 'pointClick', 'pointMove', 'pointRender', 'resized', 'selectionComplete', 'seriesRender', 'textRender', 'tooltipRender', 'dataSourceChange'];
|
|
3771
|
+
const twoWays$1 = ['dataSource'];
|
|
3772
|
+
/**
|
|
3773
|
+
* 3D Chart Component
|
|
3774
|
+
* ```html
|
|
3775
|
+
* <ejschart3d></ejschart3d>
|
|
3776
|
+
* ```
|
|
3777
|
+
*/
|
|
3778
|
+
let Chart3DComponent = class Chart3DComponent extends Chart3D {
|
|
3779
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
3780
|
+
super();
|
|
3781
|
+
this.ngEle = ngEle;
|
|
3782
|
+
this.srenderer = srenderer;
|
|
3783
|
+
this.viewContainerRef = viewContainerRef;
|
|
3784
|
+
this.injector = injector;
|
|
3785
|
+
this.tags = ['series', 'axes', 'rows', 'columns', 'selectedDataIndexes'];
|
|
3786
|
+
this.element = this.ngEle.nativeElement;
|
|
3787
|
+
this.injectedModules = this.injectedModules || [];
|
|
3788
|
+
try {
|
|
3789
|
+
let mod = this.injector.get('ChartsColumnSeries3D');
|
|
3790
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3791
|
+
this.injectedModules.push(mod);
|
|
3792
|
+
}
|
|
3793
|
+
}
|
|
3794
|
+
catch { }
|
|
3795
|
+
try {
|
|
3796
|
+
let mod = this.injector.get('ChartsStackingColumnSeries3D');
|
|
3797
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3798
|
+
this.injectedModules.push(mod);
|
|
3799
|
+
}
|
|
3800
|
+
}
|
|
3801
|
+
catch { }
|
|
3802
|
+
try {
|
|
3803
|
+
let mod = this.injector.get('ChartsBarSeries3D');
|
|
3804
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3805
|
+
this.injectedModules.push(mod);
|
|
3806
|
+
}
|
|
3807
|
+
}
|
|
3808
|
+
catch { }
|
|
3809
|
+
try {
|
|
3810
|
+
let mod = this.injector.get('ChartsStackingBarSeries3D');
|
|
3811
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3812
|
+
this.injectedModules.push(mod);
|
|
3813
|
+
}
|
|
3814
|
+
}
|
|
3815
|
+
catch { }
|
|
3816
|
+
try {
|
|
3817
|
+
let mod = this.injector.get('ChartsCategory3D');
|
|
3818
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3819
|
+
this.injectedModules.push(mod);
|
|
3820
|
+
}
|
|
3821
|
+
}
|
|
3822
|
+
catch { }
|
|
3823
|
+
try {
|
|
3824
|
+
let mod = this.injector.get('ChartsDateTime3D');
|
|
3825
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3826
|
+
this.injectedModules.push(mod);
|
|
3827
|
+
}
|
|
3828
|
+
}
|
|
3829
|
+
catch { }
|
|
3830
|
+
try {
|
|
3831
|
+
let mod = this.injector.get('ChartsDateTimeCategory3D');
|
|
3832
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3833
|
+
this.injectedModules.push(mod);
|
|
3834
|
+
}
|
|
3835
|
+
}
|
|
3836
|
+
catch { }
|
|
3837
|
+
try {
|
|
3838
|
+
let mod = this.injector.get('ChartsLogarithmic3D');
|
|
3839
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3840
|
+
this.injectedModules.push(mod);
|
|
3841
|
+
}
|
|
3842
|
+
}
|
|
3843
|
+
catch { }
|
|
3844
|
+
try {
|
|
3845
|
+
let mod = this.injector.get('ChartsTooltip3D');
|
|
3846
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3847
|
+
this.injectedModules.push(mod);
|
|
3848
|
+
}
|
|
3849
|
+
}
|
|
3850
|
+
catch { }
|
|
3851
|
+
try {
|
|
3852
|
+
let mod = this.injector.get('ChartsLegend3D');
|
|
3853
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3854
|
+
this.injectedModules.push(mod);
|
|
3855
|
+
}
|
|
3856
|
+
}
|
|
3857
|
+
catch { }
|
|
3858
|
+
try {
|
|
3859
|
+
let mod = this.injector.get('ChartsDataLabel3D');
|
|
3860
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3861
|
+
this.injectedModules.push(mod);
|
|
3862
|
+
}
|
|
3863
|
+
}
|
|
3864
|
+
catch { }
|
|
3865
|
+
try {
|
|
3866
|
+
let mod = this.injector.get('ChartsSelection3D');
|
|
3867
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3868
|
+
this.injectedModules.push(mod);
|
|
3869
|
+
}
|
|
3870
|
+
}
|
|
3871
|
+
catch { }
|
|
3872
|
+
try {
|
|
3873
|
+
let mod = this.injector.get('ChartsExport3D');
|
|
3874
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3875
|
+
this.injectedModules.push(mod);
|
|
3876
|
+
}
|
|
3877
|
+
}
|
|
3878
|
+
catch { }
|
|
3879
|
+
try {
|
|
3880
|
+
let mod = this.injector.get('ChartsHighlight3D');
|
|
3881
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3882
|
+
this.injectedModules.push(mod);
|
|
3883
|
+
}
|
|
3884
|
+
}
|
|
3885
|
+
catch { }
|
|
3886
|
+
this.registerEvents(outputs$3);
|
|
3887
|
+
this.addTwoWay.call(this, twoWays$1);
|
|
3888
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
3889
|
+
this.context = new ComponentBase();
|
|
3890
|
+
}
|
|
3891
|
+
ngOnInit() {
|
|
3892
|
+
this.context.ngOnInit(this);
|
|
3893
|
+
}
|
|
3894
|
+
ngAfterViewInit() {
|
|
3895
|
+
this.context.ngAfterViewInit(this);
|
|
3896
|
+
}
|
|
3897
|
+
ngOnDestroy() {
|
|
3898
|
+
this.context.ngOnDestroy(this);
|
|
3899
|
+
}
|
|
3900
|
+
ngAfterContentChecked() {
|
|
3901
|
+
this.tagObjects[0].instance = this.childSeries;
|
|
3902
|
+
if (this.childAxes) {
|
|
3903
|
+
this.tagObjects[1].instance = this.childAxes;
|
|
3904
|
+
}
|
|
3905
|
+
if (this.childRows) {
|
|
3906
|
+
this.tagObjects[2].instance = this.childRows;
|
|
3907
|
+
}
|
|
3908
|
+
if (this.childColumns) {
|
|
3909
|
+
this.tagObjects[3].instance = this.childColumns;
|
|
3910
|
+
}
|
|
3911
|
+
if (this.childSelectedDataIndexes) {
|
|
3912
|
+
this.tagObjects[4].instance = this.childSelectedDataIndexes;
|
|
3913
|
+
}
|
|
3914
|
+
this.context.ngAfterContentChecked(this);
|
|
3915
|
+
}
|
|
3916
|
+
};
|
|
3917
|
+
Chart3DComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3918
|
+
Chart3DComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: Chart3DComponent, selector: "ejs-chart3d", inputs: { axes: "axes", background: "background", backgroundImage: "backgroundImage", border: "border", columns: "columns", currencyCode: "currencyCode", dataSource: "dataSource", depth: "depth", description: "description", enableExport: "enableExport", enablePersistence: "enablePersistence", enableRotation: "enableRotation", enableRtl: "enableRtl", enableSideBySidePlacement: "enableSideBySidePlacement", height: "height", highlightColor: "highlightColor", highlightMode: "highlightMode", highlightPattern: "highlightPattern", isMultiSelect: "isMultiSelect", isTransposed: "isTransposed", legendSettings: "legendSettings", locale: "locale", margin: "margin", palettes: "palettes", perspectiveAngle: "perspectiveAngle", primaryXAxis: "primaryXAxis", primaryYAxis: "primaryYAxis", rotation: "rotation", rows: "rows", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", selectionPattern: "selectionPattern", series: "series", subTitle: "subTitle", subTitleStyle: "subTitleStyle", theme: "theme", tilt: "tilt", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", useGroupingSeparator: "useGroupingSeparator", wallColor: "wallColor", wallSize: "wallSize", width: "width" }, outputs: { afterExport: "afterExport", axisLabelRender: "axisLabelRender", beforeExport: "beforeExport", beforePrint: "beforePrint", beforeResize: "beforeResize", chart3DMouseClick: "chart3DMouseClick", chart3DMouseDown: "chart3DMouseDown", chart3DMouseLeave: "chart3DMouseLeave", chart3DMouseMove: "chart3DMouseMove", chart3DMouseUp: "chart3DMouseUp", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", pointClick: "pointClick", pointMove: "pointMove", pointRender: "pointRender", resized: "resized", selectionComplete: "selectionComplete", seriesRender: "seriesRender", textRender: "textRender", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: Chart3DSeriesCollectionDirective, descendants: true }, { propertyName: "childAxes", first: true, predicate: Chart3DAxesDirective, descendants: true }, { propertyName: "childRows", first: true, predicate: Chart3DRowsDirective, descendants: true }, { propertyName: "childColumns", first: true, predicate: Chart3DColumnsDirective, descendants: true }, { propertyName: "childSelectedDataIndexes", first: true, predicate: Chart3DSelectedDataIndexesDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3919
|
+
__decorate([
|
|
3920
|
+
Template()
|
|
3921
|
+
], Chart3DComponent.prototype, "tooltip_template", void 0);
|
|
3922
|
+
Chart3DComponent = __decorate([
|
|
3923
|
+
ComponentMixins([ComponentBase])
|
|
3924
|
+
], Chart3DComponent);
|
|
3925
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DComponent, decorators: [{
|
|
3926
|
+
type: Component,
|
|
3927
|
+
args: [{
|
|
3928
|
+
selector: 'ejs-chart3d',
|
|
3929
|
+
inputs: inputs$1,
|
|
3930
|
+
outputs: outputs$3,
|
|
3931
|
+
template: '',
|
|
3932
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3933
|
+
queries: {
|
|
3934
|
+
childSeries: new ContentChild(Chart3DSeriesCollectionDirective),
|
|
3935
|
+
childAxes: new ContentChild(Chart3DAxesDirective),
|
|
3936
|
+
childRows: new ContentChild(Chart3DRowsDirective),
|
|
3937
|
+
childColumns: new ContentChild(Chart3DColumnsDirective),
|
|
3938
|
+
childSelectedDataIndexes: new ContentChild(Chart3DSelectedDataIndexesDirective)
|
|
3939
|
+
}
|
|
3940
|
+
}]
|
|
3941
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
3942
|
+
type: ContentChild,
|
|
3943
|
+
args: ['tooltipTemplate']
|
|
3944
|
+
}] } });
|
|
3945
|
+
|
|
3946
|
+
/**
|
|
3947
|
+
* NgModule definition for the Chart3D component.
|
|
3948
|
+
*/
|
|
3949
|
+
class Chart3DModule {
|
|
3950
|
+
}
|
|
3951
|
+
Chart3DModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3952
|
+
Chart3DModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DModule, declarations: [Chart3DComponent,
|
|
3953
|
+
Chart3DSeriesDirective,
|
|
3954
|
+
Chart3DSeriesCollectionDirective,
|
|
3955
|
+
Chart3DAxisDirective,
|
|
3956
|
+
Chart3DAxesDirective,
|
|
3957
|
+
Chart3DRowDirective,
|
|
3958
|
+
Chart3DRowsDirective,
|
|
3959
|
+
Chart3DColumnDirective,
|
|
3960
|
+
Chart3DColumnsDirective,
|
|
3961
|
+
Chart3DSelectedDataIndexDirective,
|
|
3962
|
+
Chart3DSelectedDataIndexesDirective], imports: [CommonModule], exports: [Chart3DComponent,
|
|
3963
|
+
Chart3DSeriesDirective,
|
|
3964
|
+
Chart3DSeriesCollectionDirective,
|
|
3965
|
+
Chart3DAxisDirective,
|
|
3966
|
+
Chart3DAxesDirective,
|
|
3967
|
+
Chart3DRowDirective,
|
|
3968
|
+
Chart3DRowsDirective,
|
|
3969
|
+
Chart3DColumnDirective,
|
|
3970
|
+
Chart3DColumnsDirective,
|
|
3971
|
+
Chart3DSelectedDataIndexDirective,
|
|
3972
|
+
Chart3DSelectedDataIndexesDirective] });
|
|
3973
|
+
Chart3DModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DModule, imports: [[CommonModule]] });
|
|
3974
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DModule, decorators: [{
|
|
3975
|
+
type: NgModule,
|
|
3976
|
+
args: [{
|
|
3977
|
+
imports: [CommonModule],
|
|
3978
|
+
declarations: [
|
|
3979
|
+
Chart3DComponent,
|
|
3980
|
+
Chart3DSeriesDirective,
|
|
3981
|
+
Chart3DSeriesCollectionDirective,
|
|
3982
|
+
Chart3DAxisDirective,
|
|
3983
|
+
Chart3DAxesDirective,
|
|
3984
|
+
Chart3DRowDirective,
|
|
3985
|
+
Chart3DRowsDirective,
|
|
3986
|
+
Chart3DColumnDirective,
|
|
3987
|
+
Chart3DColumnsDirective,
|
|
3988
|
+
Chart3DSelectedDataIndexDirective,
|
|
3989
|
+
Chart3DSelectedDataIndexesDirective
|
|
3990
|
+
],
|
|
3991
|
+
exports: [
|
|
3992
|
+
Chart3DComponent,
|
|
3993
|
+
Chart3DSeriesDirective,
|
|
3994
|
+
Chart3DSeriesCollectionDirective,
|
|
3995
|
+
Chart3DAxisDirective,
|
|
3996
|
+
Chart3DAxesDirective,
|
|
3997
|
+
Chart3DRowDirective,
|
|
3998
|
+
Chart3DRowsDirective,
|
|
3999
|
+
Chart3DColumnDirective,
|
|
4000
|
+
Chart3DColumnsDirective,
|
|
4001
|
+
Chart3DSelectedDataIndexDirective,
|
|
4002
|
+
Chart3DSelectedDataIndexesDirective
|
|
4003
|
+
]
|
|
4004
|
+
}]
|
|
4005
|
+
}] });
|
|
4006
|
+
|
|
4007
|
+
const ColumnSeries3DService = { provide: 'ChartsColumnSeries3D', useValue: ColumnSeries3D };
|
|
4008
|
+
const StackingColumnSeries3DService = { provide: 'ChartsStackingColumnSeries3D', useValue: StackingColumnSeries3D };
|
|
4009
|
+
const BarSeries3DService = { provide: 'ChartsBarSeries3D', useValue: BarSeries3D };
|
|
4010
|
+
const StackingBarSeries3DService = { provide: 'ChartsStackingBarSeries3D', useValue: StackingBarSeries3D };
|
|
4011
|
+
const Category3DService = { provide: 'ChartsCategory3D', useValue: Category3D };
|
|
4012
|
+
const DateTime3DService = { provide: 'ChartsDateTime3D', useValue: DateTime3D };
|
|
4013
|
+
const DateTimeCategory3DService = { provide: 'ChartsDateTimeCategory3D', useValue: DateTimeCategory3D };
|
|
4014
|
+
const Logarithmic3DService = { provide: 'ChartsLogarithmic3D', useValue: Logarithmic3D };
|
|
4015
|
+
const Tooltip3DService = { provide: 'ChartsTooltip3D', useValue: Tooltip3D };
|
|
4016
|
+
const Legend3DService = { provide: 'ChartsLegend3D', useValue: Legend3D };
|
|
4017
|
+
const DataLabel3DService = { provide: 'ChartsDataLabel3D', useValue: DataLabel3D };
|
|
4018
|
+
const Selection3DService = { provide: 'ChartsSelection3D', useValue: Selection3D };
|
|
4019
|
+
const Export3DService = { provide: 'ChartsExport3D', useValue: Export3D };
|
|
4020
|
+
const Highlight3DService = { provide: 'ChartsHighlight3D', useValue: Highlight3D };
|
|
4021
|
+
/**
|
|
4022
|
+
* NgModule definition for the Chart3D component with providers.
|
|
4023
|
+
*/
|
|
4024
|
+
class Chart3DAllModule {
|
|
4025
|
+
}
|
|
4026
|
+
Chart3DAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4027
|
+
Chart3DAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DAllModule, imports: [CommonModule, Chart3DModule], exports: [Chart3DModule] });
|
|
4028
|
+
Chart3DAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DAllModule, providers: [
|
|
4029
|
+
ColumnSeries3DService,
|
|
4030
|
+
StackingColumnSeries3DService,
|
|
4031
|
+
BarSeries3DService,
|
|
4032
|
+
StackingBarSeries3DService,
|
|
4033
|
+
Category3DService,
|
|
4034
|
+
DateTime3DService,
|
|
4035
|
+
DateTimeCategory3DService,
|
|
4036
|
+
Logarithmic3DService,
|
|
4037
|
+
Tooltip3DService,
|
|
4038
|
+
Legend3DService,
|
|
4039
|
+
DataLabel3DService,
|
|
4040
|
+
Selection3DService,
|
|
4041
|
+
Export3DService,
|
|
4042
|
+
Highlight3DService
|
|
4043
|
+
], imports: [[CommonModule, Chart3DModule], Chart3DModule] });
|
|
4044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DAllModule, decorators: [{
|
|
4045
|
+
type: NgModule,
|
|
4046
|
+
args: [{
|
|
4047
|
+
imports: [CommonModule, Chart3DModule],
|
|
4048
|
+
exports: [
|
|
4049
|
+
Chart3DModule
|
|
4050
|
+
],
|
|
4051
|
+
providers: [
|
|
4052
|
+
ColumnSeries3DService,
|
|
4053
|
+
StackingColumnSeries3DService,
|
|
4054
|
+
BarSeries3DService,
|
|
4055
|
+
StackingBarSeries3DService,
|
|
4056
|
+
Category3DService,
|
|
4057
|
+
DateTime3DService,
|
|
4058
|
+
DateTimeCategory3DService,
|
|
4059
|
+
Logarithmic3DService,
|
|
4060
|
+
Tooltip3DService,
|
|
4061
|
+
Legend3DService,
|
|
4062
|
+
DataLabel3DService,
|
|
4063
|
+
Selection3DService,
|
|
4064
|
+
Export3DService,
|
|
4065
|
+
Highlight3DService
|
|
4066
|
+
]
|
|
4067
|
+
}]
|
|
4068
|
+
}] });
|
|
4069
|
+
|
|
4070
|
+
let input$1 = ['animation', 'dataLabel', 'dataSource', 'emptyPointSettings', 'enableTooltip', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'innerRadius', 'legendImageUrl', 'legendShape', 'name', 'opacity', 'palettes', 'pointColorMapping', 'query', 'radius', 'tooltipMappingName', 'visible', 'xName', 'yName'];
|
|
4071
|
+
let outputs$2 = [];
|
|
4072
|
+
/**
|
|
4073
|
+
* Circular3D Series Directive
|
|
4074
|
+
* ```html
|
|
4075
|
+
* <e-circular3d-series-collection>
|
|
4076
|
+
* <e-circular3d-series></e-circular3d-series>
|
|
4077
|
+
* </e-circular3d-series-collection>
|
|
4078
|
+
* ```
|
|
4079
|
+
*/
|
|
4080
|
+
class CircularChart3DSeriesDirective extends ComplexBase {
|
|
4081
|
+
constructor(viewContainerRef) {
|
|
4082
|
+
super();
|
|
4083
|
+
this.viewContainerRef = viewContainerRef;
|
|
4084
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
4085
|
+
this.registerEvents(outputs$2);
|
|
4086
|
+
this.directivePropList = input$1;
|
|
4087
|
+
}
|
|
4088
|
+
}
|
|
4089
|
+
CircularChart3DSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4090
|
+
CircularChart3DSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CircularChart3DSeriesDirective, selector: "e-circularchart3d-series-collection>e-circularchart3d-series", inputs: { animation: "animation", dataLabel: "dataLabel", dataSource: "dataSource", emptyPointSettings: "emptyPointSettings", enableTooltip: "enableTooltip", explode: "explode", explodeAll: "explodeAll", explodeIndex: "explodeIndex", explodeOffset: "explodeOffset", innerRadius: "innerRadius", legendImageUrl: "legendImageUrl", legendShape: "legendShape", name: "name", opacity: "opacity", palettes: "palettes", pointColorMapping: "pointColorMapping", query: "query", radius: "radius", tooltipMappingName: "tooltipMappingName", visible: "visible", xName: "xName", yName: "yName" }, queries: [{ propertyName: "dataLabel_template", first: true, predicate: ["dataLabelTemplate"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
4091
|
+
__decorate([
|
|
4092
|
+
Template()
|
|
4093
|
+
], CircularChart3DSeriesDirective.prototype, "dataLabel_template", void 0);
|
|
4094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSeriesDirective, decorators: [{
|
|
4095
|
+
type: Directive,
|
|
4096
|
+
args: [{
|
|
4097
|
+
selector: 'e-circularchart3d-series-collection>e-circularchart3d-series',
|
|
4098
|
+
inputs: input$1,
|
|
4099
|
+
outputs: outputs$2,
|
|
4100
|
+
queries: {}
|
|
4101
|
+
}]
|
|
4102
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { dataLabel_template: [{
|
|
4103
|
+
type: ContentChild,
|
|
4104
|
+
args: ['dataLabelTemplate']
|
|
4105
|
+
}] } });
|
|
4106
|
+
/**
|
|
4107
|
+
* CircularChart3DSeries Array Directive
|
|
4108
|
+
* @private
|
|
4109
|
+
*/
|
|
4110
|
+
class CircularChart3DSeriesCollectionDirective extends ArrayBase {
|
|
4111
|
+
constructor() {
|
|
4112
|
+
super('series');
|
|
4113
|
+
}
|
|
4114
|
+
}
|
|
4115
|
+
CircularChart3DSeriesCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSeriesCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4116
|
+
CircularChart3DSeriesCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CircularChart3DSeriesCollectionDirective, selector: "ej-circularchart3d>e-circularchart3d-series-collection", queries: [{ propertyName: "children", predicate: CircularChart3DSeriesDirective }], usesInheritance: true, ngImport: i0 });
|
|
4117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSeriesCollectionDirective, decorators: [{
|
|
4118
|
+
type: Directive,
|
|
4119
|
+
args: [{
|
|
4120
|
+
selector: 'ej-circularchart3d>e-circularchart3d-series-collection',
|
|
4121
|
+
queries: {
|
|
4122
|
+
children: new ContentChildren(CircularChart3DSeriesDirective)
|
|
4123
|
+
},
|
|
4124
|
+
}]
|
|
4125
|
+
}], ctorParameters: function () { return []; } });
|
|
4126
|
+
|
|
4127
|
+
let input = ['point', 'series'];
|
|
4128
|
+
let outputs$1 = [];
|
|
4129
|
+
/**
|
|
4130
|
+
* Selected Data Directive
|
|
4131
|
+
* ```html
|
|
4132
|
+
* <e-selecteddataindexes><e-selecteddataindex></e-selecteddataindex><e-selecteddataindexes>
|
|
4133
|
+
* ```
|
|
4134
|
+
*/
|
|
4135
|
+
class CircularChart3DSelectedDataIndexDirective extends ComplexBase {
|
|
4136
|
+
constructor(viewContainerRef) {
|
|
4137
|
+
super();
|
|
4138
|
+
this.viewContainerRef = viewContainerRef;
|
|
4139
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
4140
|
+
this.registerEvents(outputs$1);
|
|
4141
|
+
this.directivePropList = input;
|
|
4142
|
+
}
|
|
4143
|
+
}
|
|
4144
|
+
CircularChart3DSelectedDataIndexDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSelectedDataIndexDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4145
|
+
CircularChart3DSelectedDataIndexDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CircularChart3DSelectedDataIndexDirective, selector: "e-circularchart3d-selecteddataindexes>e-circularchart3d-selecteddataindex", inputs: { point: "point", series: "series" }, usesInheritance: true, ngImport: i0 });
|
|
4146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSelectedDataIndexDirective, decorators: [{
|
|
4147
|
+
type: Directive,
|
|
4148
|
+
args: [{
|
|
4149
|
+
selector: 'e-circularchart3d-selecteddataindexes>e-circularchart3d-selecteddataindex',
|
|
4150
|
+
inputs: input,
|
|
4151
|
+
outputs: outputs$1,
|
|
4152
|
+
queries: {}
|
|
4153
|
+
}]
|
|
4154
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
4155
|
+
/**
|
|
4156
|
+
* CircularChart3DSelectedDataIndex Array Directive
|
|
4157
|
+
* @private
|
|
4158
|
+
*/
|
|
4159
|
+
class CircularChart3DSelectedDataIndexesDirective extends ArrayBase {
|
|
4160
|
+
constructor() {
|
|
4161
|
+
super('selecteddataindexes');
|
|
4162
|
+
}
|
|
4163
|
+
}
|
|
4164
|
+
CircularChart3DSelectedDataIndexesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSelectedDataIndexesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4165
|
+
CircularChart3DSelectedDataIndexesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: CircularChart3DSelectedDataIndexesDirective, selector: "ejs-circularchart3d>e-circularchart3d-selecteddataindexes", queries: [{ propertyName: "children", predicate: CircularChart3DSelectedDataIndexDirective }], usesInheritance: true, ngImport: i0 });
|
|
4166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSelectedDataIndexesDirective, decorators: [{
|
|
4167
|
+
type: Directive,
|
|
4168
|
+
args: [{
|
|
4169
|
+
selector: 'ejs-circularchart3d>e-circularchart3d-selecteddataindexes',
|
|
4170
|
+
queries: {
|
|
4171
|
+
children: new ContentChildren(CircularChart3DSelectedDataIndexDirective)
|
|
4172
|
+
},
|
|
4173
|
+
}]
|
|
4174
|
+
}], ctorParameters: function () { return []; } });
|
|
4175
|
+
|
|
4176
|
+
const inputs = ['background', 'backgroundImage', 'border', 'dataSource', 'depth', 'enableAnimation', 'enableExport', 'enablePersistence', 'enableRotation', 'enableRtl', 'height', 'highlightColor', 'highlightMode', 'highlightPattern', 'isMultiSelect', 'legendSettings', 'locale', 'margin', 'rotation', 'selectedDataIndexes', 'selectionMode', 'selectionPattern', 'series', 'subTitle', 'subTitleStyle', 'theme', 'tilt', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width'];
|
|
4177
|
+
const outputs = ['afterExport', 'beforeExport', 'beforePrint', 'beforeResize', 'circularChart3DMouseClick', 'circularChart3DMouseDown', 'circularChart3DMouseLeave', 'circularChart3DMouseMove', 'circularChart3DMouseUp', 'legendClick', 'legendRender', 'load', 'loaded', 'pointClick', 'pointMove', 'pointRender', 'resized', 'selectionComplete', 'seriesRender', 'textRender', 'tooltipRender', 'dataSourceChange'];
|
|
4178
|
+
const twoWays = ['dataSource'];
|
|
4179
|
+
/**
|
|
4180
|
+
* CircularChart3D Component
|
|
4181
|
+
* ```html
|
|
4182
|
+
* <ejs-circularchart3d></ejs-circularchart3d>
|
|
4183
|
+
* ```
|
|
4184
|
+
*/
|
|
4185
|
+
let CircularChart3DComponent = class CircularChart3DComponent extends CircularChart3D {
|
|
4186
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
4187
|
+
super();
|
|
4188
|
+
this.ngEle = ngEle;
|
|
4189
|
+
this.srenderer = srenderer;
|
|
4190
|
+
this.viewContainerRef = viewContainerRef;
|
|
4191
|
+
this.injector = injector;
|
|
4192
|
+
this.tags = ['series', 'selectedDataIndexes'];
|
|
4193
|
+
this.element = this.ngEle.nativeElement;
|
|
4194
|
+
this.injectedModules = this.injectedModules || [];
|
|
4195
|
+
try {
|
|
4196
|
+
let mod = this.injector.get('ChartsPieSeries3D');
|
|
4197
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4198
|
+
this.injectedModules.push(mod);
|
|
4199
|
+
}
|
|
4200
|
+
}
|
|
4201
|
+
catch { }
|
|
4202
|
+
try {
|
|
4203
|
+
let mod = this.injector.get('ChartsCircularChartTooltip3D');
|
|
4204
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4205
|
+
this.injectedModules.push(mod);
|
|
4206
|
+
}
|
|
4207
|
+
}
|
|
4208
|
+
catch { }
|
|
4209
|
+
try {
|
|
4210
|
+
let mod = this.injector.get('ChartsCircularChartLegend3D');
|
|
4211
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4212
|
+
this.injectedModules.push(mod);
|
|
4213
|
+
}
|
|
4214
|
+
}
|
|
4215
|
+
catch { }
|
|
4216
|
+
try {
|
|
4217
|
+
let mod = this.injector.get('ChartsCircularChartSelection3D');
|
|
4218
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4219
|
+
this.injectedModules.push(mod);
|
|
4220
|
+
}
|
|
4221
|
+
}
|
|
4222
|
+
catch { }
|
|
4223
|
+
try {
|
|
4224
|
+
let mod = this.injector.get('ChartsCircularChartDataLabel3D');
|
|
4225
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4226
|
+
this.injectedModules.push(mod);
|
|
4227
|
+
}
|
|
4228
|
+
}
|
|
4229
|
+
catch { }
|
|
4230
|
+
try {
|
|
4231
|
+
let mod = this.injector.get('ChartsCircularChartHighlight3D');
|
|
4232
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4233
|
+
this.injectedModules.push(mod);
|
|
4234
|
+
}
|
|
4235
|
+
}
|
|
4236
|
+
catch { }
|
|
4237
|
+
try {
|
|
4238
|
+
let mod = this.injector.get('ChartsCircularChartExport3D');
|
|
4239
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4240
|
+
this.injectedModules.push(mod);
|
|
4241
|
+
}
|
|
4242
|
+
}
|
|
4243
|
+
catch { }
|
|
4244
|
+
this.registerEvents(outputs);
|
|
4245
|
+
this.addTwoWay.call(this, twoWays);
|
|
4246
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
4247
|
+
this.context = new ComponentBase();
|
|
4248
|
+
}
|
|
4249
|
+
ngOnInit() {
|
|
4250
|
+
this.context.ngOnInit(this);
|
|
4251
|
+
}
|
|
4252
|
+
ngAfterViewInit() {
|
|
4253
|
+
this.context.ngAfterViewInit(this);
|
|
4254
|
+
}
|
|
4255
|
+
ngOnDestroy() {
|
|
4256
|
+
this.context.ngOnDestroy(this);
|
|
4257
|
+
}
|
|
4258
|
+
ngAfterContentChecked() {
|
|
4259
|
+
this.tagObjects[0].instance = this.childSeries;
|
|
4260
|
+
if (this.childSelectedDataIndexes) {
|
|
4261
|
+
this.tagObjects[1].instance = this.childSelectedDataIndexes;
|
|
4262
|
+
}
|
|
4263
|
+
this.context.ngAfterContentChecked(this);
|
|
4264
|
+
}
|
|
4265
|
+
};
|
|
4266
|
+
CircularChart3DComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
4267
|
+
CircularChart3DComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: CircularChart3DComponent, selector: "ejs-circularchart3d", inputs: { background: "background", backgroundImage: "backgroundImage", border: "border", dataSource: "dataSource", depth: "depth", enableAnimation: "enableAnimation", enableExport: "enableExport", enablePersistence: "enablePersistence", enableRotation: "enableRotation", enableRtl: "enableRtl", height: "height", highlightColor: "highlightColor", highlightMode: "highlightMode", highlightPattern: "highlightPattern", isMultiSelect: "isMultiSelect", legendSettings: "legendSettings", locale: "locale", margin: "margin", rotation: "rotation", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", selectionPattern: "selectionPattern", series: "series", subTitle: "subTitle", subTitleStyle: "subTitleStyle", theme: "theme", tilt: "tilt", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", useGroupingSeparator: "useGroupingSeparator", width: "width" }, outputs: { afterExport: "afterExport", beforeExport: "beforeExport", beforePrint: "beforePrint", beforeResize: "beforeResize", circularChart3DMouseClick: "circularChart3DMouseClick", circularChart3DMouseDown: "circularChart3DMouseDown", circularChart3DMouseLeave: "circularChart3DMouseLeave", circularChart3DMouseMove: "circularChart3DMouseMove", circularChart3DMouseUp: "circularChart3DMouseUp", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", pointClick: "pointClick", pointMove: "pointMove", pointRender: "pointRender", resized: "resized", selectionComplete: "selectionComplete", seriesRender: "seriesRender", textRender: "textRender", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: CircularChart3DSeriesCollectionDirective, descendants: true }, { propertyName: "childSelectedDataIndexes", first: true, predicate: CircularChart3DSelectedDataIndexesDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4268
|
+
__decorate([
|
|
4269
|
+
Template()
|
|
4270
|
+
], CircularChart3DComponent.prototype, "tooltip_template", void 0);
|
|
4271
|
+
CircularChart3DComponent = __decorate([
|
|
4272
|
+
ComponentMixins([ComponentBase])
|
|
4273
|
+
], CircularChart3DComponent);
|
|
4274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DComponent, decorators: [{
|
|
4275
|
+
type: Component,
|
|
4276
|
+
args: [{
|
|
4277
|
+
selector: 'ejs-circularchart3d',
|
|
4278
|
+
inputs: inputs,
|
|
4279
|
+
outputs: outputs,
|
|
4280
|
+
template: '',
|
|
4281
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4282
|
+
queries: {
|
|
4283
|
+
childSeries: new ContentChild(CircularChart3DSeriesCollectionDirective),
|
|
4284
|
+
childSelectedDataIndexes: new ContentChild(CircularChart3DSelectedDataIndexesDirective)
|
|
4285
|
+
}
|
|
4286
|
+
}]
|
|
4287
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
4288
|
+
type: ContentChild,
|
|
4289
|
+
args: ['tooltipTemplate']
|
|
4290
|
+
}] } });
|
|
4291
|
+
|
|
4292
|
+
/**
|
|
4293
|
+
* NgModule definition for the CircularChart3D component.
|
|
4294
|
+
*/
|
|
4295
|
+
class CircularChart3DModule {
|
|
4296
|
+
}
|
|
4297
|
+
CircularChart3DModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4298
|
+
CircularChart3DModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DModule, declarations: [CircularChart3DComponent,
|
|
4299
|
+
CircularChart3DSeriesDirective,
|
|
4300
|
+
CircularChart3DSeriesCollectionDirective,
|
|
4301
|
+
CircularChart3DSelectedDataIndexDirective,
|
|
4302
|
+
CircularChart3DSelectedDataIndexesDirective], imports: [CommonModule], exports: [CircularChart3DComponent,
|
|
4303
|
+
CircularChart3DSeriesDirective,
|
|
4304
|
+
CircularChart3DSeriesCollectionDirective,
|
|
4305
|
+
CircularChart3DSelectedDataIndexDirective,
|
|
4306
|
+
CircularChart3DSelectedDataIndexesDirective] });
|
|
4307
|
+
CircularChart3DModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DModule, imports: [[CommonModule]] });
|
|
4308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DModule, decorators: [{
|
|
4309
|
+
type: NgModule,
|
|
4310
|
+
args: [{
|
|
4311
|
+
imports: [CommonModule],
|
|
4312
|
+
declarations: [
|
|
4313
|
+
CircularChart3DComponent,
|
|
4314
|
+
CircularChart3DSeriesDirective,
|
|
4315
|
+
CircularChart3DSeriesCollectionDirective,
|
|
4316
|
+
CircularChart3DSelectedDataIndexDirective,
|
|
4317
|
+
CircularChart3DSelectedDataIndexesDirective
|
|
4318
|
+
],
|
|
4319
|
+
exports: [
|
|
4320
|
+
CircularChart3DComponent,
|
|
4321
|
+
CircularChart3DSeriesDirective,
|
|
4322
|
+
CircularChart3DSeriesCollectionDirective,
|
|
4323
|
+
CircularChart3DSelectedDataIndexDirective,
|
|
4324
|
+
CircularChart3DSelectedDataIndexesDirective
|
|
4325
|
+
]
|
|
4326
|
+
}]
|
|
4327
|
+
}] });
|
|
4328
|
+
|
|
4329
|
+
const PieSeries3DService = { provide: 'ChartsPieSeries3D', useValue: PieSeries3D };
|
|
4330
|
+
const CircularChartTooltip3DService = { provide: 'ChartsCircularChartTooltip3D', useValue: CircularChartTooltip3D };
|
|
4331
|
+
const CircularChartLegend3DService = { provide: 'ChartsCircularChartLegend3D', useValue: CircularChartLegend3D };
|
|
4332
|
+
const CircularChartSelection3DService = { provide: 'ChartsCircularChartSelection3D', useValue: CircularChartSelection3D };
|
|
4333
|
+
const CircularChartDataLabel3DService = { provide: 'ChartsCircularChartDataLabel3D', useValue: CircularChartDataLabel3D };
|
|
4334
|
+
const CircularChartHighlight3DService = { provide: 'ChartsCircularChartHighlight3D', useValue: CircularChartHighlight3D };
|
|
4335
|
+
const CircularChartExport3DService = { provide: 'ChartsCircularChartExport3D', useValue: CircularChartExport3D };
|
|
4336
|
+
/**
|
|
4337
|
+
* NgModule definition for the CircularChart3D component with providers.
|
|
4338
|
+
*/
|
|
4339
|
+
class CircularChart3DAllModule {
|
|
4340
|
+
}
|
|
4341
|
+
CircularChart3DAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4342
|
+
CircularChart3DAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DAllModule, imports: [CommonModule, CircularChart3DModule], exports: [CircularChart3DModule] });
|
|
4343
|
+
CircularChart3DAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DAllModule, providers: [
|
|
4344
|
+
PieSeries3DService,
|
|
4345
|
+
CircularChartTooltip3DService,
|
|
4346
|
+
CircularChartLegend3DService,
|
|
4347
|
+
CircularChartSelection3DService,
|
|
4348
|
+
CircularChartDataLabel3DService,
|
|
4349
|
+
CircularChartHighlight3DService,
|
|
4350
|
+
CircularChartExport3DService
|
|
4351
|
+
], imports: [[CommonModule, CircularChart3DModule], CircularChart3DModule] });
|
|
4352
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DAllModule, decorators: [{
|
|
4353
|
+
type: NgModule,
|
|
4354
|
+
args: [{
|
|
4355
|
+
imports: [CommonModule, CircularChart3DModule],
|
|
4356
|
+
exports: [
|
|
4357
|
+
CircularChart3DModule
|
|
4358
|
+
],
|
|
4359
|
+
providers: [
|
|
4360
|
+
PieSeries3DService,
|
|
4361
|
+
CircularChartTooltip3DService,
|
|
4362
|
+
CircularChartLegend3DService,
|
|
4363
|
+
CircularChartSelection3DService,
|
|
4364
|
+
CircularChartDataLabel3DService,
|
|
4365
|
+
CircularChartHighlight3DService,
|
|
4366
|
+
CircularChartExport3DService
|
|
4367
|
+
]
|
|
4368
|
+
}]
|
|
4369
|
+
}] });
|
|
4370
|
+
|
|
4371
|
+
/**
|
|
4372
|
+
* Generated bundle index. Do not edit.
|
|
4373
|
+
*/
|
|
4374
|
+
|
|
4375
|
+
export { AccumulationAnnotationDirective, AccumulationAnnotationService, AccumulationAnnotationsDirective, AccumulationChartAllModule, AccumulationChartComponent, AccumulationChartModule, AccumulationDataLabelService, AccumulationDistributionIndicatorService, AccumulationHighlightService, AccumulationLegendService, AccumulationSelectionService, AccumulationSeriesCollectionDirective, AccumulationSeriesDirective, AccumulationTooltipService, AnnotationDirective, AnnotationsDirective, AreaSeriesService, AtrIndicatorService, AxesDirective, AxisDirective, BarSeries3DService, BarSeriesService, BollingerBandsService, BoxAndWhiskerSeriesService, BubbleSeriesService, BulletChartAllModule, BulletChartComponent, BulletChartLegendService, BulletChartModule, BulletRangeCollectionDirective, BulletRangeDirective, BulletTooltipService, CandleSeriesService, CategoriesDirective, Category3DService, CategoryDirective, CategoryService, Chart3DAllModule, Chart3DAxesDirective, Chart3DAxisDirective, Chart3DColumnDirective, Chart3DColumnsDirective, Chart3DComponent, Chart3DModule, Chart3DRowDirective, Chart3DRowsDirective, Chart3DSelectedDataIndexDirective, Chart3DSelectedDataIndexesDirective, Chart3DSeriesCollectionDirective, Chart3DSeriesDirective, ChartAllModule, ChartAnnotationService, ChartComponent, ChartModule, CircularChart3DAllModule, CircularChart3DComponent, CircularChart3DModule, CircularChart3DSelectedDataIndexDirective, CircularChart3DSelectedDataIndexesDirective, CircularChart3DSeriesCollectionDirective, CircularChart3DSeriesDirective, CircularChartDataLabel3DService, CircularChartExport3DService, CircularChartHighlight3DService, CircularChartLegend3DService, CircularChartSelection3DService, CircularChartTooltip3DService, ColumnDirective, ColumnSeries3DService, ColumnSeriesService, ColumnsDirective, CrosshairService, DataEditingService, DataLabel3DService, DataLabelService, DateTime3DService, DateTimeCategory3DService, DateTimeCategoryService, DateTimeService, EmaIndicatorService, ErrorBarService, Export3DService, ExportService, FunnelSeriesService, Highlight3DService, HighlightService, HiloOpenCloseSeriesService, HiloSeriesService, HistogramSeriesService, IndicatorDirective, IndicatorsDirective, LastValueLabelService, Legend3DService, LegendService, LineSeriesService, Logarithmic3DService, LogarithmicService, MacdIndicatorService, MomentumIndicatorService, MultiColoredAreaSeriesService, MultiColoredLineSeriesService, MultiLevelLabelDirective, MultiLevelLabelService, MultiLevelLabelsDirective, ParetoSeriesService, PeriodSelectorService, PieSeries3DService, PieSeriesService, PolarSeriesService, PyramidSeriesService, RadarSeriesService, RangeAreaSeriesService, RangeBandSettingDirective, RangeBandSettingsDirective, RangeColorSettingDirective, RangeColorSettingsDirective, RangeColumnSeriesService, RangeNavigatorAllModule, RangeNavigatorComponent, RangeNavigatorModule, RangeStepAreaSeriesService, RangeTooltipService, RangenavigatorSeriesCollectionDirective, RangenavigatorSeriesDirective, RowDirective, RowsDirective, RsiIndicatorService, ScatterSeriesService, ScrollBarService, SegmentDirective, SegmentsDirective, SelectedDataIndexDirective, SelectedDataIndexesDirective, Selection3DService, SelectionService, SeriesCollectionDirective, SeriesDirective, SmaIndicatorService, SmithchartAllModule, SmithchartComponent, SmithchartLegendService, SmithchartModule, SmithchartSeriesCollectionDirective, SmithchartSeriesDirective, SparklineAllModule, SparklineComponent, SparklineModule, SparklineTooltipService, SplineAreaSeriesService, SplineRangeAreaSeriesService, SplineSeriesService, StackingAreaSeriesService, StackingBarSeries3DService, StackingBarSeriesService, StackingColumnSeries3DService, StackingColumnSeriesService, StackingLineSeriesService, StackingStepAreaSeriesService, StepAreaSeriesService, StepLineSeriesService, StochasticIndicatorService, StockChartAllModule, StockChartAnnotationDirective, StockChartAnnotationsDirective, StockChartAxesDirective, StockChartAxisDirective, StockChartComponent, StockChartIndicatorDirective, StockChartIndicatorsDirective, StockChartModule, StockChartPeriodDirective, StockChartPeriodsDirective, StockChartRowDirective, StockChartRowsDirective, StockChartSelectedDataIndexDirective, StockChartSelectedDataIndexesDirective, StockChartSeriesCollectionDirective, StockChartSeriesDirective, StockChartTrendlineDirective, StockChartTrendlinesDirective, StockEventDirective, StockEventsDirective, StockLegendService, StripLineDirective, StripLineService, StripLinesDirective, TmaIndicatorService, Tooltip3DService, TooltipRenderService, TooltipService, TrendlineDirective, TrendlinesDirective, TrendlinesService, WaterfallSeriesService, ZoomService };
|
|
4376
|
+
//# sourceMappingURL=syncfusion-ej2-angular-charts.mjs.map
|