@covalent/echarts 4.0.0-beta.4 → 4.1.0-develop.11

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.
Files changed (233) hide show
  1. package/README.md +4 -90
  2. package/bar/README.md +23 -21
  3. package/bar/bar.component.d.ts +27 -27
  4. package/bar/covalent-echarts-bar.d.ts +1 -1
  5. package/bar/{public-api.d.ts → public_api.d.ts} +0 -0
  6. package/base/README.md +26 -26
  7. package/base/axis/axis.component.d.ts +29 -29
  8. package/base/chart.component.d.ts +3 -3
  9. package/base/covalent-echarts-base.d.ts +1 -1
  10. package/base/dataset/dataset.component.d.ts +5 -5
  11. package/base/{public-api.d.ts → public_api.d.ts} +0 -0
  12. package/base/series/series.component.d.ts +15 -15
  13. package/base/{axis → src/axis}/README.md +19 -19
  14. package/base/{dataset → src/dataset}/README.md +19 -16
  15. package/covalent-echarts.d.ts +1 -1
  16. package/esm2020/bar/bar.component.mjs +95 -96
  17. package/esm2020/bar/bar.module.mjs +12 -13
  18. package/esm2020/bar/covalent-echarts-bar.mjs +2 -2
  19. package/esm2020/bar/public_api.mjs +3 -0
  20. package/esm2020/base/axis/axis.component.mjs +66 -66
  21. package/esm2020/base/axis/axis.interface.mjs +1 -1
  22. package/esm2020/base/axis/x-axis.component.mjs +45 -45
  23. package/esm2020/base/axis/y-axis.component.mjs +45 -45
  24. package/esm2020/base/base.module.mjs +13 -14
  25. package/esm2020/base/base.types.mjs +1 -1
  26. package/esm2020/base/chart-options.service.mjs +6 -6
  27. package/esm2020/base/chart.component.mjs +42 -38
  28. package/esm2020/base/covalent-echarts-base.mjs +2 -2
  29. package/esm2020/base/dataset/dataset.component.mjs +22 -22
  30. package/esm2020/base/public_api.mjs +10 -0
  31. package/esm2020/base/series/series.component.mjs +34 -34
  32. package/esm2020/base/series/series.interface.mjs +1 -1
  33. package/esm2020/base/themes/aqua-splash.mjs +31 -4
  34. package/esm2020/base/themes/california-coast.mjs +1 -1
  35. package/esm2020/base/themes/hawaiian-sunrise.mjs +1 -1
  36. package/esm2020/base/themes/passion-flower.mjs +1 -1
  37. package/esm2020/base/themes/razzleberry-pie.mjs +31 -4
  38. package/esm2020/base/themes/teradata-classic.mjs +31 -4
  39. package/esm2020/base/themes/teradata-default.mjs +1 -1
  40. package/esm2020/base/themes/urban-sunrise.mjs +1 -1
  41. package/esm2020/base/themes/volcanic-eruption.mjs +1 -1
  42. package/esm2020/base/utils/assign-defined.mjs +1 -1
  43. package/esm2020/base/utils/echarts.mjs +1 -1
  44. package/esm2020/base/utils/index.mjs +1 -1
  45. package/esm2020/covalent-echarts.mjs +2 -2
  46. package/esm2020/graph/covalent-echarts-graph.mjs +2 -2
  47. package/esm2020/graph/graph.component.mjs +129 -130
  48. package/esm2020/graph/graph.module.mjs +15 -14
  49. package/esm2020/graph/public_api.mjs +3 -0
  50. package/esm2020/line/covalent-echarts-line.mjs +2 -2
  51. package/esm2020/line/line.component.mjs +111 -112
  52. package/esm2020/line/line.module.mjs +12 -13
  53. package/esm2020/line/public_api.mjs +3 -0
  54. package/esm2020/map/covalent-echarts-map.mjs +2 -2
  55. package/esm2020/map/map.component.mjs +93 -94
  56. package/esm2020/map/map.module.mjs +12 -13
  57. package/esm2020/map/public_api.mjs +3 -0
  58. package/esm2020/pie/covalent-echarts-pie.mjs +2 -2
  59. package/esm2020/pie/pie.component.mjs +91 -92
  60. package/esm2020/pie/pie.module.mjs +12 -13
  61. package/esm2020/pie/public_api.mjs +3 -0
  62. package/esm2020/public_api.mjs +2 -0
  63. package/esm2020/sankey/covalent-echarts-sankey.mjs +2 -2
  64. package/esm2020/sankey/public_api.mjs +3 -0
  65. package/esm2020/sankey/sankey.component.mjs +83 -84
  66. package/esm2020/sankey/sankey.module.mjs +15 -14
  67. package/esm2020/scatter/covalent-echarts-scatter.mjs +2 -2
  68. package/esm2020/scatter/public_api.mjs +3 -0
  69. package/esm2020/scatter/scatter.component.mjs +101 -102
  70. package/esm2020/scatter/scatter.module.mjs +15 -14
  71. package/esm2020/toolbox/covalent-echarts-toolbox.mjs +2 -2
  72. package/esm2020/toolbox/public_api.mjs +3 -0
  73. package/esm2020/toolbox/toolbox.component.mjs +60 -76
  74. package/esm2020/toolbox/toolbox.module.mjs +19 -15
  75. package/esm2020/tooltip/covalent-echarts-tooltip.mjs +2 -2
  76. package/esm2020/tooltip/public_api.mjs +4 -0
  77. package/esm2020/tooltip/series-tooltip.component.mjs +40 -49
  78. package/esm2020/tooltip/tooltip.component.mjs +71 -80
  79. package/esm2020/tooltip/tooltip.module.mjs +14 -15
  80. package/esm2020/tree/covalent-echarts-tree.mjs +2 -2
  81. package/esm2020/tree/public_api.mjs +3 -0
  82. package/esm2020/tree/tree.component.mjs +83 -84
  83. package/esm2020/tree/tree.module.mjs +12 -13
  84. package/esm2020/treemap/covalent-echarts-treemap.mjs +2 -2
  85. package/esm2020/treemap/public_api.mjs +3 -0
  86. package/esm2020/treemap/treemap.component.mjs +107 -108
  87. package/esm2020/treemap/treemap.module.mjs +15 -14
  88. package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +2 -2
  89. package/esm2020/wordcloud/public_api.mjs +3 -0
  90. package/esm2020/wordcloud/wordcloud.component.mjs +68 -69
  91. package/esm2020/wordcloud/wordcloud.module.mjs +15 -14
  92. package/fesm2015/covalent-echarts-bar.mjs +16 -22
  93. package/fesm2015/covalent-echarts-bar.mjs.map +1 -1
  94. package/fesm2015/covalent-echarts-base.mjs +148 -81
  95. package/fesm2015/covalent-echarts-base.mjs.map +1 -1
  96. package/fesm2015/covalent-echarts-graph.mjs +19 -23
  97. package/fesm2015/covalent-echarts-graph.mjs.map +1 -1
  98. package/fesm2015/covalent-echarts-line.mjs +16 -22
  99. package/fesm2015/covalent-echarts-line.mjs.map +1 -1
  100. package/fesm2015/covalent-echarts-map.mjs +16 -22
  101. package/fesm2015/covalent-echarts-map.mjs.map +1 -1
  102. package/fesm2015/covalent-echarts-pie.mjs +16 -22
  103. package/fesm2015/covalent-echarts-pie.mjs.map +1 -1
  104. package/fesm2015/covalent-echarts-sankey.mjs +19 -23
  105. package/fesm2015/covalent-echarts-sankey.mjs.map +1 -1
  106. package/fesm2015/covalent-echarts-scatter.mjs +19 -23
  107. package/fesm2015/covalent-echarts-scatter.mjs.map +1 -1
  108. package/fesm2015/covalent-echarts-toolbox.mjs +23 -49
  109. package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -1
  110. package/fesm2015/covalent-echarts-tooltip.mjs +43 -90
  111. package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -1
  112. package/fesm2015/covalent-echarts-tree.mjs +16 -22
  113. package/fesm2015/covalent-echarts-tree.mjs.map +1 -1
  114. package/fesm2015/covalent-echarts-treemap.mjs +19 -23
  115. package/fesm2015/covalent-echarts-treemap.mjs.map +1 -1
  116. package/fesm2015/covalent-echarts-wordcloud.mjs +19 -23
  117. package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -1
  118. package/fesm2015/covalent-echarts.mjs.map +1 -1
  119. package/fesm2020/covalent-echarts-bar.mjs +104 -106
  120. package/fesm2020/covalent-echarts-bar.mjs.map +1 -1
  121. package/fesm2020/covalent-echarts-base.mjs +353 -269
  122. package/fesm2020/covalent-echarts-base.mjs.map +1 -1
  123. package/fesm2020/covalent-echarts-graph.mjs +141 -141
  124. package/fesm2020/covalent-echarts-graph.mjs.map +1 -1
  125. package/fesm2020/covalent-echarts-line.mjs +120 -122
  126. package/fesm2020/covalent-echarts-line.mjs.map +1 -1
  127. package/fesm2020/covalent-echarts-map.mjs +102 -104
  128. package/fesm2020/covalent-echarts-map.mjs.map +1 -1
  129. package/fesm2020/covalent-echarts-pie.mjs +100 -102
  130. package/fesm2020/covalent-echarts-pie.mjs.map +1 -1
  131. package/fesm2020/covalent-echarts-sankey.mjs +95 -95
  132. package/fesm2020/covalent-echarts-sankey.mjs.map +1 -1
  133. package/fesm2020/covalent-echarts-scatter.mjs +113 -113
  134. package/fesm2020/covalent-echarts-scatter.mjs.map +1 -1
  135. package/fesm2020/covalent-echarts-toolbox.mjs +76 -88
  136. package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -1
  137. package/fesm2020/covalent-echarts-tooltip.mjs +120 -139
  138. package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -1
  139. package/fesm2020/covalent-echarts-tree.mjs +92 -94
  140. package/fesm2020/covalent-echarts-tree.mjs.map +1 -1
  141. package/fesm2020/covalent-echarts-treemap.mjs +119 -119
  142. package/fesm2020/covalent-echarts-treemap.mjs.map +1 -1
  143. package/fesm2020/covalent-echarts-wordcloud.mjs +79 -79
  144. package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -1
  145. package/fesm2020/covalent-echarts.mjs.map +1 -1
  146. package/graph/README.md +21 -19
  147. package/graph/covalent-echarts-graph.d.ts +1 -1
  148. package/graph/graph.component.d.ts +60 -60
  149. package/graph/{public-api.d.ts → public_api.d.ts} +0 -0
  150. package/line/README.md +19 -21
  151. package/line/covalent-echarts-line.d.ts +1 -1
  152. package/line/line.component.d.ts +35 -35
  153. package/line/{public-api.d.ts → public_api.d.ts} +0 -0
  154. package/map/README.md +19 -17
  155. package/map/covalent-echarts-map.d.ts +1 -1
  156. package/map/map.component.d.ts +27 -27
  157. package/map/{public-api.d.ts → public_api.d.ts} +0 -0
  158. package/package.json +11 -22
  159. package/pie/README.md +17 -15
  160. package/pie/covalent-echarts-pie.d.ts +1 -1
  161. package/pie/pie.component.d.ts +26 -26
  162. package/pie/{public-api.d.ts → public_api.d.ts} +0 -0
  163. package/{index.d.ts → public_api.d.ts} +0 -0
  164. package/sankey/README.md +22 -20
  165. package/sankey/covalent-echarts-sankey.d.ts +1 -1
  166. package/sankey/{public-api.d.ts → public_api.d.ts} +0 -0
  167. package/sankey/sankey.component.d.ts +22 -22
  168. package/scatter/README.md +19 -21
  169. package/scatter/covalent-echarts-scatter.d.ts +1 -1
  170. package/scatter/{public-api.d.ts → public_api.d.ts} +0 -0
  171. package/scatter/scatter.component.d.ts +31 -31
  172. package/toolbox/README.md +12 -11
  173. package/toolbox/covalent-echarts-toolbox.d.ts +1 -1
  174. package/toolbox/{public-api.d.ts → public_api.d.ts} +0 -0
  175. package/toolbox/toolbox.component.d.ts +10 -10
  176. package/tooltip/README.md +30 -26
  177. package/tooltip/covalent-echarts-tooltip.d.ts +1 -1
  178. package/tooltip/{public-api.d.ts → public_api.d.ts} +0 -0
  179. package/tooltip/series-tooltip.component.d.ts +11 -9
  180. package/tooltip/tooltip.component.d.ts +16 -16
  181. package/tree/README.md +20 -18
  182. package/tree/covalent-echarts-tree.d.ts +1 -1
  183. package/tree/{public-api.d.ts → public_api.d.ts} +0 -0
  184. package/tree/tree.component.d.ts +24 -24
  185. package/treemap/README.md +23 -21
  186. package/treemap/covalent-echarts-treemap.d.ts +1 -1
  187. package/treemap/{public-api.d.ts → public_api.d.ts} +0 -0
  188. package/treemap/treemap.component.d.ts +37 -37
  189. package/wordcloud/README.md +25 -23
  190. package/wordcloud/covalent-echarts-wordcloud.d.ts +1 -1
  191. package/wordcloud/{public-api.d.ts → public_api.d.ts} +0 -0
  192. package/wordcloud/wordcloud.component.d.ts +14 -14
  193. package/bar/index.d.ts +0 -1
  194. package/base/chart.component.scss +0 -4
  195. package/base/index.d.ts +0 -1
  196. package/esm2020/bar/index.mjs +0 -2
  197. package/esm2020/bar/public-api.mjs +0 -3
  198. package/esm2020/base/index.mjs +0 -2
  199. package/esm2020/base/public-api.mjs +0 -10
  200. package/esm2020/graph/index.mjs +0 -2
  201. package/esm2020/graph/public-api.mjs +0 -3
  202. package/esm2020/index.mjs +0 -2
  203. package/esm2020/line/index.mjs +0 -2
  204. package/esm2020/line/public-api.mjs +0 -3
  205. package/esm2020/map/index.mjs +0 -2
  206. package/esm2020/map/public-api.mjs +0 -3
  207. package/esm2020/pie/index.mjs +0 -2
  208. package/esm2020/pie/public-api.mjs +0 -3
  209. package/esm2020/sankey/index.mjs +0 -2
  210. package/esm2020/sankey/public-api.mjs +0 -3
  211. package/esm2020/scatter/index.mjs +0 -2
  212. package/esm2020/scatter/public-api.mjs +0 -3
  213. package/esm2020/toolbox/index.mjs +0 -2
  214. package/esm2020/toolbox/public-api.mjs +0 -3
  215. package/esm2020/tooltip/index.mjs +0 -2
  216. package/esm2020/tooltip/public-api.mjs +0 -4
  217. package/esm2020/tree/index.mjs +0 -2
  218. package/esm2020/tree/public-api.mjs +0 -3
  219. package/esm2020/treemap/index.mjs +0 -2
  220. package/esm2020/treemap/public-api.mjs +0 -3
  221. package/esm2020/wordcloud/index.mjs +0 -2
  222. package/esm2020/wordcloud/public-api.mjs +0 -3
  223. package/graph/index.d.ts +0 -1
  224. package/line/index.d.ts +0 -1
  225. package/map/index.d.ts +0 -1
  226. package/pie/index.d.ts +0 -1
  227. package/sankey/index.d.ts +0 -1
  228. package/scatter/index.d.ts +0 -1
  229. package/toolbox/index.d.ts +0 -1
  230. package/tooltip/index.d.ts +0 -1
  231. package/tree/index.d.ts +0 -1
  232. package/treemap/index.d.ts +0 -1
  233. package/wordcloud/index.d.ts +0 -1
