@covalent/echarts 4.0.0 → 4.1.1-beta.3

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 (422) hide show
  1. package/README.md +4 -90
  2. package/bar/README.md +23 -21
  3. package/bar/bar.component.d.ts +30 -27
  4. package/bar/bar.module.d.ts +6 -1
  5. package/bar/covalent-echarts-bar.d.ts +2 -1
  6. package/bar/package.json +6 -7
  7. package/bar/{public-api.d.ts → public_api.d.ts} +0 -0
  8. package/base/README.md +26 -26
  9. package/base/axis/axis.component.d.ts +32 -29
  10. package/base/axis/x-axis.component.d.ts +3 -0
  11. package/base/axis/y-axis.component.d.ts +3 -0
  12. package/base/base.module.d.ts +9 -1
  13. package/base/chart-options.service.d.ts +3 -0
  14. package/base/chart.component.d.ts +6 -3
  15. package/base/covalent-echarts-base.d.ts +2 -2
  16. package/base/dataset/dataset.component.d.ts +8 -5
  17. package/base/package.json +6 -7
  18. package/base/{public-api.d.ts → public_api.d.ts} +0 -0
  19. package/base/series/series.component.d.ts +18 -15
  20. package/base/{axis → src/axis}/README.md +19 -19
  21. package/base/{dataset → src/dataset}/README.md +19 -16
  22. package/covalent-echarts.d.ts +2 -1
  23. package/esm2020/bar/bar.component.mjs +135 -0
  24. package/esm2020/bar/bar.module.mjs +19 -0
  25. package/esm2020/bar/covalent-echarts-bar.mjs +5 -0
  26. package/esm2020/bar/public_api.mjs +3 -0
  27. package/esm2020/base/axis/axis.component.mjs +127 -0
  28. package/esm2020/base/axis/axis.interface.mjs +2 -0
  29. package/esm2020/base/axis/x-axis.component.mjs +55 -0
  30. package/esm2020/base/axis/y-axis.component.mjs +55 -0
  31. package/esm2020/base/base.module.mjs +35 -0
  32. package/esm2020/base/base.types.mjs +2 -0
  33. package/esm2020/base/chart-options.service.mjs +65 -0
  34. package/esm2020/base/chart.component.mjs +195 -0
  35. package/esm2020/base/covalent-echarts-base.mjs +5 -0
  36. package/esm2020/base/dataset/dataset.component.mjs +52 -0
  37. package/esm2020/base/public_api.mjs +10 -0
  38. package/esm2020/base/series/series.component.mjs +91 -0
  39. package/esm2020/base/series/series.interface.mjs +2 -0
  40. package/esm2020/base/themes/aqua-splash.mjs +487 -0
  41. package/esm2020/base/themes/california-coast.mjs +460 -0
  42. package/esm2020/base/themes/hawaiian-sunrise.mjs +460 -0
  43. package/esm2020/base/themes/passion-flower.mjs +460 -0
  44. package/esm2020/base/themes/razzleberry-pie.mjs +487 -0
  45. package/esm2020/base/themes/teradata-classic.mjs +487 -0
  46. package/{esm2015/base/themes/razzleberry-pie.js → esm2020/base/themes/teradata-default.mjs} +30 -35
  47. package/esm2020/base/themes/urban-sunrise.mjs +460 -0
  48. package/esm2020/base/themes/volcanic-eruption.mjs +460 -0
  49. package/esm2020/base/utils/assign-defined.mjs +25 -0
  50. package/esm2020/base/utils/echarts.mjs +49 -0
  51. package/esm2020/base/utils/index.mjs +3 -0
  52. package/esm2020/covalent-echarts.mjs +5 -0
  53. package/esm2020/graph/covalent-echarts-graph.mjs +5 -0
  54. package/esm2020/graph/graph.component.mjs +185 -0
  55. package/esm2020/graph/graph.module.mjs +21 -0
  56. package/esm2020/graph/public_api.mjs +3 -0
  57. package/esm2020/line/covalent-echarts-line.mjs +5 -0
  58. package/esm2020/line/line.component.mjs +159 -0
  59. package/esm2020/line/line.module.mjs +19 -0
  60. package/esm2020/line/public_api.mjs +3 -0
  61. package/esm2020/map/covalent-echarts-map.mjs +5 -0
  62. package/esm2020/map/map.component.mjs +132 -0
  63. package/esm2020/map/map.module.mjs +19 -0
  64. package/esm2020/map/public_api.mjs +3 -0
  65. package/esm2020/pie/covalent-echarts-pie.mjs +5 -0
  66. package/esm2020/pie/pie.component.mjs +127 -0
  67. package/esm2020/pie/pie.module.mjs +19 -0
  68. package/esm2020/pie/public_api.mjs +3 -0
  69. package/esm2020/public_api.mjs +2 -0
  70. package/esm2020/sankey/covalent-echarts-sankey.mjs +5 -0
  71. package/esm2020/sankey/public_api.mjs +3 -0
  72. package/esm2020/sankey/sankey.component.mjs +117 -0
  73. package/esm2020/sankey/sankey.module.mjs +21 -0
  74. package/esm2020/scatter/covalent-echarts-scatter.mjs +5 -0
  75. package/esm2020/scatter/public_api.mjs +3 -0
  76. package/esm2020/scatter/scatter.component.mjs +144 -0
  77. package/esm2020/scatter/scatter.module.mjs +21 -0
  78. package/esm2020/toolbox/covalent-echarts-toolbox.mjs +5 -0
  79. package/esm2020/toolbox/public_api.mjs +3 -0
  80. package/esm2020/toolbox/toolbox.component.mjs +135 -0
  81. package/esm2020/toolbox/toolbox.module.mjs +24 -0
  82. package/esm2020/tooltip/covalent-echarts-tooltip.mjs +5 -0
  83. package/esm2020/tooltip/public_api.mjs +4 -0
  84. package/esm2020/tooltip/series-tooltip.component.mjs +102 -0
  85. package/esm2020/tooltip/tooltip.component.mjs +156 -0
  86. package/esm2020/tooltip/tooltip.module.mjs +28 -0
  87. package/esm2020/tree/covalent-echarts-tree.mjs +5 -0
  88. package/esm2020/tree/public_api.mjs +3 -0
  89. package/esm2020/tree/tree.component.mjs +117 -0
  90. package/esm2020/tree/tree.module.mjs +19 -0
  91. package/esm2020/treemap/covalent-echarts-treemap.mjs +5 -0
  92. package/esm2020/treemap/public_api.mjs +3 -0
  93. package/esm2020/treemap/treemap.component.mjs +149 -0
  94. package/esm2020/treemap/treemap.module.mjs +21 -0
  95. package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +5 -0
  96. package/esm2020/wordcloud/public_api.mjs +3 -0
  97. package/esm2020/wordcloud/wordcloud.component.mjs +92 -0
  98. package/esm2020/wordcloud/wordcloud.module.mjs +21 -0
  99. package/fesm2015/covalent-echarts-bar.mjs +158 -0
  100. package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
  101. package/fesm2015/{covalent-echarts-base.js → covalent-echarts-base.mjs} +390 -856
  102. package/fesm2015/covalent-echarts-base.mjs.map +1 -0
  103. package/fesm2015/covalent-echarts-graph.mjs +210 -0
  104. package/fesm2015/covalent-echarts-graph.mjs.map +1 -0
  105. package/fesm2015/covalent-echarts-line.mjs +182 -0
  106. package/fesm2015/covalent-echarts-line.mjs.map +1 -0
  107. package/fesm2015/covalent-echarts-map.mjs +155 -0
  108. package/fesm2015/covalent-echarts-map.mjs.map +1 -0
  109. package/fesm2015/covalent-echarts-pie.mjs +150 -0
  110. package/fesm2015/covalent-echarts-pie.mjs.map +1 -0
  111. package/fesm2015/covalent-echarts-sankey.mjs +142 -0
  112. package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
  113. package/fesm2015/covalent-echarts-scatter.mjs +169 -0
  114. package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
  115. package/fesm2015/covalent-echarts-toolbox.mjs +158 -0
  116. package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
  117. package/fesm2015/covalent-echarts-tooltip.mjs +283 -0
  118. package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -0
  119. package/fesm2015/covalent-echarts-tree.mjs +140 -0
  120. package/fesm2015/covalent-echarts-tree.mjs.map +1 -0
  121. package/fesm2015/covalent-echarts-treemap.mjs +174 -0
  122. package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
  123. package/fesm2015/covalent-echarts-wordcloud.mjs +117 -0
  124. package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
  125. package/fesm2015/covalent-echarts.mjs +4 -0
  126. package/fesm2015/covalent-echarts.mjs.map +1 -0
  127. package/fesm2020/covalent-echarts-bar.mjs +158 -0
  128. package/fesm2020/covalent-echarts-bar.mjs.map +1 -0
  129. package/fesm2020/covalent-echarts-base.mjs +4930 -0
  130. package/fesm2020/covalent-echarts-base.mjs.map +1 -0
  131. package/fesm2020/covalent-echarts-graph.mjs +210 -0
  132. package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
  133. package/fesm2020/covalent-echarts-line.mjs +182 -0
  134. package/fesm2020/covalent-echarts-line.mjs.map +1 -0
  135. package/fesm2020/covalent-echarts-map.mjs +155 -0
  136. package/fesm2020/covalent-echarts-map.mjs.map +1 -0
  137. package/fesm2020/covalent-echarts-pie.mjs +150 -0
  138. package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
  139. package/fesm2020/covalent-echarts-sankey.mjs +142 -0
  140. package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
  141. package/fesm2020/covalent-echarts-scatter.mjs +169 -0
  142. package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
  143. package/fesm2020/covalent-echarts-toolbox.mjs +163 -0
  144. package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -0
  145. package/fesm2020/covalent-echarts-tooltip.mjs +283 -0
  146. package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
  147. package/fesm2020/covalent-echarts-tree.mjs +140 -0
  148. package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
  149. package/fesm2020/covalent-echarts-treemap.mjs +174 -0
  150. package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
  151. package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
  152. package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
  153. package/fesm2020/covalent-echarts.mjs +4 -0
  154. package/fesm2020/covalent-echarts.mjs.map +1 -0
  155. package/graph/README.md +21 -19
  156. package/graph/covalent-echarts-graph.d.ts +2 -1
  157. package/graph/graph.component.d.ts +63 -60
  158. package/graph/graph.module.d.ts +6 -1
  159. package/graph/package.json +6 -7
  160. package/graph/{public-api.d.ts → public_api.d.ts} +0 -0
  161. package/line/README.md +19 -21
  162. package/line/covalent-echarts-line.d.ts +2 -1
  163. package/line/line.component.d.ts +38 -35
  164. package/line/line.module.d.ts +6 -1
  165. package/line/package.json +6 -7
  166. package/line/{public-api.d.ts → public_api.d.ts} +0 -0
  167. package/map/README.md +19 -17
  168. package/map/covalent-echarts-map.d.ts +2 -1
  169. package/map/map.component.d.ts +30 -27
  170. package/map/map.module.d.ts +6 -1
  171. package/map/package.json +6 -7
  172. package/map/{public-api.d.ts → public_api.d.ts} +0 -0
  173. package/package.json +130 -31
  174. package/pie/README.md +17 -15
  175. package/pie/covalent-echarts-pie.d.ts +2 -1
  176. package/pie/package.json +6 -7
  177. package/pie/pie.component.d.ts +29 -26
  178. package/pie/pie.module.d.ts +6 -1
  179. package/pie/{public-api.d.ts → public_api.d.ts} +0 -0
  180. package/{index.d.ts → public_api.d.ts} +0 -0
  181. package/sankey/README.md +22 -20
  182. package/sankey/covalent-echarts-sankey.d.ts +2 -1
  183. package/sankey/package.json +6 -7
  184. package/sankey/{public-api.d.ts → public_api.d.ts} +0 -0
  185. package/sankey/sankey.component.d.ts +25 -22
  186. package/sankey/sankey.module.d.ts +6 -1
  187. package/scatter/README.md +19 -21
  188. package/scatter/covalent-echarts-scatter.d.ts +2 -1
  189. package/scatter/package.json +6 -7
  190. package/scatter/{public-api.d.ts → public_api.d.ts} +0 -0
  191. package/scatter/scatter.component.d.ts +34 -31
  192. package/scatter/scatter.module.d.ts +6 -1
  193. package/toolbox/README.md +12 -11
  194. package/toolbox/covalent-echarts-toolbox.d.ts +2 -1
  195. package/toolbox/package.json +6 -7
  196. package/toolbox/{public-api.d.ts → public_api.d.ts} +0 -0
  197. package/toolbox/toolbox.component.d.ts +15 -10
  198. package/toolbox/toolbox.module.d.ts +6 -1
  199. package/tooltip/README.md +30 -26
  200. package/tooltip/covalent-echarts-tooltip.d.ts +2 -1
  201. package/tooltip/package.json +6 -7
  202. package/tooltip/{public-api.d.ts → public_api.d.ts} +0 -0
  203. package/tooltip/series-tooltip.component.d.ts +14 -9
  204. package/tooltip/tooltip.component.d.ts +21 -16
  205. package/tooltip/tooltip.module.d.ts +7 -1
  206. package/tree/README.md +20 -18
  207. package/tree/covalent-echarts-tree.d.ts +2 -1
  208. package/tree/package.json +6 -7
  209. package/tree/{public-api.d.ts → public_api.d.ts} +0 -0
  210. package/tree/tree.component.d.ts +27 -24
  211. package/tree/tree.module.d.ts +6 -1
  212. package/treemap/README.md +23 -21
  213. package/treemap/covalent-echarts-treemap.d.ts +2 -1
  214. package/treemap/package.json +6 -7
  215. package/treemap/{public-api.d.ts → public_api.d.ts} +0 -0
  216. package/treemap/treemap.component.d.ts +40 -37
  217. package/treemap/treemap.module.d.ts +6 -1
  218. package/wordcloud/README.md +25 -23
  219. package/wordcloud/covalent-echarts-wordcloud.d.ts +2 -1
  220. package/wordcloud/package.json +6 -7
  221. package/wordcloud/{public-api.d.ts → public_api.d.ts} +0 -0
  222. package/wordcloud/wordcloud.component.d.ts +17 -14
  223. package/wordcloud/wordcloud.module.d.ts +6 -1
  224. package/bar/covalent-echarts-bar.metadata.json +0 -1
  225. package/bar/index.d.ts +0 -1
  226. package/base/chart.component.scss +0 -4
  227. package/base/covalent-echarts-base.metadata.json +0 -1
  228. package/base/index.d.ts +0 -1
  229. package/bundles/covalent-echarts-bar.umd.js +0 -588
  230. package/bundles/covalent-echarts-bar.umd.js.map +0 -1
  231. package/bundles/covalent-echarts-bar.umd.min.js +0 -16
  232. package/bundles/covalent-echarts-bar.umd.min.js.map +0 -1
  233. package/bundles/covalent-echarts-base.umd.js +0 -5750
  234. package/bundles/covalent-echarts-base.umd.js.map +0 -1
  235. package/bundles/covalent-echarts-base.umd.min.js +0 -16
  236. package/bundles/covalent-echarts-base.umd.min.js.map +0 -1
  237. package/bundles/covalent-echarts-graph.umd.js +0 -745
  238. package/bundles/covalent-echarts-graph.umd.js.map +0 -1
  239. package/bundles/covalent-echarts-graph.umd.min.js +0 -16
  240. package/bundles/covalent-echarts-graph.umd.min.js.map +0 -1
  241. package/bundles/covalent-echarts-line.umd.js +0 -638
  242. package/bundles/covalent-echarts-line.umd.js.map +0 -1
  243. package/bundles/covalent-echarts-line.umd.min.js +0 -16
  244. package/bundles/covalent-echarts-line.umd.min.js.map +0 -1
  245. package/bundles/covalent-echarts-map.umd.js +0 -600
  246. package/bundles/covalent-echarts-map.umd.js.map +0 -1
  247. package/bundles/covalent-echarts-map.umd.min.js +0 -16
  248. package/bundles/covalent-echarts-map.umd.min.js.map +0 -1
  249. package/bundles/covalent-echarts-pie.umd.js +0 -574
  250. package/bundles/covalent-echarts-pie.umd.js.map +0 -1
  251. package/bundles/covalent-echarts-pie.umd.min.js +0 -16
  252. package/bundles/covalent-echarts-pie.umd.min.js.map +0 -1
  253. package/bundles/covalent-echarts-sankey.umd.js +0 -570
  254. package/bundles/covalent-echarts-sankey.umd.js.map +0 -1
  255. package/bundles/covalent-echarts-sankey.umd.min.js +0 -16
  256. package/bundles/covalent-echarts-sankey.umd.min.js.map +0 -1
  257. package/bundles/covalent-echarts-scatter.umd.js +0 -610
  258. package/bundles/covalent-echarts-scatter.umd.js.map +0 -1
  259. package/bundles/covalent-echarts-scatter.umd.min.js +0 -16
  260. package/bundles/covalent-echarts-scatter.umd.min.js.map +0 -1
  261. package/bundles/covalent-echarts-toolbox.umd.js +0 -460
  262. package/bundles/covalent-echarts-toolbox.umd.js.map +0 -1
  263. package/bundles/covalent-echarts-toolbox.umd.min.js +0 -2
  264. package/bundles/covalent-echarts-toolbox.umd.min.js.map +0 -1
  265. package/bundles/covalent-echarts-tooltip.umd.js +0 -476
  266. package/bundles/covalent-echarts-tooltip.umd.js.map +0 -1
  267. package/bundles/covalent-echarts-tooltip.umd.min.js +0 -2
  268. package/bundles/covalent-echarts-tooltip.umd.min.js.map +0 -1
  269. package/bundles/covalent-echarts-tree.umd.js +0 -584
  270. package/bundles/covalent-echarts-tree.umd.js.map +0 -1
  271. package/bundles/covalent-echarts-tree.umd.min.js +0 -16
  272. package/bundles/covalent-echarts-tree.umd.min.js.map +0 -1
  273. package/bundles/covalent-echarts-treemap.umd.js +0 -728
  274. package/bundles/covalent-echarts-treemap.umd.js.map +0 -1
  275. package/bundles/covalent-echarts-treemap.umd.min.js +0 -16
  276. package/bundles/covalent-echarts-treemap.umd.min.js.map +0 -1
  277. package/bundles/covalent-echarts-wordcloud.umd.js +0 -521
  278. package/bundles/covalent-echarts-wordcloud.umd.js.map +0 -1
  279. package/bundles/covalent-echarts-wordcloud.umd.min.js +0 -16
  280. package/bundles/covalent-echarts-wordcloud.umd.min.js.map +0 -1
  281. package/bundles/covalent-echarts.umd.js +0 -9
  282. package/bundles/covalent-echarts.umd.js.map +0 -1
  283. package/bundles/covalent-echarts.umd.min.js +0 -2
  284. package/bundles/covalent-echarts.umd.min.js.map +0 -1
  285. package/covalent-echarts.metadata.json +0 -1
  286. package/esm2015/bar/bar.component.js +0 -241
  287. package/esm2015/bar/bar.module.js +0 -21
  288. package/esm2015/bar/covalent-echarts-bar.js +0 -10
  289. package/esm2015/bar/index.js +0 -7
  290. package/esm2015/bar/public-api.js +0 -8
  291. package/esm2015/base/axis/axis.component.js +0 -209
  292. package/esm2015/base/axis/axis.interface.js +0 -324
  293. package/esm2015/base/axis/x-axis.component.js +0 -67
  294. package/esm2015/base/axis/y-axis.component.js +0 -67
  295. package/esm2015/base/base.module.js +0 -31
  296. package/esm2015/base/base.types.js +0 -278
  297. package/esm2015/base/chart-options.service.js +0 -115
  298. package/esm2015/base/chart.component.js +0 -354
  299. package/esm2015/base/covalent-echarts-base.js +0 -11
  300. package/esm2015/base/dataset/dataset.component.js +0 -93
  301. package/esm2015/base/index.js +0 -7
  302. package/esm2015/base/public-api.js +0 -15
  303. package/esm2015/base/series/series.component.js +0 -187
  304. package/esm2015/base/series/series.interface.js +0 -178
  305. package/esm2015/base/themes/aqua-splash.js +0 -465
  306. package/esm2015/base/themes/california-coast.js +0 -465
  307. package/esm2015/base/themes/hawaiian-sunrise.js +0 -465
  308. package/esm2015/base/themes/passion-flower.js +0 -465
  309. package/esm2015/base/themes/teradata-classic.js +0 -465
  310. package/esm2015/base/themes/teradata-default.js +0 -465
  311. package/esm2015/base/themes/urban-sunrise.js +0 -465
  312. package/esm2015/base/themes/volcanic-eruption.js +0 -465
  313. package/esm2015/base/utils/assign-defined.js +0 -37
  314. package/esm2015/base/utils/echarts.js +0 -60
  315. package/esm2015/base/utils/index.js +0 -8
  316. package/esm2015/covalent-echarts.js +0 -10
  317. package/esm2015/graph/covalent-echarts-graph.js +0 -10
  318. package/esm2015/graph/graph.component.js +0 -398
  319. package/esm2015/graph/graph.module.js +0 -21
  320. package/esm2015/graph/index.js +0 -7
  321. package/esm2015/graph/public-api.js +0 -8
  322. package/esm2015/index.js +0 -7
  323. package/esm2015/line/covalent-echarts-line.js +0 -10
  324. package/esm2015/line/index.js +0 -7
  325. package/esm2015/line/line.component.js +0 -291
  326. package/esm2015/line/line.module.js +0 -21
  327. package/esm2015/line/public-api.js +0 -8
  328. package/esm2015/map/covalent-echarts-map.js +0 -10
  329. package/esm2015/map/index.js +0 -7
  330. package/esm2015/map/map.component.js +0 -253
  331. package/esm2015/map/map.module.js +0 -21
  332. package/esm2015/map/public-api.js +0 -8
  333. package/esm2015/pie/covalent-echarts-pie.js +0 -10
  334. package/esm2015/pie/index.js +0 -7
  335. package/esm2015/pie/pie.component.js +0 -227
  336. package/esm2015/pie/pie.module.js +0 -21
  337. package/esm2015/pie/public-api.js +0 -8
  338. package/esm2015/sankey/covalent-echarts-sankey.js +0 -10
  339. package/esm2015/sankey/index.js +0 -7
  340. package/esm2015/sankey/public-api.js +0 -8
  341. package/esm2015/sankey/sankey.component.js +0 -223
  342. package/esm2015/sankey/sankey.module.js +0 -21
  343. package/esm2015/scatter/covalent-echarts-scatter.js +0 -10
  344. package/esm2015/scatter/index.js +0 -7
  345. package/esm2015/scatter/public-api.js +0 -8
  346. package/esm2015/scatter/scatter.component.js +0 -263
  347. package/esm2015/scatter/scatter.module.js +0 -21
  348. package/esm2015/toolbox/covalent-echarts-toolbox.js +0 -10
  349. package/esm2015/toolbox/index.js +0 -7
  350. package/esm2015/toolbox/public-api.js +0 -8
  351. package/esm2015/toolbox/toolbox.component.js +0 -405
  352. package/esm2015/toolbox/toolbox.module.js +0 -21
  353. package/esm2015/tooltip/covalent-echarts-tooltip.js +0 -10
  354. package/esm2015/tooltip/index.js +0 -7
  355. package/esm2015/tooltip/public-api.js +0 -9
  356. package/esm2015/tooltip/series-tooltip.component.js +0 -170
  357. package/esm2015/tooltip/tooltip.component.js +0 -246
  358. package/esm2015/tooltip/tooltip.module.js +0 -26
  359. package/esm2015/tree/covalent-echarts-tree.js +0 -10
  360. package/esm2015/tree/index.js +0 -7
  361. package/esm2015/tree/public-api.js +0 -8
  362. package/esm2015/tree/tree.component.js +0 -237
  363. package/esm2015/tree/tree.module.js +0 -21
  364. package/esm2015/treemap/covalent-echarts-treemap.js +0 -10
  365. package/esm2015/treemap/index.js +0 -7
  366. package/esm2015/treemap/public-api.js +0 -8
  367. package/esm2015/treemap/treemap.component.js +0 -380
  368. package/esm2015/treemap/treemap.module.js +0 -21
  369. package/esm2015/wordcloud/covalent-echarts-wordcloud.js +0 -10
  370. package/esm2015/wordcloud/index.js +0 -7
  371. package/esm2015/wordcloud/public-api.js +0 -8
  372. package/esm2015/wordcloud/wordcloud.component.js +0 -174
  373. package/esm2015/wordcloud/wordcloud.module.js +0 -21
  374. package/fesm2015/covalent-echarts-bar.js +0 -281
  375. package/fesm2015/covalent-echarts-bar.js.map +0 -1
  376. package/fesm2015/covalent-echarts-base.js.map +0 -1
  377. package/fesm2015/covalent-echarts-graph.js +0 -438
  378. package/fesm2015/covalent-echarts-graph.js.map +0 -1
  379. package/fesm2015/covalent-echarts-line.js +0 -331
  380. package/fesm2015/covalent-echarts-line.js.map +0 -1
  381. package/fesm2015/covalent-echarts-map.js +0 -293
  382. package/fesm2015/covalent-echarts-map.js.map +0 -1
  383. package/fesm2015/covalent-echarts-pie.js +0 -267
  384. package/fesm2015/covalent-echarts-pie.js.map +0 -1
  385. package/fesm2015/covalent-echarts-sankey.js +0 -263
  386. package/fesm2015/covalent-echarts-sankey.js.map +0 -1
  387. package/fesm2015/covalent-echarts-scatter.js +0 -303
  388. package/fesm2015/covalent-echarts-scatter.js.map +0 -1
  389. package/fesm2015/covalent-echarts-toolbox.js +0 -445
  390. package/fesm2015/covalent-echarts-toolbox.js.map +0 -1
  391. package/fesm2015/covalent-echarts-tooltip.js +0 -457
  392. package/fesm2015/covalent-echarts-tooltip.js.map +0 -1
  393. package/fesm2015/covalent-echarts-tree.js +0 -277
  394. package/fesm2015/covalent-echarts-tree.js.map +0 -1
  395. package/fesm2015/covalent-echarts-treemap.js +0 -420
  396. package/fesm2015/covalent-echarts-treemap.js.map +0 -1
  397. package/fesm2015/covalent-echarts-wordcloud.js +0 -214
  398. package/fesm2015/covalent-echarts-wordcloud.js.map +0 -1
  399. package/fesm2015/covalent-echarts.js +0 -12
  400. package/fesm2015/covalent-echarts.js.map +0 -1
  401. package/graph/covalent-echarts-graph.metadata.json +0 -1
  402. package/graph/index.d.ts +0 -1
  403. package/line/covalent-echarts-line.metadata.json +0 -1
  404. package/line/index.d.ts +0 -1
  405. package/map/covalent-echarts-map.metadata.json +0 -1
  406. package/map/index.d.ts +0 -1
  407. package/pie/covalent-echarts-pie.metadata.json +0 -1
  408. package/pie/index.d.ts +0 -1
  409. package/sankey/covalent-echarts-sankey.metadata.json +0 -1
  410. package/sankey/index.d.ts +0 -1
  411. package/scatter/covalent-echarts-scatter.metadata.json +0 -1
  412. package/scatter/index.d.ts +0 -1
  413. package/toolbox/covalent-echarts-toolbox.metadata.json +0 -1
  414. package/toolbox/index.d.ts +0 -1
  415. package/tooltip/covalent-echarts-tooltip.metadata.json +0 -1
  416. package/tooltip/index.d.ts +0 -1
  417. package/tree/covalent-echarts-tree.metadata.json +0 -1
  418. package/tree/index.d.ts +0 -1
  419. package/treemap/covalent-echarts-treemap.metadata.json +0 -1
  420. package/treemap/index.d.ts +0 -1
  421. package/wordcloud/covalent-echarts-wordcloud.metadata.json +0 -1
  422. package/wordcloud/index.d.ts +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../../node_modules/tslib/tslib.es6.js","../../../../src/platform/echarts/sankey/sankey.component.ts","../../../../src/platform/echarts/sankey/sankey.module.ts"],"names":["extendStatics","d","b","Object","setPrototypeOf","__proto__","Array","p","prototype","hasOwnProperty","call","create","TdChartSeriesSankeyComponent","_optionsService","_super","this","__","constructor","__extends","getConfig","zlevel","z","left","top","right","bottom","width","height","nodeWidth","nodeGap","layoutIterations","orient","draggable","focusNodeAdjacency","label","itemStyle","lineStyle","emphasis","nodes","links","edges","silent","TdSeriesDirective","Component","args","selector","template","changeDetection","ChangeDetectionStrategy","OnPush","inputs","providers","provide","useExisting","forwardRef","TdChartOptionsService","Input","SANKEY_MODULE_COMPONENTS","NgModule","imports","CommonModule","declarations","exports"],"mappings":";;;;;;;;;;;;;;oFAgBA,IAAIA,EAAgB,SAASC,EAAGC,GAI5B,OAHAF,EAAgBG,OAAOC,gBAClB,CAAEC,UAAW,cAAgBC,OAAS,SAAUL,EAAGC,GAAKD,EAAEI,UAAYH,IACvE,SAAUD,EAAGC,GAAK,IAAK,IAAIK,KAAKL,EAAOC,OAAOK,UAAUC,eAAeC,KAAKR,EAAGK,KAAIN,EAAEM,GAAKL,EAAEK,MAC3EN,EAAGC,IAqFCC,OAAOQ,OA0FXR,OAAOQ,yBC1F9B,SAAAC,EAAYC,UACVC,EAAAJ,KAAAK,KAAM,SAAUF,IAAgBE,qBDnFVd,EAAGC,GAEzB,SAASc,IAAOD,KAAKE,YAAchB,EADnCD,EAAcC,EAAGC,GAEjBD,EAAEO,UAAkB,OAANN,EAAaC,OAAOQ,OAAOT,IAAMc,EAAGR,UAAYN,EAAEM,UAAW,IAAIQ,GCuDjCE,CAAAN,EAAAE,GA4BhDF,EAAAJ,UAAAW,UAAA,WACE,MAAO,CACLC,OAAQL,KAAKK,OACbC,EAAGN,KAAKM,EACRC,KAAMP,KAAKO,KACXC,IAAKR,KAAKQ,IACVC,MAAOT,KAAKS,MACZC,OAAQV,KAAKU,OACbC,MAAOX,KAAKW,MACZC,OAAQZ,KAAKY,OACbC,UAAWb,KAAKa,UAChBC,QAASd,KAAKc,QACdC,iBAAkBf,KAAKe,iBACvBC,OAAQhB,KAAKgB,OACbC,UAAWjB,KAAKiB,UAChBC,mBAAoBlB,KAAKkB,mBACzBC,MAAOnB,KAAKmB,MACZC,UAAWpB,KAAKoB,UAChBC,UAAWrB,KAAKqB,UAChBC,SAAUtB,KAAKsB,SACfC,MAAOvB,KAAKuB,MACZC,MAAOxB,KAAKwB,MACZC,MAAOzB,KAAKyB,MACZC,OAAQ1B,KAAK0B,YAnD+BC,EAAAA,uCA5BjDC,EAAAA,UAASC,KAAA,CAAC,CACTC,SAAU,6BACVC,SAAU,GACVC,gBAAiBC,EAAAA,wBAAwBC,OACzCC,OAAQ,CACN,SACA,KACA,OACA,QACA,OAEA,YACA,qBACA,oBACA,kBACA,iBACA,0BACA,wBACA,uBACA,WAEFC,UAAW,CACT,CACEC,QAASV,EAAAA,kBACTW,YAAaC,EAAAA,YAAU,WAAO,OAAA1C,oDA1ElC2C,EAAAA,yDA+ECC,EAAAA,iBACAA,EAAAA,oBACAA,EAAAA,mBACAA,EAAAA,qBACAA,EAAAA,sBACAA,EAAAA,qBACAA,EAAAA,sBACAA,EAAAA,yBACAA,EAAAA,uBACAA,EAAAA,gCACAA,EAAAA,sBACAA,EAAAA,yBACAA,EAAAA,kCACAA,EAAAA,qBACAA,EAAAA,yBACAA,EAAAA,yBACAA,EAAAA,wBACAA,EAAAA,qBACAA,EAAAA,qBACAA,EAAAA,qBACAA,EAAAA,sBACAA,EAAAA,aChGUC,EAAwC,CAAC7C,KAOtD,iCALC8C,EAAAA,SAAQd,KAAA,CAAC,CACRe,QAAS,CAACC,EAAAA,cACVC,aAAc,CAACJ,GACfK,QAAS,CAACL","sourcesContent":["/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n ITdLabel,\n ITdItemStyle,\n ITdEmphasis,\n ITdSeries,\n TdSeriesDirective,\n ITdShadow,\n ITdLineCurveStyle,\n} from '@covalent/echarts/base';\n\nexport type TdSankeyOrient = 'horizontal' | 'vertical';\n\nexport type TdSankeyFocusNodeAdjacency = boolean | 'allEdges' | 'outEdges' | 'inEdges';\n\nexport interface ITdSankeyEmphasisLineStyle extends ITdShadow {\n color?: any;\n opacity?: number;\n curveness?: number;\n}\n\nexport interface ITdSankeyEmphasis extends ITdEmphasis {\n lineStyle: ITdSankeyEmphasisLineStyle;\n}\n\nexport interface ITdSankeySeries 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 nodeWidth?: number;\n nodeGap?: number;\n layoutIterations?: number;\n orient?: TdSankeyOrient;\n draggable?: boolean;\n focusNodeAdjacency?: TdSankeyFocusNodeAdjacency;\n label?: ITdLabel;\n itemStyle?: ITdItemStyle;\n lineStyle?: ITdLineCurveStyle;\n emphasis?: ITdEmphasis;\n data?: any[];\n nodes?: any[];\n links?: any[];\n edges?: any[];\n silent?: boolean;\n}\n\n@Component({\n selector: 'td-chart-series[td-sankey]',\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(() => TdChartSeriesSankeyComponent),\n },\n ],\n})\nexport class TdChartSeriesSankeyComponent extends TdSeriesDirective implements ITdSankeySeries {\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() nodeWidth: number;\n @Input() nodeGap: number;\n @Input() layoutIterations: number;\n @Input() orient: TdSankeyOrient;\n @Input() draggable: boolean;\n @Input() focusNodeAdjacency: TdSankeyFocusNodeAdjacency;\n @Input() label: ITdLabel;\n @Input() itemStyle: ITdItemStyle;\n @Input() lineStyle: ITdLineCurveStyle;\n @Input() emphasis: ITdEmphasis;\n @Input() nodes: any[];\n @Input() links: any[];\n @Input() edges: any[];\n @Input() silent: boolean;\n\n constructor(_optionsService: TdChartOptionsService) {\n super('sankey', _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 nodeWidth: this.nodeWidth,\n nodeGap: this.nodeGap,\n layoutIterations: this.layoutIterations,\n orient: this.orient,\n draggable: this.draggable,\n focusNodeAdjacency: this.focusNodeAdjacency,\n label: this.label,\n itemStyle: this.itemStyle,\n lineStyle: this.lineStyle,\n emphasis: this.emphasis,\n nodes: this.nodes,\n links: this.links,\n edges: this.edges,\n silent: this.silent,\n };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport 'echarts/lib/chart/sankey';\n\nimport { TdChartSeriesSankeyComponent } from './sankey.component';\n\nexport const SANKEY_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesSankeyComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [SANKEY_MODULE_COMPONENTS],\n exports: [SANKEY_MODULE_COMPONENTS],\n})\nexport class CovalentSankeyEchartsModule {}\n"]}
