@covalent/echarts 3.1.2 → 4.0.0-beta.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 (386) hide show
  1. package/bar/bar.component.d.ts +3 -0
  2. package/bar/bar.module.d.ts +6 -1
  3. package/bar/covalent-echarts-bar.d.ts +1 -0
  4. package/bar/package.json +6 -7
  5. package/base/axis/axis.component.d.ts +3 -0
  6. package/base/axis/x-axis.component.d.ts +3 -0
  7. package/base/axis/y-axis.component.d.ts +3 -0
  8. package/base/base.module.d.ts +9 -1
  9. package/base/chart-options.service.d.ts +3 -0
  10. package/base/chart.component.d.ts +3 -0
  11. package/base/covalent-echarts-base.d.ts +1 -1
  12. package/base/dataset/dataset.component.d.ts +3 -0
  13. package/base/package.json +6 -7
  14. package/base/series/series.component.d.ts +3 -0
  15. package/covalent-echarts.d.ts +1 -0
  16. package/esm2020/bar/bar.component.mjs +136 -0
  17. package/esm2020/bar/bar.module.mjs +20 -0
  18. package/esm2020/bar/covalent-echarts-bar.mjs +5 -0
  19. package/esm2020/bar/index.mjs +2 -0
  20. package/esm2020/bar/public-api.mjs +3 -0
  21. package/esm2020/base/axis/axis.component.mjs +127 -0
  22. package/esm2020/base/axis/axis.interface.mjs +2 -0
  23. package/esm2020/base/axis/x-axis.component.mjs +55 -0
  24. package/esm2020/base/axis/y-axis.component.mjs +55 -0
  25. package/esm2020/base/base.module.mjs +36 -0
  26. package/esm2020/base/base.types.mjs +2 -0
  27. package/esm2020/base/chart-options.service.mjs +65 -0
  28. package/esm2020/base/chart.component.mjs +191 -0
  29. package/esm2020/base/covalent-echarts-base.mjs +5 -0
  30. package/esm2020/base/dataset/dataset.component.mjs +52 -0
  31. package/esm2020/base/index.mjs +2 -0
  32. package/esm2020/base/public-api.mjs +10 -0
  33. package/esm2020/base/series/series.component.mjs +91 -0
  34. package/esm2020/base/series/series.interface.mjs +2 -0
  35. package/{esm2015/base/themes/teradata-classic.js → esm2020/base/themes/aqua-splash.mjs} +10 -15
  36. package/esm2020/base/themes/california-coast.mjs +460 -0
  37. package/esm2020/base/themes/hawaiian-sunrise.mjs +460 -0
  38. package/{esm2015/base/themes/volcanic-eruption.js → esm2020/base/themes/passion-flower.mjs} +18 -23
  39. package/esm2020/base/themes/razzleberry-pie.mjs +460 -0
  40. package/esm2020/base/themes/teradata-classic.mjs +460 -0
  41. package/{esm2015/base/themes/hawaiian-sunrise.js → esm2020/base/themes/teradata-default.mjs} +18 -23
  42. package/esm2020/base/themes/urban-sunrise.mjs +460 -0
  43. package/esm2020/base/themes/volcanic-eruption.mjs +460 -0
  44. package/esm2020/base/utils/assign-defined.mjs +25 -0
  45. package/esm2020/base/utils/echarts.mjs +49 -0
  46. package/esm2020/base/utils/index.mjs +3 -0
  47. package/esm2020/covalent-echarts.mjs +5 -0
  48. package/esm2020/graph/covalent-echarts-graph.mjs +5 -0
  49. package/esm2020/graph/graph.component.mjs +186 -0
  50. package/esm2020/graph/graph.module.mjs +20 -0
  51. package/esm2020/graph/index.mjs +2 -0
  52. package/esm2020/graph/public-api.mjs +3 -0
  53. package/esm2020/index.mjs +2 -0
  54. package/esm2020/line/covalent-echarts-line.mjs +5 -0
  55. package/esm2020/line/index.mjs +2 -0
  56. package/esm2020/line/line.component.mjs +160 -0
  57. package/esm2020/line/line.module.mjs +20 -0
  58. package/esm2020/line/public-api.mjs +3 -0
  59. package/esm2020/map/covalent-echarts-map.mjs +5 -0
  60. package/esm2020/map/index.mjs +2 -0
  61. package/esm2020/map/map.component.mjs +133 -0
  62. package/esm2020/map/map.module.mjs +20 -0
  63. package/esm2020/map/public-api.mjs +3 -0
  64. package/esm2020/pie/covalent-echarts-pie.mjs +5 -0
  65. package/esm2020/pie/index.mjs +2 -0
  66. package/esm2020/pie/pie.component.mjs +128 -0
  67. package/esm2020/pie/pie.module.mjs +20 -0
  68. package/esm2020/pie/public-api.mjs +3 -0
  69. package/esm2020/sankey/covalent-echarts-sankey.mjs +5 -0
  70. package/esm2020/sankey/index.mjs +2 -0
  71. package/esm2020/sankey/public-api.mjs +3 -0
  72. package/esm2020/sankey/sankey.component.mjs +118 -0
  73. package/esm2020/sankey/sankey.module.mjs +20 -0
  74. package/esm2020/scatter/covalent-echarts-scatter.mjs +5 -0
  75. package/esm2020/scatter/index.mjs +2 -0
  76. package/esm2020/scatter/public-api.mjs +3 -0
  77. package/esm2020/scatter/scatter.component.mjs +145 -0
  78. package/esm2020/scatter/scatter.module.mjs +20 -0
  79. package/esm2020/toolbox/covalent-echarts-toolbox.mjs +5 -0
  80. package/esm2020/toolbox/index.mjs +2 -0
  81. package/esm2020/toolbox/public-api.mjs +3 -0
  82. package/esm2020/toolbox/toolbox.component.mjs +151 -0
  83. package/esm2020/toolbox/toolbox.module.mjs +20 -0
  84. package/esm2020/tooltip/covalent-echarts-tooltip.mjs +5 -0
  85. package/esm2020/tooltip/index.mjs +2 -0
  86. package/esm2020/tooltip/public-api.mjs +4 -0
  87. package/esm2020/tooltip/series-tooltip.component.mjs +111 -0
  88. package/esm2020/tooltip/tooltip.component.mjs +165 -0
  89. package/esm2020/tooltip/tooltip.module.mjs +29 -0
  90. package/esm2020/tree/covalent-echarts-tree.mjs +5 -0
  91. package/esm2020/tree/index.mjs +2 -0
  92. package/esm2020/tree/public-api.mjs +3 -0
  93. package/esm2020/tree/tree.component.mjs +118 -0
  94. package/esm2020/tree/tree.module.mjs +20 -0
  95. package/esm2020/treemap/covalent-echarts-treemap.mjs +5 -0
  96. package/esm2020/treemap/index.mjs +2 -0
  97. package/esm2020/treemap/public-api.mjs +3 -0
  98. package/esm2020/treemap/treemap.component.mjs +150 -0
  99. package/esm2020/treemap/treemap.module.mjs +20 -0
  100. package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +5 -0
  101. package/esm2020/wordcloud/index.mjs +2 -0
  102. package/esm2020/wordcloud/public-api.mjs +3 -0
  103. package/esm2020/wordcloud/wordcloud.component.mjs +93 -0
  104. package/esm2020/wordcloud/wordcloud.module.mjs +20 -0
  105. package/fesm2015/covalent-echarts-bar.mjs +164 -0
  106. package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
  107. package/fesm2015/covalent-echarts-base.mjs +4864 -0
  108. package/fesm2015/covalent-echarts-base.mjs.map +1 -0
  109. package/fesm2015/covalent-echarts-graph.mjs +214 -0
  110. package/fesm2015/covalent-echarts-graph.mjs.map +1 -0
  111. package/fesm2015/covalent-echarts-line.mjs +188 -0
  112. package/fesm2015/covalent-echarts-line.mjs.map +1 -0
  113. package/fesm2015/covalent-echarts-map.mjs +161 -0
  114. package/fesm2015/{covalent-echarts-map.js.map → covalent-echarts-map.mjs.map} +1 -1
  115. package/fesm2015/covalent-echarts-pie.mjs +156 -0
  116. package/fesm2015/{covalent-echarts-pie.js.map → covalent-echarts-pie.mjs.map} +1 -1
  117. package/fesm2015/covalent-echarts-sankey.mjs +146 -0
  118. package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
  119. package/fesm2015/covalent-echarts-scatter.mjs +173 -0
  120. package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
  121. package/fesm2015/covalent-echarts-toolbox.mjs +184 -0
  122. package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
  123. package/fesm2015/covalent-echarts-tooltip.mjs +330 -0
  124. package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -0
  125. package/fesm2015/covalent-echarts-tree.mjs +146 -0
  126. package/fesm2015/covalent-echarts-tree.mjs.map +1 -0
  127. package/fesm2015/covalent-echarts-treemap.mjs +178 -0
  128. package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
  129. package/fesm2015/covalent-echarts-wordcloud.mjs +121 -0
  130. package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
  131. package/fesm2015/covalent-echarts.mjs +4 -0
  132. package/fesm2015/covalent-echarts.mjs.map +1 -0
  133. package/fesm2020/covalent-echarts-bar.mjs +160 -0
  134. package/{fesm2015/covalent-echarts-bar.js.map → fesm2020/covalent-echarts-bar.mjs.map} +1 -1
  135. package/{fesm2015/covalent-echarts-base.js → fesm2020/covalent-echarts-base.mjs} +218 -769
  136. package/fesm2020/covalent-echarts-base.mjs.map +1 -0
  137. package/fesm2020/covalent-echarts-graph.mjs +210 -0
  138. package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
  139. package/fesm2020/covalent-echarts-line.mjs +184 -0
  140. package/fesm2020/covalent-echarts-line.mjs.map +1 -0
  141. package/fesm2020/covalent-echarts-map.mjs +157 -0
  142. package/fesm2020/covalent-echarts-map.mjs.map +1 -0
  143. package/fesm2020/covalent-echarts-pie.mjs +152 -0
  144. package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
  145. package/fesm2020/covalent-echarts-sankey.mjs +142 -0
  146. package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
  147. package/fesm2020/covalent-echarts-scatter.mjs +169 -0
  148. package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
  149. package/fesm2020/covalent-echarts-toolbox.mjs +175 -0
  150. package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -0
  151. package/fesm2020/covalent-echarts-tooltip.mjs +302 -0
  152. package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
  153. package/fesm2020/covalent-echarts-tree.mjs +142 -0
  154. package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
  155. package/fesm2020/covalent-echarts-treemap.mjs +174 -0
  156. package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
  157. package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
  158. package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
  159. package/fesm2020/covalent-echarts.mjs +4 -0
  160. package/fesm2020/covalent-echarts.mjs.map +1 -0
  161. package/graph/covalent-echarts-graph.d.ts +1 -0
  162. package/graph/graph.component.d.ts +3 -0
  163. package/graph/graph.module.d.ts +6 -1
  164. package/graph/package.json +6 -7
  165. package/line/covalent-echarts-line.d.ts +1 -0
  166. package/line/line.component.d.ts +3 -0
  167. package/line/line.module.d.ts +6 -1
  168. package/line/package.json +6 -7
  169. package/map/covalent-echarts-map.d.ts +1 -0
  170. package/map/map.component.d.ts +3 -0
  171. package/map/map.module.d.ts +6 -1
  172. package/map/package.json +6 -7
  173. package/package.json +134 -15
  174. package/pie/covalent-echarts-pie.d.ts +1 -0
  175. package/pie/package.json +6 -7
  176. package/pie/pie.component.d.ts +3 -0
  177. package/pie/pie.module.d.ts +6 -1
  178. package/sankey/covalent-echarts-sankey.d.ts +1 -0
  179. package/sankey/package.json +6 -7
  180. package/sankey/sankey.component.d.ts +3 -0
  181. package/sankey/sankey.module.d.ts +6 -1
  182. package/scatter/covalent-echarts-scatter.d.ts +1 -0
  183. package/scatter/package.json +6 -7
  184. package/scatter/scatter.component.d.ts +3 -0
  185. package/scatter/scatter.module.d.ts +6 -1
  186. package/toolbox/covalent-echarts-toolbox.d.ts +1 -0
  187. package/toolbox/package.json +6 -7
  188. package/toolbox/toolbox.component.d.ts +5 -0
  189. package/toolbox/toolbox.module.d.ts +6 -1
  190. package/tooltip/covalent-echarts-tooltip.d.ts +1 -0
  191. package/tooltip/package.json +6 -7
  192. package/tooltip/series-tooltip.component.d.ts +3 -0
  193. package/tooltip/tooltip.component.d.ts +5 -0
  194. package/tooltip/tooltip.module.d.ts +7 -1
  195. package/tree/covalent-echarts-tree.d.ts +1 -0
  196. package/tree/package.json +6 -7
  197. package/tree/tree.component.d.ts +3 -0
  198. package/tree/tree.module.d.ts +6 -1
  199. package/treemap/covalent-echarts-treemap.d.ts +1 -0
  200. package/treemap/package.json +6 -7
  201. package/treemap/treemap.component.d.ts +3 -0
  202. package/treemap/treemap.module.d.ts +6 -1
  203. package/wordcloud/covalent-echarts-wordcloud.d.ts +1 -0
  204. package/wordcloud/package.json +6 -7
  205. package/wordcloud/wordcloud.component.d.ts +3 -0
  206. package/wordcloud/wordcloud.module.d.ts +6 -1
  207. package/bar/covalent-echarts-bar.metadata.json +0 -1
  208. package/base/covalent-echarts-base.metadata.json +0 -1
  209. package/bundles/covalent-echarts-bar.umd.js +0 -588
  210. package/bundles/covalent-echarts-bar.umd.js.map +0 -1
  211. package/bundles/covalent-echarts-bar.umd.min.js +0 -16
  212. package/bundles/covalent-echarts-bar.umd.min.js.map +0 -1
  213. package/bundles/covalent-echarts-base.umd.js +0 -5750
  214. package/bundles/covalent-echarts-base.umd.js.map +0 -1
  215. package/bundles/covalent-echarts-base.umd.min.js +0 -16
  216. package/bundles/covalent-echarts-base.umd.min.js.map +0 -1
  217. package/bundles/covalent-echarts-graph.umd.js +0 -745
  218. package/bundles/covalent-echarts-graph.umd.js.map +0 -1
  219. package/bundles/covalent-echarts-graph.umd.min.js +0 -16
  220. package/bundles/covalent-echarts-graph.umd.min.js.map +0 -1
  221. package/bundles/covalent-echarts-line.umd.js +0 -638
  222. package/bundles/covalent-echarts-line.umd.js.map +0 -1
  223. package/bundles/covalent-echarts-line.umd.min.js +0 -16
  224. package/bundles/covalent-echarts-line.umd.min.js.map +0 -1
  225. package/bundles/covalent-echarts-map.umd.js +0 -600
  226. package/bundles/covalent-echarts-map.umd.js.map +0 -1
  227. package/bundles/covalent-echarts-map.umd.min.js +0 -16
  228. package/bundles/covalent-echarts-map.umd.min.js.map +0 -1
  229. package/bundles/covalent-echarts-pie.umd.js +0 -574
  230. package/bundles/covalent-echarts-pie.umd.js.map +0 -1
  231. package/bundles/covalent-echarts-pie.umd.min.js +0 -16
  232. package/bundles/covalent-echarts-pie.umd.min.js.map +0 -1
  233. package/bundles/covalent-echarts-sankey.umd.js +0 -570
  234. package/bundles/covalent-echarts-sankey.umd.js.map +0 -1
  235. package/bundles/covalent-echarts-sankey.umd.min.js +0 -16
  236. package/bundles/covalent-echarts-sankey.umd.min.js.map +0 -1
  237. package/bundles/covalent-echarts-scatter.umd.js +0 -610
  238. package/bundles/covalent-echarts-scatter.umd.js.map +0 -1
  239. package/bundles/covalent-echarts-scatter.umd.min.js +0 -16
  240. package/bundles/covalent-echarts-scatter.umd.min.js.map +0 -1
  241. package/bundles/covalent-echarts-toolbox.umd.js +0 -460
  242. package/bundles/covalent-echarts-toolbox.umd.js.map +0 -1
  243. package/bundles/covalent-echarts-toolbox.umd.min.js +0 -2
  244. package/bundles/covalent-echarts-toolbox.umd.min.js.map +0 -1
  245. package/bundles/covalent-echarts-tooltip.umd.js +0 -476
  246. package/bundles/covalent-echarts-tooltip.umd.js.map +0 -1
  247. package/bundles/covalent-echarts-tooltip.umd.min.js +0 -2
  248. package/bundles/covalent-echarts-tooltip.umd.min.js.map +0 -1
  249. package/bundles/covalent-echarts-tree.umd.js +0 -584
  250. package/bundles/covalent-echarts-tree.umd.js.map +0 -1
  251. package/bundles/covalent-echarts-tree.umd.min.js +0 -16
  252. package/bundles/covalent-echarts-tree.umd.min.js.map +0 -1
  253. package/bundles/covalent-echarts-treemap.umd.js +0 -728
  254. package/bundles/covalent-echarts-treemap.umd.js.map +0 -1
  255. package/bundles/covalent-echarts-treemap.umd.min.js +0 -16
  256. package/bundles/covalent-echarts-treemap.umd.min.js.map +0 -1
  257. package/bundles/covalent-echarts-wordcloud.umd.js +0 -521
  258. package/bundles/covalent-echarts-wordcloud.umd.js.map +0 -1
  259. package/bundles/covalent-echarts-wordcloud.umd.min.js +0 -16
  260. package/bundles/covalent-echarts-wordcloud.umd.min.js.map +0 -1
  261. package/bundles/covalent-echarts.umd.js +0 -9
  262. package/bundles/covalent-echarts.umd.js.map +0 -1
  263. package/bundles/covalent-echarts.umd.min.js +0 -2
  264. package/bundles/covalent-echarts.umd.min.js.map +0 -1
  265. package/covalent-echarts.metadata.json +0 -1
  266. package/esm2015/bar/bar.component.js +0 -241
  267. package/esm2015/bar/bar.module.js +0 -21
  268. package/esm2015/bar/covalent-echarts-bar.js +0 -10
  269. package/esm2015/bar/index.js +0 -7
  270. package/esm2015/bar/public-api.js +0 -8
  271. package/esm2015/base/axis/axis.component.js +0 -209
  272. package/esm2015/base/axis/axis.interface.js +0 -324
  273. package/esm2015/base/axis/x-axis.component.js +0 -67
  274. package/esm2015/base/axis/y-axis.component.js +0 -67
  275. package/esm2015/base/base.module.js +0 -31
  276. package/esm2015/base/base.types.js +0 -278
  277. package/esm2015/base/chart-options.service.js +0 -115
  278. package/esm2015/base/chart.component.js +0 -354
  279. package/esm2015/base/covalent-echarts-base.js +0 -11
  280. package/esm2015/base/dataset/dataset.component.js +0 -93
  281. package/esm2015/base/index.js +0 -7
  282. package/esm2015/base/public-api.js +0 -15
  283. package/esm2015/base/series/series.component.js +0 -187
  284. package/esm2015/base/series/series.interface.js +0 -178
  285. package/esm2015/base/themes/aqua-splash.js +0 -465
  286. package/esm2015/base/themes/california-coast.js +0 -465
  287. package/esm2015/base/themes/passion-flower.js +0 -465
  288. package/esm2015/base/themes/razzleberry-pie.js +0 -465
  289. package/esm2015/base/themes/teradata-default.js +0 -465
  290. package/esm2015/base/themes/urban-sunrise.js +0 -465
  291. package/esm2015/base/utils/assign-defined.js +0 -37
  292. package/esm2015/base/utils/echarts.js +0 -60
  293. package/esm2015/base/utils/index.js +0 -8
  294. package/esm2015/covalent-echarts.js +0 -10
  295. package/esm2015/graph/covalent-echarts-graph.js +0 -10
  296. package/esm2015/graph/graph.component.js +0 -398
  297. package/esm2015/graph/graph.module.js +0 -21
  298. package/esm2015/graph/index.js +0 -7
  299. package/esm2015/graph/public-api.js +0 -8
  300. package/esm2015/index.js +0 -7
  301. package/esm2015/line/covalent-echarts-line.js +0 -10
  302. package/esm2015/line/index.js +0 -7
  303. package/esm2015/line/line.component.js +0 -291
  304. package/esm2015/line/line.module.js +0 -21
  305. package/esm2015/line/public-api.js +0 -8
  306. package/esm2015/map/covalent-echarts-map.js +0 -10
  307. package/esm2015/map/index.js +0 -7
  308. package/esm2015/map/map.component.js +0 -253
  309. package/esm2015/map/map.module.js +0 -21
  310. package/esm2015/map/public-api.js +0 -8
  311. package/esm2015/pie/covalent-echarts-pie.js +0 -10
  312. package/esm2015/pie/index.js +0 -7
  313. package/esm2015/pie/pie.component.js +0 -227
  314. package/esm2015/pie/pie.module.js +0 -21
  315. package/esm2015/pie/public-api.js +0 -8
  316. package/esm2015/sankey/covalent-echarts-sankey.js +0 -10
  317. package/esm2015/sankey/index.js +0 -7
  318. package/esm2015/sankey/public-api.js +0 -8
  319. package/esm2015/sankey/sankey.component.js +0 -223
  320. package/esm2015/sankey/sankey.module.js +0 -21
  321. package/esm2015/scatter/covalent-echarts-scatter.js +0 -10
  322. package/esm2015/scatter/index.js +0 -7
  323. package/esm2015/scatter/public-api.js +0 -8
  324. package/esm2015/scatter/scatter.component.js +0 -263
  325. package/esm2015/scatter/scatter.module.js +0 -21
  326. package/esm2015/toolbox/covalent-echarts-toolbox.js +0 -10
  327. package/esm2015/toolbox/index.js +0 -7
  328. package/esm2015/toolbox/public-api.js +0 -8
  329. package/esm2015/toolbox/toolbox.component.js +0 -405
  330. package/esm2015/toolbox/toolbox.module.js +0 -21
  331. package/esm2015/tooltip/covalent-echarts-tooltip.js +0 -10
  332. package/esm2015/tooltip/index.js +0 -7
  333. package/esm2015/tooltip/public-api.js +0 -9
  334. package/esm2015/tooltip/series-tooltip.component.js +0 -170
  335. package/esm2015/tooltip/tooltip.component.js +0 -246
  336. package/esm2015/tooltip/tooltip.module.js +0 -26
  337. package/esm2015/tree/covalent-echarts-tree.js +0 -10
  338. package/esm2015/tree/index.js +0 -7
  339. package/esm2015/tree/public-api.js +0 -8
  340. package/esm2015/tree/tree.component.js +0 -237
  341. package/esm2015/tree/tree.module.js +0 -21
  342. package/esm2015/treemap/covalent-echarts-treemap.js +0 -10
  343. package/esm2015/treemap/index.js +0 -7
  344. package/esm2015/treemap/public-api.js +0 -8
  345. package/esm2015/treemap/treemap.component.js +0 -380
  346. package/esm2015/treemap/treemap.module.js +0 -21
  347. package/esm2015/wordcloud/covalent-echarts-wordcloud.js +0 -10
  348. package/esm2015/wordcloud/index.js +0 -7
  349. package/esm2015/wordcloud/public-api.js +0 -8
  350. package/esm2015/wordcloud/wordcloud.component.js +0 -174
  351. package/esm2015/wordcloud/wordcloud.module.js +0 -21
  352. package/fesm2015/covalent-echarts-bar.js +0 -281
  353. package/fesm2015/covalent-echarts-base.js.map +0 -1
  354. package/fesm2015/covalent-echarts-graph.js +0 -438
  355. package/fesm2015/covalent-echarts-graph.js.map +0 -1
  356. package/fesm2015/covalent-echarts-line.js +0 -331
  357. package/fesm2015/covalent-echarts-line.js.map +0 -1
  358. package/fesm2015/covalent-echarts-map.js +0 -293
  359. package/fesm2015/covalent-echarts-pie.js +0 -267
  360. package/fesm2015/covalent-echarts-sankey.js +0 -263
  361. package/fesm2015/covalent-echarts-sankey.js.map +0 -1
  362. package/fesm2015/covalent-echarts-scatter.js +0 -303
  363. package/fesm2015/covalent-echarts-scatter.js.map +0 -1
  364. package/fesm2015/covalent-echarts-toolbox.js +0 -445
  365. package/fesm2015/covalent-echarts-toolbox.js.map +0 -1
  366. package/fesm2015/covalent-echarts-tooltip.js +0 -457
  367. package/fesm2015/covalent-echarts-tooltip.js.map +0 -1
  368. package/fesm2015/covalent-echarts-tree.js +0 -277
  369. package/fesm2015/covalent-echarts-tree.js.map +0 -1
  370. package/fesm2015/covalent-echarts-treemap.js +0 -420
  371. package/fesm2015/covalent-echarts-treemap.js.map +0 -1
  372. package/fesm2015/covalent-echarts-wordcloud.js +0 -214
  373. package/fesm2015/covalent-echarts-wordcloud.js.map +0 -1
  374. package/fesm2015/covalent-echarts.js +0 -12
  375. package/fesm2015/covalent-echarts.js.map +0 -1
  376. package/graph/covalent-echarts-graph.metadata.json +0 -1
  377. package/line/covalent-echarts-line.metadata.json +0 -1
  378. package/map/covalent-echarts-map.metadata.json +0 -1
  379. package/pie/covalent-echarts-pie.metadata.json +0 -1
  380. package/sankey/covalent-echarts-sankey.metadata.json +0 -1
  381. package/scatter/covalent-echarts-scatter.metadata.json +0 -1
  382. package/toolbox/covalent-echarts-toolbox.metadata.json +0 -1
  383. package/tooltip/covalent-echarts-tooltip.metadata.json +0 -1
  384. package/tree/covalent-echarts-tree.metadata.json +0 -1
  385. package/treemap/covalent-echarts-treemap.metadata.json +0 -1
  386. package/wordcloud/covalent-echarts-wordcloud.metadata.json +0 -1