@@ -51,11 +51,11 @@ class TdChartOptionsService {
51
51
  return this._optionsSubject.asObservable();
52
52
  }
53
53
  }
54
- /** @nocollapse */ /** @nocollapse */ TdChartOptionsService.ɵfac = function TdChartOptionsService_Factory(t) { return new (t || TdChartOptionsService)(); };
55
- /** @nocollapse */ /** @nocollapse */ TdChartOptionsService.ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: TdChartOptionsService, factory: TdChartOptionsService.ɵfac });
56
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdChartOptionsService, [{
57
- type: Injectable
58
- }], null, null); })();
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: ['#305b9e', '#0076a9', '#1d8daa', '#51a2a8', '#7fb5aa', '#aac6b4', '#CFD8C8', '#ECEBE4'],
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: ['#305b9e', '#0076a9', '#1d8daa', '#51a2a8', '#7fb5aa', '#aac6b4', '#CFD8C8', '#ECEBE4'],
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: ['#305b9e', '#0076a9', '#1d8daa', '#51a2a8', '#7fb5aa', '#aac6b4', '#CFD8C8', '#ECEBE4'],
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: ['#523e85', '#8b4f8f', '#b96595', '#e0829a', '#ffa3a2', '#f9b8a3', '#f1ccb1', '#ebddc8'],
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: ['#523e85', '#8b4f8f', '#b96595', '#e0829a', '#ffa3a2', '#f9b8a3', '#f1ccb1', '#ebddc8'],
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: ['#523e85', '#8b4f8f', '#b96595', '#e0829a', '#ffa3a2', '#f9b8a3', '#f1ccb1', '#ebddc8'],
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: ['#005e7d', '#c54b17', '#009392', '#f5bb3c', '#0098c9', '#f58b5e', '#59cecd', '#fee2a6'],
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: ['#005e7d', '#c54b17', '#009392', '#f5bb3c', '#0098c9', '#f58b5e', '#59cecd', '#fee2a6'],
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: ['#005e7d', '#c54b17', '#009392', '#f5bb3c', '#0098c9', '#f58b5e', '#59cecd', '#fee2a6'],
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.renderer || changes.themeName || changes.group) {
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 && typeof this.config.toolbox.bottom === 'number') ||
4339
- (this._options.toolbox && typeof this._options.toolbox.bottom === 'number')
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 && typeof this.config.toolbox.top === 'number') ||
4343
- (this._options.toolbox && typeof this._options.toolbox.top === 'number')
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
- /** @nocollapse */ /** @nocollapse */ TdChartComponent.ɵfac = function TdChartComponent_Factory(t) { return new (t || TdChartComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(TdChartOptionsService)); };
4430
- /** @nocollapse */ /** @nocollapse */ TdChartComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TdChartComponent, selectors: [["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" }, features: [i0.ɵɵProvidersFeature([CHART_PROVIDER]), i0.ɵɵNgOnChangesFeature], decls: 0, vars: 0, template: function TdChartComponent_Template(rf, ctx) { }, styles: ["[_nghost-%COMP%]{display:block;width:100%}"], changeDetection: 0 });
4431
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdChartComponent, [{
4432
- type: Component,
4433
- args: [{ selector: 'td-chart', template: '', changeDetection: ChangeDetectionStrategy.OnPush, providers: [CHART_PROVIDER], styles: [":host{display:block;width:100%}\n"] }]
4434
- }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: TdChartOptionsService }]; }, { config: [{
4435
- type: Input
4436
- }], group: [{
4437
- type: Input
4438
- }], themeName: [{
4439
- type: Input
4440
- }], renderer: [{
4441
- type: Input
4442
- }], chartClick: [{
4443
- type: Output
4444
- }], chartDblclick: [{
4445
- type: Output
4446
- }], chartContextmenu: [{
4447
- type: Output
4448
- }], magicTypeChanged: [{
4449
- type: Output
4450
- }], dataViewChanged: [{
4451
- type: Output
4452
- }], datazoom: [{
4453
- type: Output
4454
- }], restore: [{
4455
- type: Output
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
- /** @nocollapse */ /** @nocollapse */ TdChartAxisDirective.ɵfac = function TdChartAxisDirective_Factory(t) { i0.ɵɵinvalidFactory(); };
4515
- /** @nocollapse */ /** @nocollapse */ TdChartAxisDirective.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ 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" }, features: [i0.ɵɵNgOnChangesFeature] });
4516
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdChartAxisDirective, [{
4517
- type: Directive
4518
- }], function () { return [{ type: undefined }, { type: TdChartOptionsService }]; }, { config: [{
4519
- type: Input
4520
- }], id: [{
4521
- type: Input
4522
- }], show: [{
4523
- type: Input
4524
- }], gridIndex: [{
4525
- type: Input
4526
- }], offset: [{
4527
- type: Input
4528
- }], type: [{
4529
- type: Input
4530
- }], name: [{
4531
- type: Input
4532
- }], nameLocation: [{
4533
- type: Input
4534
- }], nameTextStyle: [{
4535
- type: Input
4536
- }], nameGap: [{
4537
- type: Input
4538
- }], nameRotate: [{
4539
- type: Input
4540
- }], inverse: [{
4541
- type: Input
4542
- }], boundaryGap: [{
4543
- type: Input
4544
- }], min: [{
4545
- type: Input
4546
- }], max: [{
4547
- type: Input
4548
- }], scale: [{
4549
- type: Input
4550
- }], minInterval: [{
4551
- type: Input
4552
- }], interval: [{
4553
- type: Input
4554
- }], logBase: [{
4555
- type: Input
4556
- }], silent: [{
4557
- type: Input
4558
- }], triggerEvent: [{
4559
- type: Input
4560
- }], axisLine: [{
4561
- type: Input
4562
- }], axisTick: [{
4563
- type: Input
4564
- }], axisLabel: [{
4565
- type: Input
4566
- }], splitLine: [{
4567
- type: Input
4568
- }], splitArea: [{
4569
- type: Input
4570
- }], data: [{
4571
- type: Input
4572
- }], axisPointer: [{
4573
- type: Input
4574
- }], zlevel: [{
4575
- type: Input
4576
- }], z: [{
4577
- type: Input
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
- /** @nocollapse */ /** @nocollapse */ TdChartXAxisComponent.ɵfac = function TdChartXAxisComponent_Factory(t) { return new (t || TdChartXAxisComponent)(i0.ɵɵdirectiveInject(TdChartOptionsService)); };
4586
- /** @nocollapse */ /** @nocollapse */ TdChartXAxisComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TdChartXAxisComponent, selectors: [["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" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 0, vars: 0, template: function TdChartXAxisComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 0 });
4587
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdChartXAxisComponent, [{
4588
- type: Component,
4589
- args: [{
4590
- selector: 'td-chart-x-axis',
4591
- template: '',
4592
- inputs: [
4593
- 'config',
4594
- 'id',
4595
- 'show',
4596
- 'gridIndex',
4597
- 'offset',
4598
- 'type',
4599
- 'name',
4600
- 'nameLocation',
4601
- 'nameTextStyle',
4602
- 'nameGap',
4603
- 'nameRotate',
4604
- 'inverse',
4605
- 'boundaryGap',
4606
- 'min',
4607
- 'max',
4608
- 'scale',
4609
- 'minInterval',
4610
- 'interval',
4611
- 'logBase',
4612
- 'silent',
4613
- 'triggerEvent',
4614
- 'axisLine',
4615
- 'axisTick',
4616
- 'axisLabel',
4617
- 'splitLine',
4618
- 'splitArea',
4619
- 'data',
4620
- 'axisPointer',
4621
- 'zlevel',
4622
- 'z',
4623
- ],
4624
- changeDetection: ChangeDetectionStrategy.OnPush,
4625
- }]
4626
- }], function () { return [{ type: TdChartOptionsService }]; }, { position: [{
4627
- type: Input
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
- /** @nocollapse */ /** @nocollapse */ TdChartYAxisComponent.ɵfac = function TdChartYAxisComponent_Factory(t) { return new (t || TdChartYAxisComponent)(i0.ɵɵdirectiveInject(TdChartOptionsService)); };
4636
- /** @nocollapse */ /** @nocollapse */ TdChartYAxisComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TdChartYAxisComponent, selectors: [["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" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 0, vars: 0, template: function TdChartYAxisComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 0 });
4637
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdChartYAxisComponent, [{
4638
- type: Component,
4639
- args: [{
4640
- selector: 'td-chart-y-axis',
4641
- template: '',
4642
- inputs: [
4643
- 'config',
4644
- 'id',
4645
- 'show',
4646
- 'gridIndex',
4647
- 'offset',
4648
- 'type',
4649
- 'name',
4650
- 'nameLocation',
4651
- 'nameTextStyle',
4652
- 'nameGap',
4653
- 'nameRotate',
4654
- 'inverse',
4655
- 'boundaryGap',
4656
- 'min',
4657
- 'max',
4658
- 'scale',
4659
- 'minInterval',
4660
- 'interval',
4661
- 'logBase',
4662
- 'silent',
4663
- 'triggerEvent',
4664
- 'axisLine',
4665
- 'axisTick',
4666
- 'axisLabel',
4667
- 'splitLine',
4668
- 'splitArea',
4669
- 'data',
4670
- 'axisPointer',
4671
- 'zlevel',
4672
- 'z',
4673
- ],
4674
- changeDetection: ChangeDetectionStrategy.OnPush,
4675
- }]
4676
- }], function () { return [{ type: TdChartOptionsService }]; }, { position: [{
4677
- type: Input
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
- /** @nocollapse */ /** @nocollapse */ TdDatasetComponent.ɵfac = function TdDatasetComponent_Factory(t) { return new (t || TdDatasetComponent)(i0.ɵɵdirectiveInject(TdChartOptionsService)); };
4707
- /** @nocollapse */ /** @nocollapse */ TdDatasetComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TdDatasetComponent, selectors: [["td-chart-dataset"]], inputs: { id: "id", config: "config", source: "source", dimensions: "dimensions", sourceHeader: "sourceHeader" }, features: [i0.ɵɵNgOnChangesFeature], decls: 0, vars: 0, template: function TdDatasetComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 0 });
4708
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdDatasetComponent, [{
4709
- type: Component,
4710
- args: [{
4711
- template: '',
4712
- selector: 'td-chart-dataset',
4713
- changeDetection: ChangeDetectionStrategy.OnPush,
4714
- }]
4715
- }], function () { return [{ type: TdChartOptionsService }]; }, { id: [{
4716
- type: Input
4717
- }], config: [{
4718
- type: Input
4719
- }], source: [{
4720
- type: Input
4721
- }], dimensions: [{
4722
- type: Input
4723
- }], sourceHeader: [{
4724
- type: Input
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
- /** @nocollapse */ /** @nocollapse */ CovalentBaseEchartsModule.ɵfac = function CovalentBaseEchartsModule_Factory(t) { return new (t || CovalentBaseEchartsModule)(); };
4737
- /** @nocollapse */ /** @nocollapse */ CovalentBaseEchartsModule.ɵmod = /** @pureOrBreakMyCode */ i0.ɵɵdefineNgModule({ type: CovalentBaseEchartsModule });
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
- /** @nocollapse */ /** @nocollapse */ TdSeriesDirective.ɵfac = function TdSeriesDirective_Factory(t) { i0.ɵɵinvalidFactory(); };
4808
- /** @nocollapse */ /** @nocollapse */ TdSeriesDirective.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ 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" }, features: [i0.ɵɵNgOnChangesFeature] });
4809
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdSeriesDirective, [{
4810
- type: Directive
4811
- }], function () { return [{ type: undefined }, { type: TdChartOptionsService }]; }, { config: [{
4812
- type: Input
4813
- }], id: [{
4814
- type: Input
4815
- }], name: [{
4816
- type: Input
4817
- }], color: [{
4818
- type: Input
4819
- }], data: [{
4820
- type: Input
4821
- }], animation: [{
4822
- type: Input
4823
- }], animationThreshold: [{
4824
- type: Input
4825
- }], animationDuration: [{
4826
- type: Input
4827
- }], animationEasing: [{
4828
- type: Input
4829
- }], animationDelay: [{
4830
- type: Input
4831
- }], animationDurationUpdate: [{
4832
- type: Input
4833
- }], animationEasingUpdate: [{
4834
- type: Input
4835
- }], animationDelayUpdate: [{
4836
- type: Input
4837
- }], tooltip: [{
4838
- type: Input
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.