@covalent/echarts 6.4.0 → 6.4.2

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 (212) hide show
  1. package/bar/bar.component.d.ts +1 -1
  2. package/base/axis/axis.component.d.ts +1 -1
  3. package/base/axis/x-axis.component.d.ts +1 -1
  4. package/base/axis/y-axis.component.d.ts +1 -1
  5. package/base/chart.component.d.ts +1 -1
  6. package/base/dataset/dataset.component.d.ts +1 -1
  7. package/base/series/series.component.d.ts +1 -1
  8. package/base/src/axis/README.md +58 -0
  9. package/base/src/dataset/README.md +80 -0
  10. package/clustering/clustering.component.d.ts +1 -1
  11. package/esm2020/bar/bar.component.mjs +135 -0
  12. package/{esm2022 → esm2020}/bar/bar.module.mjs +5 -5
  13. package/esm2020/base/axis/axis.component.mjs +127 -0
  14. package/esm2020/base/axis/x-axis.component.mjs +55 -0
  15. package/esm2020/base/axis/y-axis.component.mjs +55 -0
  16. package/{esm2022 → esm2020}/base/base.module.mjs +11 -11
  17. package/esm2020/base/chart-options.service.mjs +65 -0
  18. package/esm2020/base/chart.component.mjs +195 -0
  19. package/esm2020/base/dataset/dataset.component.mjs +52 -0
  20. package/esm2020/base/series/series.component.mjs +91 -0
  21. package/esm2020/clustering/clustering.component.mjs +233 -0
  22. package/{esm2022 → esm2020}/clustering/clustering.module.mjs +5 -5
  23. package/esm2020/graph/graph.component.mjs +185 -0
  24. package/{esm2022 → esm2020}/graph/graph.module.mjs +5 -5
  25. package/esm2020/histogram/histogram.component.mjs +125 -0
  26. package/{esm2022 → esm2020}/histogram/histogram.module.mjs +5 -5
  27. package/esm2020/line/line.component.mjs +159 -0
  28. package/{esm2022 → esm2020}/line/line.module.mjs +5 -5
  29. package/esm2020/map/map.component.mjs +132 -0
  30. package/{esm2022 → esm2020}/map/map.module.mjs +5 -5
  31. package/esm2020/pie/pie.component.mjs +127 -0
  32. package/{esm2022 → esm2020}/pie/pie.module.mjs +5 -5
  33. package/esm2020/regression/regression.component.mjs +137 -0
  34. package/{esm2022 → esm2020}/regression/regression.module.mjs +5 -5
  35. package/esm2020/sankey/sankey.component.mjs +117 -0
  36. package/{esm2022 → esm2020}/sankey/sankey.module.mjs +5 -5
  37. package/esm2020/scatter/scatter.component.mjs +144 -0
  38. package/{esm2022 → esm2020}/scatter/scatter.module.mjs +5 -5
  39. package/esm2020/toolbox/toolbox.component.mjs +135 -0
  40. package/{esm2022 → esm2020}/toolbox/toolbox.module.mjs +7 -7
  41. package/esm2020/tooltip/series-tooltip.component.mjs +102 -0
  42. package/esm2020/tooltip/tooltip.component.mjs +156 -0
  43. package/{esm2022 → esm2020}/tooltip/tooltip.module.mjs +9 -9
  44. package/esm2020/tree/tree.component.mjs +117 -0
  45. package/{esm2022 → esm2020}/tree/tree.module.mjs +5 -5
  46. package/esm2020/treemap/treemap.component.mjs +149 -0
  47. package/{esm2022 → esm2020}/treemap/treemap.module.mjs +5 -5
  48. package/esm2020/wordcloud/wordcloud.component.mjs +92 -0
  49. package/{esm2022 → esm2020}/wordcloud/wordcloud.module.mjs +5 -5
  50. package/{fesm2022 → fesm2015}/covalent-echarts-bar.mjs +12 -40
  51. package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
  52. package/fesm2015/covalent-echarts-base.mjs +4931 -0
  53. package/{fesm2022 → fesm2015}/covalent-echarts-base.mjs.map +1 -1
  54. package/{fesm2022 → fesm2015}/covalent-echarts-clustering.mjs +12 -54
  55. package/fesm2015/covalent-echarts-clustering.mjs.map +1 -0
  56. package/{fesm2022 → fesm2015}/covalent-echarts-graph.mjs +12 -57
  57. package/{fesm2022 → fesm2015}/covalent-echarts-graph.mjs.map +1 -1
  58. package/fesm2015/covalent-echarts-histogram.mjs +151 -0
  59. package/fesm2015/covalent-echarts-histogram.mjs.map +1 -0
  60. package/{fesm2022 → fesm2015}/covalent-echarts-line.mjs +12 -48
  61. package/fesm2015/covalent-echarts-line.mjs.map +1 -0
  62. package/{fesm2022 → fesm2015}/covalent-echarts-map.mjs +12 -39
  63. package/fesm2015/covalent-echarts-map.mjs.map +1 -0
  64. package/{fesm2022 → fesm2015}/covalent-echarts-pie.mjs +12 -38
  65. package/fesm2015/covalent-echarts-pie.mjs.map +1 -0
  66. package/fesm2015/covalent-echarts-regression.mjs +163 -0
  67. package/fesm2015/covalent-echarts-regression.mjs.map +1 -0
  68. package/{fesm2022 → fesm2015}/covalent-echarts-sankey.mjs +12 -34
  69. package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
  70. package/{fesm2022 → fesm2015}/covalent-echarts-scatter.mjs +12 -43
  71. package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
  72. package/fesm2015/covalent-echarts-toolbox.mjs +158 -0
  73. package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
  74. package/{fesm2022 → fesm2015}/covalent-echarts-tooltip.mjs +47 -69
  75. package/{fesm2022 → fesm2015}/covalent-echarts-tooltip.mjs.map +1 -1
  76. package/{fesm2022 → fesm2015}/covalent-echarts-tree.mjs +12 -34
  77. package/{fesm2022 → fesm2015}/covalent-echarts-tree.mjs.map +1 -1
  78. package/{fesm2022 → fesm2015}/covalent-echarts-treemap.mjs +13 -46
  79. package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
  80. package/{fesm2022 → fesm2015}/covalent-echarts-wordcloud.mjs +12 -26
  81. package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
  82. package/fesm2020/covalent-echarts-bar.mjs +158 -0
  83. package/fesm2020/covalent-echarts-bar.mjs.map +1 -0
  84. package/{fesm2022 → fesm2020}/covalent-echarts-base.mjs +69 -135
  85. package/fesm2020/covalent-echarts-base.mjs.map +1 -0
  86. package/fesm2020/covalent-echarts-clustering.mjs +258 -0
  87. package/{fesm2022 → fesm2020}/covalent-echarts-clustering.mjs.map +1 -1
  88. package/fesm2020/covalent-echarts-graph.mjs +210 -0
  89. package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
  90. package/{fesm2022 → fesm2020}/covalent-echarts-histogram.mjs +12 -14
  91. package/{fesm2022 → fesm2020}/covalent-echarts-histogram.mjs.map +1 -1
  92. package/fesm2020/covalent-echarts-line.mjs +182 -0
  93. package/fesm2020/covalent-echarts-line.mjs.map +1 -0
  94. package/fesm2020/covalent-echarts-map.mjs +155 -0
  95. package/{fesm2022 → fesm2020}/covalent-echarts-map.mjs.map +1 -1
  96. package/fesm2020/covalent-echarts-pie.mjs +150 -0
  97. package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
  98. package/{fesm2022 → fesm2020}/covalent-echarts-regression.mjs +12 -15
  99. package/fesm2020/covalent-echarts-regression.mjs.map +1 -0
  100. package/fesm2020/covalent-echarts-sankey.mjs +142 -0
  101. package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
  102. package/fesm2020/covalent-echarts-scatter.mjs +169 -0
  103. package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
  104. package/{fesm2022 → fesm2020}/covalent-echarts-toolbox.mjs +23 -37
  105. package/{fesm2022 → fesm2020}/covalent-echarts-toolbox.mjs.map +1 -1
  106. package/fesm2020/covalent-echarts-tooltip.mjs +283 -0
  107. package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
  108. package/fesm2020/covalent-echarts-tree.mjs +140 -0
  109. package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
  110. package/fesm2020/covalent-echarts-treemap.mjs +174 -0
  111. package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
  112. package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
  113. package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
  114. package/fesm2020/covalent-echarts.mjs +4 -0
  115. package/fesm2020/covalent-echarts.mjs.map +1 -0
  116. package/graph/graph.component.d.ts +1 -1
  117. package/histogram/histogram.component.d.ts +1 -1
  118. package/line/line.component.d.ts +1 -1
  119. package/map/map.component.d.ts +1 -1
  120. package/package.json +99 -57
  121. package/pie/pie.component.d.ts +1 -1
  122. package/regression/regression.component.d.ts +1 -1
  123. package/sankey/sankey.component.d.ts +1 -1
  124. package/scatter/scatter.component.d.ts +1 -1
  125. package/toolbox/toolbox.component.d.ts +1 -1
  126. package/tooltip/series-tooltip.component.d.ts +1 -1
  127. package/tooltip/tooltip.component.d.ts +1 -1
  128. package/tree/tree.component.d.ts +1 -1
  129. package/treemap/treemap.component.d.ts +2 -2
  130. package/wordcloud/wordcloud.component.d.ts +1 -1
  131. package/esm2022/bar/bar.component.mjs +0 -163
  132. package/esm2022/base/axis/axis.component.mjs +0 -157
  133. package/esm2022/base/axis/x-axis.component.mjs +0 -56
  134. package/esm2022/base/axis/y-axis.component.mjs +0 -56
  135. package/esm2022/base/chart-options.service.mjs +0 -63
  136. package/esm2022/base/chart.component.mjs +0 -211
  137. package/esm2022/base/dataset/dataset.component.mjs +0 -57
  138. package/esm2022/base/series/series.component.mjs +0 -106
  139. package/esm2022/clustering/clustering.component.mjs +0 -275
  140. package/esm2022/graph/graph.component.mjs +0 -230
  141. package/esm2022/histogram/histogram.component.mjs +0 -127
  142. package/esm2022/line/line.component.mjs +0 -195
  143. package/esm2022/map/map.component.mjs +0 -159
  144. package/esm2022/pie/pie.component.mjs +0 -153
  145. package/esm2022/regression/regression.component.mjs +0 -140
  146. package/esm2022/sankey/sankey.component.mjs +0 -139
  147. package/esm2022/scatter/scatter.component.mjs +0 -175
  148. package/esm2022/toolbox/toolbox.component.mjs +0 -149
  149. package/esm2022/tooltip/series-tooltip.component.mjs +0 -112
  150. package/esm2022/tooltip/tooltip.component.mjs +0 -168
  151. package/esm2022/tree/tree.component.mjs +0 -139
  152. package/esm2022/treemap/treemap.component.mjs +0 -182
  153. package/esm2022/wordcloud/wordcloud.component.mjs +0 -106
  154. package/fesm2022/covalent-echarts-bar.mjs.map +0 -1
  155. package/fesm2022/covalent-echarts-line.mjs.map +0 -1
  156. package/fesm2022/covalent-echarts-pie.mjs.map +0 -1
  157. package/fesm2022/covalent-echarts-regression.mjs.map +0 -1
  158. package/fesm2022/covalent-echarts-sankey.mjs.map +0 -1
  159. package/fesm2022/covalent-echarts-scatter.mjs.map +0 -1
  160. package/fesm2022/covalent-echarts-treemap.mjs.map +0 -1
  161. package/fesm2022/covalent-echarts-wordcloud.mjs.map +0 -1
  162. /package/{esm2022 → esm2020}/bar/covalent-echarts-bar.mjs +0 -0
  163. /package/{esm2022 → esm2020}/bar/public_api.mjs +0 -0
  164. /package/{esm2022 → esm2020}/base/axis/axis.interface.mjs +0 -0
  165. /package/{esm2022 → esm2020}/base/base.types.mjs +0 -0
  166. /package/{esm2022 → esm2020}/base/covalent-echarts-base.mjs +0 -0
  167. /package/{esm2022 → esm2020}/base/public_api.mjs +0 -0
  168. /package/{esm2022 → esm2020}/base/series/series.interface.mjs +0 -0
  169. /package/{esm2022 → esm2020}/base/themes/aqua-splash.mjs +0 -0
  170. /package/{esm2022 → esm2020}/base/themes/california-coast.mjs +0 -0
  171. /package/{esm2022 → esm2020}/base/themes/hawaiian-sunrise.mjs +0 -0
  172. /package/{esm2022 → esm2020}/base/themes/passion-flower.mjs +0 -0
  173. /package/{esm2022 → esm2020}/base/themes/razzleberry-pie.mjs +0 -0
  174. /package/{esm2022 → esm2020}/base/themes/teradata-classic.mjs +0 -0
  175. /package/{esm2022 → esm2020}/base/themes/teradata-default.mjs +0 -0
  176. /package/{esm2022 → esm2020}/base/themes/urban-sunrise.mjs +0 -0
  177. /package/{esm2022 → esm2020}/base/themes/volcanic-eruption.mjs +0 -0
  178. /package/{esm2022 → esm2020}/base/utils/assign-defined.mjs +0 -0
  179. /package/{esm2022 → esm2020}/base/utils/echarts.mjs +0 -0
  180. /package/{esm2022 → esm2020}/base/utils/index.mjs +0 -0
  181. /package/{esm2022 → esm2020}/clustering/covalent-echarts-clustering.mjs +0 -0
  182. /package/{esm2022 → esm2020}/clustering/public_api.mjs +0 -0
  183. /package/{esm2022 → esm2020}/covalent-echarts.mjs +0 -0
  184. /package/{esm2022 → esm2020}/graph/covalent-echarts-graph.mjs +0 -0
  185. /package/{esm2022 → esm2020}/graph/public_api.mjs +0 -0
  186. /package/{esm2022 → esm2020}/histogram/covalent-echarts-histogram.mjs +0 -0
  187. /package/{esm2022 → esm2020}/histogram/public_api.mjs +0 -0
  188. /package/{esm2022 → esm2020}/line/covalent-echarts-line.mjs +0 -0
  189. /package/{esm2022 → esm2020}/line/public_api.mjs +0 -0
  190. /package/{esm2022 → esm2020}/map/covalent-echarts-map.mjs +0 -0
  191. /package/{esm2022 → esm2020}/map/public_api.mjs +0 -0
  192. /package/{esm2022 → esm2020}/pie/covalent-echarts-pie.mjs +0 -0
  193. /package/{esm2022 → esm2020}/pie/public_api.mjs +0 -0
  194. /package/{esm2022 → esm2020}/public_api.mjs +0 -0
  195. /package/{esm2022 → esm2020}/regression/covalent-echarts-regression.mjs +0 -0
  196. /package/{esm2022 → esm2020}/regression/public_api.mjs +0 -0
  197. /package/{esm2022 → esm2020}/sankey/covalent-echarts-sankey.mjs +0 -0
  198. /package/{esm2022 → esm2020}/sankey/public_api.mjs +0 -0
  199. /package/{esm2022 → esm2020}/scatter/covalent-echarts-scatter.mjs +0 -0
  200. /package/{esm2022 → esm2020}/scatter/public_api.mjs +0 -0
  201. /package/{esm2022 → esm2020}/toolbox/covalent-echarts-toolbox.mjs +0 -0
  202. /package/{esm2022 → esm2020}/toolbox/public_api.mjs +0 -0
  203. /package/{esm2022 → esm2020}/tooltip/covalent-echarts-tooltip.mjs +0 -0
  204. /package/{esm2022 → esm2020}/tooltip/public_api.mjs +0 -0
  205. /package/{esm2022 → esm2020}/tree/covalent-echarts-tree.mjs +0 -0
  206. /package/{esm2022 → esm2020}/tree/public_api.mjs +0 -0
  207. /package/{esm2022 → esm2020}/treemap/covalent-echarts-treemap.mjs +0 -0
  208. /package/{esm2022 → esm2020}/treemap/public_api.mjs +0 -0
  209. /package/{esm2022 → esm2020}/wordcloud/covalent-echarts-wordcloud.mjs +0 -0
  210. /package/{esm2022 → esm2020}/wordcloud/public_api.mjs +0 -0
  211. /package/{fesm2022 → fesm2015}/covalent-echarts.mjs +0 -0
  212. /package/{fesm2022 → fesm2015}/covalent-echarts.mjs.map +0 -0
