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