@covalent/echarts 4.0.0-beta.4 → 4.1.0-develop.4
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/README.md +4 -90
- package/bar/README.md +23 -21
- package/bar/bar.component.d.ts +27 -27
- package/bar/covalent-echarts-bar.d.ts +1 -1
- package/bar/{public-api.d.ts → public_api.d.ts} +0 -0
- package/base/README.md +26 -26
- package/base/axis/axis.component.d.ts +29 -29
- package/base/chart.component.d.ts +3 -3
- package/base/covalent-echarts-base.d.ts +1 -1
- package/base/dataset/dataset.component.d.ts +5 -5
- package/base/{public-api.d.ts → public_api.d.ts} +0 -0
- package/base/series/series.component.d.ts +15 -15
- package/base/{axis → src/axis}/README.md +19 -19
- package/base/{dataset → src/dataset}/README.md +19 -16
- package/covalent-echarts.d.ts +1 -1
- package/esm2020/bar/bar.component.mjs +95 -96
- package/esm2020/bar/bar.module.mjs +12 -13
- package/esm2020/bar/covalent-echarts-bar.mjs +2 -2
- package/esm2020/bar/public_api.mjs +3 -0
- package/esm2020/base/axis/axis.component.mjs +66 -66
- package/esm2020/base/axis/axis.interface.mjs +1 -1
- package/esm2020/base/axis/x-axis.component.mjs +45 -45
- package/esm2020/base/axis/y-axis.component.mjs +45 -45
- package/esm2020/base/base.module.mjs +13 -14
- package/esm2020/base/base.types.mjs +1 -1
- package/esm2020/base/chart-options.service.mjs +6 -6
- package/esm2020/base/chart.component.mjs +42 -38
- package/esm2020/base/covalent-echarts-base.mjs +2 -2
- package/esm2020/base/dataset/dataset.component.mjs +22 -22
- package/esm2020/base/public_api.mjs +10 -0
- package/esm2020/base/series/series.component.mjs +34 -34
- package/esm2020/base/series/series.interface.mjs +1 -1
- package/esm2020/base/themes/aqua-splash.mjs +31 -4
- package/esm2020/base/themes/california-coast.mjs +1 -1
- package/esm2020/base/themes/hawaiian-sunrise.mjs +1 -1
- package/esm2020/base/themes/passion-flower.mjs +1 -1
- package/esm2020/base/themes/razzleberry-pie.mjs +31 -4
- package/esm2020/base/themes/teradata-classic.mjs +31 -4
- package/esm2020/base/themes/teradata-default.mjs +1 -1
- package/esm2020/base/themes/urban-sunrise.mjs +1 -1
- package/esm2020/base/themes/volcanic-eruption.mjs +1 -1
- package/esm2020/base/utils/assign-defined.mjs +1 -1
- package/esm2020/base/utils/echarts.mjs +1 -1
- package/esm2020/base/utils/index.mjs +1 -1
- package/esm2020/covalent-echarts.mjs +2 -2
- package/esm2020/graph/covalent-echarts-graph.mjs +2 -2
- package/esm2020/graph/graph.component.mjs +129 -130
- package/esm2020/graph/graph.module.mjs +15 -14
- package/esm2020/graph/public_api.mjs +3 -0
- package/esm2020/line/covalent-echarts-line.mjs +2 -2
- package/esm2020/line/line.component.mjs +111 -112
- package/esm2020/line/line.module.mjs +12 -13
- package/esm2020/line/public_api.mjs +3 -0
- package/esm2020/map/covalent-echarts-map.mjs +2 -2
- package/esm2020/map/map.component.mjs +93 -94
- package/esm2020/map/map.module.mjs +12 -13
- package/esm2020/map/public_api.mjs +3 -0
- package/esm2020/pie/covalent-echarts-pie.mjs +2 -2
- package/esm2020/pie/pie.component.mjs +91 -92
- package/esm2020/pie/pie.module.mjs +12 -13
- package/esm2020/pie/public_api.mjs +3 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/sankey/covalent-echarts-sankey.mjs +2 -2
- package/esm2020/sankey/public_api.mjs +3 -0
- package/esm2020/sankey/sankey.component.mjs +83 -84
- package/esm2020/sankey/sankey.module.mjs +15 -14
- package/esm2020/scatter/covalent-echarts-scatter.mjs +2 -2
- package/esm2020/scatter/public_api.mjs +3 -0
- package/esm2020/scatter/scatter.component.mjs +101 -102
- package/esm2020/scatter/scatter.module.mjs +15 -14
- package/esm2020/toolbox/covalent-echarts-toolbox.mjs +2 -2
- package/esm2020/toolbox/public_api.mjs +3 -0
- package/esm2020/toolbox/toolbox.component.mjs +60 -76
- package/esm2020/toolbox/toolbox.module.mjs +19 -15
- package/esm2020/tooltip/covalent-echarts-tooltip.mjs +2 -2
- package/esm2020/tooltip/public_api.mjs +4 -0
- package/esm2020/tooltip/series-tooltip.component.mjs +40 -49
- package/esm2020/tooltip/tooltip.component.mjs +71 -80
- package/esm2020/tooltip/tooltip.module.mjs +14 -15
- package/esm2020/tree/covalent-echarts-tree.mjs +2 -2
- package/esm2020/tree/public_api.mjs +3 -0
- package/esm2020/tree/tree.component.mjs +83 -84
- package/esm2020/tree/tree.module.mjs +12 -13
- package/esm2020/treemap/covalent-echarts-treemap.mjs +2 -2
- package/esm2020/treemap/public_api.mjs +3 -0
- package/esm2020/treemap/treemap.component.mjs +107 -108
- package/esm2020/treemap/treemap.module.mjs +15 -14
- package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +2 -2
- package/esm2020/wordcloud/public_api.mjs +3 -0
- package/esm2020/wordcloud/wordcloud.component.mjs +68 -69
- package/esm2020/wordcloud/wordcloud.module.mjs +15 -14
- package/fesm2015/covalent-echarts-bar.mjs +16 -22
- package/fesm2015/covalent-echarts-bar.mjs.map +1 -1
- package/fesm2015/covalent-echarts-base.mjs +148 -81
- package/fesm2015/covalent-echarts-base.mjs.map +1 -1
- package/fesm2015/covalent-echarts-graph.mjs +19 -23
- package/fesm2015/covalent-echarts-graph.mjs.map +1 -1
- package/fesm2015/covalent-echarts-line.mjs +16 -22
- package/fesm2015/covalent-echarts-line.mjs.map +1 -1
- package/fesm2015/covalent-echarts-map.mjs +16 -22
- package/fesm2015/covalent-echarts-map.mjs.map +1 -1
- package/fesm2015/covalent-echarts-pie.mjs +16 -22
- package/fesm2015/covalent-echarts-pie.mjs.map +1 -1
- package/fesm2015/covalent-echarts-sankey.mjs +19 -23
- package/fesm2015/covalent-echarts-sankey.mjs.map +1 -1
- package/fesm2015/covalent-echarts-scatter.mjs +19 -23
- package/fesm2015/covalent-echarts-scatter.mjs.map +1 -1
- package/fesm2015/covalent-echarts-toolbox.mjs +23 -49
- package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -1
- package/fesm2015/covalent-echarts-tooltip.mjs +43 -90
- package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -1
- package/fesm2015/covalent-echarts-tree.mjs +16 -22
- package/fesm2015/covalent-echarts-tree.mjs.map +1 -1
- package/fesm2015/covalent-echarts-treemap.mjs +19 -23
- package/fesm2015/covalent-echarts-treemap.mjs.map +1 -1
- package/fesm2015/covalent-echarts-wordcloud.mjs +19 -23
- package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -1
- package/fesm2015/covalent-echarts.mjs.map +1 -1
- package/fesm2020/covalent-echarts-bar.mjs +104 -106
- package/fesm2020/covalent-echarts-bar.mjs.map +1 -1
- package/fesm2020/covalent-echarts-base.mjs +353 -269
- package/fesm2020/covalent-echarts-base.mjs.map +1 -1
- package/fesm2020/covalent-echarts-graph.mjs +141 -141
- package/fesm2020/covalent-echarts-graph.mjs.map +1 -1
- package/fesm2020/covalent-echarts-line.mjs +120 -122
- package/fesm2020/covalent-echarts-line.mjs.map +1 -1
- package/fesm2020/covalent-echarts-map.mjs +102 -104
- package/fesm2020/covalent-echarts-map.mjs.map +1 -1
- package/fesm2020/covalent-echarts-pie.mjs +100 -102
- package/fesm2020/covalent-echarts-pie.mjs.map +1 -1
- package/fesm2020/covalent-echarts-sankey.mjs +95 -95
- package/fesm2020/covalent-echarts-sankey.mjs.map +1 -1
- package/fesm2020/covalent-echarts-scatter.mjs +113 -113
- package/fesm2020/covalent-echarts-scatter.mjs.map +1 -1
- package/fesm2020/covalent-echarts-toolbox.mjs +76 -88
- package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -1
- package/fesm2020/covalent-echarts-tooltip.mjs +120 -139
- package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -1
- package/fesm2020/covalent-echarts-tree.mjs +92 -94
- package/fesm2020/covalent-echarts-tree.mjs.map +1 -1
- package/fesm2020/covalent-echarts-treemap.mjs +119 -119
- package/fesm2020/covalent-echarts-treemap.mjs.map +1 -1
- package/fesm2020/covalent-echarts-wordcloud.mjs +79 -79
- package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -1
- package/fesm2020/covalent-echarts.mjs.map +1 -1
- package/graph/README.md +21 -19
- package/graph/covalent-echarts-graph.d.ts +1 -1
- package/graph/graph.component.d.ts +60 -60
- package/graph/{public-api.d.ts → public_api.d.ts} +0 -0
- package/line/README.md +19 -21
- package/line/covalent-echarts-line.d.ts +1 -1
- package/line/line.component.d.ts +35 -35
- package/line/{public-api.d.ts → public_api.d.ts} +0 -0
- package/map/README.md +19 -17
- package/map/covalent-echarts-map.d.ts +1 -1
- package/map/map.component.d.ts +27 -27
- package/map/{public-api.d.ts → public_api.d.ts} +0 -0
- package/package.json +11 -31
- package/pie/README.md +17 -15
- package/pie/covalent-echarts-pie.d.ts +1 -1
- package/pie/pie.component.d.ts +26 -26
- package/pie/{public-api.d.ts → public_api.d.ts} +0 -0
- package/{index.d.ts → public_api.d.ts} +0 -0
- package/sankey/README.md +22 -20
- package/sankey/covalent-echarts-sankey.d.ts +1 -1
- package/sankey/{public-api.d.ts → public_api.d.ts} +0 -0
- package/sankey/sankey.component.d.ts +22 -22
- package/scatter/README.md +19 -21
- package/scatter/covalent-echarts-scatter.d.ts +1 -1
- package/scatter/{public-api.d.ts → public_api.d.ts} +0 -0
- package/scatter/scatter.component.d.ts +31 -31
- package/toolbox/README.md +12 -11
- package/toolbox/covalent-echarts-toolbox.d.ts +1 -1
- package/toolbox/{public-api.d.ts → public_api.d.ts} +0 -0
- package/toolbox/toolbox.component.d.ts +10 -10
- package/tooltip/README.md +30 -26
- package/tooltip/covalent-echarts-tooltip.d.ts +1 -1
- package/tooltip/{public-api.d.ts → public_api.d.ts} +0 -0
- package/tooltip/series-tooltip.component.d.ts +11 -9
- package/tooltip/tooltip.component.d.ts +16 -16
- package/tree/README.md +20 -18
- package/tree/covalent-echarts-tree.d.ts +1 -1
- package/tree/{public-api.d.ts → public_api.d.ts} +0 -0
- package/tree/tree.component.d.ts +24 -24
- package/treemap/README.md +23 -21
- package/treemap/covalent-echarts-treemap.d.ts +1 -1
- package/treemap/{public-api.d.ts → public_api.d.ts} +0 -0
- package/treemap/treemap.component.d.ts +37 -37
- package/wordcloud/README.md +25 -23
- package/wordcloud/covalent-echarts-wordcloud.d.ts +1 -1
- package/wordcloud/{public-api.d.ts → public_api.d.ts} +0 -0
- package/wordcloud/wordcloud.component.d.ts +14 -14
- package/bar/index.d.ts +0 -1
- package/base/chart.component.scss +0 -4
- package/base/index.d.ts +0 -1
- package/esm2020/bar/index.mjs +0 -2
- package/esm2020/bar/public-api.mjs +0 -3
- package/esm2020/base/index.mjs +0 -2
- package/esm2020/base/public-api.mjs +0 -10
- package/esm2020/graph/index.mjs +0 -2
- package/esm2020/graph/public-api.mjs +0 -3
- package/esm2020/index.mjs +0 -2
- package/esm2020/line/index.mjs +0 -2
- package/esm2020/line/public-api.mjs +0 -3
- package/esm2020/map/index.mjs +0 -2
- package/esm2020/map/public-api.mjs +0 -3
- package/esm2020/pie/index.mjs +0 -2
- package/esm2020/pie/public-api.mjs +0 -3
- package/esm2020/sankey/index.mjs +0 -2
- package/esm2020/sankey/public-api.mjs +0 -3
- package/esm2020/scatter/index.mjs +0 -2
- package/esm2020/scatter/public-api.mjs +0 -3
- package/esm2020/toolbox/index.mjs +0 -2
- package/esm2020/toolbox/public-api.mjs +0 -3
- package/esm2020/tooltip/index.mjs +0 -2
- package/esm2020/tooltip/public-api.mjs +0 -4
- package/esm2020/tree/index.mjs +0 -2
- package/esm2020/tree/public-api.mjs +0 -3
- package/esm2020/treemap/index.mjs +0 -2
- package/esm2020/treemap/public-api.mjs +0 -3
- package/esm2020/wordcloud/index.mjs +0 -2
- package/esm2020/wordcloud/public-api.mjs +0 -3
- package/graph/index.d.ts +0 -1
- package/line/index.d.ts +0 -1
- package/map/index.d.ts +0 -1
- package/pie/index.d.ts +0 -1
- package/sankey/index.d.ts +0 -1
- package/scatter/index.d.ts +0 -1
- package/toolbox/index.d.ts +0 -1
- package/tooltip/index.d.ts +0 -1
- package/tree/index.d.ts +0 -1
- package/treemap/index.d.ts +0 -1
- package/wordcloud/index.d.ts +0 -1
|
@@ -51,11 +51,11 @@ class TdChartOptionsService {
|
|
|
51
51
|
return this._optionsSubject.asObservable();
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
(
|
|
57
|
-
|
|
58
|
-
|
|
54
|
+
TdChartOptionsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartOptionsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
55
|
+
TdChartOptionsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartOptionsService });
|
|
56
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartOptionsService, decorators: [{
|
|
57
|
+
type: Injectable
|
|
58
|
+
}] });
|
|
59
59
|
function CHART_PROVIDER_FACTORY(parent) {
|
|
60
60
|
return parent || new TdChartOptionsService();
|
|
61
61
|
}
|
|
@@ -93,7 +93,16 @@ function assignDefined(target, ...sources) {
|
|
|
93
93
|
|
|
94
94
|
/* tslint:disable */
|
|
95
95
|
var aquaSplash = {
|
|
96
|
-
color: [
|
|
96
|
+
color: [
|
|
97
|
+
'#305b9e',
|
|
98
|
+
'#0076a9',
|
|
99
|
+
'#1d8daa',
|
|
100
|
+
'#51a2a8',
|
|
101
|
+
'#7fb5aa',
|
|
102
|
+
'#aac6b4',
|
|
103
|
+
'#CFD8C8',
|
|
104
|
+
'#ECEBE4',
|
|
105
|
+
],
|
|
97
106
|
backgroundColor: 'transparent',
|
|
98
107
|
textStyle: {},
|
|
99
108
|
title: {
|
|
@@ -263,7 +272,16 @@ var aquaSplash = {
|
|
|
263
272
|
symbolSize: '6',
|
|
264
273
|
symbol: 'emptyCircle',
|
|
265
274
|
smooth: true,
|
|
266
|
-
color: [
|
|
275
|
+
color: [
|
|
276
|
+
'#305b9e',
|
|
277
|
+
'#0076a9',
|
|
278
|
+
'#1d8daa',
|
|
279
|
+
'#51a2a8',
|
|
280
|
+
'#7fb5aa',
|
|
281
|
+
'#aac6b4',
|
|
282
|
+
'#CFD8C8',
|
|
283
|
+
'#ECEBE4',
|
|
284
|
+
],
|
|
267
285
|
label: {
|
|
268
286
|
normal: {
|
|
269
287
|
textStyle: {
|
|
@@ -523,7 +541,16 @@ var aquaSplash = {
|
|
|
523
541
|
},
|
|
524
542
|
},
|
|
525
543
|
visualMap: {
|
|
526
|
-
color: [
|
|
544
|
+
color: [
|
|
545
|
+
'#305b9e',
|
|
546
|
+
'#0076a9',
|
|
547
|
+
'#1d8daa',
|
|
548
|
+
'#51a2a8',
|
|
549
|
+
'#7fb5aa',
|
|
550
|
+
'#aac6b4',
|
|
551
|
+
'#CFD8C8',
|
|
552
|
+
'#ECEBE4',
|
|
553
|
+
],
|
|
527
554
|
},
|
|
528
555
|
dataZoom: {
|
|
529
556
|
backgroundColor: 'rgba(255,255,255,0)',
|
|
@@ -1933,7 +1960,16 @@ var passionFlower = {
|
|
|
1933
1960
|
|
|
1934
1961
|
/* tslint:disable */
|
|
1935
1962
|
var razzleberryPie = {
|
|
1936
|
-
color: [
|
|
1963
|
+
color: [
|
|
1964
|
+
'#523e85',
|
|
1965
|
+
'#8b4f8f',
|
|
1966
|
+
'#b96595',
|
|
1967
|
+
'#e0829a',
|
|
1968
|
+
'#ffa3a2',
|
|
1969
|
+
'#f9b8a3',
|
|
1970
|
+
'#f1ccb1',
|
|
1971
|
+
'#ebddc8',
|
|
1972
|
+
],
|
|
1937
1973
|
backgroundColor: 'transparent',
|
|
1938
1974
|
textStyle: {},
|
|
1939
1975
|
title: {
|
|
@@ -2103,7 +2139,16 @@ var razzleberryPie = {
|
|
|
2103
2139
|
symbolSize: '6',
|
|
2104
2140
|
symbol: 'emptyCircle',
|
|
2105
2141
|
smooth: true,
|
|
2106
|
-
color: [
|
|
2142
|
+
color: [
|
|
2143
|
+
'#523e85',
|
|
2144
|
+
'#8b4f8f',
|
|
2145
|
+
'#b96595',
|
|
2146
|
+
'#e0829a',
|
|
2147
|
+
'#ffa3a2',
|
|
2148
|
+
'#f9b8a3',
|
|
2149
|
+
'#f1ccb1',
|
|
2150
|
+
'#ebddc8',
|
|
2151
|
+
],
|
|
2107
2152
|
label: {
|
|
2108
2153
|
normal: {
|
|
2109
2154
|
textStyle: {
|
|
@@ -2363,7 +2408,16 @@ var razzleberryPie = {
|
|
|
2363
2408
|
},
|
|
2364
2409
|
},
|
|
2365
2410
|
visualMap: {
|
|
2366
|
-
color: [
|
|
2411
|
+
color: [
|
|
2412
|
+
'#523e85',
|
|
2413
|
+
'#8b4f8f',
|
|
2414
|
+
'#b96595',
|
|
2415
|
+
'#e0829a',
|
|
2416
|
+
'#ffa3a2',
|
|
2417
|
+
'#f9b8a3',
|
|
2418
|
+
'#f1ccb1',
|
|
2419
|
+
'#ebddc8',
|
|
2420
|
+
],
|
|
2367
2421
|
},
|
|
2368
2422
|
dataZoom: {
|
|
2369
2423
|
backgroundColor: 'rgba(255,255,255,0)',
|
|
@@ -2393,7 +2447,16 @@ var razzleberryPie = {
|
|
|
2393
2447
|
|
|
2394
2448
|
/* tslint:disable */
|
|
2395
2449
|
var teradataClassic = {
|
|
2396
|
-
color: [
|
|
2450
|
+
color: [
|
|
2451
|
+
'#005e7d',
|
|
2452
|
+
'#c54b17',
|
|
2453
|
+
'#009392',
|
|
2454
|
+
'#f5bb3c',
|
|
2455
|
+
'#0098c9',
|
|
2456
|
+
'#f58b5e',
|
|
2457
|
+
'#59cecd',
|
|
2458
|
+
'#fee2a6',
|
|
2459
|
+
],
|
|
2397
2460
|
backgroundColor: 'transparent',
|
|
2398
2461
|
textStyle: {},
|
|
2399
2462
|
title: {
|
|
@@ -2563,7 +2626,16 @@ var teradataClassic = {
|
|
|
2563
2626
|
symbolSize: '6',
|
|
2564
2627
|
symbol: 'emptyCircle',
|
|
2565
2628
|
smooth: true,
|
|
2566
|
-
color: [
|
|
2629
|
+
color: [
|
|
2630
|
+
'#005e7d',
|
|
2631
|
+
'#c54b17',
|
|
2632
|
+
'#009392',
|
|
2633
|
+
'#f5bb3c',
|
|
2634
|
+
'#0098c9',
|
|
2635
|
+
'#f58b5e',
|
|
2636
|
+
'#59cecd',
|
|
2637
|
+
'#fee2a6',
|
|
2638
|
+
],
|
|
2567
2639
|
label: {
|
|
2568
2640
|
normal: {
|
|
2569
2641
|
textStyle: {
|
|
@@ -2823,7 +2895,16 @@ var teradataClassic = {
|
|
|
2823
2895
|
},
|
|
2824
2896
|
},
|
|
2825
2897
|
visualMap: {
|
|
2826
|
-
color: [
|
|
2898
|
+
color: [
|
|
2899
|
+
'#005e7d',
|
|
2900
|
+
'#c54b17',
|
|
2901
|
+
'#009392',
|
|
2902
|
+
'#f5bb3c',
|
|
2903
|
+
'#0098c9',
|
|
2904
|
+
'#f58b5e',
|
|
2905
|
+
'#59cecd',
|
|
2906
|
+
'#fee2a6',
|
|
2907
|
+
],
|
|
2827
2908
|
},
|
|
2828
2909
|
dataZoom: {
|
|
2829
2910
|
backgroundColor: 'rgba(255,255,255,0)',
|
|
@@ -4315,7 +4396,7 @@ class TdChartComponent {
|
|
|
4315
4396
|
ngOnChanges(changes) {
|
|
4316
4397
|
if (this._instance) {
|
|
4317
4398
|
// destroy and reinitialize chart only when `renderer`, `themeName` and `group` changes
|
|
4318
|
-
if (changes
|
|
4399
|
+
if (changes['renderer'] || changes['themeName'] || changes['group']) {
|
|
4319
4400
|
this._disposeChart();
|
|
4320
4401
|
this._initializeChart();
|
|
4321
4402
|
}
|
|
@@ -4335,12 +4416,16 @@ class TdChartComponent {
|
|
|
4335
4416
|
show: true,
|
|
4336
4417
|
left: '20',
|
|
4337
4418
|
right: '20',
|
|
4338
|
-
bottom: (this.config.toolbox &&
|
|
4339
|
-
|
|
4419
|
+
bottom: (this.config.toolbox &&
|
|
4420
|
+
typeof this.config.toolbox.bottom === 'number') ||
|
|
4421
|
+
(this._options.toolbox &&
|
|
4422
|
+
typeof this._options.toolbox.bottom === 'number')
|
|
4340
4423
|
? '40'
|
|
4341
4424
|
: '10',
|
|
4342
|
-
top: (this.config.toolbox &&
|
|
4343
|
-
|
|
4425
|
+
top: (this.config.toolbox &&
|
|
4426
|
+
typeof this.config.toolbox.top === 'number') ||
|
|
4427
|
+
(this._options.toolbox &&
|
|
4428
|
+
typeof this._options.toolbox.top === 'number')
|
|
4344
4429
|
? '40'
|
|
4345
4430
|
: '10',
|
|
4346
4431
|
containLabel: true,
|
|
@@ -4350,7 +4435,7 @@ class TdChartComponent {
|
|
|
4350
4435
|
}
|
|
4351
4436
|
}
|
|
4352
4437
|
_initializeChart() {
|
|
4353
|
-
this._instance = echarts.init(this._elementRef.nativeElement, this.themeName, {
|
|
4438
|
+
this._instance = echarts.init(this._elementRef.nativeElement, this.themeName ?? '', {
|
|
4354
4439
|
renderer: this.renderer,
|
|
4355
4440
|
});
|
|
4356
4441
|
fromEvent(this._instance, 'click')
|
|
@@ -4413,8 +4498,8 @@ class TdChartComponent {
|
|
|
4413
4498
|
.pipe(takeUntil(this._destroy))
|
|
4414
4499
|
.subscribe(() => {
|
|
4415
4500
|
if (this._elementRef && this._elementRef.nativeElement) {
|
|
4416
|
-
this._widthSubject.next(this._elementRef.nativeElement.getBoundingClientRect().width);
|
|
4417
|
-
this._heightSubject.next(this._elementRef.nativeElement.getBoundingClientRect().height);
|
|
4501
|
+
this._widthSubject.next((this._elementRef.nativeElement).getBoundingClientRect().width);
|
|
4502
|
+
this._heightSubject.next((this._elementRef.nativeElement).getBoundingClientRect().height);
|
|
4418
4503
|
}
|
|
4419
4504
|
});
|
|
4420
4505
|
}
|
|
@@ -4426,34 +4511,34 @@ class TdChartComponent {
|
|
|
4426
4511
|
this._destroy.next(true);
|
|
4427
4512
|
}
|
|
4428
4513
|
}
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
(
|
|
4432
|
-
|
|
4433
|
-
|
|
4434
|
-
|
|
4435
|
-
|
|
4436
|
-
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
|
|
4514
|
+
TdChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4515
|
+
TdChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdChartComponent, selector: "td-chart", inputs: { config: "config", group: "group", themeName: "themeName", renderer: "renderer" }, outputs: { chartClick: "chartClick", chartDblclick: "chartDblclick", chartContextmenu: "chartContextmenu", magicTypeChanged: "magicTypeChanged", dataViewChanged: "dataViewChanged", datazoom: "datazoom", restore: "restore" }, providers: [CHART_PROVIDER], usesOnChanges: true, ngImport: i0, template: '', isInline: true, styles: [":host{display:block;width:100%}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartComponent, decorators: [{
|
|
4517
|
+
type: Component,
|
|
4518
|
+
args: [{ selector: 'td-chart', template: '', changeDetection: ChangeDetectionStrategy.OnPush, providers: [CHART_PROVIDER], styles: [":host{display:block;width:100%}\n"] }]
|
|
4519
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: TdChartOptionsService }]; }, propDecorators: { config: [{
|
|
4520
|
+
type: Input
|
|
4521
|
+
}], group: [{
|
|
4522
|
+
type: Input
|
|
4523
|
+
}], themeName: [{
|
|
4524
|
+
type: Input
|
|
4525
|
+
}], renderer: [{
|
|
4526
|
+
type: Input
|
|
4527
|
+
}], chartClick: [{
|
|
4528
|
+
type: Output
|
|
4529
|
+
}], chartDblclick: [{
|
|
4530
|
+
type: Output
|
|
4531
|
+
}], chartContextmenu: [{
|
|
4532
|
+
type: Output
|
|
4533
|
+
}], magicTypeChanged: [{
|
|
4534
|
+
type: Output
|
|
4535
|
+
}], dataViewChanged: [{
|
|
4536
|
+
type: Output
|
|
4537
|
+
}], datazoom: [{
|
|
4538
|
+
type: Output
|
|
4539
|
+
}], restore: [{
|
|
4540
|
+
type: Output
|
|
4541
|
+
}] } });
|
|
4457
4542
|
|
|
4458
4543
|
class TdChartAxisDirective {
|
|
4459
4544
|
constructor(_axisOption, _optionsService) {
|
|
@@ -4511,171 +4596,171 @@ class TdChartAxisDirective {
|
|
|
4511
4596
|
this._optionsService.clearOption(this._axisOption);
|
|
4512
4597
|
}
|
|
4513
4598
|
}
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
(
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
|
|
4563
|
-
|
|
4564
|
-
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4599
|
+
TdChartAxisDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartAxisDirective, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
4600
|
+
TdChartAxisDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: TdChartAxisDirective, inputs: { config: "config", id: "id", show: "show", gridIndex: "gridIndex", offset: "offset", type: "type", name: "name", nameLocation: "nameLocation", nameTextStyle: "nameTextStyle", nameGap: "nameGap", nameRotate: "nameRotate", inverse: "inverse", boundaryGap: "boundaryGap", min: "min", max: "max", scale: "scale", minInterval: "minInterval", interval: "interval", logBase: "logBase", silent: "silent", triggerEvent: "triggerEvent", axisLine: "axisLine", axisTick: "axisTick", axisLabel: "axisLabel", splitLine: "splitLine", splitArea: "splitArea", data: "data", axisPointer: "axisPointer", zlevel: "zlevel", z: "z" }, usesOnChanges: true, ngImport: i0 });
|
|
4601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartAxisDirective, decorators: [{
|
|
4602
|
+
type: Directive
|
|
4603
|
+
}], ctorParameters: function () { return [{ type: undefined }, { type: TdChartOptionsService }]; }, propDecorators: { config: [{
|
|
4604
|
+
type: Input
|
|
4605
|
+
}], id: [{
|
|
4606
|
+
type: Input
|
|
4607
|
+
}], show: [{
|
|
4608
|
+
type: Input
|
|
4609
|
+
}], gridIndex: [{
|
|
4610
|
+
type: Input
|
|
4611
|
+
}], offset: [{
|
|
4612
|
+
type: Input
|
|
4613
|
+
}], type: [{
|
|
4614
|
+
type: Input
|
|
4615
|
+
}], name: [{
|
|
4616
|
+
type: Input
|
|
4617
|
+
}], nameLocation: [{
|
|
4618
|
+
type: Input
|
|
4619
|
+
}], nameTextStyle: [{
|
|
4620
|
+
type: Input
|
|
4621
|
+
}], nameGap: [{
|
|
4622
|
+
type: Input
|
|
4623
|
+
}], nameRotate: [{
|
|
4624
|
+
type: Input
|
|
4625
|
+
}], inverse: [{
|
|
4626
|
+
type: Input
|
|
4627
|
+
}], boundaryGap: [{
|
|
4628
|
+
type: Input
|
|
4629
|
+
}], min: [{
|
|
4630
|
+
type: Input
|
|
4631
|
+
}], max: [{
|
|
4632
|
+
type: Input
|
|
4633
|
+
}], scale: [{
|
|
4634
|
+
type: Input
|
|
4635
|
+
}], minInterval: [{
|
|
4636
|
+
type: Input
|
|
4637
|
+
}], interval: [{
|
|
4638
|
+
type: Input
|
|
4639
|
+
}], logBase: [{
|
|
4640
|
+
type: Input
|
|
4641
|
+
}], silent: [{
|
|
4642
|
+
type: Input
|
|
4643
|
+
}], triggerEvent: [{
|
|
4644
|
+
type: Input
|
|
4645
|
+
}], axisLine: [{
|
|
4646
|
+
type: Input
|
|
4647
|
+
}], axisTick: [{
|
|
4648
|
+
type: Input
|
|
4649
|
+
}], axisLabel: [{
|
|
4650
|
+
type: Input
|
|
4651
|
+
}], splitLine: [{
|
|
4652
|
+
type: Input
|
|
4653
|
+
}], splitArea: [{
|
|
4654
|
+
type: Input
|
|
4655
|
+
}], data: [{
|
|
4656
|
+
type: Input
|
|
4657
|
+
}], axisPointer: [{
|
|
4658
|
+
type: Input
|
|
4659
|
+
}], zlevel: [{
|
|
4660
|
+
type: Input
|
|
4661
|
+
}], z: [{
|
|
4662
|
+
type: Input
|
|
4663
|
+
}] } });
|
|
4579
4664
|
|
|
4580
4665
|
class TdChartXAxisComponent extends TdChartAxisDirective {
|
|
4581
4666
|
constructor(_optionsService) {
|
|
4582
4667
|
super('xAxis', _optionsService);
|
|
4583
4668
|
}
|
|
4584
4669
|
}
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
(
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4670
|
+
TdChartXAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartXAxisComponent, deps: [{ token: TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4671
|
+
TdChartXAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdChartXAxisComponent, selector: "td-chart-x-axis", inputs: { config: "config", id: "id", show: "show", gridIndex: "gridIndex", offset: "offset", type: "type", name: "name", nameLocation: "nameLocation", nameTextStyle: "nameTextStyle", nameGap: "nameGap", nameRotate: "nameRotate", inverse: "inverse", boundaryGap: "boundaryGap", min: "min", max: "max", scale: "scale", minInterval: "minInterval", interval: "interval", logBase: "logBase", silent: "silent", triggerEvent: "triggerEvent", axisLine: "axisLine", axisTick: "axisTick", axisLabel: "axisLabel", splitLine: "splitLine", splitArea: "splitArea", data: "data", axisPointer: "axisPointer", zlevel: "zlevel", z: "z", position: "position" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartXAxisComponent, decorators: [{
|
|
4673
|
+
type: Component,
|
|
4674
|
+
args: [{
|
|
4675
|
+
selector: 'td-chart-x-axis',
|
|
4676
|
+
template: '',
|
|
4677
|
+
inputs: [
|
|
4678
|
+
'config',
|
|
4679
|
+
'id',
|
|
4680
|
+
'show',
|
|
4681
|
+
'gridIndex',
|
|
4682
|
+
'offset',
|
|
4683
|
+
'type',
|
|
4684
|
+
'name',
|
|
4685
|
+
'nameLocation',
|
|
4686
|
+
'nameTextStyle',
|
|
4687
|
+
'nameGap',
|
|
4688
|
+
'nameRotate',
|
|
4689
|
+
'inverse',
|
|
4690
|
+
'boundaryGap',
|
|
4691
|
+
'min',
|
|
4692
|
+
'max',
|
|
4693
|
+
'scale',
|
|
4694
|
+
'minInterval',
|
|
4695
|
+
'interval',
|
|
4696
|
+
'logBase',
|
|
4697
|
+
'silent',
|
|
4698
|
+
'triggerEvent',
|
|
4699
|
+
'axisLine',
|
|
4700
|
+
'axisTick',
|
|
4701
|
+
'axisLabel',
|
|
4702
|
+
'splitLine',
|
|
4703
|
+
'splitArea',
|
|
4704
|
+
'data',
|
|
4705
|
+
'axisPointer',
|
|
4706
|
+
'zlevel',
|
|
4707
|
+
'z',
|
|
4708
|
+
],
|
|
4709
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4710
|
+
}]
|
|
4711
|
+
}], ctorParameters: function () { return [{ type: TdChartOptionsService }]; }, propDecorators: { position: [{
|
|
4712
|
+
type: Input
|
|
4713
|
+
}] } });
|
|
4629
4714
|
|
|
4630
4715
|
class TdChartYAxisComponent extends TdChartAxisDirective {
|
|
4631
4716
|
constructor(_optionsService) {
|
|
4632
4717
|
super('yAxis', _optionsService);
|
|
4633
4718
|
}
|
|
4634
4719
|
}
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
(
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4720
|
+
TdChartYAxisComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartYAxisComponent, deps: [{ token: TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4721
|
+
TdChartYAxisComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdChartYAxisComponent, selector: "td-chart-y-axis", inputs: { config: "config", id: "id", show: "show", gridIndex: "gridIndex", offset: "offset", type: "type", name: "name", nameLocation: "nameLocation", nameTextStyle: "nameTextStyle", nameGap: "nameGap", nameRotate: "nameRotate", inverse: "inverse", boundaryGap: "boundaryGap", min: "min", max: "max", scale: "scale", minInterval: "minInterval", interval: "interval", logBase: "logBase", silent: "silent", triggerEvent: "triggerEvent", axisLine: "axisLine", axisTick: "axisTick", axisLabel: "axisLabel", splitLine: "splitLine", splitArea: "splitArea", data: "data", axisPointer: "axisPointer", zlevel: "zlevel", z: "z", position: "position" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdChartYAxisComponent, decorators: [{
|
|
4723
|
+
type: Component,
|
|
4724
|
+
args: [{
|
|
4725
|
+
selector: 'td-chart-y-axis',
|
|
4726
|
+
template: '',
|
|
4727
|
+
inputs: [
|
|
4728
|
+
'config',
|
|
4729
|
+
'id',
|
|
4730
|
+
'show',
|
|
4731
|
+
'gridIndex',
|
|
4732
|
+
'offset',
|
|
4733
|
+
'type',
|
|
4734
|
+
'name',
|
|
4735
|
+
'nameLocation',
|
|
4736
|
+
'nameTextStyle',
|
|
4737
|
+
'nameGap',
|
|
4738
|
+
'nameRotate',
|
|
4739
|
+
'inverse',
|
|
4740
|
+
'boundaryGap',
|
|
4741
|
+
'min',
|
|
4742
|
+
'max',
|
|
4743
|
+
'scale',
|
|
4744
|
+
'minInterval',
|
|
4745
|
+
'interval',
|
|
4746
|
+
'logBase',
|
|
4747
|
+
'silent',
|
|
4748
|
+
'triggerEvent',
|
|
4749
|
+
'axisLine',
|
|
4750
|
+
'axisTick',
|
|
4751
|
+
'axisLabel',
|
|
4752
|
+
'splitLine',
|
|
4753
|
+
'splitArea',
|
|
4754
|
+
'data',
|
|
4755
|
+
'axisPointer',
|
|
4756
|
+
'zlevel',
|
|
4757
|
+
'z',
|
|
4758
|
+
],
|
|
4759
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4760
|
+
}]
|
|
4761
|
+
}], ctorParameters: function () { return [{ type: TdChartOptionsService }]; }, propDecorators: { position: [{
|
|
4762
|
+
type: Input
|
|
4763
|
+
}] } });
|
|
4679
4764
|
|
|
4680
4765
|
class TdDatasetComponent {
|
|
4681
4766
|
constructor(_optionsService) {
|
|
@@ -4703,26 +4788,26 @@ class TdDatasetComponent {
|
|
|
4703
4788
|
this._optionsService.clearOption('dataset');
|
|
4704
4789
|
}
|
|
4705
4790
|
}
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
(
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4791
|
+
TdDatasetComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdDatasetComponent, deps: [{ token: TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4792
|
+
TdDatasetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdDatasetComponent, selector: "td-chart-dataset", inputs: { id: "id", config: "config", source: "source", dimensions: "dimensions", sourceHeader: "sourceHeader" }, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4793
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdDatasetComponent, decorators: [{
|
|
4794
|
+
type: Component,
|
|
4795
|
+
args: [{
|
|
4796
|
+
template: '',
|
|
4797
|
+
selector: 'td-chart-dataset',
|
|
4798
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4799
|
+
}]
|
|
4800
|
+
}], ctorParameters: function () { return [{ type: TdChartOptionsService }]; }, propDecorators: { id: [{
|
|
4801
|
+
type: Input
|
|
4802
|
+
}], config: [{
|
|
4803
|
+
type: Input
|
|
4804
|
+
}], source: [{
|
|
4805
|
+
type: Input
|
|
4806
|
+
}], dimensions: [{
|
|
4807
|
+
type: Input
|
|
4808
|
+
}], sourceHeader: [{
|
|
4809
|
+
type: Input
|
|
4810
|
+
}] } });
|
|
4726
4811
|
|
|
4727
4812
|
const BASE_MODULE_COMPONENTS = [
|
|
4728
4813
|
TdChartComponent,
|
|
@@ -4733,24 +4818,23 @@ const BASE_MODULE_COMPONENTS = [
|
|
|
4733
4818
|
registerDefaultThemes();
|
|
4734
4819
|
class CovalentBaseEchartsModule {
|
|
4735
4820
|
}
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
/** @nocollapse */ /** @nocollapse */ CovalentBaseEchartsModule.ɵinj = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjector({ imports: [[CommonModule]] });
|
|
4739
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CovalentBaseEchartsModule, [{
|
|
4740
|
-
type: NgModule,
|
|
4741
|
-
args: [{
|
|
4742
|
-
imports: [CommonModule],
|
|
4743
|
-
declarations: [BASE_MODULE_COMPONENTS],
|
|
4744
|
-
exports: [BASE_MODULE_COMPONENTS],
|
|
4745
|
-
}]
|
|
4746
|
-
}], null, null); })();
|
|
4747
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(CovalentBaseEchartsModule, { declarations: [TdChartComponent,
|
|
4821
|
+
CovalentBaseEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentBaseEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4822
|
+
CovalentBaseEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentBaseEchartsModule, declarations: [TdChartComponent,
|
|
4748
4823
|
TdChartXAxisComponent,
|
|
4749
4824
|
TdChartYAxisComponent,
|
|
4750
4825
|
TdDatasetComponent], imports: [CommonModule], exports: [TdChartComponent,
|
|
4751
4826
|
TdChartXAxisComponent,
|
|
4752
4827
|
TdChartYAxisComponent,
|
|
4753
|
-
TdDatasetComponent] });
|
|
4828
|
+
TdDatasetComponent] });
|
|
4829
|
+
CovalentBaseEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentBaseEchartsModule, imports: [[CommonModule]] });
|
|
4830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentBaseEchartsModule, decorators: [{
|
|
4831
|
+
type: NgModule,
|
|
4832
|
+
args: [{
|
|
4833
|
+
imports: [CommonModule],
|
|
4834
|
+
declarations: [BASE_MODULE_COMPONENTS],
|
|
4835
|
+
exports: [BASE_MODULE_COMPONENTS],
|
|
4836
|
+
}]
|
|
4837
|
+
}] });
|
|
4754
4838
|
|
|
4755
4839
|
class TdSeriesDirective {
|
|
4756
4840
|
constructor(type, optionsService) {
|
|
@@ -4804,39 +4888,39 @@ class TdSeriesDirective {
|
|
|
4804
4888
|
this.optionsService.removeArrayOption('series', this._state);
|
|
4805
4889
|
}
|
|
4806
4890
|
}
|
|
4807
|
-
|
|
4808
|
-
|
|
4809
|
-
(
|
|
4810
|
-
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
|
|
4816
|
-
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
|
|
4837
|
-
|
|
4838
|
-
|
|
4839
|
-
|
|
4891
|
+
TdSeriesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdSeriesDirective, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
4892
|
+
TdSeriesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: TdSeriesDirective, inputs: { config: "config", id: "id", name: "name", color: "color", data: "data", animation: "animation", animationThreshold: "animationThreshold", animationDuration: "animationDuration", animationEasing: "animationEasing", animationDelay: "animationDelay", animationDurationUpdate: "animationDurationUpdate", animationEasingUpdate: "animationEasingUpdate", animationDelayUpdate: "animationDelayUpdate", tooltip: "tooltip" }, usesOnChanges: true, ngImport: i0 });
|
|
4893
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdSeriesDirective, decorators: [{
|
|
4894
|
+
type: Directive
|
|
4895
|
+
}], ctorParameters: function () { return [{ type: undefined }, { type: TdChartOptionsService }]; }, propDecorators: { config: [{
|
|
4896
|
+
type: Input
|
|
4897
|
+
}], id: [{
|
|
4898
|
+
type: Input
|
|
4899
|
+
}], name: [{
|
|
4900
|
+
type: Input
|
|
4901
|
+
}], color: [{
|
|
4902
|
+
type: Input
|
|
4903
|
+
}], data: [{
|
|
4904
|
+
type: Input
|
|
4905
|
+
}], animation: [{
|
|
4906
|
+
type: Input
|
|
4907
|
+
}], animationThreshold: [{
|
|
4908
|
+
type: Input
|
|
4909
|
+
}], animationDuration: [{
|
|
4910
|
+
type: Input
|
|
4911
|
+
}], animationEasing: [{
|
|
4912
|
+
type: Input
|
|
4913
|
+
}], animationDelay: [{
|
|
4914
|
+
type: Input
|
|
4915
|
+
}], animationDurationUpdate: [{
|
|
4916
|
+
type: Input
|
|
4917
|
+
}], animationEasingUpdate: [{
|
|
4918
|
+
type: Input
|
|
4919
|
+
}], animationDelayUpdate: [{
|
|
4920
|
+
type: Input
|
|
4921
|
+
}], tooltip: [{
|
|
4922
|
+
type: Input
|
|
4923
|
+
}] } });
|
|
4840
4924
|
|
|
4841
4925
|
/**
|
|
4842
4926
|
* Generated bundle index. Do not edit.
|