@@ -0,0 +1,174 @@
1
+ import * as i0 from '@angular/core';
2
+ import { forwardRef, Component, ChangeDetectionStrategy, Input, NgModule } from '@angular/core';
3
+ import { CommonModule } from '@angular/common';
4
+ import * as i1 from '@covalent/echarts/base';
5
+ import { TdSeriesDirective } from '@covalent/echarts/base';
6
+
7
+ class TdChartSeriesTreemapComponent extends TdSeriesDirective {
8
+ constructor(_optionsService) {
9
+ super('treemap', _optionsService);
10
+ this.config = {};
11
+ }
12
+ getConfig() {
13
+ return {
14
+ zlevel: this.zlevel,
15
+ z: this.z,
16
+ left: this.left,
17
+ top: this.top,
18
+ right: this.right,
19
+ bottom: this.bottom,
20
+ width: this.width,
21
+ height: this.height,
22
+ squareRatio: this.squareRatio,
23
+ leafDepth: this.leafDepth,
24
+ drillDownIcon: this.drillDownIcon,
25
+ roam: this.roam,
26
+ nodeClick: this.nodeClick,
27
+ zoomToNodeRatio: this.zoomToNodeRatio,
28
+ levels: this.levels,
29
+ silent: this.silent,
30
+ visualDimension: this.visualDimension,
31
+ visualMin: this.visualMin,
32
+ visualMax: this.visualMax,
33
+ colorAlpha: this.colorAlpha,
34
+ colorSaturation: this.colorSaturation,
35
+ colorMappingBy: this.colorMappingBy,
36
+ visibleMin: this.visibleMin,
37
+ childrenVisibleMin: this.childrenVisibleMin,
38
+ itemStyle: this.itemStyle,
39
+ label: this.label,
40
+ upperLabel: this.upperLabel,
41
+ breadcrumb: this.breadcrumb,
42
+ emphasis: this.emphasis,
43
+ };
44
+ }
45
+ }
46
+ TdChartSeriesTreemapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TdChartSeriesTreemapComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
47
+ TdChartSeriesTreemapComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TdChartSeriesTreemapComponent, selector: "td-chart-series[td-treemap]", 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", zlevel: "zlevel", z: "z", left: "left", top: "top", right: "right", bottom: "bottom", width: "width", height: "height", squareRatio: "squareRatio", leafDepth: "leafDepth", drillDownIcon: "drillDownIcon", roam: "roam", nodeClick: "nodeClick", zoomToNodeRatio: "zoomToNodeRatio", levels: "levels", silent: "silent", visualDimension: "visualDimension", visualMin: "visualMin", visualMax: "visualMax", colorAlpha: "colorAlpha", colorSaturation: "colorSaturation", colorMappingBy: "colorMappingBy", visibleMin: "visibleMin", childrenVisibleMin: "childrenVisibleMin", itemStyle: "itemStyle", label: "label", upperLabel: "upperLabel", breadcrumb: "breadcrumb", emphasis: "emphasis" }, providers: [
48
+ {
49
+ provide: TdSeriesDirective,
50
+ useExisting: forwardRef(() => TdChartSeriesTreemapComponent),
51
+ },
52
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
53
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TdChartSeriesTreemapComponent, decorators: [{
54
+ type: Component,
55
+ args: [{
56
+ selector: 'td-chart-series[td-treemap]',
57
+ template: '',
58
+ changeDetection: ChangeDetectionStrategy.OnPush,
59
+ inputs: [
60
+ 'config',
61
+ 'id',
62
+ 'name',
63
+ 'color',
64
+ 'data',
65
+ 'animation',
66
+ 'animationThreshold',
67
+ 'animationDuration',
68
+ 'animationEasing',
69
+ 'animationDelay',
70
+ 'animationDurationUpdate',
71
+ 'animationEasingUpdate',
72
+ 'animationDelayUpdate',
73
+ 'tooltip',
74
+ ],
75
+ providers: [
76
+ {
77
+ provide: TdSeriesDirective,
78
+ useExisting: forwardRef(() => TdChartSeriesTreemapComponent),
79
+ },
80
+ ],
81
+ }]
82
+ }], ctorParameters: function () { return [{ type: i1.TdChartOptionsService }]; }, propDecorators: { config: [{
83
+ type: Input
84
+ }], id: [{
85
+ type: Input
86
+ }], name: [{
87
+ type: Input
88
+ }], data: [{
89
+ type: Input
90
+ }], zlevel: [{
91
+ type: Input
92
+ }], z: [{
93
+ type: Input
94
+ }], left: [{
95
+ type: Input
96
+ }], top: [{
97
+ type: Input
98
+ }], right: [{
99
+ type: Input
100
+ }], bottom: [{
101
+ type: Input
102
+ }], width: [{
103
+ type: Input
104
+ }], height: [{
105
+ type: Input
106
+ }], squareRatio: [{
107
+ type: Input
108
+ }], leafDepth: [{
109
+ type: Input
110
+ }], drillDownIcon: [{
111
+ type: Input
112
+ }], roam: [{
113
+ type: Input
114
+ }], nodeClick: [{
115
+ type: Input
116
+ }], zoomToNodeRatio: [{
117
+ type: Input
118
+ }], levels: [{
119
+ type: Input
120
+ }], silent: [{
121
+ type: Input
122
+ }], visualDimension: [{
123
+ type: Input
124
+ }], visualMin: [{
125
+ type: Input
126
+ }], visualMax: [{
127
+ type: Input
128
+ }], colorAlpha: [{
129
+ type: Input
130
+ }], colorSaturation: [{
131
+ type: Input
132
+ }], colorMappingBy: [{
133
+ type: Input
134
+ }], visibleMin: [{
135
+ type: Input
136
+ }], childrenVisibleMin: [{
137
+ type: Input
138
+ }], itemStyle: [{
139
+ type: Input
140
+ }], label: [{
141
+ type: Input
142
+ }], upperLabel: [{
143
+ type: Input
144
+ }], breadcrumb: [{
145
+ type: Input
146
+ }], emphasis: [{
147
+ type: Input
148
+ }], tooltip: [{
149
+ type: Input
150
+ }] } });
151
+
152
+ const TREEMAP_MODULE_COMPONENTS = [
153
+ TdChartSeriesTreemapComponent,
154
+ ];
155
+ class CovalentTreemapEchartsModule {
156
+ }
157
+ CovalentTreemapEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentTreemapEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
158
+ CovalentTreemapEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CovalentTreemapEchartsModule, declarations: [TdChartSeriesTreemapComponent], imports: [CommonModule], exports: [TdChartSeriesTreemapComponent] });
159
+ CovalentTreemapEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentTreemapEchartsModule, imports: [CommonModule] });
160
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentTreemapEchartsModule, decorators: [{
161
+ type: NgModule,
162
+ args: [{
163
+ imports: [CommonModule],
164
+ declarations: [TREEMAP_MODULE_COMPONENTS],
165
+ exports: [TREEMAP_MODULE_COMPONENTS],
166
+ }]
167
+ }] });
168
+
169
+ /**
170
+ * Generated bundle index. Do not edit.
171
+ */
172
+
173
+ export { CovalentTreemapEchartsModule, TREEMAP_MODULE_COMPONENTS, TdChartSeriesTreemapComponent };
174
+ //# sourceMappingURL=covalent-echarts-treemap.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"covalent-echarts-treemap.mjs","sources":["../../../../libs/angular-echarts/treemap/src/treemap.component.ts","../../../../libs/angular-echarts/treemap/src/treemap.module.ts","../../../../libs/angular-echarts/treemap/src/covalent-echarts-treemap.ts"],"sourcesContent":["import {\n Component,\n Input,\n ChangeDetectionStrategy,\n forwardRef,\n} from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdItemStyle,\n ITdSeriesTooltip,\n ITdLabel,\n ITdSeries,\n TdSeriesDirective,\n ITdEmphasis,\n ITdShadow,\n} from '@covalent/echarts/base';\n\n/**\n * ECHART OPTION DOCS\n * https://ecomfe.github.io/echarts-examples/public/index.html#chart-type-treemap\n *\n */\n\nexport interface ITdTreemapEmphasisLineStyle extends ITdShadow {\n color?: any;\n width?: number;\n curveness?: number;\n}\n\nexport interface ITdTreemapEmphasis extends ITdEmphasis {\n lineStyle: ITdTreemapEmphasisLineStyle;\n}\n\nexport interface ITdTreemapUpperLabel {\n show?: boolean;\n position?: string | any[];\n distance?: string | number;\n rotate?: string | number;\n offset?: any[];\n formatter?: string;\n color?: any;\n fontStyle?: string;\n fontWeight?: string;\n fontFamily?: string;\n fontSize?: string | number;\n align?: string;\n verticalAlign?: string;\n lineHeight?: string | number;\n backgroundColor?: any;\n borderColor?: string;\n borderWidth?: string | number;\n borderRadius?: string | number;\n padding?: number | any[];\n shadowColor?: string;\n shadowBlur?: string | number;\n shadowOffsetX?: string | number;\n shadowOffsetY?: string | number;\n width?: string | number;\n height?: string | number;\n textBorderColor?: string;\n textBorderWidth?: string | number;\n textShadowColor?: string;\n textShadowBlur?: string | number;\n textShadowOffsetX?: string | number;\n textShadowOffsetY?: string | number;\n rich?: any;\n ellipsis?: any;\n}\n\nexport interface ITdTreemapBreadcrumb {\n show?: boolean;\n left?: string | number;\n top?: string | number;\n right?: string | number;\n bottom?: string | number;\n height?: string | number;\n emptyItemWidth?: string | number;\n itemStyle?: ITdItemStyle;\n emphasis?: ITdTreemapEmphasis;\n}\n\ninterface ITdTreemapSeries extends ITdSeries {\n zlevel?: number;\n z?: number;\n left?: string | number;\n top?: string | number;\n right?: string | number;\n bottom?: string | number;\n width?: string | number;\n height?: string | number;\n squareRatio?: string | number;\n leafDepth?: string | number;\n drillDownIcon?: string;\n roam?: boolean | string;\n nodeClick?: boolean | string;\n zoomToNodeRatio?: string | number;\n levels?: any[];\n silent?: boolean;\n visualDimension?: string | number;\n visualMin?: string | number;\n visualMax?: string | number;\n colorAlpha?: any[];\n colorSaturation?: string | number;\n colorMappingBy?: string;\n visibleMin?: string | number;\n childrenVisibleMin?: string | number;\n itemStyle?: ITdItemStyle;\n label?: ITdLabel;\n upperLabel?: ITdTreemapUpperLabel;\n breadcrumb?: ITdTreemapBreadcrumb;\n emphasis?: ITdTreemapEmphasis;\n data?: any[];\n}\n\n@Component({\n selector: 'td-chart-series[td-treemap]',\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n inputs: [\n 'config',\n 'id',\n 'name',\n 'color',\n 'data',\n\n 'animation',\n 'animationThreshold',\n 'animationDuration',\n 'animationEasing',\n 'animationDelay',\n 'animationDurationUpdate',\n 'animationEasingUpdate',\n 'animationDelayUpdate',\n 'tooltip',\n ],\n providers: [\n {\n provide: TdSeriesDirective,\n useExisting: forwardRef(() => TdChartSeriesTreemapComponent),\n },\n ],\n})\nexport class TdChartSeriesTreemapComponent\n extends TdSeriesDirective\n implements ITdTreemapSeries\n{\n @Input() override config?: any = {};\n @Input() override id?: string;\n @Input() override name?: string;\n @Input() override data?: any;\n @Input() zlevel?: number;\n @Input() z?: number;\n @Input() left?: string | number;\n @Input() top?: string | number;\n @Input() right?: string | number;\n @Input() bottom?: string | number;\n @Input() width?: string | number;\n @Input() height?: string | number;\n @Input() squareRatio?: string | number;\n @Input() leafDepth?: string | number;\n @Input() drillDownIcon?: string;\n @Input() roam?: boolean | string;\n @Input() nodeClick?: boolean | string;\n @Input() zoomToNodeRatio?: string | number;\n @Input() levels?: any[];\n @Input() silent?: boolean;\n @Input() visualDimension?: string | number;\n @Input() visualMin?: string | number;\n @Input() visualMax?: string | number;\n @Input() colorAlpha?: any[];\n @Input() colorSaturation?: string | number;\n @Input() colorMappingBy?: string;\n @Input() visibleMin?: string | number;\n @Input() childrenVisibleMin?: string | number;\n @Input() itemStyle?: ITdItemStyle;\n @Input() label?: ITdLabel;\n @Input() upperLabel?: ITdTreemapUpperLabel;\n @Input() breadcrumb?: ITdTreemapBreadcrumb;\n @Input() emphasis?: ITdTreemapEmphasis;\n @Input() override tooltip?: ITdSeriesTooltip;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('treemap', _optionsService);\n }\n\n getConfig(): any {\n return {\n zlevel: this.zlevel,\n z: this.z,\n left: this.left,\n top: this.top,\n right: this.right,\n bottom: this.bottom,\n width: this.width,\n height: this.height,\n squareRatio: this.squareRatio,\n leafDepth: this.leafDepth,\n drillDownIcon: this.drillDownIcon,\n roam: this.roam,\n nodeClick: this.nodeClick,\n zoomToNodeRatio: this.zoomToNodeRatio,\n levels: this.levels,\n silent: this.silent,\n visualDimension: this.visualDimension,\n visualMin: this.visualMin,\n visualMax: this.visualMax,\n colorAlpha: this.colorAlpha,\n colorSaturation: this.colorSaturation,\n colorMappingBy: this.colorMappingBy,\n visibleMin: this.visibleMin,\n childrenVisibleMin: this.childrenVisibleMin,\n itemStyle: this.itemStyle,\n label: this.label,\n upperLabel: this.upperLabel,\n breadcrumb: this.breadcrumb,\n emphasis: this.emphasis,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesTreemapComponent } from './treemap.component';\n\nexport const TREEMAP_MODULE_COMPONENTS: Type<any>[] = [\n TdChartSeriesTreemapComponent,\n];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [TREEMAP_MODULE_COMPONENTS],\n exports: [TREEMAP_MODULE_COMPONENTS],\n})\nexport class CovalentTreemapEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,117 @@
1
+ import * as i0 from '@angular/core';
2
+ import { forwardRef, Component, ChangeDetectionStrategy, Input, NgModule } from '@angular/core';
3
+ import { CommonModule } from '@angular/common';
4
+ import * as i1 from '@covalent/echarts/base';
5
+ import { TdSeriesDirective } from '@covalent/echarts/base';
6
+
7
+ class TdChartSeriesWordcloudComponent extends TdSeriesDirective {
8
+ constructor(_optionsService) {
9
+ super('wordCloud', _optionsService);
10
+ }
11
+ getConfig() {
12
+ return {
13
+ shape: this.shape,
14
+ left: this.left,
15
+ top: this.top,
16
+ width: this.width,
17
+ height: this.height,
18
+ right: this.right,
19
+ bottom: this.bottom,
20
+ sizeRange: this.sizeRange,
21
+ rotationRange: this.rotationRange,
22
+ rotationStep: this.rotationStep,
23
+ gridSize: this.gridSize,
24
+ drawOutOfBound: this.drawOutOfBound,
25
+ textStyle: this.textStyle,
26
+ };
27
+ }
28
+ }
29
+ TdChartSeriesWordcloudComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TdChartSeriesWordcloudComponent, deps: [{ token: i1.TdChartOptionsService }], target: i0.ɵɵFactoryTarget.Component });
30
+ TdChartSeriesWordcloudComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TdChartSeriesWordcloudComponent, selector: "td-chart-series[td-wordCloud]", 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", shape: "shape", left: "left", top: "top", width: "width", height: "height", right: "right", bottom: "bottom", sizeRange: "sizeRange", rotationRange: "rotationRange", rotationStep: "rotationStep", gridSize: "gridSize", drawOutOfBound: "drawOutOfBound", textStyle: "textStyle" }, providers: [
31
+ {
32
+ provide: TdSeriesDirective,
33
+ useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),
34
+ },
35
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TdChartSeriesWordcloudComponent, decorators: [{
37
+ type: Component,
38
+ args: [{
39
+ selector: 'td-chart-series[td-wordCloud]',
40
+ template: '',
41
+ changeDetection: ChangeDetectionStrategy.OnPush,
42
+ inputs: [
43
+ 'config',
44
+ 'id',
45
+ 'name',
46
+ 'color',
47
+ 'data',
48
+ 'animation',
49
+ 'animationThreshold',
50
+ 'animationDuration',
51
+ 'animationEasing',
52
+ 'animationDelay',
53
+ 'animationDurationUpdate',
54
+ 'animationEasingUpdate',
55
+ 'animationDelayUpdate',
56
+ 'tooltip',
57
+ ],
58
+ providers: [
59
+ {
60
+ provide: TdSeriesDirective,
61
+ useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),
62
+ },
63
+ ],
64
+ }]
65
+ }], ctorParameters: function () { return [{ type: i1.TdChartOptionsService }]; }, propDecorators: { data: [{
66
+ type: Input
67
+ }], shape: [{
68
+ type: Input
69
+ }], left: [{
70
+ type: Input
71
+ }], top: [{
72
+ type: Input
73
+ }], width: [{
74
+ type: Input
75
+ }], height: [{
76
+ type: Input
77
+ }], right: [{
78
+ type: Input
79
+ }], bottom: [{
80
+ type: Input
81
+ }], sizeRange: [{
82
+ type: Input
83
+ }], rotationRange: [{
84
+ type: Input
85
+ }], rotationStep: [{
86
+ type: Input
87
+ }], gridSize: [{
88
+ type: Input
89
+ }], drawOutOfBound: [{
90
+ type: Input
91
+ }], textStyle: [{
92
+ type: Input
93
+ }] } });
94
+
95
+ const WORDCLOUD_MODULE_COMPONENTS = [
96
+ TdChartSeriesWordcloudComponent,
97
+ ];
98
+ class CovalentWordcloudEchartsModule {
99
+ }
100
+ CovalentWordcloudEchartsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentWordcloudEchartsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
101
+ CovalentWordcloudEchartsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CovalentWordcloudEchartsModule, declarations: [TdChartSeriesWordcloudComponent], imports: [CommonModule], exports: [TdChartSeriesWordcloudComponent] });
102
+ CovalentWordcloudEchartsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentWordcloudEchartsModule, imports: [CommonModule] });
103
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CovalentWordcloudEchartsModule, decorators: [{
104
+ type: NgModule,
105
+ args: [{
106
+ imports: [CommonModule],
107
+ declarations: [WORDCLOUD_MODULE_COMPONENTS],
108
+ exports: [WORDCLOUD_MODULE_COMPONENTS],
109
+ }]
110
+ }] });
111
+
112
+ /**
113
+ * Generated bundle index. Do not edit.
114
+ */
115
+
116
+ export { CovalentWordcloudEchartsModule, TdChartSeriesWordcloudComponent, WORDCLOUD_MODULE_COMPONENTS };
117
+ //# sourceMappingURL=covalent-echarts-wordcloud.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"covalent-echarts-wordcloud.mjs","sources":["../../../../libs/angular-echarts/wordcloud/src/wordcloud.component.ts","../../../../libs/angular-echarts/wordcloud/src/wordcloud.module.ts","../../../../libs/angular-echarts/wordcloud/src/covalent-echarts-wordcloud.ts"],"sourcesContent":["import {\n Component,\n Input,\n ChangeDetectionStrategy,\n forwardRef,\n} from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdSeries,\n TdSeriesDirective,\n} from '@covalent/echarts/base';\n\nexport type TdWordcloudShape =\n | 'circle'\n | 'cardioid'\n | 'diamond'\n | 'triangle-forward'\n | 'triangle'\n | 'pentagon'\n | 'star';\n\nexport interface ITdWordcloudTextStyle {\n normal?: {\n fontFamily?: string;\n fontWeight?: string;\n color?: string | ((x: any) => string);\n };\n emphasis?: {\n shadowBlur?: number;\n shadowColor?: string;\n };\n}\n\nexport interface ITdWordCloudData {\n name: string;\n value: number;\n textStyle?: ITdWordcloudTextStyle;\n}\n\nexport interface ITdWordcloudSeries extends ITdSeries {\n data?: ITdWordCloudData[];\n shape?: TdWordcloudShape;\n left?: string | number;\n top?: string | number;\n width?: string | number;\n height?: string | number;\n right?: string | number;\n bottom?: string | number;\n sizeRange?: number[];\n rotationRange?: number[];\n rotationStep?: number;\n gridSize?: number;\n drawOutOfBound?: boolean;\n textStyle?: ITdWordcloudTextStyle;\n}\n\n@Component({\n selector: 'td-chart-series[td-wordCloud]',\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n inputs: [\n 'config',\n 'id',\n 'name',\n 'color',\n 'data',\n\n 'animation',\n 'animationThreshold',\n 'animationDuration',\n 'animationEasing',\n 'animationDelay',\n 'animationDurationUpdate',\n 'animationEasingUpdate',\n 'animationDelayUpdate',\n 'tooltip',\n ],\n providers: [\n {\n provide: TdSeriesDirective,\n useExisting: forwardRef(() => TdChartSeriesWordcloudComponent),\n },\n ],\n})\nexport class TdChartSeriesWordcloudComponent\n extends TdSeriesDirective\n implements ITdWordcloudSeries\n{\n @Input() override data?: ITdWordCloudData[];\n @Input() shape?: TdWordcloudShape;\n @Input() left?: string | number;\n @Input() top?: string | number;\n @Input() width?: string | number;\n @Input() height?: string | number;\n @Input() right?: string | number;\n @Input() bottom?: string | number;\n @Input() sizeRange?: number[];\n @Input() rotationRange?: number[];\n @Input() rotationStep?: number;\n @Input() gridSize?: number;\n @Input() drawOutOfBound?: boolean;\n @Input() textStyle?: ITdWordcloudTextStyle;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('wordCloud', _optionsService);\n }\n\n getConfig(): any {\n return {\n shape: this.shape,\n left: this.left,\n top: this.top,\n width: this.width,\n height: this.height,\n right: this.right,\n bottom: this.bottom,\n sizeRange: this.sizeRange,\n rotationRange: this.rotationRange,\n rotationStep: this.rotationStep,\n gridSize: this.gridSize,\n drawOutOfBound: this.drawOutOfBound,\n textStyle: this.textStyle,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TdChartSeriesWordcloudComponent } from './wordcloud.component';\n\nexport const WORDCLOUD_MODULE_COMPONENTS: Type<any>[] = [\n TdChartSeriesWordcloudComponent,\n];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [WORDCLOUD_MODULE_COMPONENTS],\n exports: [WORDCLOUD_MODULE_COMPONENTS],\n})\nexport class CovalentWordcloudEchartsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ //# sourceMappingURL=covalent-echarts.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"covalent-echarts.mjs","sources":["../../../../libs/angular-echarts/src/covalent-echarts.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"AAAA;;AAEG"}
@@ -125,5 +125,5 @@ export declare class TdChartSeriesGraphComponent extends TdSeriesDirective imple
125
125
  constructor(_optionsService: TdChartOptionsService);