@@ -1,438 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, forwardRef, Input, NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import 'echarts/lib/chart/graph';
4
- import { TdSeriesDirective, TdChartOptionsService } from '@covalent/echarts/base';
5
-
6
- /**
7
- * @fileoverview added by tsickle
8
- * Generated from: graph.component.ts
9
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
10
- */
11
- /**
12
- * @record
13
- */
14
- function ITdCategories() { }
15
- if (false) {
16
- /** @type {?|undefined} */
17
- ITdCategories.prototype.name;
18
- /** @type {?|undefined} */
19
- ITdCategories.prototype.symbol;
20
- /** @type {?|undefined} */
21
- ITdCategories.prototype.symbolSize;
22
- /** @type {?|undefined} */
23
- ITdCategories.prototype.symbolRotate;
24
- /** @type {?|undefined} */
25
- ITdCategories.prototype.symbolKeepAspect;
26
- /** @type {?} */
27
- ITdCategories.prototype.symbolOffset;
28
- /** @type {?} */
29
- ITdCategories.prototype.itemStyle;
30
- /** @type {?} */
31
- ITdCategories.prototype.label;
32
- /** @type {?} */
33
- ITdCategories.prototype.emphasis;
34
- }
35
- /**
36
- * @record
37
- */
38
- function ITdGraphForce() { }
39
- if (false) {
40
- /** @type {?|undefined} */
41
- ITdGraphForce.prototype.initLayout;
42
- /** @type {?|undefined} */
43
- ITdGraphForce.prototype.repulsion;
44
- /** @type {?|undefined} */
45
- ITdGraphForce.prototype.gravity;
46
- /** @type {?|undefined} */
47
- ITdGraphForce.prototype.edgeLength;
48
- /** @type {?|undefined} */
49
- ITdGraphForce.prototype.layoutAnimation;
50
- }
51
- /**
52
- * @record
53
- */
54
- function ITdGraphSeries() { }
55
- if (false) {
56
- /** @type {?|undefined} */
57
- ITdGraphSeries.prototype.legendHoverLink;
58
- /** @type {?|undefined} */
59
- ITdGraphSeries.prototype.coordinateSystem;
60
- /** @type {?|undefined} */
61
- ITdGraphSeries.prototype.xAxisIndex;
62
- /** @type {?|undefined} */
63
- ITdGraphSeries.prototype.yAxisIndex;
64
- /** @type {?|undefined} */
65
- ITdGraphSeries.prototype.polarIndex;
66
- /** @type {?|undefined} */
67
- ITdGraphSeries.prototype.calendarIndex;
68
- /** @type {?|undefined} */
69
- ITdGraphSeries.prototype.geoIndex;
70
- /** @type {?|undefined} */
71
- ITdGraphSeries.prototype.hoverAnimation;
72
- /** @type {?|undefined} */
73
- ITdGraphSeries.prototype.circular;
74
- /** @type {?|undefined} */
75
- ITdGraphSeries.prototype.force;
76
- /** @type {?|undefined} */
77
- ITdGraphSeries.prototype.layout;
78
- /** @type {?|undefined} */
79
- ITdGraphSeries.prototype.nodeScaleRatio;
80
- /** @type {?|undefined} */
81
- ITdGraphSeries.prototype.draggable;
82
- /** @type {?|undefined} */
83
- ITdGraphSeries.prototype.symbol;
84
- /** @type {?|undefined} */
85
- ITdGraphSeries.prototype.symbolSize;
86
- /** @type {?|undefined} */
87
- ITdGraphSeries.prototype.symbolRotate;
88
- /** @type {?|undefined} */
89
- ITdGraphSeries.prototype.symbolKeepAspect;
90
- /** @type {?|undefined} */
91
- ITdGraphSeries.prototype.symbolOffset;
92
- /** @type {?} */
93
- ITdGraphSeries.prototype.focusNodeAdjacency;
94
- /** @type {?} */
95
- ITdGraphSeries.prototype.edgeSymbol;
96
- /** @type {?} */
97
- ITdGraphSeries.prototype.edgeSymbolSize;
98
- /** @type {?} */
99
- ITdGraphSeries.prototype.cursor;
100
- /** @type {?|undefined} */
101
- ITdGraphSeries.prototype.roam;
102
- /** @type {?|undefined} */
103
- ITdGraphSeries.prototype.expandAndCollapse;
104
- /** @type {?|undefined} */
105
- ITdGraphSeries.prototype.initialTreeDepth;
106
- /** @type {?|undefined} */
107
- ITdGraphSeries.prototype.itemStyle;
108
- /** @type {?|undefined} */
109
- ITdGraphSeries.prototype.lineStyle;
110
- /** @type {?|undefined} */
111
- ITdGraphSeries.prototype.label;
112
- /** @type {?|undefined} */
113
- ITdGraphSeries.prototype.edgeLabel;
114
- /** @type {?|undefined} */
115
- ITdGraphSeries.prototype.emphasis;
116
- /** @type {?} */
117
- ITdGraphSeries.prototype.categories;
118
- /** @type {?|undefined} */
119
- ITdGraphSeries.prototype.data;
120
- /** @type {?} */
121
- ITdGraphSeries.prototype.nodes;
122
- /** @type {?} */
123
- ITdGraphSeries.prototype.links;
124
- /** @type {?} */
125
- ITdGraphSeries.prototype.edges;
126
- /** @type {?|undefined} */
127
- ITdGraphSeries.prototype.markPoint;
128
- /** @type {?|undefined} */
129
- ITdGraphSeries.prototype.markLine;
130
- /** @type {?|undefined} */
131
- ITdGraphSeries.prototype.markArea;
132
- /** @type {?} */
133
- ITdGraphSeries.prototype.zlevel;
134
- /** @type {?|undefined} */
135
- ITdGraphSeries.prototype.z;
136
- /** @type {?|undefined} */
137
- ITdGraphSeries.prototype.silent;
138
- /** @type {?} */
139
- ITdGraphSeries.prototype.left;
140
- /** @type {?} */
141
- ITdGraphSeries.prototype.top;
142
- /** @type {?} */
143
- ITdGraphSeries.prototype.right;
144
- /** @type {?} */
145
- ITdGraphSeries.prototype.bottom;
146
- /** @type {?} */
147
- ITdGraphSeries.prototype.width;
148
- /** @type {?} */
149
- ITdGraphSeries.prototype.height;
150
- /** @type {?|undefined} */
151
- ITdGraphSeries.prototype.animation;
152
- /** @type {?|undefined} */
153
- ITdGraphSeries.prototype.animationThreshold;
154
- /** @type {?|undefined} */
155
- ITdGraphSeries.prototype.animationDuration;
156
- /** @type {?|undefined} */
157
- ITdGraphSeries.prototype.animationEasing;
158
- /** @type {?|undefined} */
159
- ITdGraphSeries.prototype.animationDelay;
160
- /** @type {?|undefined} */
161
- ITdGraphSeries.prototype.animationDurationUpdate;
162
- /** @type {?|undefined} */
163
- ITdGraphSeries.prototype.animationEasingUpdate;
164
- /** @type {?|undefined} */
165
- ITdGraphSeries.prototype.animationDelayUpdate;
166
- }
167
- class TdChartSeriesGraphComponent extends TdSeriesDirective {
168
- /**
169
- * @param {?} _optionsService
170
- */
171
- constructor(_optionsService) {
172
- super('graph', _optionsService);
173
- }
174
- /**
175
- * @return {?}
176
- */
177
- getConfig() {
178
- return {
179
- legendHoverLink: this.legendHoverLink,
180
- coordinateSystem: this.coordinateSystem,
181
- xAxisIndex: this.xAxisIndex,
182
- yAxisIndex: this.yAxisIndex,
183
- polarIndex: this.polarIndex,
184
- calendarIndex: this.calendarIndex,
185
- geoIndex: this.geoIndex,
186
- hoverAnimation: this.hoverAnimation,
187
- circular: this.circular,
188
- force: this.force,
189
- layout: this.layout,
190
- nodeScaleRatio: this.nodeScaleRatio,
191
- draggable: this.draggable,
192
- symbol: this.symbol,
193
- symbolSize: this.symbolSize,
194
- symbolRotate: this.symbolRotate,
195
- symbolKeepAspect: this.symbolKeepAspect,
196
- symbolOffset: this.symbolOffset,
197
- focusNodeAdjacency: this.focusNodeAdjacency,
198
- edgeSymbol: this.edgeSymbol,
199
- edgeSymbolSize: this.edgeSymbolSize,
200
- cursor: this.cursor,
201
- roam: this.roam,
202
- itemStyle: this.itemStyle,
203
- lineStyle: this.lineStyle,
204
- label: this.label,
205
- edgeLabel: this.edgeLabel,
206
- emphasis: this.emphasis,
207
- categories: this.categories,
208
- nodes: this.nodes,
209
- links: this.links,
210
- edges: this.edges,
211
- markPoint: this.markPoint,
212
- markLine: this.markLine,
213
- markArea: this.markArea,
214
- zlevel: this.zlevel,
215
- z: this.z,
216
- silent: this.silent,
217
- left: this.left,
218
- top: this.top,
219
- right: this.right,
220
- bottom: this.bottom,
221
- width: this.width,
222
- height: this.height,
223
- };
224
- }
225
- }
226
- TdChartSeriesGraphComponent.decorators = [
227
- { type: Component, args: [{
228
- selector: 'td-chart-series[td-graph]',
229
- template: '',
230
- changeDetection: ChangeDetectionStrategy.OnPush,
231
- inputs: [
232
- 'config',
233
- 'id',
234
- 'name',
235
- 'color',
236
- 'data',
237
- 'animation',
238
- 'animationThreshold',
239
- 'animationDuration',
240
- 'animationEasing',
241
- 'animationDelay',
242
- 'animationDurationUpdate',
243
- 'animationEasingUpdate',
244
- 'animationDelayUpdate',
245
- 'tooltip',
246
- ],
247
- providers: [
248
- {
249
- provide: TdSeriesDirective,
250
- useExisting: forwardRef((/**
251
- * @return {?}
252
- */
253
- () => TdChartSeriesGraphComponent)),
254
- },
255
- ]
256
- }] }
257
- ];
258
- /** @nocollapse */
259
- TdChartSeriesGraphComponent.ctorParameters = () => [
260
- { type: TdChartOptionsService }
261
- ];
262
- TdChartSeriesGraphComponent.propDecorators = {
263
- legendHoverLink: [{ type: Input }],
264
- coordinateSystem: [{ type: Input }],
265
- xAxisIndex: [{ type: Input }],
266
- yAxisIndex: [{ type: Input }],
267
- polarIndex: [{ type: Input }],
268
- calendarIndex: [{ type: Input }],
269
- geoIndex: [{ type: Input }],
270
- hoverAnimation: [{ type: Input }],
271
- circular: [{ type: Input }],
272
- force: [{ type: Input }],
273
- layout: [{ type: Input }],
274
- nodeScaleRatio: [{ type: Input }],
275
- draggable: [{ type: Input }],
276
- symbol: [{ type: Input }],
277
- symbolSize: [{ type: Input }],
278
- symbolRotate: [{ type: Input }],
279
- symbolKeepAspect: [{ type: Input }],
280
- symbolOffset: [{ type: Input }],
281
- focusNodeAdjacency: [{ type: Input }],
282
- edgeSymbol: [{ type: Input }],
283
- edgeSymbolSize: [{ type: Input }],
284
- cursor: [{ type: Input }],
285
- roam: [{ type: Input }],
286
- initialTreeDepth: [{ type: Input }],
287
- itemStyle: [{ type: Input }],
288
- lineStyle: [{ type: Input }],
289
- label: [{ type: Input }],
290
- edgeLabel: [{ type: Input }],
291
- emphasis: [{ type: Input }],
292
- categories: [{ type: Input }],
293
- nodes: [{ type: Input }],
294
- links: [{ type: Input }],
295
- edges: [{ type: Input }],
296
- markPoint: [{ type: Input }],
297
- markLine: [{ type: Input }],
298
- markArea: [{ type: Input }],
299
- zlevel: [{ type: Input }],
300
- z: [{ type: Input }],
301
- silent: [{ type: Input }],
302
- left: [{ type: Input }],
303
- top: [{ type: Input }],
304
- right: [{ type: Input }],
305
- bottom: [{ type: Input }],
306
- width: [{ type: Input }],
307
- height: [{ type: Input }]
308
- };
309
- if (false) {
310
- /** @type {?} */
311
- TdChartSeriesGraphComponent.prototype.legendHoverLink;
312
- /** @type {?} */
313
- TdChartSeriesGraphComponent.prototype.coordinateSystem;
314
- /** @type {?} */
315
- TdChartSeriesGraphComponent.prototype.xAxisIndex;
316
- /** @type {?} */
317
- TdChartSeriesGraphComponent.prototype.yAxisIndex;
318
- /** @type {?} */
319
- TdChartSeriesGraphComponent.prototype.polarIndex;
320
- /** @type {?} */
321
- TdChartSeriesGraphComponent.prototype.calendarIndex;
322
- /** @type {?} */
323
- TdChartSeriesGraphComponent.prototype.geoIndex;
324
- /** @type {?} */
325
- TdChartSeriesGraphComponent.prototype.hoverAnimation;
326
- /** @type {?} */
327
- TdChartSeriesGraphComponent.prototype.circular;
328
- /** @type {?} */
329
- TdChartSeriesGraphComponent.prototype.force;
330
- /** @type {?} */
331
- TdChartSeriesGraphComponent.prototype.layout;
332
- /** @type {?} */
333
- TdChartSeriesGraphComponent.prototype.nodeScaleRatio;
334
- /** @type {?} */
335
- TdChartSeriesGraphComponent.prototype.draggable;
336
- /** @type {?} */
337
- TdChartSeriesGraphComponent.prototype.symbol;
338
- /** @type {?} */
339
- TdChartSeriesGraphComponent.prototype.symbolSize;
340
- /** @type {?} */
341
- TdChartSeriesGraphComponent.prototype.symbolRotate;
342
- /** @type {?} */
343
- TdChartSeriesGraphComponent.prototype.symbolKeepAspect;
344
- /** @type {?} */
345
- TdChartSeriesGraphComponent.prototype.symbolOffset;
346
- /** @type {?} */
347
- TdChartSeriesGraphComponent.prototype.focusNodeAdjacency;
348
- /** @type {?} */
349
- TdChartSeriesGraphComponent.prototype.edgeSymbol;
350
- /** @type {?} */
351
- TdChartSeriesGraphComponent.prototype.edgeSymbolSize;
352
- /** @type {?} */
353
- TdChartSeriesGraphComponent.prototype.cursor;
354
- /** @type {?} */
355
- TdChartSeriesGraphComponent.prototype.roam;
356
- /** @type {?} */
357
- TdChartSeriesGraphComponent.prototype.initialTreeDepth;
358
- /** @type {?} */
359
- TdChartSeriesGraphComponent.prototype.itemStyle;
360
- /** @type {?} */
361
- TdChartSeriesGraphComponent.prototype.lineStyle;
362
- /** @type {?} */
363
- TdChartSeriesGraphComponent.prototype.label;
364
- /** @type {?} */
365
- TdChartSeriesGraphComponent.prototype.edgeLabel;
366
- /** @type {?} */
367
- TdChartSeriesGraphComponent.prototype.emphasis;
368
- /** @type {?} */
369
- TdChartSeriesGraphComponent.prototype.categories;
370
- /** @type {?} */
371
- TdChartSeriesGraphComponent.prototype.nodes;
372
- /** @type {?} */
373
- TdChartSeriesGraphComponent.prototype.links;
374
- /** @type {?} */
375
- TdChartSeriesGraphComponent.prototype.edges;
376
- /** @type {?} */
377
- TdChartSeriesGraphComponent.prototype.markPoint;
378
- /** @type {?} */
379
- TdChartSeriesGraphComponent.prototype.markLine;
380
- /** @type {?} */
381
- TdChartSeriesGraphComponent.prototype.markArea;
382
- /** @type {?} */
383
- TdChartSeriesGraphComponent.prototype.zlevel;
384
- /** @type {?} */
385
- TdChartSeriesGraphComponent.prototype.z;
386
- /** @type {?} */
387
- TdChartSeriesGraphComponent.prototype.silent;
388
- /** @type {?} */
389
- TdChartSeriesGraphComponent.prototype.left;
390
- /** @type {?} */
391
- TdChartSeriesGraphComponent.prototype.top;
392
- /** @type {?} */
393
- TdChartSeriesGraphComponent.prototype.right;
394
- /** @type {?} */
395
- TdChartSeriesGraphComponent.prototype.bottom;
396
- /** @type {?} */
397
- TdChartSeriesGraphComponent.prototype.width;
398
- /** @type {?} */
399
- TdChartSeriesGraphComponent.prototype.height;
400
- }
401
-
402
- /**
403
- * @fileoverview added by tsickle
404
- * Generated from: graph.module.ts
405
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
406
- */
407
- /** @type {?} */
408
- const GRAPH_MODULE_COMPONENTS = [TdChartSeriesGraphComponent];
409
- class CovalentGraphEchartsModule {
410
- }
411
- CovalentGraphEchartsModule.decorators = [
412
- { type: NgModule, args: [{
413
- imports: [CommonModule],
414
- declarations: [GRAPH_MODULE_COMPONENTS],
415
- exports: [GRAPH_MODULE_COMPONENTS],
416
- },] }
417
- ];
418
-
419
- /**
420
- * @fileoverview added by tsickle
421
- * Generated from: public-api.ts
422
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
423
- */
424
-
425
- /**
426
- * @fileoverview added by tsickle
427
- * Generated from: index.ts
428
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
429
- */
430
-
431
- /**
432
- * @fileoverview added by tsickle
433
- * Generated from: covalent-echarts-graph.ts
434
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
435
- */
436
-
437
- export { CovalentGraphEchartsModule, GRAPH_MODULE_COMPONENTS, TdChartSeriesGraphComponent };
438
- //# sourceMappingURL=covalent-echarts-graph.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"covalent-echarts-graph.js","sources":["../../../../src/platform/echarts/graph/graph.component.ts","../../../../src/platform/echarts/graph/graph.module.ts"],"sourcesContent":["import { Component, Input, ChangeDetectionStrategy, forwardRef } from '@angular/core';\n\nimport {\n TdChartOptionsService,\n TdCoordinateSystem,\n ITdItemStyle,\n ITdEmphasis,\n TdSeriesLayoutBy,\n ITdMarkPoint,\n ITdMarkLine,\n ITdMarkArea,\n ITdSeries,\n ITdLabel,\n TdSeriesDirective,\n TdMarkPointSymbol,\n ITdLineStyle,\n ITdEdgeLabel,\n} from '@covalent/echarts/base';\n\nexport interface ITdCategories {\n name?: string;\n symbol?: TdMarkPointSymbol | string;\n symbolSize?: number | any[];\n symbolRotate?: number;\n symbolKeepAspect?: boolean;\n symbolOffset: any[];\n itemStyle: ITdItemStyle;\n label: ITdLabel;\n emphasis: ITdEmphasis;\n}\n\nexport interface ITdGraphForce {\n initLayout?: string;\n repulsion?: any | number;\n gravity?: number;\n edgeLength?: any | number;\n layoutAnimation?: boolean;\n}\n\nexport type TdGraphLayout = 'none' | 'circular' | 'force';\n\nexport interface ITdGraphSeries extends ITdSeries {\n legendHoverLink?: boolean;\n coordinateSystem?: TdCoordinateSystem;\n xAxisIndex?: number;\n yAxisIndex?: number;\n polarIndex?: number;\n calendarIndex?: number;\n geoIndex?: number;\n hoverAnimation?: boolean;\n circular?: object;\n force?: ITdGraphForce;\n layout?: TdGraphLayout;\n nodeScaleRatio?: boolean;\n draggable?: boolean;\n symbol?: TdMarkPointSymbol | string;\n symbolSize?: number | any[] | Function;\n symbolRotate?: number;\n symbolKeepAspect?: boolean;\n symbolOffset?: any[];\n focusNodeAdjacency: boolean;\n edgeSymbol: any[] | string;\n edgeSymbolSize: number;\n cursor: string;\n roam?: boolean;\n expandAndCollapse?: boolean;\n initialTreeDepth?: number;\n itemStyle?: ITdItemStyle;\n lineStyle?: ITdLineStyle;\n label?: ITdLabel;\n edgeLabel?: ITdEdgeLabel;\n emphasis?: ITdEmphasis;\n categories: ITdCategories;\n data?: any[];\n nodes: any[];\n links: any[];\n edges: any[];\n markPoint?: ITdMarkPoint;\n markLine?: ITdMarkLine;\n markArea?: ITdMarkArea;\n zlevel: number;\n z?: number;\n silent?: boolean;\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 animation?: boolean;\n animationThreshold?: number;\n animationDuration?: number | Function;\n animationEasing?: string;\n animationDelay?: number | Function;\n animationDurationUpdate?: number | Function;\n animationEasingUpdate?: string;\n animationDelayUpdate?: number | Function;\n}\n\n@Component({\n selector: 'td-chart-series[td-graph]',\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(() => TdChartSeriesGraphComponent),\n },\n ],\n})\nexport class TdChartSeriesGraphComponent extends TdSeriesDirective implements ITdGraphSeries {\n @Input() legendHoverLink: boolean;\n @Input() coordinateSystem: TdCoordinateSystem;\n @Input() xAxisIndex: number;\n @Input() yAxisIndex: number;\n @Input() polarIndex: number;\n @Input() calendarIndex: number;\n @Input() geoIndex: number;\n @Input() hoverAnimation: boolean;\n @Input() circular: object;\n @Input() force: ITdGraphForce;\n @Input() layout: TdGraphLayout;\n @Input() nodeScaleRatio: boolean;\n @Input() draggable: boolean;\n @Input() symbol: TdMarkPointSymbol | string;\n @Input() symbolSize: number | any[] | Function;\n @Input() symbolRotate: number;\n @Input() symbolKeepAspect: boolean;\n @Input() symbolOffset: any[];\n @Input() focusNodeAdjacency: boolean;\n @Input() edgeSymbol: any[] | string;\n @Input() edgeSymbolSize: number;\n @Input() cursor: string;\n @Input() roam: boolean;\n @Input() initialTreeDepth: number;\n @Input() itemStyle: ITdItemStyle;\n @Input() lineStyle: ITdLineStyle;\n @Input() label: ITdLabel;\n @Input() edgeLabel: ITdEdgeLabel;\n @Input() emphasis: ITdEmphasis;\n @Input() categories: ITdCategories;\n @Input() nodes: any[];\n @Input() links: any[];\n @Input() edges: any[];\n @Input() markPoint: ITdMarkPoint;\n @Input() markLine: ITdMarkLine;\n @Input() markArea: ITdMarkArea;\n @Input() zlevel: number;\n @Input() z: number;\n @Input() silent: boolean;\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\n constructor(_optionsService: TdChartOptionsService) {\n super('graph', _optionsService);\n }\n\n getConfig(): any {\n return {\n legendHoverLink: this.legendHoverLink,\n coordinateSystem: this.coordinateSystem,\n xAxisIndex: this.xAxisIndex,\n yAxisIndex: this.yAxisIndex,\n polarIndex: this.polarIndex,\n calendarIndex: this.calendarIndex,\n geoIndex: this.geoIndex,\n hoverAnimation: this.hoverAnimation,\n circular: this.circular,\n force: this.force,\n layout: this.layout,\n nodeScaleRatio: this.nodeScaleRatio,\n draggable: this.draggable,\n symbol: this.symbol,\n symbolSize: this.symbolSize,\n symbolRotate: this.symbolRotate,\n symbolKeepAspect: this.symbolKeepAspect,\n symbolOffset: this.symbolOffset,\n focusNodeAdjacency: this.focusNodeAdjacency,\n edgeSymbol: this.edgeSymbol,\n edgeSymbolSize: this.edgeSymbolSize,\n cursor: this.cursor,\n roam: this.roam,\n itemStyle: this.itemStyle,\n lineStyle: this.lineStyle,\n label: this.label,\n edgeLabel: this.edgeLabel,\n emphasis: this.emphasis,\n categories: this.categories,\n nodes: this.nodes,\n links: this.links,\n edges: this.edges,\n markPoint: this.markPoint,\n markLine: this.markLine,\n markArea: this.markArea,\n zlevel: this.zlevel,\n z: this.z,\n silent: this.silent,\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 };\n }\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport 'echarts/lib/chart/graph';\n\nimport { TdChartSeriesGraphComponent } from './graph.component';\n\nexport const GRAPH_MODULE_COMPONENTS: Type<any>[] = [TdChartSeriesGraphComponent];\n\n@NgModule({\n imports: [CommonModule],\n declarations: [GRAPH_MODULE_COMPONENTS],\n exports: [GRAPH_MODULE_COMPONENTS],\n})\nexport class CovalentGraphEchartsModule {}\n"],"names":[],"mappings":"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"}