@@ -1,610 +0,0 @@
1
- (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('echarts/lib/chart/scatter'), require('@covalent/echarts/base')) :
3
- typeof define === 'function' && define.amd ? define('@covalent/echarts/scatter', ['exports', '@angular/core', '@angular/common', 'echarts/lib/chart/scatter', '@covalent/echarts/base'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.covalent = global.covalent || {}, global.covalent.echarts = global.covalent.echarts || {}, global.covalent.echarts.scatter = {}), global.ng.core, global.ng.common, null, global.covalent.echarts.base));
5
- }(this, (function (exports, core, common, scatter, base) { 'use strict';
6
-
7
- /*! *****************************************************************************
8
- Copyright (c) Microsoft Corporation.
9
-
10
- Permission to use, copy, modify, and/or distribute this software for any
11
- purpose with or without fee is hereby granted.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
14
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
15
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
16
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
17
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
18
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19
- PERFORMANCE OF THIS SOFTWARE.
20
- ***************************************************************************** */
21
- /* global Reflect, Promise */
22
- var extendStatics = function (d, b) {
23
- extendStatics = Object.setPrototypeOf ||
24
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
25
- function (d, b) { for (var p in b)
26
- if (Object.prototype.hasOwnProperty.call(b, p))
27
- d[p] = b[p]; };
28
- return extendStatics(d, b);
29
- };
30
- function __extends(d, b) {
31
- extendStatics(d, b);
32
- function __() { this.constructor = d; }
33
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
34
- }
35
- var __assign = function () {
36
- __assign = Object.assign || function __assign(t) {
37
- for (var s, i = 1, n = arguments.length; i < n; i++) {
38
- s = arguments[i];
39
- for (var p in s)
40
- if (Object.prototype.hasOwnProperty.call(s, p))
41
- t[p] = s[p];
42
- }
43
- return t;
44
- };
45
- return __assign.apply(this, arguments);
46
- };
47
- function __rest(s, e) {
48
- var t = {};
49
- for (var p in s)
50
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
51
- t[p] = s[p];
52
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
53
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
54
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
55
- t[p[i]] = s[p[i]];
56
- }
57
- return t;
58
- }
59
- function __decorate(decorators, target, key, desc) {
60
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
61
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
62
- r = Reflect.decorate(decorators, target, key, desc);
63
- else
64
- for (var i = decorators.length - 1; i >= 0; i--)
65
- if (d = decorators[i])
66
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
67
- return c > 3 && r && Object.defineProperty(target, key, r), r;
68
- }
69
- function __param(paramIndex, decorator) {
70
- return function (target, key) { decorator(target, key, paramIndex); };
71
- }
72
- function __metadata(metadataKey, metadataValue) {
73
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
74
- return Reflect.metadata(metadataKey, metadataValue);
75
- }
76
- function __awaiter(thisArg, _arguments, P, generator) {
77
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
78
- return new (P || (P = Promise))(function (resolve, reject) {
79
- function fulfilled(value) { try {
80
- step(generator.next(value));
81
- }
82
- catch (e) {
83
- reject(e);
84
- } }
85
- function rejected(value) { try {
86
- step(generator["throw"](value));
87
- }
88
- catch (e) {
89
- reject(e);
90
- } }
91
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
92
- step((generator = generator.apply(thisArg, _arguments || [])).next());
93
- });
94
- }
95
- function __generator(thisArg, body) {
96
- var _ = { label: 0, sent: function () { if (t[0] & 1)
97
- throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
98
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function () { return this; }), g;
99
- function verb(n) { return function (v) { return step([n, v]); }; }
100
- function step(op) {
101
- if (f)
102
- throw new TypeError("Generator is already executing.");
103
- while (_)
104
- try {
105
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
106
- return t;
107
- if (y = 0, t)
108
- op = [op[0] & 2, t.value];
109
- switch (op[0]) {
110
- case 0:
111
- case 1:
112
- t = op;
113
- break;
114
- case 4:
115
- _.label++;
116
- return { value: op[1], done: false };
117
- case 5:
118
- _.label++;
119
- y = op[1];
120
- op = [0];
121
- continue;
122
- case 7:
123
- op = _.ops.pop();
124
- _.trys.pop();
125
- continue;
126
- default:
127
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
128
- _ = 0;
129
- continue;
130
- }
131
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) {
132
- _.label = op[1];
133
- break;
134
- }
135
- if (op[0] === 6 && _.label < t[1]) {
136
- _.label = t[1];
137
- t = op;
138
- break;
139
- }
140
- if (t && _.label < t[2]) {
141
- _.label = t[2];
142
- _.ops.push(op);
143
- break;
144
- }
145
- if (t[2])
146
- _.ops.pop();
147
- _.trys.pop();
148
- continue;
149
- }
150
- op = body.call(thisArg, _);
151
- }
152
- catch (e) {
153
- op = [6, e];
154
- y = 0;
155
- }
156
- finally {
157
- f = t = 0;
158
- }
159
- if (op[0] & 5)
160
- throw op[1];
161
- return { value: op[0] ? op[1] : void 0, done: true };
162
- }
163
- }
164
- var __createBinding = Object.create ? (function (o, m, k, k2) {
165
- if (k2 === undefined)
166
- k2 = k;
167
- Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
168
- }) : (function (o, m, k, k2) {
169
- if (k2 === undefined)
170
- k2 = k;
171
- o[k2] = m[k];
172
- });
173
- function __exportStar(m, o) {
174
- for (var p in m)
175
- if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p))
176
- __createBinding(o, m, p);
177
- }
178
- function __values(o) {
179
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
180
- if (m)
181
- return m.call(o);
182
- if (o && typeof o.length === "number")
183
- return {
184
- next: function () {
185
- if (o && i >= o.length)
186
- o = void 0;
187
- return { value: o && o[i++], done: !o };
188
- }
189
- };
190
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
191
- }
192
- function __read(o, n) {
193
- var m = typeof Symbol === "function" && o[Symbol.iterator];
194
- if (!m)
195
- return o;
196
- var i = m.call(o), r, ar = [], e;
197
- try {
198
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done)
199
- ar.push(r.value);
200
- }
201
- catch (error) {
202
- e = { error: error };
203
- }
204
- finally {
205
- try {
206
- if (r && !r.done && (m = i["return"]))
207
- m.call(i);
208
- }
209
- finally {
210
- if (e)
211
- throw e.error;
212
- }
213
- }
214
- return ar;
215
- }
216
- function __spread() {
217
- for (var ar = [], i = 0; i < arguments.length; i++)
218
- ar = ar.concat(__read(arguments[i]));
219
- return ar;
220
- }
221
- function __spreadArrays() {
222
- for (var s = 0, i = 0, il = arguments.length; i < il; i++)
223
- s += arguments[i].length;
224
- for (var r = Array(s), k = 0, i = 0; i < il; i++)
225
- for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
226
- r[k] = a[j];
227
- return r;
228
- }
229
- ;
230
- function __await(v) {
231
- return this instanceof __await ? (this.v = v, this) : new __await(v);
232
- }
233
- function __asyncGenerator(thisArg, _arguments, generator) {
234
- if (!Symbol.asyncIterator)
235
- throw new TypeError("Symbol.asyncIterator is not defined.");
236
- var g = generator.apply(thisArg, _arguments || []), i, q = [];
237
- return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
238
- function verb(n) { if (g[n])
239
- i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
240
- function resume(n, v) { try {
241
- step(g[n](v));
242
- }
243
- catch (e) {
244
- settle(q[0][3], e);
245
- } }
246
- function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
247
- function fulfill(value) { resume("next", value); }
248
- function reject(value) { resume("throw", value); }
249
- function settle(f, v) { if (f(v), q.shift(), q.length)
250
- resume(q[0][0], q[0][1]); }
251
- }
252
- function __asyncDelegator(o) {
253
- var i, p;
254
- return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
255
- function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
256
- }
257
- function __asyncValues(o) {
258
- if (!Symbol.asyncIterator)
259
- throw new TypeError("Symbol.asyncIterator is not defined.");
260
- var m = o[Symbol.asyncIterator], i;
261
- return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
262
- function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
263
- function settle(resolve, reject, d, v) { Promise.resolve(v).then(function (v) { resolve({ value: v, done: d }); }, reject); }
264
- }
265
- function __makeTemplateObject(cooked, raw) {
266
- if (Object.defineProperty) {
267
- Object.defineProperty(cooked, "raw", { value: raw });
268
- }
269
- else {
270
- cooked.raw = raw;
271
- }
272
- return cooked;
273
- }
274
- ;
275
- var __setModuleDefault = Object.create ? (function (o, v) {
276
- Object.defineProperty(o, "default", { enumerable: true, value: v });
277
- }) : function (o, v) {
278
- o["default"] = v;
279
- };
280
- function __importStar(mod) {
281
- if (mod && mod.__esModule)
282
- return mod;
283
- var result = {};
284
- if (mod != null)
285
- for (var k in mod)
286
- if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
287
- __createBinding(result, mod, k);
288
- __setModuleDefault(result, mod);
289
- return result;
290
- }
291
- function __importDefault(mod) {
292
- return (mod && mod.__esModule) ? mod : { default: mod };
293
- }
294
- function __classPrivateFieldGet(receiver, privateMap) {
295
- if (!privateMap.has(receiver)) {
296
- throw new TypeError("attempted to get private field on non-instance");
297
- }
298
- return privateMap.get(receiver);
299
- }
300
- function __classPrivateFieldSet(receiver, privateMap, value) {
301
- if (!privateMap.has(receiver)) {
302
- throw new TypeError("attempted to set private field on non-instance");
303
- }
304
- privateMap.set(receiver, value);
305
- return value;
306
- }
307
-
308
- /**
309
- * @record
310
- */
311
- function ITdScatterSeries() { }
312
- if (false) {
313
- /** @type {?|undefined} */
314
- ITdScatterSeries.prototype.coordinateSystem;
315
- /** @type {?|undefined} */
316
- ITdScatterSeries.prototype.xAxisIndex;
317
- /** @type {?|undefined} */
318
- ITdScatterSeries.prototype.yAxisIndex;
319
- /** @type {?|undefined} */
320
- ITdScatterSeries.prototype.polarIndex;
321
- /** @type {?|undefined} */
322
- ITdScatterSeries.prototype.geoIndex;
323
- /** @type {?|undefined} */
324
- ITdScatterSeries.prototype.calendarIndex;
325
- /** @type {?|undefined} */
326
- ITdScatterSeries.prototype.hoverAnimation;
327
- /** @type {?|undefined} */
328
- ITdScatterSeries.prototype.legendHoverLink;
329
- /** @type {?|undefined} */
330
- ITdScatterSeries.prototype.symbol;
331
- /** @type {?|undefined} */
332
- ITdScatterSeries.prototype.symbolSize;
333
- /** @type {?|undefined} */
334
- ITdScatterSeries.prototype.symbolRotate;
335
- /** @type {?|undefined} */
336
- ITdScatterSeries.prototype.symbolKeepAspect;
337
- /** @type {?|undefined} */
338
- ITdScatterSeries.prototype.symbolOffset;
339
- /** @type {?|undefined} */
340
- ITdScatterSeries.prototype.large;
341
- /** @type {?|undefined} */
342
- ITdScatterSeries.prototype.largeThreshold;
343
- /** @type {?|undefined} */
344
- ITdScatterSeries.prototype.cursor;
345
- /** @type {?|undefined} */
346
- ITdScatterSeries.prototype.connectNulls;
347
- /** @type {?|undefined} */
348
- ITdScatterSeries.prototype.clipOverflow;
349
- /** @type {?|undefined} */
350
- ITdScatterSeries.prototype.step;
351
- /** @type {?|undefined} */
352
- ITdScatterSeries.prototype.label;
353
- /** @type {?|undefined} */
354
- ITdScatterSeries.prototype.itemStyle;
355
- /** @type {?|undefined} */
356
- ITdScatterSeries.prototype.emphasis;
357
- /** @type {?|undefined} */
358
- ITdScatterSeries.prototype.progressive;
359
- /** @type {?|undefined} */
360
- ITdScatterSeries.prototype.progressiveThreshold;
361
- /** @type {?|undefined} */
362
- ITdScatterSeries.prototype.dimensions;
363
- /** @type {?|undefined} */
364
- ITdScatterSeries.prototype.encode;
365
- /** @type {?|undefined} */
366
- ITdScatterSeries.prototype.seriesLayoutBy;
367
- /** @type {?|undefined} */
368
- ITdScatterSeries.prototype.datasetIndex;
369
- /** @type {?|undefined} */
370
- ITdScatterSeries.prototype.data;
371
- /** @type {?|undefined} */
372
- ITdScatterSeries.prototype.markPoint;
373
- /** @type {?|undefined} */
374
- ITdScatterSeries.prototype.markLine;
375
- /** @type {?|undefined} */
376
- ITdScatterSeries.prototype.markArea;
377
- /** @type {?|undefined} */
378
- ITdScatterSeries.prototype.zlevel;
379
- /** @type {?|undefined} */
380
- ITdScatterSeries.prototype.z;
381
- /** @type {?|undefined} */
382
- ITdScatterSeries.prototype.silent;
383
- }
384
- var TdChartSeriesScatterComponent = /** @class */ (function (_super) {
385
- __extends(TdChartSeriesScatterComponent, _super);
386
- /**
387
- * @param {?} _optionsService
388
- */
389
- function TdChartSeriesScatterComponent(_optionsService) {
390
- return _super.call(this, 'scatter', _optionsService) || this;
391
- }
392
- /**
393
- * @return {?}
394
- */
395
- TdChartSeriesScatterComponent.prototype.getConfig = function () {
396
- return {
397
- coordinateSystem: this.coordinateSystem,
398
- xAxisIndex: this.xAxisIndex,
399
- yAxisIndex: this.yAxisIndex,
400
- polarIndex: this.polarIndex,
401
- geoIndex: this.geoIndex,
402
- calendarIndex: this.calendarIndex,
403
- hoverAnimation: this.hoverAnimation,
404
- legendHoverLink: this.legendHoverLink,
405
- symbol: this.symbol,
406
- symbolSize: this.symbolSize,
407
- symbolRotate: this.symbolRotate,
408
- symbolKeepAspect: this.symbolKeepAspect,
409
- symbolOffset: this.symbolOffset,
410
- large: this.large,
411
- largeThreshold: this.largeThreshold,
412
- cursor: this.cursor,
413
- label: this.label,
414
- itemStyle: this.itemStyle,
415
- emphasis: this.emphasis,
416
- progressive: this.progressive,
417
- progressiveThreshold: this.progressiveThreshold,
418
- dimensions: this.dimensions,
419
- encode: this.encode,
420
- seriesLayoutBy: this.seriesLayoutBy,
421
- datasetIndex: this.datasetIndex,
422
- markPoint: this.markPoint,
423
- markLine: this.markLine,
424
- markArea: this.markArea,
425
- zlevel: this.zlevel,
426
- z: this.z,
427
- silent: this.silent,
428
- };
429
- };
430
- return TdChartSeriesScatterComponent;
431
- }(base.TdSeriesDirective));
432
- TdChartSeriesScatterComponent.decorators = [
433
- { type: core.Component, args: [{
434
- selector: 'td-chart-series[td-scatter]',
435
- template: '',
436
- changeDetection: core.ChangeDetectionStrategy.OnPush,
437
- inputs: [
438
- 'config',
439
- 'id',
440
- 'name',
441
- 'color',
442
- 'data',
443
- 'animation',
444
- 'animationThreshold',
445
- 'animationDuration',
446
- 'animationEasing',
447
- 'animationDelay',
448
- 'animationDurationUpdate',
449
- 'animationEasingUpdate',
450
- 'animationDelayUpdate',
451
- 'tooltip',
452
- ],
453
- providers: [
454
- {
455
- provide: base.TdSeriesDirective,
456
- useExisting: core.forwardRef(( /**
457
- * @return {?}
458
- */function () { return TdChartSeriesScatterComponent; })),
459
- },
460
- ]
461
- }] }
462
- ];
463
- /** @nocollapse */
464
- TdChartSeriesScatterComponent.ctorParameters = function () { return [
465
- { type: base.TdChartOptionsService }
466
- ]; };
467
- TdChartSeriesScatterComponent.propDecorators = {
468
- coordinateSystem: [{ type: core.Input }],
469
- xAxisIndex: [{ type: core.Input }],
470
- yAxisIndex: [{ type: core.Input }],
471
- polarIndex: [{ type: core.Input }],
472
- geoIndex: [{ type: core.Input }],
473
- calendarIndex: [{ type: core.Input }],
474
- hoverAnimation: [{ type: core.Input }],
475
- legendHoverLink: [{ type: core.Input }],
476
- symbol: [{ type: core.Input }],
477
- symbolSize: [{ type: core.Input }],
478
- symbolRotate: [{ type: core.Input }],
479
- symbolKeepAspect: [{ type: core.Input }],
480
- symbolOffset: [{ type: core.Input }],
481
- large: [{ type: core.Input }],
482
- largeThreshold: [{ type: core.Input }],
483
- cursor: [{ type: core.Input }],
484
- label: [{ type: core.Input }],
485
- itemStyle: [{ type: core.Input }],
486
- emphasis: [{ type: core.Input }],
487
- progressive: [{ type: core.Input }],
488
- progressiveThreshold: [{ type: core.Input }],
489
- dimensions: [{ type: core.Input }],
490
- encode: [{ type: core.Input }],
491
- seriesLayoutBy: [{ type: core.Input }],
492
- datasetIndex: [{ type: core.Input }],
493
- markPoint: [{ type: core.Input }],
494
- markLine: [{ type: core.Input }],
495
- markArea: [{ type: core.Input }],
496
- zlevel: [{ type: core.Input }],
497
- z: [{ type: core.Input }],
498
- silent: [{ type: core.Input }]
499
- };
500
- if (false) {
501
- /** @type {?} */
502
- TdChartSeriesScatterComponent.prototype.coordinateSystem;
503
- /** @type {?} */
504
- TdChartSeriesScatterComponent.prototype.xAxisIndex;
505
- /** @type {?} */
506
- TdChartSeriesScatterComponent.prototype.yAxisIndex;
507
- /** @type {?} */
508
- TdChartSeriesScatterComponent.prototype.polarIndex;
509
- /** @type {?} */
510
- TdChartSeriesScatterComponent.prototype.geoIndex;
511
- /** @type {?} */
512
- TdChartSeriesScatterComponent.prototype.calendarIndex;
513
- /** @type {?} */
514
- TdChartSeriesScatterComponent.prototype.hoverAnimation;
515
- /** @type {?} */
516
- TdChartSeriesScatterComponent.prototype.legendHoverLink;
517
- /** @type {?} */
518
- TdChartSeriesScatterComponent.prototype.symbol;
519
- /** @type {?} */
520
- TdChartSeriesScatterComponent.prototype.symbolSize;
521
- /** @type {?} */
522
- TdChartSeriesScatterComponent.prototype.symbolRotate;
523
- /** @type {?} */
524
- TdChartSeriesScatterComponent.prototype.symbolKeepAspect;
525
- /** @type {?} */
526
- TdChartSeriesScatterComponent.prototype.symbolOffset;
527
- /** @type {?} */
528
- TdChartSeriesScatterComponent.prototype.large;
529
- /** @type {?} */
530
- TdChartSeriesScatterComponent.prototype.largeThreshold;
531
- /** @type {?} */
532
- TdChartSeriesScatterComponent.prototype.cursor;
533
- /** @type {?} */
534
- TdChartSeriesScatterComponent.prototype.label;
535
- /** @type {?} */
536
- TdChartSeriesScatterComponent.prototype.itemStyle;
537
- /** @type {?} */
538
- TdChartSeriesScatterComponent.prototype.emphasis;
539
- /** @type {?} */
540
- TdChartSeriesScatterComponent.prototype.progressive;
541
- /** @type {?} */
542
- TdChartSeriesScatterComponent.prototype.progressiveThreshold;
543
- /** @type {?} */
544
- TdChartSeriesScatterComponent.prototype.dimensions;
545
- /** @type {?} */
546
- TdChartSeriesScatterComponent.prototype.encode;
547
- /** @type {?} */
548
- TdChartSeriesScatterComponent.prototype.seriesLayoutBy;
549
- /** @type {?} */
550
- TdChartSeriesScatterComponent.prototype.datasetIndex;
551
- /** @type {?} */
552
- TdChartSeriesScatterComponent.prototype.markPoint;
553
- /** @type {?} */
554
- TdChartSeriesScatterComponent.prototype.markLine;
555
- /** @type {?} */
556
- TdChartSeriesScatterComponent.prototype.markArea;
557
- /** @type {?} */
558
- TdChartSeriesScatterComponent.prototype.zlevel;
559
- /** @type {?} */
560
- TdChartSeriesScatterComponent.prototype.z;
561
- /** @type {?} */
562
- TdChartSeriesScatterComponent.prototype.silent;
563
- }
564
-
565
- /**
566
- * @fileoverview added by tsickle
567
- * Generated from: scatter.module.ts
568
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
569
- */
570
- /** @type {?} */
571
- var SCATTER_MODULE_COMPONENTS = [TdChartSeriesScatterComponent];
572
- var CovalentScatterEchartsModule = /** @class */ (function () {
573
- function CovalentScatterEchartsModule() {
574
- }
575
- return CovalentScatterEchartsModule;
576
- }());
577
- CovalentScatterEchartsModule.decorators = [
578
- { type: core.NgModule, args: [{
579
- imports: [common.CommonModule],
580
- declarations: [SCATTER_MODULE_COMPONENTS],
581
- exports: [SCATTER_MODULE_COMPONENTS],
582
- },] }
583
- ];
584
-
585
- /**
586
- * @fileoverview added by tsickle
587
- * Generated from: public-api.ts
588
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
589
- */
590
-
591
- /**
592
- * @fileoverview added by tsickle
593
- * Generated from: index.ts
594
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
595
- */
596
-
597
- /**
598
- * @fileoverview added by tsickle
599
- * Generated from: covalent-echarts-scatter.ts
600
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
601
- */
602
-
603
- exports.CovalentScatterEchartsModule = CovalentScatterEchartsModule;
604
- exports.SCATTER_MODULE_COMPONENTS = SCATTER_MODULE_COMPONENTS;
605
- exports.TdChartSeriesScatterComponent = TdChartSeriesScatterComponent;
606
-
607
- Object.defineProperty(exports, '__esModule', { value: true });
608
-
609
- })));
610
- //# sourceMappingURL=covalent-echarts-scatter.umd.js.map