126
126
  getConfig(): any;
127
127
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesGraphComponent, never>;
128
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesGraphComponent, "td-chart-series[td-graph]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "legendHoverLink": { "alias": "legendHoverLink"; "required": false; }; "coordinateSystem": { "alias": "coordinateSystem"; "required": false; }; "xAxisIndex": { "alias": "xAxisIndex"; "required": false; }; "yAxisIndex": { "alias": "yAxisIndex"; "required": false; }; "polarIndex": { "alias": "polarIndex"; "required": false; }; "calendarIndex": { "alias": "calendarIndex"; "required": false; }; "geoIndex": { "alias": "geoIndex"; "required": false; }; "hoverAnimation": { "alias": "hoverAnimation"; "required": false; }; "circular": { "alias": "circular"; "required": false; }; "force": { "alias": "force"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "nodeScaleRatio": { "alias": "nodeScaleRatio"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "symbol": { "alias": "symbol"; "required": false; }; "symbolSize": { "alias": "symbolSize"; "required": false; }; "symbolRotate": { "alias": "symbolRotate"; "required": false; }; "symbolKeepAspect": { "alias": "symbolKeepAspect"; "required": false; }; "symbolOffset": { "alias": "symbolOffset"; "required": false; }; "focusNodeAdjacency": { "alias": "focusNodeAdjacency"; "required": false; }; "edgeSymbol": { "alias": "edgeSymbol"; "required": false; }; "edgeSymbolSize": { "alias": "edgeSymbolSize"; "required": false; }; "cursor": { "alias": "cursor"; "required": false; }; "roam": { "alias": "roam"; "required": false; }; "initialTreeDepth": { "alias": "initialTreeDepth"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "lineStyle": { "alias": "lineStyle"; "required": false; }; "label": { "alias": "label"; "required": false; }; "edgeLabel": { "alias": "edgeLabel"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; "categories": { "alias": "categories"; "required": false; }; "nodes": { "alias": "nodes"; "required": false; }; "links": { "alias": "links"; "required": false; }; "edges": { "alias": "edges"; "required": false; }; "markPoint": { "alias": "markPoint"; "required": false; }; "markLine": { "alias": "markLine"; "required": false; }; "markArea": { "alias": "markArea"; "required": false; }; "zlevel": { "alias": "zlevel"; "required": false; }; "z": { "alias": "z"; "required": false; }; "silent": { "alias": "silent"; "required": false; }; "left": { "alias": "left"; "required": false; }; "top": { "alias": "top"; "required": false; }; "right": { "alias": "right"; "required": false; }; "bottom": { "alias": "bottom"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, {}, never, never, false, never>;
128
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesGraphComponent, "td-chart-series[td-graph]", never, { "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"; "legendHoverLink": "legendHoverLink"; "coordinateSystem": "coordinateSystem"; "xAxisIndex": "xAxisIndex"; "yAxisIndex": "yAxisIndex"; "polarIndex": "polarIndex"; "calendarIndex": "calendarIndex"; "geoIndex": "geoIndex"; "hoverAnimation": "hoverAnimation"; "circular": "circular"; "force": "force"; "layout": "layout"; "nodeScaleRatio": "nodeScaleRatio"; "draggable": "draggable"; "symbol": "symbol"; "symbolSize": "symbolSize"; "symbolRotate": "symbolRotate"; "symbolKeepAspect": "symbolKeepAspect"; "symbolOffset": "symbolOffset"; "focusNodeAdjacency": "focusNodeAdjacency"; "edgeSymbol": "edgeSymbol"; "edgeSymbolSize": "edgeSymbolSize"; "cursor": "cursor"; "roam": "roam"; "initialTreeDepth": "initialTreeDepth"; "itemStyle": "itemStyle"; "lineStyle": "lineStyle"; "label": "label"; "edgeLabel": "edgeLabel"; "emphasis": "emphasis"; "categories": "categories"; "nodes": "nodes"; "links": "links"; "edges": "edges"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "silent": "silent"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "width": "width"; "height": "height"; }, {}, never, never, false, never>;
129
129
  }
