@syncfusion/ej2-angular-charts 32.2.9 → 33.1.44
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 +31 -33
- package/esm2020/src/accumulation-chart/accumulationchart.component.mjs +8 -2
- package/esm2020/src/accumulation-chart/series.directive.mjs +3 -3
- package/esm2020/src/chart/chart-all.module.mjs +7 -4
- package/esm2020/src/chart/chart.component.mjs +16 -3
- package/esm2020/src/chart/indicators.directive.mjs +3 -3
- package/esm2020/src/chart/series.directive.mjs +3 -3
- package/esm2020/src/chart/trendlines.directive.mjs +3 -3
- package/esm2020/src/index.mjs +7 -2
- package/esm2020/src/sankey/links.directive.mjs +54 -0
- package/esm2020/src/sankey/nodes.directive.mjs +54 -0
- package/esm2020/src/sankey/sankey-all.module.mjs +38 -0
- package/esm2020/src/sankey/sankey.component.mjs +110 -0
- package/esm2020/src/sankey/sankey.module.mjs +43 -0
- package/esm2020/src/stock-chart/indicators.directive.mjs +3 -3
- package/esm2020/src/stock-chart/series.directive.mjs +3 -3
- package/esm2020/src/stock-chart/stockchart.component.mjs +16 -3
- package/esm2020/src/stock-chart/trendlines.directive.mjs +3 -3
- package/fesm2015/syncfusion-ej2-angular-charts.mjs +595 -287
- package/fesm2015/syncfusion-ej2-angular-charts.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-charts.mjs +595 -287
- package/fesm2020/syncfusion-ej2-angular-charts.mjs.map +1 -1
- package/package.json +6 -5
- package/schematics/utils/lib-details.d.ts +3 -3
- package/schematics/utils/lib-details.js +3 -3
- package/schematics/utils/lib-details.ts +3 -3
- package/src/accumulation-chart/accumulationchart.component.d.ts +2 -1
- package/src/accumulation-chart/series.directive.d.ts +14 -1
- package/src/chart/chart-all.module.d.ts +1 -0
- package/src/chart/chart.component.d.ts +3 -1
- package/src/chart/indicators.directive.d.ts +11 -1
- package/src/chart/series.directive.d.ts +18 -1
- package/src/chart/trendlines.directive.d.ts +11 -1
- package/src/index.d.ts +6 -1
- package/src/sankey/links.directive.d.ts +46 -0
- package/src/sankey/nodes.directive.d.ts +49 -0
- package/src/sankey/sankey-all.module.d.ts +16 -0
- package/src/sankey/sankey.component.d.ts +56 -0
- package/src/sankey/sankey.module.d.ts +13 -0
- package/src/stock-chart/indicators.directive.d.ts +14 -1
- package/src/stock-chart/series.directive.d.ts +18 -1
- package/src/stock-chart/stockchart.component.d.ts +3 -1
- package/src/stock-chart/trendlines.directive.d.ts +11 -1
|
@@ -2,12 +2,12 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { Directive, ContentChildren, ContentChild, Component, NgModule, ChangeDetectionStrategy } from '@angular/core';
|
|
3
3
|
import { ComplexBase, setValue, ArrayBase, Template, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
|
|
4
4
|
import { __decorate } from 'tslib';
|
|
5
|
-
import { Chart, LineSeries, ScatterSeries, ColumnSeries, SplineSeries, SplineAreaSeries, StripLine, AreaSeries, ScrollBar, StepLineSeries, StepAreaSeries, StackingColumnSeries, StackingLineSeries, StackingAreaSeries, StackingStepAreaSeries, BarSeries, StackingBarSeries, RangeColumnSeries, BubbleSeries, Tooltip, Crosshair, Category, DateTime, Logarithmic, Legend, Zoom, DataLabel, Selection, ChartAnnotation, HiloSeries, HiloOpenCloseSeries, WaterfallSeries, RangeAreaSeries, RangeStepAreaSeries, SplineRangeAreaSeries, CandleSeries, PolarSeries, RadarSeries, SmaIndicator, TmaIndicator, EmaIndicator, AccumulationDistributionIndicator, MacdIndicator, AtrIndicator, RsiIndicator, MomentumIndicator, StochasticIndicator, BollingerBands, BoxAndWhiskerSeries, HistogramSeries, ErrorBar, Trendlines, DateTimeCategory, MultiColoredLineSeries, MultiColoredAreaSeries, MultiLevelLabel, ParetoSeries, Export, DataEditing, Highlight, LastValueLabel, AccumulationChart, PieSeries, FunnelSeries, PyramidSeries, AccumulationTooltip, AccumulationLegend, AccumulationSelection, AccumulationHighlight, AccumulationDataLabel, AccumulationAnnotation, RangeNavigator, RangeTooltip, PeriodSelector, Sparkline, SparklineTooltip, Smithchart, SmithchartLegend, TooltipRender, StockChart, StockLegend, BulletChart, BulletTooltip, BulletChartLegend, Chart3D, ColumnSeries3D, StackingColumnSeries3D, BarSeries3D, StackingBarSeries3D, Category3D, DateTime3D, DateTimeCategory3D, Logarithmic3D, Tooltip3D, Legend3D, DataLabel3D, Selection3D, Export3D, Highlight3D, CircularChart3D, PieSeries3D, CircularChartTooltip3D, CircularChartLegend3D, CircularChartSelection3D, CircularChartDataLabel3D, CircularChartHighlight3D, CircularChartExport3D } from '@syncfusion/ej2-charts';
|
|
5
|
+
import { Chart, LineSeries, ScatterSeries, ColumnSeries, SplineSeries, SplineAreaSeries, StripLine, AreaSeries, ScrollBar, StepLineSeries, StepAreaSeries, StackingColumnSeries, StackingLineSeries, StackingAreaSeries, StackingStepAreaSeries, BarSeries, StackingBarSeries, RangeColumnSeries, BubbleSeries, Tooltip, Crosshair, Category, DateTime, Logarithmic, Legend, Zoom, DataLabel, Selection, ChartAnnotation, HiloSeries, HiloOpenCloseSeries, WaterfallSeries, RangeAreaSeries, RangeStepAreaSeries, SplineRangeAreaSeries, CandleSeries, PolarSeries, RadarSeries, SmaIndicator, TmaIndicator, EmaIndicator, AccumulationDistributionIndicator, MacdIndicator, AtrIndicator, RsiIndicator, MomentumIndicator, StochasticIndicator, BollingerBands, BoxAndWhiskerSeries, HistogramSeries, ErrorBar, Trendlines, DateTimeCategory, MultiColoredLineSeries, MultiColoredAreaSeries, MultiLevelLabel, ParetoSeries, Export, DataEditing, Highlight, LastValueLabel, SeriesLabel, AccumulationChart, PieSeries, FunnelSeries, PyramidSeries, AccumulationTooltip, AccumulationLegend, AccumulationSelection, AccumulationHighlight, AccumulationDataLabel, AccumulationAnnotation, RangeNavigator, RangeTooltip, PeriodSelector, Sparkline, SparklineTooltip, Smithchart, SmithchartLegend, TooltipRender, StockChart, StockLegend, BulletChart, BulletTooltip, BulletChartLegend, Chart3D, ColumnSeries3D, StackingColumnSeries3D, BarSeries3D, StackingBarSeries3D, Category3D, DateTime3D, DateTimeCategory3D, Logarithmic3D, Tooltip3D, Legend3D, DataLabel3D, Selection3D, Export3D, Highlight3D, CircularChart3D, PieSeries3D, CircularChartTooltip3D, CircularChartLegend3D, CircularChartSelection3D, CircularChartDataLabel3D, CircularChartHighlight3D, CircularChartExport3D, Sankey, SankeyLegend, SankeyTooltip, SankeyHighlight, SankeyExport } from '@syncfusion/ej2-charts';
|
|
6
6
|
export * from '@syncfusion/ej2-charts';
|
|
7
7
|
import { CommonModule } from '@angular/common';
|
|
8
8
|
|
|
9
|
-
let input$
|
|
10
|
-
let outputs$
|
|
9
|
+
let input$A = ['accessibility', 'animation', 'backwardForecast', 'dashArray', 'enableTooltip', 'fill', 'forwardForecast', 'intercept', 'legendShape', 'linearGradient', 'marker', 'name', 'period', 'polynomialOrder', 'radialGradient', 'type', 'visible', 'width'];
|
|
10
|
+
let outputs$K = [];
|
|
11
11
|
/**
|
|
12
12
|
* Series Directive
|
|
13
13
|
* ```html
|
|
@@ -25,18 +25,18 @@ class TrendlineDirective extends ComplexBase {
|
|
|
25
25
|
super();
|
|
26
26
|
this.viewContainerRef = viewContainerRef;
|
|
27
27
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
28
|
-
this.registerEvents(outputs$
|
|
29
|
-
this.directivePropList = input$
|
|
28
|
+
this.registerEvents(outputs$K);
|
|
29
|
+
this.directivePropList = input$A;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
TrendlineDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TrendlineDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33
|
-
TrendlineDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: TrendlineDirective, selector: "e-series>e-trendlines>e-trendline", inputs: { accessibility: "accessibility", animation: "animation", backwardForecast: "backwardForecast", dashArray: "dashArray", enableTooltip: "enableTooltip", fill: "fill", forwardForecast: "forwardForecast", intercept: "intercept", legendShape: "legendShape", marker: "marker", name: "name", period: "period", polynomialOrder: "polynomialOrder", type: "type", visible: "visible", width: "width" }, usesInheritance: true, ngImport: i0 });
|
|
33
|
+
TrendlineDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: TrendlineDirective, selector: "e-series>e-trendlines>e-trendline", inputs: { accessibility: "accessibility", animation: "animation", backwardForecast: "backwardForecast", dashArray: "dashArray", enableTooltip: "enableTooltip", fill: "fill", forwardForecast: "forwardForecast", intercept: "intercept", legendShape: "legendShape", linearGradient: "linearGradient", marker: "marker", name: "name", period: "period", polynomialOrder: "polynomialOrder", radialGradient: "radialGradient", type: "type", visible: "visible", width: "width" }, usesInheritance: true, ngImport: i0 });
|
|
34
34
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TrendlineDirective, decorators: [{
|
|
35
35
|
type: Directive,
|
|
36
36
|
args: [{
|
|
37
37
|
selector: 'e-series>e-trendlines>e-trendline',
|
|
38
|
-
inputs: input$
|
|
39
|
-
outputs: outputs$
|
|
38
|
+
inputs: input$A,
|
|
39
|
+
outputs: outputs$K,
|
|
40
40
|
queries: {}
|
|
41
41
|
}]
|
|
42
42
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -61,8 +61,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
61
61
|
}]
|
|
62
62
|
}], ctorParameters: function () { return []; } });
|
|
63
63
|
|
|
64
|
-
let input$
|
|
65
|
-
let outputs$
|
|
64
|
+
let input$z = ['color', 'dashArray', 'value'];
|
|
65
|
+
let outputs$J = [];
|
|
66
66
|
/**
|
|
67
67
|
* Series Directive
|
|
68
68
|
* ```html
|
|
@@ -80,8 +80,8 @@ class SegmentDirective extends ComplexBase {
|
|
|
80
80
|
super();
|
|
81
81
|
this.viewContainerRef = viewContainerRef;
|
|
82
82
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
83
|
-
this.registerEvents(outputs$
|
|
84
|
-
this.directivePropList = input$
|
|
83
|
+
this.registerEvents(outputs$J);
|
|
84
|
+
this.directivePropList = input$z;
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
SegmentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SegmentDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -90,8 +90,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
90
90
|
type: Directive,
|
|
91
91
|
args: [{
|
|
92
92
|
selector: 'e-series>e-segments>e-segment',
|
|
93
|
-
inputs: input$
|
|
94
|
-
outputs: outputs$
|
|
93
|
+
inputs: input$z,
|
|
94
|
+
outputs: outputs$J,
|
|
95
95
|
queries: {}
|
|
96
96
|
}]
|
|
97
97
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -116,8 +116,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
116
116
|
}]
|
|
117
117
|
}], ctorParameters: function () { return []; } });
|
|
118
118
|
|
|
119
|
-
let input$
|
|
120
|
-
let outputs$
|
|
119
|
+
let input$y = ['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', 'labelSettings', 'lastValueLabel', 'legendImageUrl', 'legendShape', 'linearGradient', 'low', 'marker', 'maxRadius', 'minRadius', 'name', 'negativeFillColor', 'noRisers', 'nonHighlightStyle', 'opacity', 'open', 'paretoOptions', 'pointColorMapping', 'query', 'radialGradient', 'segmentAxis', 'segments', 'selectionStyle', 'showMean', 'showNearestTooltip', 'showNormalDistribution', 'showOutliers', 'size', 'splineType', 'stackingGroup', 'step', 'sumIndexes', 'summaryFillColor', 'tooltipFormat', 'tooltipMappingName', 'trendlines', 'type', 'unSelectedStyle', 'visible', 'volume', 'width', 'xAxisName', 'xName', 'yAxisName', 'yName', 'zOrder'];
|
|
120
|
+
let outputs$I = [];
|
|
121
121
|
/**
|
|
122
122
|
* Series Directive
|
|
123
123
|
* ```html
|
|
@@ -132,12 +132,12 @@ class SeriesDirective extends ComplexBase {
|
|
|
132
132
|
this.viewContainerRef = viewContainerRef;
|
|
133
133
|
this.tags = ['trendlines', 'segments'];
|
|
134
134
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
135
|
-
this.registerEvents(outputs$
|
|
136
|
-
this.directivePropList = input$
|
|
135
|
+
this.registerEvents(outputs$I);
|
|
136
|
+
this.directivePropList = input$y;
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
SeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
140
|
-
SeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SeriesDirective, selector: "e-series-collection>e-series", inputs: { accessibility: "accessibility", animation: "animation", bearFillColor: "bearFillColor", binInterval: "binInterval", border: "border", boxPlotMode: "boxPlotMode", bullFillColor: "bullFillColor", cardinalSplineTension: "cardinalSplineTension", close: "close", colorName: "colorName", columnFacet: "columnFacet", columnSpacing: "columnSpacing", columnWidth: "columnWidth", columnWidthInPixel: "columnWidthInPixel", connector: "connector", cornerRadius: "cornerRadius", dashArray: "dashArray", dataSource: "dataSource", dragSettings: "dragSettings", drawType: "drawType", emptyPointSettings: "emptyPointSettings", enableComplexProperty: "enableComplexProperty", enableSolidCandles: "enableSolidCandles", enableTooltip: "enableTooltip", errorBar: "errorBar", fill: "fill", groupName: "groupName", high: "high", intermediateSumIndexes: "intermediateSumIndexes", isClosed: "isClosed", lastValueLabel: "lastValueLabel", legendImageUrl: "legendImageUrl", legendShape: "legendShape", low: "low", marker: "marker", maxRadius: "maxRadius", minRadius: "minRadius", name: "name", negativeFillColor: "negativeFillColor", noRisers: "noRisers", nonHighlightStyle: "nonHighlightStyle", opacity: "opacity", open: "open", paretoOptions: "paretoOptions", pointColorMapping: "pointColorMapping", query: "query", segmentAxis: "segmentAxis", segments: "segments", selectionStyle: "selectionStyle", showMean: "showMean", showNearestTooltip: "showNearestTooltip", showNormalDistribution: "showNormalDistribution", showOutliers: "showOutliers", size: "size", splineType: "splineType", stackingGroup: "stackingGroup", step: "step", sumIndexes: "sumIndexes", summaryFillColor: "summaryFillColor", tooltipFormat: "tooltipFormat", tooltipMappingName: "tooltipMappingName", trendlines: "trendlines", type: "type", unSelectedStyle: "unSelectedStyle", visible: "visible", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName", yName: "yName", zOrder: "zOrder" }, queries: [{ propertyName: "dataLabel_template", first: true, predicate: ["dataLabelTemplate"], descendants: true }, { propertyName: "childTrendlines", first: true, predicate: TrendlinesDirective, descendants: true }, { propertyName: "childSegments", first: true, predicate: SegmentsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
140
|
+
SeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SeriesDirective, selector: "e-series-collection>e-series", inputs: { accessibility: "accessibility", animation: "animation", bearFillColor: "bearFillColor", binInterval: "binInterval", border: "border", boxPlotMode: "boxPlotMode", bullFillColor: "bullFillColor", cardinalSplineTension: "cardinalSplineTension", close: "close", colorName: "colorName", columnFacet: "columnFacet", columnSpacing: "columnSpacing", columnWidth: "columnWidth", columnWidthInPixel: "columnWidthInPixel", connector: "connector", cornerRadius: "cornerRadius", dashArray: "dashArray", dataSource: "dataSource", dragSettings: "dragSettings", drawType: "drawType", emptyPointSettings: "emptyPointSettings", enableComplexProperty: "enableComplexProperty", enableSolidCandles: "enableSolidCandles", enableTooltip: "enableTooltip", errorBar: "errorBar", fill: "fill", groupName: "groupName", high: "high", intermediateSumIndexes: "intermediateSumIndexes", isClosed: "isClosed", labelSettings: "labelSettings", lastValueLabel: "lastValueLabel", legendImageUrl: "legendImageUrl", legendShape: "legendShape", linearGradient: "linearGradient", low: "low", marker: "marker", maxRadius: "maxRadius", minRadius: "minRadius", name: "name", negativeFillColor: "negativeFillColor", noRisers: "noRisers", nonHighlightStyle: "nonHighlightStyle", opacity: "opacity", open: "open", paretoOptions: "paretoOptions", pointColorMapping: "pointColorMapping", query: "query", radialGradient: "radialGradient", segmentAxis: "segmentAxis", segments: "segments", selectionStyle: "selectionStyle", showMean: "showMean", showNearestTooltip: "showNearestTooltip", showNormalDistribution: "showNormalDistribution", showOutliers: "showOutliers", size: "size", splineType: "splineType", stackingGroup: "stackingGroup", step: "step", sumIndexes: "sumIndexes", summaryFillColor: "summaryFillColor", tooltipFormat: "tooltipFormat", tooltipMappingName: "tooltipMappingName", trendlines: "trendlines", type: "type", unSelectedStyle: "unSelectedStyle", visible: "visible", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName", yName: "yName", zOrder: "zOrder" }, queries: [{ propertyName: "dataLabel_template", first: true, predicate: ["dataLabelTemplate"], descendants: true }, { propertyName: "childTrendlines", first: true, predicate: TrendlinesDirective, descendants: true }, { propertyName: "childSegments", first: true, predicate: SegmentsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
141
141
|
__decorate([
|
|
142
142
|
Template()
|
|
143
143
|
], SeriesDirective.prototype, "dataLabel_template", void 0);
|
|
@@ -145,8 +145,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
145
145
|
type: Directive,
|
|
146
146
|
args: [{
|
|
147
147
|
selector: 'e-series-collection>e-series',
|
|
148
|
-
inputs: input$
|
|
149
|
-
outputs: outputs$
|
|
148
|
+
inputs: input$y,
|
|
149
|
+
outputs: outputs$I,
|
|
150
150
|
queries: {
|
|
151
151
|
childTrendlines: new ContentChild(TrendlinesDirective),
|
|
152
152
|
childSegments: new ContentChild(SegmentsDirective)
|
|
@@ -177,8 +177,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
177
177
|
}]
|
|
178
178
|
}], ctorParameters: function () { return []; } });
|
|
179
179
|
|
|
180
|
-
let input$
|
|
181
|
-
let outputs$
|
|
180
|
+
let input$x = ['border', 'color', 'dashArray', 'end', 'horizontalAlignment', 'imageUrl', 'isRepeat', 'isSegmented', 'opacity', 'repeatEvery', 'repeatUntil', 'rotation', 'segmentAxisName', 'segmentEnd', 'segmentStart', 'size', 'sizeType', 'start', 'startFromAxis', 'text', 'textStyle', 'verticalAlignment', 'visible', 'zIndex'];
|
|
181
|
+
let outputs$H = [];
|
|
182
182
|
/**
|
|
183
183
|
* StripLine Directive
|
|
184
184
|
* ```html
|
|
@@ -194,8 +194,8 @@ class StripLineDirective extends ComplexBase {
|
|
|
194
194
|
super();
|
|
195
195
|
this.viewContainerRef = viewContainerRef;
|
|
196
196
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
197
|
-
this.registerEvents(outputs$
|
|
198
|
-
this.directivePropList = input$
|
|
197
|
+
this.registerEvents(outputs$H);
|
|
198
|
+
this.directivePropList = input$x;
|
|
199
199
|
}
|
|
200
200
|
}
|
|
201
201
|
StripLineDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StripLineDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -204,8 +204,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
204
204
|
type: Directive,
|
|
205
205
|
args: [{
|
|
206
206
|
selector: 'e-axis>e-striplines>e-stripline',
|
|
207
|
-
inputs: input$
|
|
208
|
-
outputs: outputs$
|
|
207
|
+
inputs: input$x,
|
|
208
|
+
outputs: outputs$H,
|
|
209
209
|
queries: {}
|
|
210
210
|
}]
|
|
211
211
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -230,8 +230,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
230
230
|
}]
|
|
231
231
|
}], ctorParameters: function () { return []; } });
|
|
232
232
|
|
|
233
|
-
let input$
|
|
234
|
-
let outputs$
|
|
233
|
+
let input$w = ['customAttributes', 'end', 'maximumTextWidth', 'start', 'text', 'type'];
|
|
234
|
+
let outputs$G = [];
|
|
235
235
|
/**
|
|
236
236
|
* MultiLevelLabels Directive
|
|
237
237
|
* ```html
|
|
@@ -250,8 +250,8 @@ class CategoryDirective extends ComplexBase {
|
|
|
250
250
|
super();
|
|
251
251
|
this.viewContainerRef = viewContainerRef;
|
|
252
252
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
253
|
-
this.registerEvents(outputs$
|
|
254
|
-
this.directivePropList = input$
|
|
253
|
+
this.registerEvents(outputs$G);
|
|
254
|
+
this.directivePropList = input$w;
|
|
255
255
|
}
|
|
256
256
|
}
|
|
257
257
|
CategoryDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CategoryDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -260,8 +260,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
260
260
|
type: Directive,
|
|
261
261
|
args: [{
|
|
262
262
|
selector: 'e-multilevellabel>e-categories>e-category',
|
|
263
|
-
inputs: input$
|
|
264
|
-
outputs: outputs$
|
|
263
|
+
inputs: input$w,
|
|
264
|
+
outputs: outputs$G,
|
|
265
265
|
queries: {}
|
|
266
266
|
}]
|
|
267
267
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -286,8 +286,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
286
286
|
}]
|
|
287
287
|
}], ctorParameters: function () { return []; } });
|
|
288
288
|
|
|
289
|
-
let input$
|
|
290
|
-
let outputs$
|
|
289
|
+
let input$v = ['alignment', 'border', 'categories', 'overflow', 'textStyle'];
|
|
290
|
+
let outputs$F = [];
|
|
291
291
|
/**
|
|
292
292
|
* MultiLevelLabel Directive
|
|
293
293
|
* ```html
|
|
@@ -304,8 +304,8 @@ class MultiLevelLabelDirective extends ComplexBase {
|
|
|
304
304
|
this.viewContainerRef = viewContainerRef;
|
|
305
305
|
this.tags = ['categories'];
|
|
306
306
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
307
|
-
this.registerEvents(outputs$
|
|
308
|
-
this.directivePropList = input$
|
|
307
|
+
this.registerEvents(outputs$F);
|
|
308
|
+
this.directivePropList = input$v;
|
|
309
309
|
}
|
|
310
310
|
}
|
|
311
311
|
MultiLevelLabelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MultiLevelLabelDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -314,8 +314,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
314
314
|
type: Directive,
|
|
315
315
|
args: [{
|
|
316
316
|
selector: 'e-axis>e-multilevellabels>e-multilevellabel',
|
|
317
|
-
inputs: input$
|
|
318
|
-
outputs: outputs$
|
|
317
|
+
inputs: input$v,
|
|
318
|
+
outputs: outputs$F,
|
|
319
319
|
queries: {
|
|
320
320
|
childCategories: new ContentChild(CategoriesDirective)
|
|
321
321
|
}
|
|
@@ -342,8 +342,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
342
342
|
}]
|
|
343
343
|
}], ctorParameters: function () { return []; } });
|
|
344
344
|
|
|
345
|
-
let input$
|
|
346
|
-
let outputs$
|
|
345
|
+
let input$u = ['border', 'coefficient', 'columnIndex', 'crossesAt', 'crossesInAxis', 'crosshairTooltip', 'description', 'desiredIntervals', 'edgeLabelPlacement', 'enableAutoIntervalOnZooming', 'enableScrollbarOnZooming', 'enableTrim', 'enableWrap', 'interval', 'intervalType', 'isIndexed', 'isInversed', 'labelFormat', 'labelIntersectAction', 'labelPadding', 'labelPlacement', 'labelPosition', 'labelRotation', 'labelStyle', 'labelTemplate', 'lineBreakAlignment', 'lineStyle', 'logBase', 'majorGridLines', 'majorTickLines', 'maximum', 'maximumLabelWidth', 'maximumLabels', 'minimum', 'minorGridLines', 'minorTickLines', 'minorTicksPerInterval', 'multiLevelLabels', 'name', 'opposedPosition', 'placeNextToAxisLine', 'plotOffset', 'plotOffsetBottom', 'plotOffsetLeft', 'plotOffsetRight', 'plotOffsetTop', 'rangePadding', 'rowIndex', 'scrollbarSettings', 'skeleton', 'skeletonType', 'span', 'startAngle', 'startFromZero', 'stripLines', 'tabIndex', 'tickPosition', 'title', 'titlePadding', 'titleRotation', 'titleStyle', 'valueType', 'visible', 'zoomFactor', 'zoomPosition'];
|
|
346
|
+
let outputs$E = [];
|
|
347
347
|
/**
|
|
348
348
|
* Axis Directive
|
|
349
349
|
* ```html
|
|
@@ -356,8 +356,8 @@ class AxisDirective extends ComplexBase {
|
|
|
356
356
|
this.viewContainerRef = viewContainerRef;
|
|
357
357
|
this.tags = ['stripLines', 'multiLevelLabels'];
|
|
358
358
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
359
|
-
this.registerEvents(outputs$
|
|
360
|
-
this.directivePropList = input$
|
|
359
|
+
this.registerEvents(outputs$E);
|
|
360
|
+
this.directivePropList = input$u;
|
|
361
361
|
}
|
|
362
362
|
}
|
|
363
363
|
AxisDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AxisDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -366,8 +366,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
366
366
|
type: Directive,
|
|
367
367
|
args: [{
|
|
368
368
|
selector: 'e-axes>e-axis',
|
|
369
|
-
inputs: input$
|
|
370
|
-
outputs: outputs$
|
|
369
|
+
inputs: input$u,
|
|
370
|
+
outputs: outputs$E,
|
|
371
371
|
queries: {
|
|
372
372
|
childStripLines: new ContentChild(StripLinesDirective),
|
|
373
373
|
childMultiLevelLabels: new ContentChild(MultiLevelLabelsDirective)
|
|
@@ -395,8 +395,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
395
395
|
}]
|
|
396
396
|
}], ctorParameters: function () { return []; } });
|
|
397
397
|
|
|
398
|
-
let input$
|
|
399
|
-
let outputs$
|
|
398
|
+
let input$t = ['border', 'height'];
|
|
399
|
+
let outputs$D = [];
|
|
400
400
|
/**
|
|
401
401
|
* Row Directive
|
|
402
402
|
* ```html
|
|
@@ -408,8 +408,8 @@ class RowDirective extends ComplexBase {
|
|
|
408
408
|
super();
|
|
409
409
|
this.viewContainerRef = viewContainerRef;
|
|
410
410
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
411
|
-
this.registerEvents(outputs$
|
|
412
|
-
this.directivePropList = input$
|
|
411
|
+
this.registerEvents(outputs$D);
|
|
412
|
+
this.directivePropList = input$t;
|
|
413
413
|
}
|
|
414
414
|
}
|
|
415
415
|
RowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RowDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -418,8 +418,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
418
418
|
type: Directive,
|
|
419
419
|
args: [{
|
|
420
420
|
selector: 'e-rows>e-row',
|
|
421
|
-
inputs: input$
|
|
422
|
-
outputs: outputs$
|
|
421
|
+
inputs: input$t,
|
|
422
|
+
outputs: outputs$D,
|
|
423
423
|
queries: {}
|
|
424
424
|
}]
|
|
425
425
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -444,8 +444,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
444
444
|
}]
|
|
445
445
|
}], ctorParameters: function () { return []; } });
|
|
446
446
|
|
|
447
|
-
let input$
|
|
448
|
-
let outputs$
|
|
447
|
+
let input$s = ['border', 'width'];
|
|
448
|
+
let outputs$C = [];
|
|
449
449
|
/**
|
|
450
450
|
* Column Directive
|
|
451
451
|
* ```html
|
|
@@ -457,8 +457,8 @@ class ColumnDirective extends ComplexBase {
|
|
|
457
457
|
super();
|
|
458
458
|
this.viewContainerRef = viewContainerRef;
|
|
459
459
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
460
|
-
this.registerEvents(outputs$
|
|
461
|
-
this.directivePropList = input$
|
|
460
|
+
this.registerEvents(outputs$C);
|
|
461
|
+
this.directivePropList = input$s;
|
|
462
462
|
}
|
|
463
463
|
}
|
|
464
464
|
ColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -467,8 +467,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
467
467
|
type: Directive,
|
|
468
468
|
args: [{
|
|
469
469
|
selector: 'e-columns>e-column',
|
|
470
|
-
inputs: input$
|
|
471
|
-
outputs: outputs$
|
|
470
|
+
inputs: input$s,
|
|
471
|
+
outputs: outputs$C,
|
|
472
472
|
queries: {}
|
|
473
473
|
}]
|
|
474
474
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -493,8 +493,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
493
493
|
}]
|
|
494
494
|
}], ctorParameters: function () { return []; } });
|
|
495
495
|
|
|
496
|
-
let input$
|
|
497
|
-
let outputs$
|
|
496
|
+
let input$r = ['colors', 'end', 'label', 'start'];
|
|
497
|
+
let outputs$B = [];
|
|
498
498
|
/**
|
|
499
499
|
* RangeColorSetting Directive
|
|
500
500
|
* ```html
|
|
@@ -506,8 +506,8 @@ class RangeColorSettingDirective extends ComplexBase {
|
|
|
506
506
|
super();
|
|
507
507
|
this.viewContainerRef = viewContainerRef;
|
|
508
508
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
509
|
-
this.registerEvents(outputs$
|
|
510
|
-
this.directivePropList = input$
|
|
509
|
+
this.registerEvents(outputs$B);
|
|
510
|
+
this.directivePropList = input$r;
|
|
511
511
|
}
|
|
512
512
|
}
|
|
513
513
|
RangeColorSettingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeColorSettingDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -516,8 +516,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
516
516
|
type: Directive,
|
|
517
517
|
args: [{
|
|
518
518
|
selector: 'e-rangecolorsettings>e-rangecolorsetting',
|
|
519
|
-
inputs: input$
|
|
520
|
-
outputs: outputs$
|
|
519
|
+
inputs: input$r,
|
|
520
|
+
outputs: outputs$B,
|
|
521
521
|
queries: {}
|
|
522
522
|
}]
|
|
523
523
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -542,8 +542,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
542
542
|
}]
|
|
543
543
|
}], ctorParameters: function () { return []; } });
|
|
544
544
|
|
|
545
|
-
let input$
|
|
546
|
-
let outputs$
|
|
545
|
+
let input$q = ['accessibility', 'content', 'coordinateUnits', 'description', 'horizontalAlignment', 'region', 'verticalAlignment', 'x', 'xAxisName', 'y', 'yAxisName'];
|
|
546
|
+
let outputs$A = [];
|
|
547
547
|
/**
|
|
548
548
|
* Annotation Directive
|
|
549
549
|
* ```html
|
|
@@ -555,8 +555,8 @@ class AnnotationDirective extends ComplexBase {
|
|
|
555
555
|
super();
|
|
556
556
|
this.viewContainerRef = viewContainerRef;
|
|
557
557
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
558
|
-
this.registerEvents(outputs$
|
|
559
|
-
this.directivePropList = input$
|
|
558
|
+
this.registerEvents(outputs$A);
|
|
559
|
+
this.directivePropList = input$q;
|
|
560
560
|
}
|
|
561
561
|
}
|
|
562
562
|
AnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -568,8 +568,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
568
568
|
type: Directive,
|
|
569
569
|
args: [{
|
|
570
570
|
selector: 'e-annotations>e-annotation',
|
|
571
|
-
inputs: input$
|
|
572
|
-
outputs: outputs$
|
|
571
|
+
inputs: input$q,
|
|
572
|
+
outputs: outputs$A,
|
|
573
573
|
queries: {}
|
|
574
574
|
}]
|
|
575
575
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
|
@@ -597,8 +597,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
597
597
|
}]
|
|
598
598
|
}], ctorParameters: function () { return []; } });
|
|
599
599
|
|
|
600
|
-
let input$
|
|
601
|
-
let outputs$
|
|
600
|
+
let input$p = ['point', 'series'];
|
|
601
|
+
let outputs$z = [];
|
|
602
602
|
/**
|
|
603
603
|
* Selected Data Directive
|
|
604
604
|
* ```html
|
|
@@ -610,8 +610,8 @@ class SelectedDataIndexDirective extends ComplexBase {
|
|
|
610
610
|
super();
|
|
611
611
|
this.viewContainerRef = viewContainerRef;
|
|
612
612
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
613
|
-
this.registerEvents(outputs$
|
|
614
|
-
this.directivePropList = input$
|
|
613
|
+
this.registerEvents(outputs$z);
|
|
614
|
+
this.directivePropList = input$p;
|
|
615
615
|
}
|
|
616
616
|
}
|
|
617
617
|
SelectedDataIndexDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SelectedDataIndexDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -620,8 +620,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
620
620
|
type: Directive,
|
|
621
621
|
args: [{
|
|
622
622
|
selector: 'e-selecteddataindexes>e-selecteddataindex',
|
|
623
|
-
inputs: input$
|
|
624
|
-
outputs: outputs$
|
|
623
|
+
inputs: input$p,
|
|
624
|
+
outputs: outputs$z,
|
|
625
625
|
queries: {}
|
|
626
626
|
}]
|
|
627
627
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -646,8 +646,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
646
646
|
}]
|
|
647
647
|
}], ctorParameters: function () { return []; } });
|
|
648
648
|
|
|
649
|
-
let input$
|
|
650
|
-
let outputs$
|
|
649
|
+
let input$o = ['accessibility', 'animation', 'bandColor', 'close', 'colorName', 'dPeriod', 'dashArray', 'dataSource', 'enableComplexProperty', 'fastPeriod', 'field', 'fill', 'high', 'kPeriod', 'linearGradient', 'low', 'lowerLine', 'macdLine', 'macdNegativeColor', 'macdPositiveColor', 'macdType', 'open', 'overBought', 'overSold', 'period', 'periodLine', 'pointColorMapping', 'query', 'radialGradient', 'segmentAxis', 'segments', 'seriesName', 'showZones', 'slowPeriod', 'standardDeviation', 'type', 'upperLine', 'visible', 'volume', 'width', 'xAxisName', 'xName', 'yAxisName'];
|
|
650
|
+
let outputs$y = [];
|
|
651
651
|
/**
|
|
652
652
|
* Indicator Directive
|
|
653
653
|
* ```html
|
|
@@ -661,18 +661,18 @@ class IndicatorDirective extends ComplexBase {
|
|
|
661
661
|
super();
|
|
662
662
|
this.viewContainerRef = viewContainerRef;
|
|
663
663
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
664
|
-
this.registerEvents(outputs$
|
|
665
|
-
this.directivePropList = input$
|
|
664
|
+
this.registerEvents(outputs$y);
|
|
665
|
+
this.directivePropList = input$o;
|
|
666
666
|
}
|
|
667
667
|
}
|
|
668
668
|
IndicatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: IndicatorDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
669
|
-
IndicatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: IndicatorDirective, selector: "e-indicators>e-indicator", inputs: { accessibility: "accessibility", animation: "animation", bandColor: "bandColor", close: "close", colorName: "colorName", dPeriod: "dPeriod", dashArray: "dashArray", dataSource: "dataSource", enableComplexProperty: "enableComplexProperty", fastPeriod: "fastPeriod", field: "field", fill: "fill", high: "high", kPeriod: "kPeriod", low: "low", lowerLine: "lowerLine", macdLine: "macdLine", macdNegativeColor: "macdNegativeColor", macdPositiveColor: "macdPositiveColor", macdType: "macdType", open: "open", overBought: "overBought", overSold: "overSold", period: "period", periodLine: "periodLine", pointColorMapping: "pointColorMapping", query: "query", segmentAxis: "segmentAxis", segments: "segments", seriesName: "seriesName", showZones: "showZones", slowPeriod: "slowPeriod", standardDeviation: "standardDeviation", type: "type", upperLine: "upperLine", visible: "visible", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName" }, usesInheritance: true, ngImport: i0 });
|
|
669
|
+
IndicatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: IndicatorDirective, selector: "e-indicators>e-indicator", inputs: { accessibility: "accessibility", animation: "animation", bandColor: "bandColor", close: "close", colorName: "colorName", dPeriod: "dPeriod", dashArray: "dashArray", dataSource: "dataSource", enableComplexProperty: "enableComplexProperty", fastPeriod: "fastPeriod", field: "field", fill: "fill", high: "high", kPeriod: "kPeriod", linearGradient: "linearGradient", low: "low", lowerLine: "lowerLine", macdLine: "macdLine", macdNegativeColor: "macdNegativeColor", macdPositiveColor: "macdPositiveColor", macdType: "macdType", open: "open", overBought: "overBought", overSold: "overSold", period: "period", periodLine: "periodLine", pointColorMapping: "pointColorMapping", query: "query", radialGradient: "radialGradient", segmentAxis: "segmentAxis", segments: "segments", seriesName: "seriesName", showZones: "showZones", slowPeriod: "slowPeriod", standardDeviation: "standardDeviation", type: "type", upperLine: "upperLine", visible: "visible", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName" }, usesInheritance: true, ngImport: i0 });
|
|
670
670
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: IndicatorDirective, decorators: [{
|
|
671
671
|
type: Directive,
|
|
672
672
|
args: [{
|
|
673
673
|
selector: 'e-indicators>e-indicator',
|
|
674
|
-
inputs: input$
|
|
675
|
-
outputs: outputs$
|
|
674
|
+
inputs: input$o,
|
|
675
|
+
outputs: outputs$y,
|
|
676
676
|
queries: {}
|
|
677
677
|
}]
|
|
678
678
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -697,9 +697,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
697
697
|
}]
|
|
698
698
|
}], ctorParameters: function () { return []; } });
|
|
699
699
|
|
|
700
|
-
const inputs$
|
|
701
|
-
const outputs$
|
|
702
|
-
const twoWays$
|
|
700
|
+
const inputs$9 = ['accessibility', 'allowExport', 'allowMultiSelection', 'annotations', 'axes', 'background', 'backgroundImage', 'border', 'chartArea', 'columns', 'crosshair', 'currencyCode', 'dataSource', 'description', 'enableAnimation', 'enableAutoIntervalOnBothAxis', 'enableCanvas', 'enableExport', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableSideBySidePlacement', 'focusBorderColor', 'focusBorderMargin', 'focusBorderWidth', 'height', 'highlightColor', 'highlightMode', 'highlightPattern', 'indicators', 'isMultiSelect', 'isTransposed', 'legendSettings', 'locale', 'margin', 'noDataTemplate', 'palettes', 'primaryXAxis', 'primaryYAxis', 'rangeColorSettings', 'rows', 'selectedDataIndexes', 'selectionMode', 'selectionPattern', 'series', 'stackLabels', 'subTitle', 'subTitleStyle', 'tabIndex', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'zoomSettings'];
|
|
701
|
+
const outputs$x = ['afterExport', 'animationComplete', 'annotationRender', 'axisLabelClick', 'axisLabelRender', 'axisMultiLabelRender', 'axisRangeCalculated', 'beforeExport', 'beforePrint', 'beforeResize', 'chartDoubleClick', 'chartMouseClick', 'chartMouseDown', 'chartMouseLeave', 'chartMouseMove', 'chartMouseUp', 'crosshairLabelRender', 'drag', 'dragComplete', 'dragEnd', 'dragStart', 'legendClick', 'legendRender', 'load', 'loaded', 'multiLevelLabelClick', 'onZooming', 'pointClick', 'pointDoubleClick', 'pointMove', 'pointRender', 'resized', 'scrollChanged', 'scrollEnd', 'scrollStart', 'selectionComplete', 'seriesRender', 'sharedTooltipRender', 'textRender', 'tooltipRender', 'zoomComplete', 'dataSourceChange'];
|
|
702
|
+
const twoWays$9 = ['dataSource'];
|
|
703
703
|
/**
|
|
704
704
|
* Chart Component
|
|
705
705
|
* ```html
|
|
@@ -1136,8 +1136,15 @@ let ChartComponent = class ChartComponent extends Chart {
|
|
|
1136
1136
|
}
|
|
1137
1137
|
}
|
|
1138
1138
|
catch (_35) { }
|
|
1139
|
-
|
|
1140
|
-
|
|
1139
|
+
try {
|
|
1140
|
+
let mod = this.injector.get('ChartsSeriesLabel');
|
|
1141
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
1142
|
+
this.injectedModules.push(mod);
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
catch (_36) { }
|
|
1146
|
+
this.registerEvents(outputs$x);
|
|
1147
|
+
this.addTwoWay.call(this, twoWays$9);
|
|
1141
1148
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
1142
1149
|
this.context = new ComponentBase();
|
|
1143
1150
|
}
|
|
@@ -1177,10 +1184,13 @@ let ChartComponent = class ChartComponent extends Chart {
|
|
|
1177
1184
|
}
|
|
1178
1185
|
};
|
|
1179
1186
|
ChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
1180
|
-
ChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: ChartComponent, selector: "ejs-chart", inputs: { accessibility: "accessibility", allowExport: "allowExport", allowMultiSelection: "allowMultiSelection", annotations: "annotations", axes: "axes", background: "background", backgroundImage: "backgroundImage", border: "border", chartArea: "chartArea", columns: "columns", crosshair: "crosshair", currencyCode: "currencyCode", dataSource: "dataSource", description: "description", enableAnimation: "enableAnimation", enableAutoIntervalOnBothAxis: "enableAutoIntervalOnBothAxis", enableCanvas: "enableCanvas", enableExport: "enableExport", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSideBySidePlacement: "enableSideBySidePlacement", focusBorderColor: "focusBorderColor", focusBorderMargin: "focusBorderMargin", focusBorderWidth: "focusBorderWidth", height: "height", highlightColor: "highlightColor", highlightMode: "highlightMode", highlightPattern: "highlightPattern", indicators: "indicators", isMultiSelect: "isMultiSelect", isTransposed: "isTransposed", legendSettings: "legendSettings", locale: "locale", margin: "margin", noDataTemplate: "noDataTemplate", palettes: "palettes", primaryXAxis: "primaryXAxis", primaryYAxis: "primaryYAxis", rangeColorSettings: "rangeColorSettings", rows: "rows", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", selectionPattern: "selectionPattern", series: "series", stackLabels: "stackLabels", subTitle: "subTitle", subTitleStyle: "subTitleStyle", tabIndex: "tabIndex", theme: "theme", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", useGroupingSeparator: "useGroupingSeparator", width: "width", zoomSettings: "zoomSettings" }, outputs: { afterExport: "afterExport", animationComplete: "animationComplete", annotationRender: "annotationRender", axisLabelClick: "axisLabelClick", axisLabelRender: "axisLabelRender", axisMultiLabelRender: "axisMultiLabelRender", axisRangeCalculated: "axisRangeCalculated", beforeExport: "beforeExport", beforePrint: "beforePrint", beforeResize: "beforeResize", chartDoubleClick: "chartDoubleClick", chartMouseClick: "chartMouseClick", chartMouseDown: "chartMouseDown", chartMouseLeave: "chartMouseLeave", chartMouseMove: "chartMouseMove", chartMouseUp: "chartMouseUp", drag: "drag", dragComplete: "dragComplete", dragEnd: "dragEnd", dragStart: "dragStart", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", multiLevelLabelClick: "multiLevelLabelClick", onZooming: "onZooming", pointClick: "pointClick", pointDoubleClick: "pointDoubleClick", pointMove: "pointMove", pointRender: "pointRender", resized: "resized", scrollChanged: "scrollChanged", scrollEnd: "scrollEnd", scrollStart: "scrollStart", selectionComplete: "selectionComplete", seriesRender: "seriesRender", sharedTooltipRender: "sharedTooltipRender", textRender: "textRender", tooltipRender: "tooltipRender", zoomComplete: "zoomComplete", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: SeriesCollectionDirective, descendants: true }, { propertyName: "childAxes", first: true, predicate: AxesDirective, descendants: true }, { propertyName: "childRows", first: true, predicate: RowsDirective, descendants: true }, { propertyName: "childColumns", first: true, predicate: ColumnsDirective, descendants: true }, { propertyName: "childRangeColorSettings", first: true, predicate: RangeColorSettingsDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: AnnotationsDirective, descendants: true }, { propertyName: "childSelectedDataIndexes", first: true, predicate: SelectedDataIndexesDirective, descendants: true }, { propertyName: "childIndicators", first: true, predicate: IndicatorsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
1187
|
+
ChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: ChartComponent, selector: "ejs-chart", inputs: { accessibility: "accessibility", allowExport: "allowExport", allowMultiSelection: "allowMultiSelection", annotations: "annotations", axes: "axes", background: "background", backgroundImage: "backgroundImage", border: "border", chartArea: "chartArea", columns: "columns", crosshair: "crosshair", currencyCode: "currencyCode", dataSource: "dataSource", description: "description", enableAnimation: "enableAnimation", enableAutoIntervalOnBothAxis: "enableAutoIntervalOnBothAxis", enableCanvas: "enableCanvas", enableExport: "enableExport", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSideBySidePlacement: "enableSideBySidePlacement", focusBorderColor: "focusBorderColor", focusBorderMargin: "focusBorderMargin", focusBorderWidth: "focusBorderWidth", height: "height", highlightColor: "highlightColor", highlightMode: "highlightMode", highlightPattern: "highlightPattern", indicators: "indicators", isMultiSelect: "isMultiSelect", isTransposed: "isTransposed", legendSettings: "legendSettings", locale: "locale", margin: "margin", noDataTemplate: "noDataTemplate", palettes: "palettes", primaryXAxis: "primaryXAxis", primaryYAxis: "primaryYAxis", rangeColorSettings: "rangeColorSettings", rows: "rows", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", selectionPattern: "selectionPattern", series: "series", stackLabels: "stackLabels", subTitle: "subTitle", subTitleStyle: "subTitleStyle", tabIndex: "tabIndex", theme: "theme", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", useGroupingSeparator: "useGroupingSeparator", width: "width", zoomSettings: "zoomSettings" }, outputs: { afterExport: "afterExport", animationComplete: "animationComplete", annotationRender: "annotationRender", axisLabelClick: "axisLabelClick", axisLabelRender: "axisLabelRender", axisMultiLabelRender: "axisMultiLabelRender", axisRangeCalculated: "axisRangeCalculated", beforeExport: "beforeExport", beforePrint: "beforePrint", beforeResize: "beforeResize", chartDoubleClick: "chartDoubleClick", chartMouseClick: "chartMouseClick", chartMouseDown: "chartMouseDown", chartMouseLeave: "chartMouseLeave", chartMouseMove: "chartMouseMove", chartMouseUp: "chartMouseUp", crosshairLabelRender: "crosshairLabelRender", drag: "drag", dragComplete: "dragComplete", dragEnd: "dragEnd", dragStart: "dragStart", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", multiLevelLabelClick: "multiLevelLabelClick", onZooming: "onZooming", pointClick: "pointClick", pointDoubleClick: "pointDoubleClick", pointMove: "pointMove", pointRender: "pointRender", resized: "resized", scrollChanged: "scrollChanged", scrollEnd: "scrollEnd", scrollStart: "scrollStart", selectionComplete: "selectionComplete", seriesRender: "seriesRender", sharedTooltipRender: "sharedTooltipRender", textRender: "textRender", tooltipRender: "tooltipRender", zoomComplete: "zoomComplete", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "legendSettings_template", first: true, predicate: ["legendSettingsTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: SeriesCollectionDirective, descendants: true }, { propertyName: "childAxes", first: true, predicate: AxesDirective, descendants: true }, { propertyName: "childRows", first: true, predicate: RowsDirective, descendants: true }, { propertyName: "childColumns", first: true, predicate: ColumnsDirective, descendants: true }, { propertyName: "childRangeColorSettings", first: true, predicate: RangeColorSettingsDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: AnnotationsDirective, descendants: true }, { propertyName: "childSelectedDataIndexes", first: true, predicate: SelectedDataIndexesDirective, descendants: true }, { propertyName: "childIndicators", first: true, predicate: IndicatorsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
1181
1188
|
__decorate([
|
|
1182
1189
|
Template()
|
|
1183
1190
|
], ChartComponent.prototype, "tooltip_template", void 0);
|
|
1191
|
+
__decorate([
|
|
1192
|
+
Template()
|
|
1193
|
+
], ChartComponent.prototype, "legendSettings_template", void 0);
|
|
1184
1194
|
ChartComponent = __decorate([
|
|
1185
1195
|
ComponentMixins([ComponentBase])
|
|
1186
1196
|
], ChartComponent);
|
|
@@ -1188,8 +1198,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1188
1198
|
type: Component,
|
|
1189
1199
|
args: [{
|
|
1190
1200
|
selector: 'ejs-chart',
|
|
1191
|
-
inputs: inputs$
|
|
1192
|
-
outputs: outputs$
|
|
1201
|
+
inputs: inputs$9,
|
|
1202
|
+
outputs: outputs$x,
|
|
1193
1203
|
template: '',
|
|
1194
1204
|
queries: {
|
|
1195
1205
|
childSeries: new ContentChild(SeriesCollectionDirective),
|
|
@@ -1205,6 +1215,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1205
1215
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
1206
1216
|
type: ContentChild,
|
|
1207
1217
|
args: ['tooltipTemplate']
|
|
1218
|
+
}], legendSettings_template: [{
|
|
1219
|
+
type: ContentChild,
|
|
1220
|
+
args: ['legendSettingsTemplate']
|
|
1208
1221
|
}] } });
|
|
1209
1222
|
|
|
1210
1223
|
/**
|
|
@@ -1392,6 +1405,7 @@ const ExportService = { provide: 'ChartsExport', useValue: Export };
|
|
|
1392
1405
|
const DataEditingService = { provide: 'ChartsDataEditing', useValue: DataEditing };
|
|
1393
1406
|
const HighlightService = { provide: 'ChartsHighlight', useValue: Highlight };
|
|
1394
1407
|
const LastValueLabelService = { provide: 'ChartsLastValueLabel', useValue: LastValueLabel };
|
|
1408
|
+
const SeriesLabelService = { provide: 'ChartsSeriesLabel', useValue: SeriesLabel };
|
|
1395
1409
|
/**
|
|
1396
1410
|
* NgModule definition for the Chart component with providers.
|
|
1397
1411
|
*/
|
|
@@ -1459,7 +1473,8 @@ ChartAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version:
|
|
|
1459
1473
|
ExportService,
|
|
1460
1474
|
DataEditingService,
|
|
1461
1475
|
HighlightService,
|
|
1462
|
-
LastValueLabelService
|
|
1476
|
+
LastValueLabelService,
|
|
1477
|
+
SeriesLabelService
|
|
1463
1478
|
], imports: [[CommonModule, ChartModule], ChartModule] });
|
|
1464
1479
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ChartAllModule, decorators: [{
|
|
1465
1480
|
type: NgModule,
|
|
@@ -1528,13 +1543,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1528
1543
|
ExportService,
|
|
1529
1544
|
DataEditingService,
|
|
1530
1545
|
HighlightService,
|
|
1531
|
-
LastValueLabelService
|
|
1546
|
+
LastValueLabelService,
|
|
1547
|
+
SeriesLabelService
|
|
1532
1548
|
]
|
|
1533
1549
|
}]
|
|
1534
1550
|
}] });
|
|
1535
1551
|
|
|
1536
|
-
let input$
|
|
1537
|
-
let outputs$
|
|
1552
|
+
let input$n = ['accessibility', 'animation', 'applyPattern', 'border', 'borderRadius', 'dashArray', 'dataLabel', 'dataSource', 'emptyPointSettings', 'enableTooltip', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'funnelMode', 'gapRatio', 'groupMode', 'groupTo', 'height', 'innerRadius', 'legendImageUrl', 'legendShape', 'linearGradient', 'name', 'neckHeight', 'neckWidth', 'opacity', 'palettes', 'pointColorMapping', 'pyramidMode', 'query', 'radialGradient', 'radius', 'selectionStyle', 'startAngle', 'tooltipMappingName', 'type', 'visible', 'width', 'xName', 'yName'];
|
|
1553
|
+
let outputs$w = [];
|
|
1538
1554
|
/**
|
|
1539
1555
|
* AccumulationSeries Directive
|
|
1540
1556
|
* ```html
|
|
@@ -1548,12 +1564,12 @@ class AccumulationSeriesDirective extends ComplexBase {
|
|
|
1548
1564
|
super();
|
|
1549
1565
|
this.viewContainerRef = viewContainerRef;
|
|
1550
1566
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
1551
|
-
this.registerEvents(outputs$
|
|
1552
|
-
this.directivePropList = input$
|
|
1567
|
+
this.registerEvents(outputs$w);
|
|
1568
|
+
this.directivePropList = input$n;
|
|
1553
1569
|
}
|
|
1554
1570
|
}
|
|
1555
1571
|
AccumulationSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1556
|
-
AccumulationSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AccumulationSeriesDirective, selector: "e-accumulation-series-collection>e-accumulation-series", inputs: { accessibility: "accessibility", animation: "animation", applyPattern: "applyPattern", border: "border", borderRadius: "borderRadius", dashArray: "dashArray", dataLabel: "dataLabel", dataSource: "dataSource", emptyPointSettings: "emptyPointSettings", enableTooltip: "enableTooltip", endAngle: "endAngle", explode: "explode", explodeAll: "explodeAll", explodeIndex: "explodeIndex", explodeOffset: "explodeOffset", funnelMode: "funnelMode", gapRatio: "gapRatio", groupMode: "groupMode", groupTo: "groupTo", height: "height", innerRadius: "innerRadius", legendImageUrl: "legendImageUrl", legendShape: "legendShape", name: "name", neckHeight: "neckHeight", neckWidth: "neckWidth", opacity: "opacity", palettes: "palettes", pointColorMapping: "pointColorMapping", pyramidMode: "pyramidMode", query: "query", radius: "radius", selectionStyle: "selectionStyle", startAngle: "startAngle", tooltipMappingName: "tooltipMappingName", type: "type", visible: "visible", width: "width", xName: "xName", yName: "yName" }, queries: [{ propertyName: "dataLabel_template", first: true, predicate: ["dataLabelTemplate"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
1572
|
+
AccumulationSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AccumulationSeriesDirective, selector: "e-accumulation-series-collection>e-accumulation-series", inputs: { accessibility: "accessibility", animation: "animation", applyPattern: "applyPattern", border: "border", borderRadius: "borderRadius", dashArray: "dashArray", dataLabel: "dataLabel", dataSource: "dataSource", emptyPointSettings: "emptyPointSettings", enableTooltip: "enableTooltip", endAngle: "endAngle", explode: "explode", explodeAll: "explodeAll", explodeIndex: "explodeIndex", explodeOffset: "explodeOffset", funnelMode: "funnelMode", gapRatio: "gapRatio", groupMode: "groupMode", groupTo: "groupTo", height: "height", innerRadius: "innerRadius", legendImageUrl: "legendImageUrl", legendShape: "legendShape", linearGradient: "linearGradient", name: "name", neckHeight: "neckHeight", neckWidth: "neckWidth", opacity: "opacity", palettes: "palettes", pointColorMapping: "pointColorMapping", pyramidMode: "pyramidMode", query: "query", radialGradient: "radialGradient", radius: "radius", selectionStyle: "selectionStyle", startAngle: "startAngle", tooltipMappingName: "tooltipMappingName", type: "type", visible: "visible", width: "width", xName: "xName", yName: "yName" }, queries: [{ propertyName: "dataLabel_template", first: true, predicate: ["dataLabelTemplate"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
1557
1573
|
__decorate([
|
|
1558
1574
|
Template()
|
|
1559
1575
|
], AccumulationSeriesDirective.prototype, "dataLabel_template", void 0);
|
|
@@ -1561,8 +1577,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1561
1577
|
type: Directive,
|
|
1562
1578
|
args: [{
|
|
1563
1579
|
selector: 'e-accumulation-series-collection>e-accumulation-series',
|
|
1564
|
-
inputs: input$
|
|
1565
|
-
outputs: outputs$
|
|
1580
|
+
inputs: input$n,
|
|
1581
|
+
outputs: outputs$w,
|
|
1566
1582
|
queries: {}
|
|
1567
1583
|
}]
|
|
1568
1584
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { dataLabel_template: [{
|
|
@@ -1590,8 +1606,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1590
1606
|
}]
|
|
1591
1607
|
}], ctorParameters: function () { return []; } });
|
|
1592
1608
|
|
|
1593
|
-
let input$
|
|
1594
|
-
let outputs$
|
|
1609
|
+
let input$m = ['content', 'coordinateUnits', 'description', 'horizontalAlignment', 'region', 'verticalAlignment', 'x', 'y'];
|
|
1610
|
+
let outputs$v = [];
|
|
1595
1611
|
/**
|
|
1596
1612
|
* AccumulationAnnotations Directive
|
|
1597
1613
|
* ```html
|
|
@@ -1605,8 +1621,8 @@ class AccumulationAnnotationDirective extends ComplexBase {
|
|
|
1605
1621
|
super();
|
|
1606
1622
|
this.viewContainerRef = viewContainerRef;
|
|
1607
1623
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
1608
|
-
this.registerEvents(outputs$
|
|
1609
|
-
this.directivePropList = input$
|
|
1624
|
+
this.registerEvents(outputs$v);
|
|
1625
|
+
this.directivePropList = input$m;
|
|
1610
1626
|
}
|
|
1611
1627
|
}
|
|
1612
1628
|
AccumulationAnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationAnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -1618,8 +1634,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1618
1634
|
type: Directive,
|
|
1619
1635
|
args: [{
|
|
1620
1636
|
selector: 'e-accumulation-annotations>e-accumulation-annotation',
|
|
1621
|
-
inputs: input$
|
|
1622
|
-
outputs: outputs$
|
|
1637
|
+
inputs: input$m,
|
|
1638
|
+
outputs: outputs$v,
|
|
1623
1639
|
queries: {}
|
|
1624
1640
|
}]
|
|
1625
1641
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
|
@@ -1647,9 +1663,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1647
1663
|
}]
|
|
1648
1664
|
}], ctorParameters: function () { return []; } });
|
|
1649
1665
|
|
|
1650
|
-
const inputs$
|
|
1651
|
-
const outputs$
|
|
1652
|
-
const twoWays$
|
|
1666
|
+
const inputs$8 = ['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'];
|
|
1667
|
+
const outputs$u = ['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'];
|
|
1668
|
+
const twoWays$8 = ['dataSource'];
|
|
1653
1669
|
/**
|
|
1654
1670
|
* AccumulationChart Component
|
|
1655
1671
|
* ```html
|
|
@@ -1736,8 +1752,8 @@ let AccumulationChartComponent = class AccumulationChartComponent extends Accumu
|
|
|
1736
1752
|
}
|
|
1737
1753
|
}
|
|
1738
1754
|
catch (_k) { }
|
|
1739
|
-
this.registerEvents(outputs$
|
|
1740
|
-
this.addTwoWay.call(this, twoWays$
|
|
1755
|
+
this.registerEvents(outputs$u);
|
|
1756
|
+
this.addTwoWay.call(this, twoWays$8);
|
|
1741
1757
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
1742
1758
|
this.context = new ComponentBase();
|
|
1743
1759
|
}
|
|
@@ -1759,10 +1775,13 @@ let AccumulationChartComponent = class AccumulationChartComponent extends Accumu
|
|
|
1759
1775
|
}
|
|
1760
1776
|
};
|
|
1761
1777
|
AccumulationChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AccumulationChartComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
1762
|
-
AccumulationChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: AccumulationChartComponent, selector: "ejs-accumulationchart", inputs: { accessibility: "accessibility", allowExport: "allowExport", annotations: "annotations", background: "background", backgroundImage: "backgroundImage", border: "border", center: "center", centerLabel: "centerLabel", currencyCode: "currencyCode", dataSource: "dataSource", enableAnimation: "enableAnimation", enableBorderOnMouseMove: "enableBorderOnMouseMove", enableExport: "enableExport", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSmartLabels: "enableSmartLabels", focusBorderColor: "focusBorderColor", focusBorderMargin: "focusBorderMargin", focusBorderWidth: "focusBorderWidth", height: "height", highlightColor: "highlightColor", highlightMode: "highlightMode", highlightPattern: "highlightPattern", isMultiSelect: "isMultiSelect", legendSettings: "legendSettings", locale: "locale", margin: "margin", noDataTemplate: "noDataTemplate", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", selectionPattern: "selectionPattern", series: "series", subTitle: "subTitle", subTitleStyle: "subTitleStyle", theme: "theme", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", useGroupingSeparator: "useGroupingSeparator", width: "width" }, outputs: { afterExport: "afterExport", animationComplete: "animationComplete", annotationRender: "annotationRender", beforeExport: "beforeExport", beforePrint: "beforePrint", beforeResize: "beforeResize", chartDoubleClick: "chartDoubleClick", chartMouseClick: "chartMouseClick", chartMouseDown: "chartMouseDown", chartMouseLeave: "chartMouseLeave", chartMouseMove: "chartMouseMove", chartMouseUp: "chartMouseUp", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", pointClick: "pointClick", pointMove: "pointMove", pointRender: "pointRender", resized: "resized", selectionComplete: "selectionComplete", seriesRender: "seriesRender", textRender: "textRender", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: AccumulationSeriesCollectionDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: AccumulationAnnotationsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1778
|
+
AccumulationChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: AccumulationChartComponent, selector: "ejs-accumulationchart", inputs: { accessibility: "accessibility", allowExport: "allowExport", annotations: "annotations", background: "background", backgroundImage: "backgroundImage", border: "border", center: "center", centerLabel: "centerLabel", currencyCode: "currencyCode", dataSource: "dataSource", enableAnimation: "enableAnimation", enableBorderOnMouseMove: "enableBorderOnMouseMove", enableExport: "enableExport", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSmartLabels: "enableSmartLabels", focusBorderColor: "focusBorderColor", focusBorderMargin: "focusBorderMargin", focusBorderWidth: "focusBorderWidth", height: "height", highlightColor: "highlightColor", highlightMode: "highlightMode", highlightPattern: "highlightPattern", isMultiSelect: "isMultiSelect", legendSettings: "legendSettings", locale: "locale", margin: "margin", noDataTemplate: "noDataTemplate", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", selectionPattern: "selectionPattern", series: "series", subTitle: "subTitle", subTitleStyle: "subTitleStyle", theme: "theme", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", useGroupingSeparator: "useGroupingSeparator", width: "width" }, outputs: { afterExport: "afterExport", animationComplete: "animationComplete", annotationRender: "annotationRender", beforeExport: "beforeExport", beforePrint: "beforePrint", beforeResize: "beforeResize", chartDoubleClick: "chartDoubleClick", chartMouseClick: "chartMouseClick", chartMouseDown: "chartMouseDown", chartMouseLeave: "chartMouseLeave", chartMouseMove: "chartMouseMove", chartMouseUp: "chartMouseUp", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", pointClick: "pointClick", pointMove: "pointMove", pointRender: "pointRender", resized: "resized", selectionComplete: "selectionComplete", seriesRender: "seriesRender", textRender: "textRender", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "legendSettings_template", first: true, predicate: ["legendSettingsTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: AccumulationSeriesCollectionDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: AccumulationAnnotationsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1763
1779
|
__decorate([
|
|
1764
1780
|
Template()
|
|
1765
1781
|
], AccumulationChartComponent.prototype, "tooltip_template", void 0);
|
|
1782
|
+
__decorate([
|
|
1783
|
+
Template()
|
|
1784
|
+
], AccumulationChartComponent.prototype, "legendSettings_template", void 0);
|
|
1766
1785
|
AccumulationChartComponent = __decorate([
|
|
1767
1786
|
ComponentMixins([ComponentBase])
|
|
1768
1787
|
], AccumulationChartComponent);
|
|
@@ -1770,8 +1789,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1770
1789
|
type: Component,
|
|
1771
1790
|
args: [{
|
|
1772
1791
|
selector: 'ejs-accumulationchart',
|
|
1773
|
-
inputs: inputs$
|
|
1774
|
-
outputs: outputs$
|
|
1792
|
+
inputs: inputs$8,
|
|
1793
|
+
outputs: outputs$u,
|
|
1775
1794
|
template: '',
|
|
1776
1795
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1777
1796
|
queries: {
|
|
@@ -1782,6 +1801,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1782
1801
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
1783
1802
|
type: ContentChild,
|
|
1784
1803
|
args: ['tooltipTemplate']
|
|
1804
|
+
}], legendSettings_template: [{
|
|
1805
|
+
type: ContentChild,
|
|
1806
|
+
args: ['legendSettingsTemplate']
|
|
1785
1807
|
}] } });
|
|
1786
1808
|
|
|
1787
1809
|
/**
|
|
@@ -1869,8 +1891,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1869
1891
|
}]
|
|
1870
1892
|
}] });
|
|
1871
1893
|
|
|
1872
|
-
let input$
|
|
1873
|
-
let outputs$
|
|
1894
|
+
let input$l = ['animation', 'border', 'dashArray', 'dataSource', 'fill', 'opacity', 'query', 'type', 'width', 'xName', 'yName'];
|
|
1895
|
+
let outputs$t = [];
|
|
1874
1896
|
/**
|
|
1875
1897
|
* RangenavigatorSeries Directive
|
|
1876
1898
|
* ```html
|
|
@@ -1884,8 +1906,8 @@ class RangenavigatorSeriesDirective extends ComplexBase {
|
|
|
1884
1906
|
super();
|
|
1885
1907
|
this.viewContainerRef = viewContainerRef;
|
|
1886
1908
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
1887
|
-
this.registerEvents(outputs$
|
|
1888
|
-
this.directivePropList = input$
|
|
1909
|
+
this.registerEvents(outputs$t);
|
|
1910
|
+
this.directivePropList = input$l;
|
|
1889
1911
|
}
|
|
1890
1912
|
}
|
|
1891
1913
|
RangenavigatorSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangenavigatorSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -1894,8 +1916,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1894
1916
|
type: Directive,
|
|
1895
1917
|
args: [{
|
|
1896
1918
|
selector: 'e-rangenavigator-series-collection>e-rangenavigator-series',
|
|
1897
|
-
inputs: input$
|
|
1898
|
-
outputs: outputs$
|
|
1919
|
+
inputs: input$l,
|
|
1920
|
+
outputs: outputs$t,
|
|
1899
1921
|
queries: {}
|
|
1900
1922
|
}]
|
|
1901
1923
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -1920,9 +1942,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
1920
1942
|
}]
|
|
1921
1943
|
}], ctorParameters: function () { return []; } });
|
|
1922
1944
|
|
|
1923
|
-
const inputs$
|
|
1924
|
-
const outputs$
|
|
1925
|
-
const twoWays$
|
|
1945
|
+
const inputs$7 = ['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'];
|
|
1946
|
+
const outputs$s = ['beforePrint', 'beforeResize', 'changed', 'labelRender', 'load', 'loaded', 'resized', 'selectorRender', 'tooltipRender', 'dataSourceChange'];
|
|
1947
|
+
const twoWays$7 = ['dataSource'];
|
|
1926
1948
|
/**
|
|
1927
1949
|
* RangeNavigator Component
|
|
1928
1950
|
* ```html
|
|
@@ -1995,8 +2017,8 @@ let RangeNavigatorComponent = class RangeNavigatorComponent extends RangeNavigat
|
|
|
1995
2017
|
}
|
|
1996
2018
|
}
|
|
1997
2019
|
catch (_h) { }
|
|
1998
|
-
this.registerEvents(outputs$
|
|
1999
|
-
this.addTwoWay.call(this, twoWays$
|
|
2020
|
+
this.registerEvents(outputs$s);
|
|
2021
|
+
this.addTwoWay.call(this, twoWays$7);
|
|
2000
2022
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2001
2023
|
this.context = new ComponentBase();
|
|
2002
2024
|
}
|
|
@@ -2026,8 +2048,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2026
2048
|
type: Component,
|
|
2027
2049
|
args: [{
|
|
2028
2050
|
selector: 'ejs-rangenavigator',
|
|
2029
|
-
inputs: inputs$
|
|
2030
|
-
outputs: outputs$
|
|
2051
|
+
inputs: inputs$7,
|
|
2052
|
+
outputs: outputs$s,
|
|
2031
2053
|
template: '',
|
|
2032
2054
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2033
2055
|
queries: {
|
|
@@ -2095,15 +2117,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2095
2117
|
}]
|
|
2096
2118
|
}] });
|
|
2097
2119
|
|
|
2098
|
-
let input$
|
|
2099
|
-
let outputs$
|
|
2120
|
+
let input$k = ['color', 'endRange', 'opacity', 'startRange'];
|
|
2121
|
+
let outputs$r = [];
|
|
2100
2122
|
class RangeBandSettingDirective extends ComplexBase {
|
|
2101
2123
|
constructor(viewContainerRef) {
|
|
2102
2124
|
super();
|
|
2103
2125
|
this.viewContainerRef = viewContainerRef;
|
|
2104
2126
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2105
|
-
this.registerEvents(outputs$
|
|
2106
|
-
this.directivePropList = input$
|
|
2127
|
+
this.registerEvents(outputs$r);
|
|
2128
|
+
this.directivePropList = input$k;
|
|
2107
2129
|
}
|
|
2108
2130
|
}
|
|
2109
2131
|
RangeBandSettingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeBandSettingDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -2112,8 +2134,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2112
2134
|
type: Directive,
|
|
2113
2135
|
args: [{
|
|
2114
2136
|
selector: 'e-rangeBandSettings>e-rangeBandSetting',
|
|
2115
|
-
inputs: input$
|
|
2116
|
-
outputs: outputs$
|
|
2137
|
+
inputs: input$k,
|
|
2138
|
+
outputs: outputs$r,
|
|
2117
2139
|
queries: {}
|
|
2118
2140
|
}]
|
|
2119
2141
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2138,9 +2160,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2138
2160
|
}]
|
|
2139
2161
|
}], ctorParameters: function () { return []; } });
|
|
2140
2162
|
|
|
2141
|
-
const inputs$
|
|
2142
|
-
const outputs$
|
|
2143
|
-
const twoWays$
|
|
2163
|
+
const inputs$6 = ['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'];
|
|
2164
|
+
const outputs$q = ['axisRendering', 'dataLabelRendering', 'load', 'loaded', 'markerRendering', 'pointRegionMouseClick', 'pointRegionMouseMove', 'pointRendering', 'resize', 'seriesRendering', 'sparklineMouseClick', 'sparklineMouseMove', 'tooltipInitialize'];
|
|
2165
|
+
const twoWays$6 = [''];
|
|
2144
2166
|
/**
|
|
2145
2167
|
* Sparkline Component
|
|
2146
2168
|
* ```html
|
|
@@ -2164,8 +2186,8 @@ let SparklineComponent = class SparklineComponent extends Sparkline {
|
|
|
2164
2186
|
}
|
|
2165
2187
|
}
|
|
2166
2188
|
catch (_a) { }
|
|
2167
|
-
this.registerEvents(outputs$
|
|
2168
|
-
this.addTwoWay.call(this, twoWays$
|
|
2189
|
+
this.registerEvents(outputs$q);
|
|
2190
|
+
this.addTwoWay.call(this, twoWays$6);
|
|
2169
2191
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2170
2192
|
this.context = new ComponentBase();
|
|
2171
2193
|
}
|
|
@@ -2192,8 +2214,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2192
2214
|
type: Component,
|
|
2193
2215
|
args: [{
|
|
2194
2216
|
selector: 'ejs-sparkline',
|
|
2195
|
-
inputs: inputs$
|
|
2196
|
-
outputs: outputs$
|
|
2217
|
+
inputs: inputs$6,
|
|
2218
|
+
outputs: outputs$q,
|
|
2197
2219
|
template: '',
|
|
2198
2220
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2199
2221
|
queries: {
|
|
@@ -2255,15 +2277,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2255
2277
|
}]
|
|
2256
2278
|
}] });
|
|
2257
2279
|
|
|
2258
|
-
let input$
|
|
2259
|
-
let outputs$
|
|
2280
|
+
let input$j = ['animationDuration', 'dataSource', 'enableAnimation', 'enableSmartLabels', 'fill', 'marker', 'name', 'opacity', 'points', 'reactance', 'resistance', 'tooltip', 'tooltipMappingName', 'visibility', 'width'];
|
|
2281
|
+
let outputs$p = [];
|
|
2260
2282
|
class SmithchartSeriesDirective extends ComplexBase {
|
|
2261
2283
|
constructor(viewContainerRef) {
|
|
2262
2284
|
super();
|
|
2263
2285
|
this.viewContainerRef = viewContainerRef;
|
|
2264
2286
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2265
|
-
this.registerEvents(outputs$
|
|
2266
|
-
this.directivePropList = input$
|
|
2287
|
+
this.registerEvents(outputs$p);
|
|
2288
|
+
this.directivePropList = input$j;
|
|
2267
2289
|
}
|
|
2268
2290
|
}
|
|
2269
2291
|
SmithchartSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmithchartSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -2272,8 +2294,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2272
2294
|
type: Directive,
|
|
2273
2295
|
args: [{
|
|
2274
2296
|
selector: 'e-seriesCollection>e-series',
|
|
2275
|
-
inputs: input$
|
|
2276
|
-
outputs: outputs$
|
|
2297
|
+
inputs: input$j,
|
|
2298
|
+
outputs: outputs$p,
|
|
2277
2299
|
queries: {}
|
|
2278
2300
|
}]
|
|
2279
2301
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2298,9 +2320,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2298
2320
|
}]
|
|
2299
2321
|
}], ctorParameters: function () { return []; } });
|
|
2300
2322
|
|
|
2301
|
-
const inputs$
|
|
2302
|
-
const outputs$
|
|
2303
|
-
const twoWays$
|
|
2323
|
+
const inputs$5 = ['background', 'border', 'elementSpacing', 'enablePersistence', 'enableRtl', 'font', 'height', 'horizontalAxis', 'legendSettings', 'locale', 'margin', 'radialAxis', 'radius', 'renderType', 'series', 'theme', 'title', 'width'];
|
|
2324
|
+
const outputs$o = ['animationComplete', 'axisLabelRender', 'beforePrint', 'legendRender', 'load', 'loaded', 'seriesRender', 'subtitleRender', 'textRender', 'titleRender', 'tooltipRender'];
|
|
2325
|
+
const twoWays$5 = [''];
|
|
2304
2326
|
/**
|
|
2305
2327
|
* Smithchart Component
|
|
2306
2328
|
* ```html
|
|
@@ -2331,8 +2353,8 @@ let SmithchartComponent = class SmithchartComponent extends Smithchart {
|
|
|
2331
2353
|
}
|
|
2332
2354
|
}
|
|
2333
2355
|
catch (_b) { }
|
|
2334
|
-
this.registerEvents(outputs$
|
|
2335
|
-
this.addTwoWay.call(this, twoWays$
|
|
2356
|
+
this.registerEvents(outputs$o);
|
|
2357
|
+
this.addTwoWay.call(this, twoWays$5);
|
|
2336
2358
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2337
2359
|
this.context = new ComponentBase();
|
|
2338
2360
|
}
|
|
@@ -2359,8 +2381,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2359
2381
|
type: Component,
|
|
2360
2382
|
args: [{
|
|
2361
2383
|
selector: 'ejs-smithchart',
|
|
2362
|
-
inputs: inputs$
|
|
2363
|
-
outputs: outputs$
|
|
2384
|
+
inputs: inputs$5,
|
|
2385
|
+
outputs: outputs$o,
|
|
2364
2386
|
template: '',
|
|
2365
2387
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2366
2388
|
queries: {
|
|
@@ -2425,8 +2447,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2425
2447
|
}]
|
|
2426
2448
|
}] });
|
|
2427
2449
|
|
|
2428
|
-
let input$
|
|
2429
|
-
let outputs$
|
|
2450
|
+
let input$i = ['accessibility', 'animation', 'backwardForecast', 'dashArray', 'enableTooltip', 'fill', 'forwardForecast', 'intercept', 'legendShape', 'linearGradient', 'marker', 'name', 'period', 'polynomialOrder', 'radialGradient', 'type', 'visible', 'width'];
|
|
2451
|
+
let outputs$n = [];
|
|
2430
2452
|
/**
|
|
2431
2453
|
* Series Directive
|
|
2432
2454
|
* ```html
|
|
@@ -2445,18 +2467,18 @@ class StockChartTrendlineDirective extends ComplexBase {
|
|
|
2445
2467
|
super();
|
|
2446
2468
|
this.viewContainerRef = viewContainerRef;
|
|
2447
2469
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2448
|
-
this.registerEvents(outputs$
|
|
2449
|
-
this.directivePropList = input$
|
|
2470
|
+
this.registerEvents(outputs$n);
|
|
2471
|
+
this.directivePropList = input$i;
|
|
2450
2472
|
}
|
|
2451
2473
|
}
|
|
2452
2474
|
StockChartTrendlineDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartTrendlineDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2453
|
-
StockChartTrendlineDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartTrendlineDirective, selector: "e-stockchart-series>e-trendlines>e-trendline", inputs: { accessibility: "accessibility", animation: "animation", backwardForecast: "backwardForecast", dashArray: "dashArray", enableTooltip: "enableTooltip", fill: "fill", forwardForecast: "forwardForecast", intercept: "intercept", legendShape: "legendShape", marker: "marker", name: "name", period: "period", polynomialOrder: "polynomialOrder", type: "type", visible: "visible", width: "width" }, usesInheritance: true, ngImport: i0 });
|
|
2475
|
+
StockChartTrendlineDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartTrendlineDirective, selector: "e-stockchart-series>e-trendlines>e-trendline", inputs: { accessibility: "accessibility", animation: "animation", backwardForecast: "backwardForecast", dashArray: "dashArray", enableTooltip: "enableTooltip", fill: "fill", forwardForecast: "forwardForecast", intercept: "intercept", legendShape: "legendShape", linearGradient: "linearGradient", marker: "marker", name: "name", period: "period", polynomialOrder: "polynomialOrder", radialGradient: "radialGradient", type: "type", visible: "visible", width: "width" }, usesInheritance: true, ngImport: i0 });
|
|
2454
2476
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartTrendlineDirective, decorators: [{
|
|
2455
2477
|
type: Directive,
|
|
2456
2478
|
args: [{
|
|
2457
2479
|
selector: 'e-stockchart-series>e-trendlines>e-trendline',
|
|
2458
|
-
inputs: input$
|
|
2459
|
-
outputs: outputs$
|
|
2480
|
+
inputs: input$i,
|
|
2481
|
+
outputs: outputs$n,
|
|
2460
2482
|
queries: {}
|
|
2461
2483
|
}]
|
|
2462
2484
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2481,8 +2503,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2481
2503
|
}]
|
|
2482
2504
|
}], ctorParameters: function () { return []; } });
|
|
2483
2505
|
|
|
2484
|
-
let input$
|
|
2485
|
-
let outputs$
|
|
2506
|
+
let input$h = ['animation', 'bearFillColor', 'border', 'bullFillColor', 'cardinalSplineTension', 'close', 'columnSpacing', 'columnWidth', 'cornerRadius', 'dashArray', 'dataSource', 'emptyPointSettings', 'enableSolidCandles', 'enableTooltip', 'fill', 'high', 'labelSettings', 'lastValueLabel', 'legendImageUrl', 'legendShape', 'linearGradient', 'low', 'marker', 'name', 'opacity', 'open', 'pointColorMapping', 'query', 'radialGradient', 'selectionStyle', 'showNearestTooltip', 'tooltipMappingName', 'trendlines', 'type', 'visible', 'volume', 'width', 'xAxisName', 'xName', 'yAxisName', 'yName'];
|
|
2507
|
+
let outputs$m = [];
|
|
2486
2508
|
/**
|
|
2487
2509
|
* Series Directive
|
|
2488
2510
|
* ```html
|
|
@@ -2497,18 +2519,18 @@ class StockChartSeriesDirective extends ComplexBase {
|
|
|
2497
2519
|
this.viewContainerRef = viewContainerRef;
|
|
2498
2520
|
this.tags = ['trendlines'];
|
|
2499
2521
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2500
|
-
this.registerEvents(outputs$
|
|
2501
|
-
this.directivePropList = input$
|
|
2522
|
+
this.registerEvents(outputs$m);
|
|
2523
|
+
this.directivePropList = input$h;
|
|
2502
2524
|
}
|
|
2503
2525
|
}
|
|
2504
2526
|
StockChartSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2505
|
-
StockChartSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartSeriesDirective, selector: "e-stockchart-series-collection>e-stockchart-series", inputs: { animation: "animation", bearFillColor: "bearFillColor", border: "border", bullFillColor: "bullFillColor", cardinalSplineTension: "cardinalSplineTension", close: "close", columnSpacing: "columnSpacing", columnWidth: "columnWidth", cornerRadius: "cornerRadius", dashArray: "dashArray", dataSource: "dataSource", emptyPointSettings: "emptyPointSettings", enableSolidCandles: "enableSolidCandles", enableTooltip: "enableTooltip", fill: "fill", high: "high", lastValueLabel: "lastValueLabel", legendImageUrl: "legendImageUrl", legendShape: "legendShape", low: "low", marker: "marker", name: "name", opacity: "opacity", open: "open", pointColorMapping: "pointColorMapping", query: "query", selectionStyle: "selectionStyle", showNearestTooltip: "showNearestTooltip", tooltipMappingName: "tooltipMappingName", trendlines: "trendlines", type: "type", visible: "visible", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName", yName: "yName" }, queries: [{ propertyName: "childTrendlines", first: true, predicate: StockChartTrendlinesDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
2527
|
+
StockChartSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartSeriesDirective, selector: "e-stockchart-series-collection>e-stockchart-series", inputs: { animation: "animation", bearFillColor: "bearFillColor", border: "border", bullFillColor: "bullFillColor", cardinalSplineTension: "cardinalSplineTension", close: "close", columnSpacing: "columnSpacing", columnWidth: "columnWidth", cornerRadius: "cornerRadius", dashArray: "dashArray", dataSource: "dataSource", emptyPointSettings: "emptyPointSettings", enableSolidCandles: "enableSolidCandles", enableTooltip: "enableTooltip", fill: "fill", high: "high", labelSettings: "labelSettings", lastValueLabel: "lastValueLabel", legendImageUrl: "legendImageUrl", legendShape: "legendShape", linearGradient: "linearGradient", low: "low", marker: "marker", name: "name", opacity: "opacity", open: "open", pointColorMapping: "pointColorMapping", query: "query", radialGradient: "radialGradient", selectionStyle: "selectionStyle", showNearestTooltip: "showNearestTooltip", tooltipMappingName: "tooltipMappingName", trendlines: "trendlines", type: "type", visible: "visible", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName", yName: "yName" }, queries: [{ propertyName: "childTrendlines", first: true, predicate: StockChartTrendlinesDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
2506
2528
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSeriesDirective, decorators: [{
|
|
2507
2529
|
type: Directive,
|
|
2508
2530
|
args: [{
|
|
2509
2531
|
selector: 'e-stockchart-series-collection>e-stockchart-series',
|
|
2510
|
-
inputs: input$
|
|
2511
|
-
outputs: outputs$
|
|
2532
|
+
inputs: input$h,
|
|
2533
|
+
outputs: outputs$m,
|
|
2512
2534
|
queries: {
|
|
2513
2535
|
childTrendlines: new ContentChild(StockChartTrendlinesDirective)
|
|
2514
2536
|
}
|
|
@@ -2535,8 +2557,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2535
2557
|
}]
|
|
2536
2558
|
}], ctorParameters: function () { return []; } });
|
|
2537
2559
|
|
|
2538
|
-
let input$
|
|
2539
|
-
let outputs$
|
|
2560
|
+
let input$g = ['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'];
|
|
2561
|
+
let outputs$l = [];
|
|
2540
2562
|
/**
|
|
2541
2563
|
* Axis Directive
|
|
2542
2564
|
* ```html
|
|
@@ -2548,8 +2570,8 @@ class StockChartAxisDirective extends ComplexBase {
|
|
|
2548
2570
|
super();
|
|
2549
2571
|
this.viewContainerRef = viewContainerRef;
|
|
2550
2572
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2551
|
-
this.registerEvents(outputs$
|
|
2552
|
-
this.directivePropList = input$
|
|
2573
|
+
this.registerEvents(outputs$l);
|
|
2574
|
+
this.directivePropList = input$g;
|
|
2553
2575
|
}
|
|
2554
2576
|
}
|
|
2555
2577
|
StockChartAxisDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAxisDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -2558,8 +2580,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2558
2580
|
type: Directive,
|
|
2559
2581
|
args: [{
|
|
2560
2582
|
selector: 'e-stockchart-axes>e-stockchart-axis',
|
|
2561
|
-
inputs: input$
|
|
2562
|
-
outputs: outputs$
|
|
2583
|
+
inputs: input$g,
|
|
2584
|
+
outputs: outputs$l,
|
|
2563
2585
|
queries: {}
|
|
2564
2586
|
}]
|
|
2565
2587
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2584,8 +2606,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2584
2606
|
}]
|
|
2585
2607
|
}], ctorParameters: function () { return []; } });
|
|
2586
2608
|
|
|
2587
|
-
let input$
|
|
2588
|
-
let outputs$
|
|
2609
|
+
let input$f = ['border', 'height'];
|
|
2610
|
+
let outputs$k = [];
|
|
2589
2611
|
/**
|
|
2590
2612
|
* Row Directive
|
|
2591
2613
|
* ```html
|
|
@@ -2597,8 +2619,8 @@ class StockChartRowDirective extends ComplexBase {
|
|
|
2597
2619
|
super();
|
|
2598
2620
|
this.viewContainerRef = viewContainerRef;
|
|
2599
2621
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2600
|
-
this.registerEvents(outputs$
|
|
2601
|
-
this.directivePropList = input$
|
|
2622
|
+
this.registerEvents(outputs$k);
|
|
2623
|
+
this.directivePropList = input$f;
|
|
2602
2624
|
}
|
|
2603
2625
|
}
|
|
2604
2626
|
StockChartRowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartRowDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -2607,8 +2629,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2607
2629
|
type: Directive,
|
|
2608
2630
|
args: [{
|
|
2609
2631
|
selector: 'e-stockchart-rows>e-striplines>e-stockchart-row',
|
|
2610
|
-
inputs: input$
|
|
2611
|
-
outputs: outputs$
|
|
2632
|
+
inputs: input$f,
|
|
2633
|
+
outputs: outputs$k,
|
|
2612
2634
|
queries: {}
|
|
2613
2635
|
}]
|
|
2614
2636
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2633,8 +2655,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2633
2655
|
}]
|
|
2634
2656
|
}], ctorParameters: function () { return []; } });
|
|
2635
2657
|
|
|
2636
|
-
let input$
|
|
2637
|
-
let outputs$
|
|
2658
|
+
let input$e = ['content', 'coordinateUnits', 'description', 'horizontalAlignment', 'region', 'verticalAlignment', 'x', 'xAxisName', 'y', 'yAxisName'];
|
|
2659
|
+
let outputs$j = [];
|
|
2638
2660
|
/**
|
|
2639
2661
|
* Annotation Directive
|
|
2640
2662
|
* ```html
|
|
@@ -2646,8 +2668,8 @@ class StockChartAnnotationDirective extends ComplexBase {
|
|
|
2646
2668
|
super();
|
|
2647
2669
|
this.viewContainerRef = viewContainerRef;
|
|
2648
2670
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2649
|
-
this.registerEvents(outputs$
|
|
2650
|
-
this.directivePropList = input$
|
|
2671
|
+
this.registerEvents(outputs$j);
|
|
2672
|
+
this.directivePropList = input$e;
|
|
2651
2673
|
}
|
|
2652
2674
|
}
|
|
2653
2675
|
StockChartAnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartAnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -2659,8 +2681,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2659
2681
|
type: Directive,
|
|
2660
2682
|
args: [{
|
|
2661
2683
|
selector: 'ejs-stockchart-annotations>e-stockchart-annotation',
|
|
2662
|
-
inputs: input$
|
|
2663
|
-
outputs: outputs$
|
|
2684
|
+
inputs: input$e,
|
|
2685
|
+
outputs: outputs$j,
|
|
2664
2686
|
queries: {}
|
|
2665
2687
|
}]
|
|
2666
2688
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
|
@@ -2688,8 +2710,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2688
2710
|
}]
|
|
2689
2711
|
}], ctorParameters: function () { return []; } });
|
|
2690
2712
|
|
|
2691
|
-
let input$
|
|
2692
|
-
let outputs$
|
|
2713
|
+
let input$d = ['point', 'series'];
|
|
2714
|
+
let outputs$i = [];
|
|
2693
2715
|
/**
|
|
2694
2716
|
* Selected Data Directive
|
|
2695
2717
|
* ```html
|
|
@@ -2701,8 +2723,8 @@ class StockChartSelectedDataIndexDirective extends ComplexBase {
|
|
|
2701
2723
|
super();
|
|
2702
2724
|
this.viewContainerRef = viewContainerRef;
|
|
2703
2725
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2704
|
-
this.registerEvents(outputs$
|
|
2705
|
-
this.directivePropList = input$
|
|
2726
|
+
this.registerEvents(outputs$i);
|
|
2727
|
+
this.directivePropList = input$d;
|
|
2706
2728
|
}
|
|
2707
2729
|
}
|
|
2708
2730
|
StockChartSelectedDataIndexDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartSelectedDataIndexDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -2711,8 +2733,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2711
2733
|
type: Directive,
|
|
2712
2734
|
args: [{
|
|
2713
2735
|
selector: 'ejs-stockchart-selectedDataIndexes>e-stockchart-selectedDataIndex',
|
|
2714
|
-
inputs: input$
|
|
2715
|
-
outputs: outputs$
|
|
2736
|
+
inputs: input$d,
|
|
2737
|
+
outputs: outputs$i,
|
|
2716
2738
|
queries: {}
|
|
2717
2739
|
}]
|
|
2718
2740
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2737,8 +2759,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2737
2759
|
}]
|
|
2738
2760
|
}], ctorParameters: function () { return []; } });
|
|
2739
2761
|
|
|
2740
|
-
let input$
|
|
2741
|
-
let outputs$
|
|
2762
|
+
let input$c = ['interval', 'intervalType', 'selected', 'text'];
|
|
2763
|
+
let outputs$h = [];
|
|
2742
2764
|
/**
|
|
2743
2765
|
* Indicator Directive
|
|
2744
2766
|
* ```html
|
|
@@ -2752,8 +2774,8 @@ class StockChartPeriodDirective extends ComplexBase {
|
|
|
2752
2774
|
super();
|
|
2753
2775
|
this.viewContainerRef = viewContainerRef;
|
|
2754
2776
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2755
|
-
this.registerEvents(outputs$
|
|
2756
|
-
this.directivePropList = input$
|
|
2777
|
+
this.registerEvents(outputs$h);
|
|
2778
|
+
this.directivePropList = input$c;
|
|
2757
2779
|
}
|
|
2758
2780
|
}
|
|
2759
2781
|
StockChartPeriodDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartPeriodDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -2762,8 +2784,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2762
2784
|
type: Directive,
|
|
2763
2785
|
args: [{
|
|
2764
2786
|
selector: 'e-stockchart-indicators>e-stockchart-period',
|
|
2765
|
-
inputs: input$
|
|
2766
|
-
outputs: outputs$
|
|
2787
|
+
inputs: input$c,
|
|
2788
|
+
outputs: outputs$h,
|
|
2767
2789
|
queries: {}
|
|
2768
2790
|
}]
|
|
2769
2791
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2788,8 +2810,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2788
2810
|
}]
|
|
2789
2811
|
}], ctorParameters: function () { return []; } });
|
|
2790
2812
|
|
|
2791
|
-
let input$
|
|
2792
|
-
let outputs$
|
|
2813
|
+
let input$b = ['background', 'border', 'date', 'description', 'placeAt', 'seriesIndexes', 'showOnSeries', 'text', 'textStyle', 'type'];
|
|
2814
|
+
let outputs$g = [];
|
|
2793
2815
|
/**
|
|
2794
2816
|
* StockEvents
|
|
2795
2817
|
* ```html
|
|
@@ -2803,8 +2825,8 @@ class StockEventDirective extends ComplexBase {
|
|
|
2803
2825
|
super();
|
|
2804
2826
|
this.viewContainerRef = viewContainerRef;
|
|
2805
2827
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2806
|
-
this.registerEvents(outputs$
|
|
2807
|
-
this.directivePropList = input$
|
|
2828
|
+
this.registerEvents(outputs$g);
|
|
2829
|
+
this.directivePropList = input$b;
|
|
2808
2830
|
}
|
|
2809
2831
|
}
|
|
2810
2832
|
StockEventDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockEventDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -2813,8 +2835,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2813
2835
|
type: Directive,
|
|
2814
2836
|
args: [{
|
|
2815
2837
|
selector: 'e-stockchart-indicators>e-stockchart-stockevent',
|
|
2816
|
-
inputs: input$
|
|
2817
|
-
outputs: outputs$
|
|
2838
|
+
inputs: input$b,
|
|
2839
|
+
outputs: outputs$g,
|
|
2818
2840
|
queries: {}
|
|
2819
2841
|
}]
|
|
2820
2842
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2839,8 +2861,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2839
2861
|
}]
|
|
2840
2862
|
}], ctorParameters: function () { return []; } });
|
|
2841
2863
|
|
|
2842
|
-
let input$
|
|
2843
|
-
let outputs$
|
|
2864
|
+
let input$a = ['animation', 'bandColor', 'close', 'dPeriod', 'dashArray', 'dataSource', 'fastPeriod', 'field', 'fill', 'high', 'kPeriod', 'linearGradient', 'low', 'lowerLine', 'macdLine', 'macdNegativeColor', 'macdPositiveColor', 'macdType', 'open', 'overBought', 'overSold', 'period', 'periodLine', 'pointColorMapping', 'query', 'radialGradient', 'seriesName', 'showZones', 'slowPeriod', 'standardDeviation', 'type', 'upperLine', 'volume', 'width', 'xAxisName', 'xName', 'yAxisName'];
|
|
2865
|
+
let outputs$f = [];
|
|
2844
2866
|
/**
|
|
2845
2867
|
* Indicator Directive
|
|
2846
2868
|
* ```html
|
|
@@ -2854,18 +2876,18 @@ class StockChartIndicatorDirective extends ComplexBase {
|
|
|
2854
2876
|
super();
|
|
2855
2877
|
this.viewContainerRef = viewContainerRef;
|
|
2856
2878
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
2857
|
-
this.registerEvents(outputs$
|
|
2858
|
-
this.directivePropList = input$
|
|
2879
|
+
this.registerEvents(outputs$f);
|
|
2880
|
+
this.directivePropList = input$a;
|
|
2859
2881
|
}
|
|
2860
2882
|
}
|
|
2861
2883
|
StockChartIndicatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartIndicatorDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2862
|
-
StockChartIndicatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartIndicatorDirective, selector: "e-stockchart-indicators>e-stockchart-indicator", inputs: { animation: "animation", bandColor: "bandColor", close: "close", dPeriod: "dPeriod", dashArray: "dashArray", dataSource: "dataSource", fastPeriod: "fastPeriod", field: "field", fill: "fill", high: "high", kPeriod: "kPeriod", low: "low", lowerLine: "lowerLine", macdLine: "macdLine", macdNegativeColor: "macdNegativeColor", macdPositiveColor: "macdPositiveColor", macdType: "macdType", open: "open", overBought: "overBought", overSold: "overSold", period: "period", periodLine: "periodLine", pointColorMapping: "pointColorMapping", query: "query", seriesName: "seriesName", showZones: "showZones", slowPeriod: "slowPeriod", standardDeviation: "standardDeviation", type: "type", upperLine: "upperLine", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName" }, usesInheritance: true, ngImport: i0 });
|
|
2884
|
+
StockChartIndicatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: StockChartIndicatorDirective, selector: "e-stockchart-indicators>e-stockchart-indicator", inputs: { animation: "animation", bandColor: "bandColor", close: "close", dPeriod: "dPeriod", dashArray: "dashArray", dataSource: "dataSource", fastPeriod: "fastPeriod", field: "field", fill: "fill", high: "high", kPeriod: "kPeriod", linearGradient: "linearGradient", low: "low", lowerLine: "lowerLine", macdLine: "macdLine", macdNegativeColor: "macdNegativeColor", macdPositiveColor: "macdPositiveColor", macdType: "macdType", open: "open", overBought: "overBought", overSold: "overSold", period: "period", periodLine: "periodLine", pointColorMapping: "pointColorMapping", query: "query", radialGradient: "radialGradient", seriesName: "seriesName", showZones: "showZones", slowPeriod: "slowPeriod", standardDeviation: "standardDeviation", type: "type", upperLine: "upperLine", volume: "volume", width: "width", xAxisName: "xAxisName", xName: "xName", yAxisName: "yAxisName" }, usesInheritance: true, ngImport: i0 });
|
|
2863
2885
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartIndicatorDirective, decorators: [{
|
|
2864
2886
|
type: Directive,
|
|
2865
2887
|
args: [{
|
|
2866
2888
|
selector: 'e-stockchart-indicators>e-stockchart-indicator',
|
|
2867
|
-
inputs: input$
|
|
2868
|
-
outputs: outputs$
|
|
2889
|
+
inputs: input$a,
|
|
2890
|
+
outputs: outputs$f,
|
|
2869
2891
|
queries: {}
|
|
2870
2892
|
}]
|
|
2871
2893
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -2890,9 +2912,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
2890
2912
|
}]
|
|
2891
2913
|
}], ctorParameters: function () { return []; } });
|
|
2892
2914
|
|
|
2893
|
-
const inputs$
|
|
2894
|
-
const outputs$
|
|
2895
|
-
const twoWays$
|
|
2915
|
+
const inputs$4 = ['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'];
|
|
2916
|
+
const outputs$e = ['axisLabelRender', 'beforeExport', 'crosshairLabelRender', 'legendClick', 'legendRender', 'load', 'loaded', 'onZooming', 'pointClick', 'pointMove', 'rangeChange', 'selectorRender', 'seriesRender', 'stockChartMouseClick', 'stockChartMouseDown', 'stockChartMouseLeave', 'stockChartMouseMove', 'stockChartMouseUp', 'stockEventRender', 'tooltipRender', 'dataSourceChange'];
|
|
2917
|
+
const twoWays$4 = ['dataSource'];
|
|
2896
2918
|
/**
|
|
2897
2919
|
* Stock Chart Component
|
|
2898
2920
|
* ```html
|
|
@@ -3140,8 +3162,15 @@ let StockChartComponent = class StockChartComponent extends StockChart {
|
|
|
3140
3162
|
}
|
|
3141
3163
|
}
|
|
3142
3164
|
catch (_8) { }
|
|
3143
|
-
|
|
3144
|
-
|
|
3165
|
+
try {
|
|
3166
|
+
let mod = this.injector.get('ChartsSeriesLabel');
|
|
3167
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
3168
|
+
this.injectedModules.push(mod);
|
|
3169
|
+
}
|
|
3170
|
+
}
|
|
3171
|
+
catch (_9) { }
|
|
3172
|
+
this.registerEvents(outputs$e);
|
|
3173
|
+
this.addTwoWay.call(this, twoWays$4);
|
|
3145
3174
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
3146
3175
|
this.context = new ComponentBase();
|
|
3147
3176
|
}
|
|
@@ -3181,10 +3210,13 @@ let StockChartComponent = class StockChartComponent extends StockChart {
|
|
|
3181
3210
|
}
|
|
3182
3211
|
};
|
|
3183
3212
|
StockChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: StockChartComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3184
|
-
StockChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: StockChartComponent, selector: "ejs-stockchart", inputs: { annotations: "annotations", axes: "axes", background: "background", border: "border", chartArea: "chartArea", crosshair: "crosshair", dataSource: "dataSource", enableCustomRange: "enableCustomRange", enablePeriodSelector: "enablePeriodSelector", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSelector: "enableSelector", exportType: "exportType", height: "height", indicatorType: "indicatorType", indicators: "indicators", isMultiSelect: "isMultiSelect", isSelect: "isSelect", isTransposed: "isTransposed", legendSettings: "legendSettings", locale: "locale", margin: "margin", noDataTemplate: "noDataTemplate", periods: "periods", primaryXAxis: "primaryXAxis", primaryYAxis: "primaryYAxis", rows: "rows", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", series: "series", seriesType: "seriesType", stockEvents: "stockEvents", theme: "theme", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", trendlineType: "trendlineType", width: "width", zoomSettings: "zoomSettings" }, outputs: { axisLabelRender: "axisLabelRender", beforeExport: "beforeExport", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", onZooming: "onZooming", pointClick: "pointClick", pointMove: "pointMove", rangeChange: "rangeChange", selectorRender: "selectorRender", seriesRender: "seriesRender", stockChartMouseClick: "stockChartMouseClick", stockChartMouseDown: "stockChartMouseDown", stockChartMouseLeave: "stockChartMouseLeave", stockChartMouseMove: "stockChartMouseMove", stockChartMouseUp: "stockChartMouseUp", stockEventRender: "stockEventRender", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: StockChartSeriesCollectionDirective, descendants: true }, { propertyName: "childAxes", first: true, predicate: StockChartAxesDirective, descendants: true }, { propertyName: "childRows", first: true, predicate: StockChartRowsDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: StockChartAnnotationsDirective, descendants: true }, { propertyName: "childSelectedDataIndexes", first: true, predicate: StockChartSelectedDataIndexesDirective, descendants: true }, { propertyName: "childPeriods", first: true, predicate: StockChartPeriodsDirective, descendants: true }, { propertyName: "childStockEvents", first: true, predicate: StockEventsDirective, descendants: true }, { propertyName: "childIndicators", first: true, predicate: StockChartIndicatorsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3213
|
+
StockChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: StockChartComponent, selector: "ejs-stockchart", inputs: { annotations: "annotations", axes: "axes", background: "background", border: "border", chartArea: "chartArea", crosshair: "crosshair", dataSource: "dataSource", enableCustomRange: "enableCustomRange", enablePeriodSelector: "enablePeriodSelector", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSelector: "enableSelector", exportType: "exportType", height: "height", indicatorType: "indicatorType", indicators: "indicators", isMultiSelect: "isMultiSelect", isSelect: "isSelect", isTransposed: "isTransposed", legendSettings: "legendSettings", locale: "locale", margin: "margin", noDataTemplate: "noDataTemplate", periods: "periods", primaryXAxis: "primaryXAxis", primaryYAxis: "primaryYAxis", rows: "rows", selectedDataIndexes: "selectedDataIndexes", selectionMode: "selectionMode", series: "series", seriesType: "seriesType", stockEvents: "stockEvents", theme: "theme", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", trendlineType: "trendlineType", width: "width", zoomSettings: "zoomSettings" }, outputs: { axisLabelRender: "axisLabelRender", beforeExport: "beforeExport", crosshairLabelRender: "crosshairLabelRender", legendClick: "legendClick", legendRender: "legendRender", load: "load", loaded: "loaded", onZooming: "onZooming", pointClick: "pointClick", pointMove: "pointMove", rangeChange: "rangeChange", selectorRender: "selectorRender", seriesRender: "seriesRender", stockChartMouseClick: "stockChartMouseClick", stockChartMouseDown: "stockChartMouseDown", stockChartMouseLeave: "stockChartMouseLeave", stockChartMouseMove: "stockChartMouseMove", stockChartMouseUp: "stockChartMouseUp", stockEventRender: "stockEventRender", tooltipRender: "tooltipRender", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "tooltip_template", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "legendSettings_template", first: true, predicate: ["legendSettingsTemplate"], descendants: true }, { propertyName: "childSeries", first: true, predicate: StockChartSeriesCollectionDirective, descendants: true }, { propertyName: "childAxes", first: true, predicate: StockChartAxesDirective, descendants: true }, { propertyName: "childRows", first: true, predicate: StockChartRowsDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: StockChartAnnotationsDirective, descendants: true }, { propertyName: "childSelectedDataIndexes", first: true, predicate: StockChartSelectedDataIndexesDirective, descendants: true }, { propertyName: "childPeriods", first: true, predicate: StockChartPeriodsDirective, descendants: true }, { propertyName: "childStockEvents", first: true, predicate: StockEventsDirective, descendants: true }, { propertyName: "childIndicators", first: true, predicate: StockChartIndicatorsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3185
3214
|
__decorate([
|
|
3186
3215
|
Template()
|
|
3187
3216
|
], StockChartComponent.prototype, "tooltip_template", void 0);
|
|
3217
|
+
__decorate([
|
|
3218
|
+
Template()
|
|
3219
|
+
], StockChartComponent.prototype, "legendSettings_template", void 0);
|
|
3188
3220
|
StockChartComponent = __decorate([
|
|
3189
3221
|
ComponentMixins([ComponentBase])
|
|
3190
3222
|
], StockChartComponent);
|
|
@@ -3192,8 +3224,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3192
3224
|
type: Component,
|
|
3193
3225
|
args: [{
|
|
3194
3226
|
selector: 'ejs-stockchart',
|
|
3195
|
-
inputs: inputs$
|
|
3196
|
-
outputs: outputs$
|
|
3227
|
+
inputs: inputs$4,
|
|
3228
|
+
outputs: outputs$e,
|
|
3197
3229
|
template: '',
|
|
3198
3230
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3199
3231
|
queries: {
|
|
@@ -3210,6 +3242,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3210
3242
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_template: [{
|
|
3211
3243
|
type: ContentChild,
|
|
3212
3244
|
args: ['tooltipTemplate']
|
|
3245
|
+
}], legendSettings_template: [{
|
|
3246
|
+
type: ContentChild,
|
|
3247
|
+
args: ['legendSettingsTemplate']
|
|
3213
3248
|
}] } });
|
|
3214
3249
|
|
|
3215
3250
|
/**
|
|
@@ -3329,8 +3364,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3329
3364
|
}]
|
|
3330
3365
|
}] });
|
|
3331
3366
|
|
|
3332
|
-
let input$
|
|
3333
|
-
let outputs$
|
|
3367
|
+
let input$9 = ['color', 'end', 'index', 'legendImageUrl', 'name', 'opacity', 'shape'];
|
|
3368
|
+
let outputs$d = [];
|
|
3334
3369
|
/**
|
|
3335
3370
|
* BulletRange Directive
|
|
3336
3371
|
* ```html
|
|
@@ -3344,8 +3379,8 @@ class BulletRangeDirective extends ComplexBase {
|
|
|
3344
3379
|
super();
|
|
3345
3380
|
this.viewContainerRef = viewContainerRef;
|
|
3346
3381
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
3347
|
-
this.registerEvents(outputs$
|
|
3348
|
-
this.directivePropList = input$
|
|
3382
|
+
this.registerEvents(outputs$d);
|
|
3383
|
+
this.directivePropList = input$9;
|
|
3349
3384
|
}
|
|
3350
3385
|
}
|
|
3351
3386
|
BulletRangeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BulletRangeDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -3354,8 +3389,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3354
3389
|
type: Directive,
|
|
3355
3390
|
args: [{
|
|
3356
3391
|
selector: 'e-bullet-range-collection>e-bullet-range',
|
|
3357
|
-
inputs: input$
|
|
3358
|
-
outputs: outputs$
|
|
3392
|
+
inputs: input$9,
|
|
3393
|
+
outputs: outputs$d,
|
|
3359
3394
|
queries: {}
|
|
3360
3395
|
}]
|
|
3361
3396
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -3380,9 +3415,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3380
3415
|
}]
|
|
3381
3416
|
}], ctorParameters: function () { return []; } });
|
|
3382
3417
|
|
|
3383
|
-
const inputs$
|
|
3384
|
-
const outputs$
|
|
3385
|
-
const twoWays$
|
|
3418
|
+
const inputs$3 = ['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'];
|
|
3419
|
+
const outputs$c = ['beforePrint', 'bulletChartMouseClick', 'legendRender', 'load', 'loaded', 'tooltipRender', 'dataSourceChange'];
|
|
3420
|
+
const twoWays$3 = ['dataSource'];
|
|
3386
3421
|
/**
|
|
3387
3422
|
* BulletChart Component
|
|
3388
3423
|
* ```html
|
|
@@ -3413,8 +3448,8 @@ let BulletChartComponent = class BulletChartComponent extends BulletChart {
|
|
|
3413
3448
|
}
|
|
3414
3449
|
}
|
|
3415
3450
|
catch (_b) { }
|
|
3416
|
-
this.registerEvents(outputs$
|
|
3417
|
-
this.addTwoWay.call(this, twoWays$
|
|
3451
|
+
this.registerEvents(outputs$c);
|
|
3452
|
+
this.addTwoWay.call(this, twoWays$3);
|
|
3418
3453
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
3419
3454
|
this.context = new ComponentBase();
|
|
3420
3455
|
}
|
|
@@ -3444,8 +3479,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3444
3479
|
type: Component,
|
|
3445
3480
|
args: [{
|
|
3446
3481
|
selector: 'ejs-bulletchart',
|
|
3447
|
-
inputs: inputs$
|
|
3448
|
-
outputs: outputs$
|
|
3482
|
+
inputs: inputs$3,
|
|
3483
|
+
outputs: outputs$c,
|
|
3449
3484
|
template: '',
|
|
3450
3485
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3451
3486
|
queries: {
|
|
@@ -3513,8 +3548,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3513
3548
|
}]
|
|
3514
3549
|
}] });
|
|
3515
3550
|
|
|
3516
|
-
let input$
|
|
3517
|
-
let outputs$
|
|
3551
|
+
let input$8 = ['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'];
|
|
3552
|
+
let outputs$b = [];
|
|
3518
3553
|
/**
|
|
3519
3554
|
* Series3D Directive
|
|
3520
3555
|
* ```html
|
|
@@ -3528,8 +3563,8 @@ class Chart3DSeriesDirective extends ComplexBase {
|
|
|
3528
3563
|
super();
|
|
3529
3564
|
this.viewContainerRef = viewContainerRef;
|
|
3530
3565
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
3531
|
-
this.registerEvents(outputs$
|
|
3532
|
-
this.directivePropList = input$
|
|
3566
|
+
this.registerEvents(outputs$b);
|
|
3567
|
+
this.directivePropList = input$8;
|
|
3533
3568
|
}
|
|
3534
3569
|
}
|
|
3535
3570
|
Chart3DSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -3541,8 +3576,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3541
3576
|
type: Directive,
|
|
3542
3577
|
args: [{
|
|
3543
3578
|
selector: 'e-chart3d-series-collection>e-chart3d-series',
|
|
3544
|
-
inputs: input$
|
|
3545
|
-
outputs: outputs$
|
|
3579
|
+
inputs: input$8,
|
|
3580
|
+
outputs: outputs$b,
|
|
3546
3581
|
queries: {}
|
|
3547
3582
|
}]
|
|
3548
3583
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { dataLabel_template: [{
|
|
@@ -3570,8 +3605,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3570
3605
|
}]
|
|
3571
3606
|
}], ctorParameters: function () { return []; } });
|
|
3572
3607
|
|
|
3573
|
-
let input$
|
|
3574
|
-
let outputs$
|
|
3608
|
+
let input$7 = ['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'];
|
|
3609
|
+
let outputs$a = [];
|
|
3575
3610
|
/**
|
|
3576
3611
|
* Axis3D Directive
|
|
3577
3612
|
* ```html
|
|
@@ -3583,8 +3618,8 @@ class Chart3DAxisDirective extends ComplexBase {
|
|
|
3583
3618
|
super();
|
|
3584
3619
|
this.viewContainerRef = viewContainerRef;
|
|
3585
3620
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
3586
|
-
this.registerEvents(outputs$
|
|
3587
|
-
this.directivePropList = input$
|
|
3621
|
+
this.registerEvents(outputs$a);
|
|
3622
|
+
this.directivePropList = input$7;
|
|
3588
3623
|
}
|
|
3589
3624
|
}
|
|
3590
3625
|
Chart3DAxisDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DAxisDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -3593,8 +3628,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3593
3628
|
type: Directive,
|
|
3594
3629
|
args: [{
|
|
3595
3630
|
selector: 'e-chart3daxes>e-chart3daxis',
|
|
3596
|
-
inputs: input$
|
|
3597
|
-
outputs: outputs$
|
|
3631
|
+
inputs: input$7,
|
|
3632
|
+
outputs: outputs$a,
|
|
3598
3633
|
queries: {}
|
|
3599
3634
|
}]
|
|
3600
3635
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -3619,8 +3654,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3619
3654
|
}]
|
|
3620
3655
|
}], ctorParameters: function () { return []; } });
|
|
3621
3656
|
|
|
3622
|
-
let input$
|
|
3623
|
-
let outputs$
|
|
3657
|
+
let input$6 = ['height'];
|
|
3658
|
+
let outputs$9 = [];
|
|
3624
3659
|
/**
|
|
3625
3660
|
* Row3D Directive
|
|
3626
3661
|
* ```html
|
|
@@ -3632,8 +3667,8 @@ class Chart3DRowDirective extends ComplexBase {
|
|
|
3632
3667
|
super();
|
|
3633
3668
|
this.viewContainerRef = viewContainerRef;
|
|
3634
3669
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
3635
|
-
this.registerEvents(outputs$
|
|
3636
|
-
this.directivePropList = input$
|
|
3670
|
+
this.registerEvents(outputs$9);
|
|
3671
|
+
this.directivePropList = input$6;
|
|
3637
3672
|
}
|
|
3638
3673
|
}
|
|
3639
3674
|
Chart3DRowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DRowDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -3642,8 +3677,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3642
3677
|
type: Directive,
|
|
3643
3678
|
args: [{
|
|
3644
3679
|
selector: 'e-chart3d-rows>e-chart3d-row',
|
|
3645
|
-
inputs: input$
|
|
3646
|
-
outputs: outputs$
|
|
3680
|
+
inputs: input$6,
|
|
3681
|
+
outputs: outputs$9,
|
|
3647
3682
|
queries: {}
|
|
3648
3683
|
}]
|
|
3649
3684
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -3668,8 +3703,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3668
3703
|
}]
|
|
3669
3704
|
}], ctorParameters: function () { return []; } });
|
|
3670
3705
|
|
|
3671
|
-
let input$
|
|
3672
|
-
let outputs$
|
|
3706
|
+
let input$5 = ['width'];
|
|
3707
|
+
let outputs$8 = [];
|
|
3673
3708
|
/**
|
|
3674
3709
|
* Column3D Directive
|
|
3675
3710
|
* ```html
|
|
@@ -3681,8 +3716,8 @@ class Chart3DColumnDirective extends ComplexBase {
|
|
|
3681
3716
|
super();
|
|
3682
3717
|
this.viewContainerRef = viewContainerRef;
|
|
3683
3718
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
3684
|
-
this.registerEvents(outputs$
|
|
3685
|
-
this.directivePropList = input$
|
|
3719
|
+
this.registerEvents(outputs$8);
|
|
3720
|
+
this.directivePropList = input$5;
|
|
3686
3721
|
}
|
|
3687
3722
|
}
|
|
3688
3723
|
Chart3DColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DColumnDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -3691,8 +3726,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3691
3726
|
type: Directive,
|
|
3692
3727
|
args: [{
|
|
3693
3728
|
selector: 'e-chart3d-columns>e-chart3d-columns',
|
|
3694
|
-
inputs: input$
|
|
3695
|
-
outputs: outputs$
|
|
3729
|
+
inputs: input$5,
|
|
3730
|
+
outputs: outputs$8,
|
|
3696
3731
|
queries: {}
|
|
3697
3732
|
}]
|
|
3698
3733
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -3717,8 +3752,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3717
3752
|
}]
|
|
3718
3753
|
}], ctorParameters: function () { return []; } });
|
|
3719
3754
|
|
|
3720
|
-
let input$
|
|
3721
|
-
let outputs$
|
|
3755
|
+
let input$4 = ['point', 'series'];
|
|
3756
|
+
let outputs$7 = [];
|
|
3722
3757
|
/**
|
|
3723
3758
|
* Selected Data Directive
|
|
3724
3759
|
* ```html
|
|
@@ -3730,8 +3765,8 @@ class Chart3DSelectedDataIndexDirective extends ComplexBase {
|
|
|
3730
3765
|
super();
|
|
3731
3766
|
this.viewContainerRef = viewContainerRef;
|
|
3732
3767
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
3733
|
-
this.registerEvents(outputs$
|
|
3734
|
-
this.directivePropList = input$
|
|
3768
|
+
this.registerEvents(outputs$7);
|
|
3769
|
+
this.directivePropList = input$4;
|
|
3735
3770
|
}
|
|
3736
3771
|
}
|
|
3737
3772
|
Chart3DSelectedDataIndexDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: Chart3DSelectedDataIndexDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -3740,8 +3775,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3740
3775
|
type: Directive,
|
|
3741
3776
|
args: [{
|
|
3742
3777
|
selector: 'e-chart3d-selecteddataindexes>e-chart3d-selecteddataindex',
|
|
3743
|
-
inputs: input$
|
|
3744
|
-
outputs: outputs$
|
|
3778
|
+
inputs: input$4,
|
|
3779
|
+
outputs: outputs$7,
|
|
3745
3780
|
queries: {}
|
|
3746
3781
|
}]
|
|
3747
3782
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -3766,9 +3801,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3766
3801
|
}]
|
|
3767
3802
|
}], ctorParameters: function () { return []; } });
|
|
3768
3803
|
|
|
3769
|
-
const inputs$
|
|
3770
|
-
const outputs$
|
|
3771
|
-
const twoWays$
|
|
3804
|
+
const inputs$2 = ['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'];
|
|
3805
|
+
const outputs$6 = ['afterExport', 'axisLabelRender', 'beforeExport', 'beforePrint', 'beforeResize', 'chart3DMouseClick', 'chart3DMouseDown', 'chart3DMouseLeave', 'chart3DMouseMove', 'chart3DMouseUp', 'legendClick', 'legendRender', 'load', 'loaded', 'pointClick', 'pointMove', 'pointRender', 'resized', 'selectionComplete', 'seriesRender', 'textRender', 'tooltipRender', 'dataSourceChange'];
|
|
3806
|
+
const twoWays$2 = ['dataSource'];
|
|
3772
3807
|
/**
|
|
3773
3808
|
* 3D Chart Component
|
|
3774
3809
|
* ```html
|
|
@@ -3883,8 +3918,8 @@ let Chart3DComponent = class Chart3DComponent extends Chart3D {
|
|
|
3883
3918
|
}
|
|
3884
3919
|
}
|
|
3885
3920
|
catch (_p) { }
|
|
3886
|
-
this.registerEvents(outputs$
|
|
3887
|
-
this.addTwoWay.call(this, twoWays$
|
|
3921
|
+
this.registerEvents(outputs$6);
|
|
3922
|
+
this.addTwoWay.call(this, twoWays$2);
|
|
3888
3923
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
3889
3924
|
this.context = new ComponentBase();
|
|
3890
3925
|
}
|
|
@@ -3926,8 +3961,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
3926
3961
|
type: Component,
|
|
3927
3962
|
args: [{
|
|
3928
3963
|
selector: 'ejs-chart3d',
|
|
3929
|
-
inputs: inputs$
|
|
3930
|
-
outputs: outputs$
|
|
3964
|
+
inputs: inputs$2,
|
|
3965
|
+
outputs: outputs$6,
|
|
3931
3966
|
template: '',
|
|
3932
3967
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3933
3968
|
queries: {
|
|
@@ -4067,8 +4102,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
4067
4102
|
}]
|
|
4068
4103
|
}] });
|
|
4069
4104
|
|
|
4070
|
-
let input$
|
|
4071
|
-
let outputs$
|
|
4105
|
+
let input$3 = ['animation', 'dataLabel', 'dataSource', 'emptyPointSettings', 'enableTooltip', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'innerRadius', 'legendImageUrl', 'legendShape', 'name', 'opacity', 'palettes', 'pointColorMapping', 'query', 'radius', 'tooltipMappingName', 'visible', 'xName', 'yName'];
|
|
4106
|
+
let outputs$5 = [];
|
|
4072
4107
|
/**
|
|
4073
4108
|
* Circular3D Series Directive
|
|
4074
4109
|
* ```html
|
|
@@ -4082,8 +4117,8 @@ class CircularChart3DSeriesDirective extends ComplexBase {
|
|
|
4082
4117
|
super();
|
|
4083
4118
|
this.viewContainerRef = viewContainerRef;
|
|
4084
4119
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
4085
|
-
this.registerEvents(outputs$
|
|
4086
|
-
this.directivePropList = input$
|
|
4120
|
+
this.registerEvents(outputs$5);
|
|
4121
|
+
this.directivePropList = input$3;
|
|
4087
4122
|
}
|
|
4088
4123
|
}
|
|
4089
4124
|
CircularChart3DSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSeriesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -4095,8 +4130,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
4095
4130
|
type: Directive,
|
|
4096
4131
|
args: [{
|
|
4097
4132
|
selector: 'e-circularchart3d-series-collection>e-circularchart3d-series',
|
|
4098
|
-
inputs: input$
|
|
4099
|
-
outputs: outputs$
|
|
4133
|
+
inputs: input$3,
|
|
4134
|
+
outputs: outputs$5,
|
|
4100
4135
|
queries: {}
|
|
4101
4136
|
}]
|
|
4102
4137
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { dataLabel_template: [{
|
|
@@ -4124,8 +4159,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
4124
4159
|
}]
|
|
4125
4160
|
}], ctorParameters: function () { return []; } });
|
|
4126
4161
|
|
|
4127
|
-
let input = ['point', 'series'];
|
|
4128
|
-
let outputs$
|
|
4162
|
+
let input$2 = ['point', 'series'];
|
|
4163
|
+
let outputs$4 = [];
|
|
4129
4164
|
/**
|
|
4130
4165
|
* Selected Data Directive
|
|
4131
4166
|
* ```html
|
|
@@ -4137,8 +4172,8 @@ class CircularChart3DSelectedDataIndexDirective extends ComplexBase {
|
|
|
4137
4172
|
super();
|
|
4138
4173
|
this.viewContainerRef = viewContainerRef;
|
|
4139
4174
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
4140
|
-
this.registerEvents(outputs$
|
|
4141
|
-
this.directivePropList = input;
|
|
4175
|
+
this.registerEvents(outputs$4);
|
|
4176
|
+
this.directivePropList = input$2;
|
|
4142
4177
|
}
|
|
4143
4178
|
}
|
|
4144
4179
|
CircularChart3DSelectedDataIndexDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CircularChart3DSelectedDataIndexDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -4147,8 +4182,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
4147
4182
|
type: Directive,
|
|
4148
4183
|
args: [{
|
|
4149
4184
|
selector: 'e-circularchart3d-selecteddataindexes>e-circularchart3d-selecteddataindex',
|
|
4150
|
-
inputs: input,
|
|
4151
|
-
outputs: outputs$
|
|
4185
|
+
inputs: input$2,
|
|
4186
|
+
outputs: outputs$4,
|
|
4152
4187
|
queries: {}
|
|
4153
4188
|
}]
|
|
4154
4189
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
@@ -4173,9 +4208,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
4173
4208
|
}]
|
|
4174
4209
|
}], ctorParameters: function () { return []; } });
|
|
4175
4210
|
|
|
4176
|
-
const inputs = ['background', 'backgroundImage', 'border', 'dataSource', 'depth', 'enableAnimation', 'enableExport', 'enablePersistence', 'enableRotation', 'enableRtl', 'height', 'highlightColor', 'highlightMode', 'highlightPattern', 'isMultiSelect', 'legendSettings', 'locale', 'margin', 'rotation', 'selectedDataIndexes', 'selectionMode', 'selectionPattern', 'series', 'subTitle', 'subTitleStyle', 'theme', 'tilt', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width'];
|
|
4177
|
-
const outputs = ['afterExport', 'beforeExport', 'beforePrint', 'beforeResize', 'circularChart3DMouseClick', 'circularChart3DMouseDown', 'circularChart3DMouseLeave', 'circularChart3DMouseMove', 'circularChart3DMouseUp', 'legendClick', 'legendRender', 'load', 'loaded', 'pointClick', 'pointMove', 'pointRender', 'resized', 'selectionComplete', 'seriesRender', 'textRender', 'tooltipRender', 'dataSourceChange'];
|
|
4178
|
-
const twoWays = ['dataSource'];
|
|
4211
|
+
const inputs$1 = ['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'];
|
|
4212
|
+
const outputs$3 = ['afterExport', 'beforeExport', 'beforePrint', 'beforeResize', 'circularChart3DMouseClick', 'circularChart3DMouseDown', 'circularChart3DMouseLeave', 'circularChart3DMouseMove', 'circularChart3DMouseUp', 'legendClick', 'legendRender', 'load', 'loaded', 'pointClick', 'pointMove', 'pointRender', 'resized', 'selectionComplete', 'seriesRender', 'textRender', 'tooltipRender', 'dataSourceChange'];
|
|
4213
|
+
const twoWays$1 = ['dataSource'];
|
|
4179
4214
|
/**
|
|
4180
4215
|
* CircularChart3D Component
|
|
4181
4216
|
* ```html
|
|
@@ -4241,8 +4276,8 @@ let CircularChart3DComponent = class CircularChart3DComponent extends CircularCh
|
|
|
4241
4276
|
}
|
|
4242
4277
|
}
|
|
4243
4278
|
catch (_g) { }
|
|
4244
|
-
this.registerEvents(outputs);
|
|
4245
|
-
this.addTwoWay.call(this, twoWays);
|
|
4279
|
+
this.registerEvents(outputs$3);
|
|
4280
|
+
this.addTwoWay.call(this, twoWays$1);
|
|
4246
4281
|
setValue('currentInstance', this, this.viewContainerRef);
|
|
4247
4282
|
this.context = new ComponentBase();
|
|
4248
4283
|
}
|
|
@@ -4275,8 +4310,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
4275
4310
|
type: Component,
|
|
4276
4311
|
args: [{
|
|
4277
4312
|
selector: 'ejs-circularchart3d',
|
|
4278
|
-
inputs: inputs,
|
|
4279
|
-
outputs: outputs,
|
|
4313
|
+
inputs: inputs$1,
|
|
4314
|
+
outputs: outputs$3,
|
|
4280
4315
|
template: '',
|
|
4281
4316
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4282
4317
|
queries: {
|
|
@@ -4368,9 +4403,282 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
4368
4403
|
}]
|
|
4369
4404
|
}] });
|
|
4370
4405
|
|
|
4406
|
+
let input$1 = ['color', 'id', 'label', 'offset'];
|
|
4407
|
+
let outputs$2 = [];
|
|
4408
|
+
/**
|
|
4409
|
+
* Sankey Nodes Directive
|
|
4410
|
+
* ```html
|
|
4411
|
+
* <e-sankey-nodes>
|
|
4412
|
+
* <e-sankey-node></e-sankey-node>
|
|
4413
|
+
* </e-sankey-nodes>
|
|
4414
|
+
* ```
|
|
4415
|
+
*/
|
|
4416
|
+
class SankeyNodeDirective extends ComplexBase {
|
|
4417
|
+
constructor(viewContainerRef) {
|
|
4418
|
+
super();
|
|
4419
|
+
this.viewContainerRef = viewContainerRef;
|
|
4420
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
4421
|
+
this.registerEvents(outputs$2);
|
|
4422
|
+
this.directivePropList = input$1;
|
|
4423
|
+
}
|
|
4424
|
+
}
|
|
4425
|
+
SankeyNodeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyNodeDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4426
|
+
SankeyNodeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SankeyNodeDirective, selector: "e-sankey-nodes>e-sankey-node", inputs: { color: "color", id: "id", label: "label", offset: "offset" }, usesInheritance: true, ngImport: i0 });
|
|
4427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyNodeDirective, decorators: [{
|
|
4428
|
+
type: Directive,
|
|
4429
|
+
args: [{
|
|
4430
|
+
selector: 'e-sankey-nodes>e-sankey-node',
|
|
4431
|
+
inputs: input$1,
|
|
4432
|
+
outputs: outputs$2,
|
|
4433
|
+
queries: {}
|
|
4434
|
+
}]
|
|
4435
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
4436
|
+
/**
|
|
4437
|
+
* SankeyNode Array Directive
|
|
4438
|
+
* @private
|
|
4439
|
+
*/
|
|
4440
|
+
class SankeyNodesCollectionDirective extends ArrayBase {
|
|
4441
|
+
constructor() {
|
|
4442
|
+
super('nodes');
|
|
4443
|
+
}
|
|
4444
|
+
}
|
|
4445
|
+
SankeyNodesCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyNodesCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4446
|
+
SankeyNodesCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SankeyNodesCollectionDirective, selector: "ejs-sankey>e-sankey-nodes", queries: [{ propertyName: "children", predicate: SankeyNodeDirective }], usesInheritance: true, ngImport: i0 });
|
|
4447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyNodesCollectionDirective, decorators: [{
|
|
4448
|
+
type: Directive,
|
|
4449
|
+
args: [{
|
|
4450
|
+
selector: 'ejs-sankey>e-sankey-nodes',
|
|
4451
|
+
queries: {
|
|
4452
|
+
children: new ContentChildren(SankeyNodeDirective)
|
|
4453
|
+
},
|
|
4454
|
+
}]
|
|
4455
|
+
}], ctorParameters: function () { return []; } });
|
|
4456
|
+
|
|
4457
|
+
let input = ['sourceId', 'targetId', 'value'];
|
|
4458
|
+
let outputs$1 = [];
|
|
4459
|
+
/**
|
|
4460
|
+
* Sankey Links Directive
|
|
4461
|
+
* ```html
|
|
4462
|
+
* <e-sankey-links>
|
|
4463
|
+
* <e-sankey-link></e-sankey-link>
|
|
4464
|
+
* </e-sankey-links>
|
|
4465
|
+
* ```
|
|
4466
|
+
*/
|
|
4467
|
+
class SankeyLinkDirective extends ComplexBase {
|
|
4468
|
+
constructor(viewContainerRef) {
|
|
4469
|
+
super();
|
|
4470
|
+
this.viewContainerRef = viewContainerRef;
|
|
4471
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
4472
|
+
this.registerEvents(outputs$1);
|
|
4473
|
+
this.directivePropList = input;
|
|
4474
|
+
}
|
|
4475
|
+
}
|
|
4476
|
+
SankeyLinkDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyLinkDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4477
|
+
SankeyLinkDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SankeyLinkDirective, selector: "e-sankey-links>e-sankey-link", inputs: { sourceId: "sourceId", targetId: "targetId", value: "value" }, usesInheritance: true, ngImport: i0 });
|
|
4478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyLinkDirective, decorators: [{
|
|
4479
|
+
type: Directive,
|
|
4480
|
+
args: [{
|
|
4481
|
+
selector: 'e-sankey-links>e-sankey-link',
|
|
4482
|
+
inputs: input,
|
|
4483
|
+
outputs: outputs$1,
|
|
4484
|
+
queries: {}
|
|
4485
|
+
}]
|
|
4486
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
4487
|
+
/**
|
|
4488
|
+
* SankeyLink Array Directive
|
|
4489
|
+
* @private
|
|
4490
|
+
*/
|
|
4491
|
+
class SankeyLinksCollectionDirective extends ArrayBase {
|
|
4492
|
+
constructor() {
|
|
4493
|
+
super('links');
|
|
4494
|
+
}
|
|
4495
|
+
}
|
|
4496
|
+
SankeyLinksCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyLinksCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4497
|
+
SankeyLinksCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: SankeyLinksCollectionDirective, selector: "ejs-sankey>e-sankey-links", queries: [{ propertyName: "children", predicate: SankeyLinkDirective }], usesInheritance: true, ngImport: i0 });
|
|
4498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyLinksCollectionDirective, decorators: [{
|
|
4499
|
+
type: Directive,
|
|
4500
|
+
args: [{
|
|
4501
|
+
selector: 'ejs-sankey>e-sankey-links',
|
|
4502
|
+
queries: {
|
|
4503
|
+
children: new ContentChildren(SankeyLinkDirective)
|
|
4504
|
+
},
|
|
4505
|
+
}]
|
|
4506
|
+
}], ctorParameters: function () { return []; } });
|
|
4507
|
+
|
|
4508
|
+
const inputs = ['accessibility', 'allowExport', 'animation', 'background', 'backgroundImage', 'border', 'enableExport', 'enablePersistence', 'enableRtl', 'focusBorderColor', 'focusBorderMargin', 'focusBorderWidth', 'height', 'labelSettings', 'legendSettings', 'linkStyle', 'links', 'locale', 'margin', 'nodeStyle', 'nodes', 'orientation', 'subTitle', 'subTitleStyle', 'theme', 'title', 'titleStyle', 'tooltip', 'width'];
|
|
4509
|
+
const outputs = ['afterExport', 'beforeExport', 'beforePrint', 'exportCompleted', 'labelRendering', 'legendItemHover', 'legendItemRendering', 'linkClick', 'linkEnter', 'linkLeave', 'linkRendering', 'load', 'loaded', 'nodeClick', 'nodeEnter', 'nodeLeave', 'nodeRendering', 'sizeChanged', 'tooltipRendering'];
|
|
4510
|
+
const twoWays = [''];
|
|
4511
|
+
/**
|
|
4512
|
+
* Sankey Component
|
|
4513
|
+
* ```html
|
|
4514
|
+
* <ejs-sankey></ejs-sankey>
|
|
4515
|
+
* ```
|
|
4516
|
+
*/
|
|
4517
|
+
let SankeyComponent = class SankeyComponent extends Sankey {
|
|
4518
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
4519
|
+
super();
|
|
4520
|
+
this.ngEle = ngEle;
|
|
4521
|
+
this.srenderer = srenderer;
|
|
4522
|
+
this.viewContainerRef = viewContainerRef;
|
|
4523
|
+
this.injector = injector;
|
|
4524
|
+
this.tags = ['nodes', 'links'];
|
|
4525
|
+
this.element = this.ngEle.nativeElement;
|
|
4526
|
+
this.injectedModules = this.injectedModules || [];
|
|
4527
|
+
try {
|
|
4528
|
+
let mod = this.injector.get('ChartsSankeyLegend');
|
|
4529
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4530
|
+
this.injectedModules.push(mod);
|
|
4531
|
+
}
|
|
4532
|
+
}
|
|
4533
|
+
catch (_a) { }
|
|
4534
|
+
try {
|
|
4535
|
+
let mod = this.injector.get('ChartsSankeyTooltip');
|
|
4536
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4537
|
+
this.injectedModules.push(mod);
|
|
4538
|
+
}
|
|
4539
|
+
}
|
|
4540
|
+
catch (_b) { }
|
|
4541
|
+
try {
|
|
4542
|
+
let mod = this.injector.get('ChartsSankeyHighlight');
|
|
4543
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4544
|
+
this.injectedModules.push(mod);
|
|
4545
|
+
}
|
|
4546
|
+
}
|
|
4547
|
+
catch (_c) { }
|
|
4548
|
+
try {
|
|
4549
|
+
let mod = this.injector.get('ChartsSankeyExport');
|
|
4550
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
4551
|
+
this.injectedModules.push(mod);
|
|
4552
|
+
}
|
|
4553
|
+
}
|
|
4554
|
+
catch (_d) { }
|
|
4555
|
+
this.registerEvents(outputs);
|
|
4556
|
+
this.addTwoWay.call(this, twoWays);
|
|
4557
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
4558
|
+
this.context = new ComponentBase();
|
|
4559
|
+
}
|
|
4560
|
+
ngOnInit() {
|
|
4561
|
+
this.context.ngOnInit(this);
|
|
4562
|
+
}
|
|
4563
|
+
ngAfterViewInit() {
|
|
4564
|
+
this.context.ngAfterViewInit(this);
|
|
4565
|
+
}
|
|
4566
|
+
ngOnDestroy() {
|
|
4567
|
+
this.context.ngOnDestroy(this);
|
|
4568
|
+
}
|
|
4569
|
+
ngAfterContentChecked() {
|
|
4570
|
+
this.tagObjects[0].instance = this.childNodes;
|
|
4571
|
+
if (this.childLinks) {
|
|
4572
|
+
this.tagObjects[1].instance = this.childLinks;
|
|
4573
|
+
}
|
|
4574
|
+
this.context.ngAfterContentChecked(this);
|
|
4575
|
+
}
|
|
4576
|
+
};
|
|
4577
|
+
SankeyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
4578
|
+
SankeyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SankeyComponent, selector: "ejs-sankey", inputs: { accessibility: "accessibility", allowExport: "allowExport", animation: "animation", background: "background", backgroundImage: "backgroundImage", border: "border", enableExport: "enableExport", enablePersistence: "enablePersistence", enableRtl: "enableRtl", focusBorderColor: "focusBorderColor", focusBorderMargin: "focusBorderMargin", focusBorderWidth: "focusBorderWidth", height: "height", labelSettings: "labelSettings", legendSettings: "legendSettings", linkStyle: "linkStyle", links: "links", locale: "locale", margin: "margin", nodeStyle: "nodeStyle", nodes: "nodes", orientation: "orientation", subTitle: "subTitle", subTitleStyle: "subTitleStyle", theme: "theme", title: "title", titleStyle: "titleStyle", tooltip: "tooltip", width: "width" }, outputs: { afterExport: "afterExport", beforeExport: "beforeExport", beforePrint: "beforePrint", exportCompleted: "exportCompleted", labelRendering: "labelRendering", legendItemHover: "legendItemHover", legendItemRendering: "legendItemRendering", linkClick: "linkClick", linkEnter: "linkEnter", linkLeave: "linkLeave", linkRendering: "linkRendering", load: "load", loaded: "loaded", nodeClick: "nodeClick", nodeEnter: "nodeEnter", nodeLeave: "nodeLeave", nodeRendering: "nodeRendering", sizeChanged: "sizeChanged", tooltipRendering: "tooltipRendering" }, queries: [{ propertyName: "tooltip_sankeyNodeTemplate", first: true, predicate: ["tooltipSankeyNodeTemplate"], descendants: true }, { propertyName: "tooltip_sankeyLinkTemplate", first: true, predicate: ["tooltipSankeyLinkTemplate"], descendants: true }, { propertyName: "childNodes", first: true, predicate: SankeyNodesCollectionDirective, descendants: true }, { propertyName: "childLinks", first: true, predicate: SankeyLinksCollectionDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4579
|
+
__decorate([
|
|
4580
|
+
Template()
|
|
4581
|
+
], SankeyComponent.prototype, "tooltip_sankeyNodeTemplate", void 0);
|
|
4582
|
+
__decorate([
|
|
4583
|
+
Template()
|
|
4584
|
+
], SankeyComponent.prototype, "tooltip_sankeyLinkTemplate", void 0);
|
|
4585
|
+
SankeyComponent = __decorate([
|
|
4586
|
+
ComponentMixins([ComponentBase])
|
|
4587
|
+
], SankeyComponent);
|
|
4588
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyComponent, decorators: [{
|
|
4589
|
+
type: Component,
|
|
4590
|
+
args: [{
|
|
4591
|
+
selector: 'ejs-sankey',
|
|
4592
|
+
inputs: inputs,
|
|
4593
|
+
outputs: outputs,
|
|
4594
|
+
template: '',
|
|
4595
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4596
|
+
queries: {
|
|
4597
|
+
childNodes: new ContentChild(SankeyNodesCollectionDirective),
|
|
4598
|
+
childLinks: new ContentChild(SankeyLinksCollectionDirective)
|
|
4599
|
+
}
|
|
4600
|
+
}]
|
|
4601
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { tooltip_sankeyNodeTemplate: [{
|
|
4602
|
+
type: ContentChild,
|
|
4603
|
+
args: ['tooltipSankeyNodeTemplate']
|
|
4604
|
+
}], tooltip_sankeyLinkTemplate: [{
|
|
4605
|
+
type: ContentChild,
|
|
4606
|
+
args: ['tooltipSankeyLinkTemplate']
|
|
4607
|
+
}] } });
|
|
4608
|
+
|
|
4609
|
+
/**
|
|
4610
|
+
* NgModule definition for the Sankey component.
|
|
4611
|
+
*/
|
|
4612
|
+
class SankeyModule {
|
|
4613
|
+
}
|
|
4614
|
+
SankeyModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4615
|
+
SankeyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyModule, declarations: [SankeyComponent,
|
|
4616
|
+
SankeyNodeDirective,
|
|
4617
|
+
SankeyNodesCollectionDirective,
|
|
4618
|
+
SankeyLinkDirective,
|
|
4619
|
+
SankeyLinksCollectionDirective], imports: [CommonModule], exports: [SankeyComponent,
|
|
4620
|
+
SankeyNodeDirective,
|
|
4621
|
+
SankeyNodesCollectionDirective,
|
|
4622
|
+
SankeyLinkDirective,
|
|
4623
|
+
SankeyLinksCollectionDirective] });
|
|
4624
|
+
SankeyModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyModule, imports: [[CommonModule]] });
|
|
4625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyModule, decorators: [{
|
|
4626
|
+
type: NgModule,
|
|
4627
|
+
args: [{
|
|
4628
|
+
imports: [CommonModule],
|
|
4629
|
+
declarations: [
|
|
4630
|
+
SankeyComponent,
|
|
4631
|
+
SankeyNodeDirective,
|
|
4632
|
+
SankeyNodesCollectionDirective,
|
|
4633
|
+
SankeyLinkDirective,
|
|
4634
|
+
SankeyLinksCollectionDirective
|
|
4635
|
+
],
|
|
4636
|
+
exports: [
|
|
4637
|
+
SankeyComponent,
|
|
4638
|
+
SankeyNodeDirective,
|
|
4639
|
+
SankeyNodesCollectionDirective,
|
|
4640
|
+
SankeyLinkDirective,
|
|
4641
|
+
SankeyLinksCollectionDirective
|
|
4642
|
+
]
|
|
4643
|
+
}]
|
|
4644
|
+
}] });
|
|
4645
|
+
|
|
4646
|
+
const SankeyLegendService = { provide: 'ChartsSankeyLegend', useValue: SankeyLegend };
|
|
4647
|
+
const SankeyTooltipService = { provide: 'ChartsSankeyTooltip', useValue: SankeyTooltip };
|
|
4648
|
+
const SankeyHighlightService = { provide: 'ChartsSankeyHighlight', useValue: SankeyHighlight };
|
|
4649
|
+
const SankeyExportService = { provide: 'ChartsSankeyExport', useValue: SankeyExport };
|
|
4650
|
+
/**
|
|
4651
|
+
* NgModule definition for the Sankey component with providers.
|
|
4652
|
+
*/
|
|
4653
|
+
class SankeyAllModule {
|
|
4654
|
+
}
|
|
4655
|
+
SankeyAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4656
|
+
SankeyAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyAllModule, imports: [CommonModule, SankeyModule], exports: [SankeyModule] });
|
|
4657
|
+
SankeyAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyAllModule, providers: [
|
|
4658
|
+
SankeyLegendService,
|
|
4659
|
+
SankeyTooltipService,
|
|
4660
|
+
SankeyHighlightService,
|
|
4661
|
+
SankeyExportService
|
|
4662
|
+
], imports: [[CommonModule, SankeyModule], SankeyModule] });
|
|
4663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SankeyAllModule, decorators: [{
|
|
4664
|
+
type: NgModule,
|
|
4665
|
+
args: [{
|
|
4666
|
+
imports: [CommonModule, SankeyModule],
|
|
4667
|
+
exports: [
|
|
4668
|
+
SankeyModule
|
|
4669
|
+
],
|
|
4670
|
+
providers: [
|
|
4671
|
+
SankeyLegendService,
|
|
4672
|
+
SankeyTooltipService,
|
|
4673
|
+
SankeyHighlightService,
|
|
4674
|
+
SankeyExportService
|
|
4675
|
+
]
|
|
4676
|
+
}]
|
|
4677
|
+
}] });
|
|
4678
|
+
|
|
4371
4679
|
/**
|
|
4372
4680
|
* Generated bundle index. Do not edit.
|
|
4373
4681
|
*/
|
|
4374
4682
|
|
|
4375
|
-
export { AccumulationAnnotationDirective, AccumulationAnnotationService, AccumulationAnnotationsDirective, AccumulationChartAllModule, AccumulationChartComponent, AccumulationChartModule, AccumulationDataLabelService, AccumulationDistributionIndicatorService, AccumulationHighlightService, AccumulationLegendService, AccumulationSelectionService, AccumulationSeriesCollectionDirective, AccumulationSeriesDirective, AccumulationTooltipService, AnnotationDirective, AnnotationsDirective, AreaSeriesService, AtrIndicatorService, AxesDirective, AxisDirective, BarSeries3DService, BarSeriesService, BollingerBandsService, BoxAndWhiskerSeriesService, BubbleSeriesService, BulletChartAllModule, BulletChartComponent, BulletChartLegendService, BulletChartModule, BulletRangeCollectionDirective, BulletRangeDirective, BulletTooltipService, CandleSeriesService, CategoriesDirective, Category3DService, CategoryDirective, CategoryService, Chart3DAllModule, Chart3DAxesDirective, Chart3DAxisDirective, Chart3DColumnDirective, Chart3DColumnsDirective, Chart3DComponent, Chart3DModule, Chart3DRowDirective, Chart3DRowsDirective, Chart3DSelectedDataIndexDirective, Chart3DSelectedDataIndexesDirective, Chart3DSeriesCollectionDirective, Chart3DSeriesDirective, ChartAllModule, ChartAnnotationService, ChartComponent, ChartModule, CircularChart3DAllModule, CircularChart3DComponent, CircularChart3DModule, CircularChart3DSelectedDataIndexDirective, CircularChart3DSelectedDataIndexesDirective, CircularChart3DSeriesCollectionDirective, CircularChart3DSeriesDirective, CircularChartDataLabel3DService, CircularChartExport3DService, CircularChartHighlight3DService, CircularChartLegend3DService, CircularChartSelection3DService, CircularChartTooltip3DService, ColumnDirective, ColumnSeries3DService, ColumnSeriesService, ColumnsDirective, CrosshairService, DataEditingService, DataLabel3DService, DataLabelService, DateTime3DService, DateTimeCategory3DService, DateTimeCategoryService, DateTimeService, EmaIndicatorService, ErrorBarService, Export3DService, ExportService, FunnelSeriesService, Highlight3DService, HighlightService, HiloOpenCloseSeriesService, HiloSeriesService, HistogramSeriesService, IndicatorDirective, IndicatorsDirective, LastValueLabelService, Legend3DService, LegendService, LineSeriesService, Logarithmic3DService, LogarithmicService, MacdIndicatorService, MomentumIndicatorService, MultiColoredAreaSeriesService, MultiColoredLineSeriesService, MultiLevelLabelDirective, MultiLevelLabelService, MultiLevelLabelsDirective, ParetoSeriesService, PeriodSelectorService, PieSeries3DService, PieSeriesService, PolarSeriesService, PyramidSeriesService, RadarSeriesService, RangeAreaSeriesService, RangeBandSettingDirective, RangeBandSettingsDirective, RangeColorSettingDirective, RangeColorSettingsDirective, RangeColumnSeriesService, RangeNavigatorAllModule, RangeNavigatorComponent, RangeNavigatorModule, RangeStepAreaSeriesService, RangeTooltipService, RangenavigatorSeriesCollectionDirective, RangenavigatorSeriesDirective, RowDirective, RowsDirective, RsiIndicatorService, ScatterSeriesService, ScrollBarService, SegmentDirective, SegmentsDirective, SelectedDataIndexDirective, SelectedDataIndexesDirective, Selection3DService, SelectionService, SeriesCollectionDirective, SeriesDirective, SmaIndicatorService, SmithchartAllModule, SmithchartComponent, SmithchartLegendService, SmithchartModule, SmithchartSeriesCollectionDirective, SmithchartSeriesDirective, SparklineAllModule, SparklineComponent, SparklineModule, SparklineTooltipService, SplineAreaSeriesService, SplineRangeAreaSeriesService, SplineSeriesService, StackingAreaSeriesService, StackingBarSeries3DService, StackingBarSeriesService, StackingColumnSeries3DService, StackingColumnSeriesService, StackingLineSeriesService, StackingStepAreaSeriesService, StepAreaSeriesService, StepLineSeriesService, StochasticIndicatorService, StockChartAllModule, StockChartAnnotationDirective, StockChartAnnotationsDirective, StockChartAxesDirective, StockChartAxisDirective, StockChartComponent, StockChartIndicatorDirective, StockChartIndicatorsDirective, StockChartModule, StockChartPeriodDirective, StockChartPeriodsDirective, StockChartRowDirective, StockChartRowsDirective, StockChartSelectedDataIndexDirective, StockChartSelectedDataIndexesDirective, StockChartSeriesCollectionDirective, StockChartSeriesDirective, StockChartTrendlineDirective, StockChartTrendlinesDirective, StockEventDirective, StockEventsDirective, StockLegendService, StripLineDirective, StripLineService, StripLinesDirective, TmaIndicatorService, Tooltip3DService, TooltipRenderService, TooltipService, TrendlineDirective, TrendlinesDirective, TrendlinesService, WaterfallSeriesService, ZoomService };
|
|
4683
|
+
export { AccumulationAnnotationDirective, AccumulationAnnotationService, AccumulationAnnotationsDirective, AccumulationChartAllModule, AccumulationChartComponent, AccumulationChartModule, AccumulationDataLabelService, AccumulationDistributionIndicatorService, AccumulationHighlightService, AccumulationLegendService, AccumulationSelectionService, AccumulationSeriesCollectionDirective, AccumulationSeriesDirective, AccumulationTooltipService, AnnotationDirective, AnnotationsDirective, AreaSeriesService, AtrIndicatorService, AxesDirective, AxisDirective, BarSeries3DService, BarSeriesService, BollingerBandsService, BoxAndWhiskerSeriesService, BubbleSeriesService, BulletChartAllModule, BulletChartComponent, BulletChartLegendService, BulletChartModule, BulletRangeCollectionDirective, BulletRangeDirective, BulletTooltipService, CandleSeriesService, CategoriesDirective, Category3DService, CategoryDirective, CategoryService, Chart3DAllModule, Chart3DAxesDirective, Chart3DAxisDirective, Chart3DColumnDirective, Chart3DColumnsDirective, Chart3DComponent, Chart3DModule, Chart3DRowDirective, Chart3DRowsDirective, Chart3DSelectedDataIndexDirective, Chart3DSelectedDataIndexesDirective, Chart3DSeriesCollectionDirective, Chart3DSeriesDirective, ChartAllModule, ChartAnnotationService, ChartComponent, ChartModule, CircularChart3DAllModule, CircularChart3DComponent, CircularChart3DModule, CircularChart3DSelectedDataIndexDirective, CircularChart3DSelectedDataIndexesDirective, CircularChart3DSeriesCollectionDirective, CircularChart3DSeriesDirective, CircularChartDataLabel3DService, CircularChartExport3DService, CircularChartHighlight3DService, CircularChartLegend3DService, CircularChartSelection3DService, CircularChartTooltip3DService, ColumnDirective, ColumnSeries3DService, ColumnSeriesService, ColumnsDirective, CrosshairService, DataEditingService, DataLabel3DService, DataLabelService, DateTime3DService, DateTimeCategory3DService, DateTimeCategoryService, DateTimeService, EmaIndicatorService, ErrorBarService, Export3DService, ExportService, FunnelSeriesService, Highlight3DService, HighlightService, HiloOpenCloseSeriesService, HiloSeriesService, HistogramSeriesService, IndicatorDirective, IndicatorsDirective, LastValueLabelService, Legend3DService, LegendService, LineSeriesService, Logarithmic3DService, LogarithmicService, MacdIndicatorService, MomentumIndicatorService, MultiColoredAreaSeriesService, MultiColoredLineSeriesService, MultiLevelLabelDirective, MultiLevelLabelService, MultiLevelLabelsDirective, ParetoSeriesService, PeriodSelectorService, PieSeries3DService, PieSeriesService, PolarSeriesService, PyramidSeriesService, RadarSeriesService, RangeAreaSeriesService, RangeBandSettingDirective, RangeBandSettingsDirective, RangeColorSettingDirective, RangeColorSettingsDirective, RangeColumnSeriesService, RangeNavigatorAllModule, RangeNavigatorComponent, RangeNavigatorModule, RangeStepAreaSeriesService, RangeTooltipService, RangenavigatorSeriesCollectionDirective, RangenavigatorSeriesDirective, RowDirective, RowsDirective, RsiIndicatorService, SankeyAllModule, SankeyComponent, SankeyExportService, SankeyHighlightService, SankeyLegendService, SankeyLinkDirective, SankeyLinksCollectionDirective, SankeyModule, SankeyNodeDirective, SankeyNodesCollectionDirective, SankeyTooltipService, ScatterSeriesService, ScrollBarService, SegmentDirective, SegmentsDirective, SelectedDataIndexDirective, SelectedDataIndexesDirective, Selection3DService, SelectionService, SeriesCollectionDirective, SeriesDirective, SeriesLabelService, SmaIndicatorService, SmithchartAllModule, SmithchartComponent, SmithchartLegendService, SmithchartModule, SmithchartSeriesCollectionDirective, SmithchartSeriesDirective, SparklineAllModule, SparklineComponent, SparklineModule, SparklineTooltipService, SplineAreaSeriesService, SplineRangeAreaSeriesService, SplineSeriesService, StackingAreaSeriesService, StackingBarSeries3DService, StackingBarSeriesService, StackingColumnSeries3DService, StackingColumnSeriesService, StackingLineSeriesService, StackingStepAreaSeriesService, StepAreaSeriesService, StepLineSeriesService, StochasticIndicatorService, StockChartAllModule, StockChartAnnotationDirective, StockChartAnnotationsDirective, StockChartAxesDirective, StockChartAxisDirective, StockChartComponent, StockChartIndicatorDirective, StockChartIndicatorsDirective, StockChartModule, StockChartPeriodDirective, StockChartPeriodsDirective, StockChartRowDirective, StockChartRowsDirective, StockChartSelectedDataIndexDirective, StockChartSelectedDataIndexesDirective, StockChartSeriesCollectionDirective, StockChartSeriesDirective, StockChartTrendlineDirective, StockChartTrendlinesDirective, StockEventDirective, StockEventsDirective, StockLegendService, StripLineDirective, StripLineService, StripLinesDirective, TmaIndicatorService, Tooltip3DService, TooltipRenderService, TooltipService, TrendlineDirective, TrendlinesDirective, TrendlinesService, WaterfallSeriesService, ZoomService };
|
|
4376
4684
|
//# sourceMappingURL=syncfusion-ej2-angular-charts.mjs.map
|