@@ -15,5 +15,5 @@ export declare class TdChartSeriesHistogramComponent extends TdChartSeriesBarCom
15
15
  getConfig(): any;
16
16
  private setOptions;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesHistogramComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesHistogramComponent, "td-chart-series[td-histogram]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "source": { "alias": "source"; "required": false; }; "method": { "alias": "method"; "required": false; }; }, {}, never, never, false, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesHistogramComponent, "td-chart-series[td-histogram]", never, { "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"; "source": "source"; "method": "method"; }, {}, never, never, false, never>;
19
19
  }
@@ -82,5 +82,5 @@ export declare class TdChartSeriesLineComponent extends TdSeriesDirective implem
82
82
  constructor(_optionsService: TdChartOptionsService);
83
83
  getConfig(): any;
84
84
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesLineComponent, never>;
85
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesLineComponent, "td-chart-series[td-line]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "coordinateSystem": { "alias": "coordinateSystem"; "required": false; }; "xAxisIndex": { "alias": "xAxisIndex"; "required": false; }; "yAxisIndex": { "alias": "yAxisIndex"; "required": false; }; "polarIndex": { "alias": "polarIndex"; "required": false; }; "symbol": { "alias": "symbol"; "required": false; }; "symbolSize": { "alias": "symbolSize"; "required": false; }; "symbolRotate": { "alias": "symbolRotate"; "required": false; }; "symbolKeepAspect": { "alias": "symbolKeepAspect"; "required": false; }; "symbolOffset": { "alias": "symbolOffset"; "required": false; }; "showSymbol": { "alias": "showSymbol"; "required": false; }; "showAllSymbol": { "alias": "showAllSymbol"; "required": false; }; "hoverAnimation": { "alias": "hoverAnimation"; "required": false; }; "legendHoverLink": { "alias": "legendHoverLink"; "required": false; }; "stack": { "alias": "stack"; "required": false; }; "cursor": { "alias": "cursor"; "required": false; }; "connectNulls": { "alias": "connectNulls"; "required": false; }; "clipOverflow": { "alias": "clipOverflow"; "required": false; }; "step": { "alias": "step"; "required": false; }; "label": { "alias": "label"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "lineStyle": { "alias": "lineStyle"; "required": false; }; "areaStyle": { "alias": "areaStyle"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; "smooth": { "alias": "smooth"; "required": false; }; "smoothMonotone": { "alias": "smoothMonotone"; "required": false; }; "sampling": { "alias": "sampling"; "required": false; }; "dimensions": { "alias": "dimensions"; "required": false; }; "encode": { "alias": "encode"; "required": false; }; "seriesLayoutBy": { "alias": "seriesLayoutBy"; "required": false; }; "datasetIndex": { "alias": "datasetIndex"; "required": false; }; "markPoint": { "alias": "markPoint"; "required": false; }; "markLine": { "alias": "markLine"; "required": false; }; "markArea": { "alias": "markArea"; "required": false; }; "zlevel": { "alias": "zlevel"; "required": false; }; "z": { "alias": "z"; "required": false; }; "silent": { "alias": "silent"; "required": false; }; }, {}, never, never, false, never>;
85
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesLineComponent, "td-chart-series[td-line]", never, { "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"; "coordinateSystem": "coordinateSystem"; "xAxisIndex": "xAxisIndex"; "yAxisIndex": "yAxisIndex"; "polarIndex": "polarIndex"; "symbol": "symbol"; "symbolSize": "symbolSize"; "symbolRotate": "symbolRotate"; "symbolKeepAspect": "symbolKeepAspect"; "symbolOffset": "symbolOffset"; "showSymbol": "showSymbol"; "showAllSymbol": "showAllSymbol"; "hoverAnimation": "hoverAnimation"; "legendHoverLink": "legendHoverLink"; "stack": "stack"; "cursor": "cursor"; "connectNulls": "connectNulls"; "clipOverflow": "clipOverflow"; "step": "step"; "label": "label"; "itemStyle": "itemStyle"; "lineStyle": "lineStyle"; "areaStyle": "areaStyle"; "emphasis": "emphasis"; "smooth": "smooth"; "smoothMonotone": "smoothMonotone"; "sampling": "sampling"; "dimensions": "dimensions"; "encode": "encode"; "seriesLayoutBy": "seriesLayoutBy"; "datasetIndex": "datasetIndex"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "zlevel": "zlevel"; "z": "z"; "silent": "silent"; }, {}, never, never, false, never>;
86
86
  }
@@ -71,5 +71,5 @@ export declare class TdChartSeriesMapComponent extends TdSeriesDirective impleme
71
71
  constructor(_optionsService: TdChartOptionsService);
72
72
  getConfig(): any;
73
73
  static ɵfac: i0.ɵɵFactoryDeclaration<TdChartSeriesMapComponent, never>;
74
- static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesMapComponent, "td-chart-series[td-map]", never, { "config": { "alias": "config"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "data": { "alias": "data"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "animationThreshold": { "alias": "animationThreshold"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationEasing": { "alias": "animationEasing"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "animationDurationUpdate": { "alias": "animationDurationUpdate"; "required": false; }; "animationEasingUpdate": { "alias": "animationEasingUpdate"; "required": false; }; "animationDelayUpdate": { "alias": "animationDelayUpdate"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "map": { "alias": "map"; "required": false; }; "roam": { "alias": "roam"; "required": false; }; "center": { "alias": "center"; "required": false; }; "aspectScale": { "alias": "aspectScale"; "required": false; }; "boudingCoords": { "alias": "boudingCoords"; "required": false; }; "zoom": { "alias": "zoom"; "required": false; }; "scaleLimit": { "alias": "scaleLimit"; "required": false; }; "nameMap": { "alias": "nameMap"; "required": false; }; "selectedMode": { "alias": "selectedMode"; "required": false; }; "label": { "alias": "label"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; "zLevel": { "alias": "zLevel"; "required": false; }; "z": { "alias": "z"; "required": false; }; "left": { "alias": "left"; "required": false; }; "top": { "alias": "top"; "required": false; }; "right": { "alias": "right"; "required": false; }; "bottom": { "alias": "bottom"; "required": false; }; "layoutCenter": { "alias": "layoutCenter"; "required": false; }; "layoutSize": { "alias": "layoutSize"; "required": false; }; "geoIndex": { "alias": "geoIndex"; "required": false; }; "mapValueCalculation": { "alias": "mapValueCalculation"; "required": false; }; "showLegendSymbol": { "alias": "showLegendSymbol"; "required": false; }; "seriesLayoutBy": { "alias": "seriesLayoutBy"; "required": false; }; "markPoint": { "alias": "markPoint"; "required": false; }; "markLine": { "alias": "markLine"; "required": false; }; "markArea": { "alias": "markArea"; "required": false; }; "silent": { "alias": "silent"; "required": false; }; }, {}, never, never, false, never>;
74
+ static ɵcmp: i0.ɵɵComponentDeclaration<TdChartSeriesMapComponent, "td-chart-series[td-map]", never, { "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"; "map": "map"; "roam": "roam"; "center": "center"; "aspectScale": "aspectScale"; "boudingCoords": "boudingCoords"; "zoom": "zoom"; "scaleLimit": "scaleLimit"; "nameMap": "nameMap"; "selectedMode": "selectedMode"; "label": "label"; "itemStyle": "itemStyle"; "zLevel": "zLevel"; "z": "z"; "left": "left"; "top": "top"; "right": "right"; "bottom": "bottom"; "layoutCenter": "layoutCenter"; "layoutSize": "layoutSize"; "geoIndex": "geoIndex"; "mapValueCalculation": "mapValueCalculation"; "showLegendSymbol": "showLegendSymbol"; "seriesLayoutBy": "seriesLayoutBy"; "markPoint": "markPoint"; "markLine": "markLine"; "markArea": "markArea"; "silent": "silent"; }, {}, never, never, false, never>;
75
75
  }