@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,638 +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/line'), require('@covalent/echarts/base')) :
3
- typeof define === 'function' && define.amd ? define('@covalent/echarts/line', ['exports', '@angular/core', '@angular/common', 'echarts/lib/chart/line', '@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.line = {}), global.ng.core, global.ng.common, null, global.covalent.echarts.base));
5
- }(this, (function (exports, core, common, line, 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 ITdLineSeries() { }
312
- if (false) {
313
- /** @type {?|undefined} */
314
- ITdLineSeries.prototype.coordinateSystem;
315
- /** @type {?|undefined} */
316
- ITdLineSeries.prototype.xAxisIndex;
317
- /** @type {?|undefined} */
318
- ITdLineSeries.prototype.yAxisIndex;
319
- /** @type {?|undefined} */
320
- ITdLineSeries.prototype.polarIndex;
321
- /** @type {?|undefined} */
322
- ITdLineSeries.prototype.symbol;
323
- /** @type {?|undefined} */
324
- ITdLineSeries.prototype.symbolSize;
325
- /** @type {?|undefined} */
326
- ITdLineSeries.prototype.symbolRotate;
327
- /** @type {?|undefined} */
328
- ITdLineSeries.prototype.symbolKeepAspect;
329
- /** @type {?|undefined} */
330
- ITdLineSeries.prototype.symbolOffset;
331
- /** @type {?|undefined} */
332
- ITdLineSeries.prototype.showSymbol;
333
- /** @type {?|undefined} */
334
- ITdLineSeries.prototype.showAllSymbol;
335
- /** @type {?|undefined} */
336
- ITdLineSeries.prototype.hoverAnimation;
337
- /** @type {?|undefined} */
338
- ITdLineSeries.prototype.legendHoverLink;
339
- /** @type {?|undefined} */
340
- ITdLineSeries.prototype.stack;
341
- /** @type {?|undefined} */
342
- ITdLineSeries.prototype.cursor;
343
- /** @type {?|undefined} */
344
- ITdLineSeries.prototype.connectNulls;
345
- /** @type {?|undefined} */
346
- ITdLineSeries.prototype.clipOverflow;
347
- /** @type {?|undefined} */
348
- ITdLineSeries.prototype.step;
349
- /** @type {?|undefined} */
350
- ITdLineSeries.prototype.label;
351
- /** @type {?|undefined} */
352
- ITdLineSeries.prototype.itemStyle;
353
- /** @type {?|undefined} */
354
- ITdLineSeries.prototype.lineStyle;
355
- /** @type {?|undefined} */
356
- ITdLineSeries.prototype.width;
357
- /** @type {?|undefined} */
358
- ITdLineSeries.prototype.opacity;
359
- /** @type {?|undefined} */
360
- ITdLineSeries.prototype.areaStyle;
361
- /** @type {?|undefined} */
362
- ITdLineSeries.prototype.emphasis;
363
- /** @type {?|undefined} */
364
- ITdLineSeries.prototype.smooth;
365
- /** @type {?|undefined} */
366
- ITdLineSeries.prototype.smoothMonotone;
367
- /** @type {?|undefined} */
368
- ITdLineSeries.prototype.sampling;
369
- /** @type {?|undefined} */
370
- ITdLineSeries.prototype.dimensions;
371
- /** @type {?|undefined} */
372
- ITdLineSeries.prototype.encode;
373
- /** @type {?|undefined} */
374
- ITdLineSeries.prototype.seriesLayoutBy;
375
- /** @type {?|undefined} */
376
- ITdLineSeries.prototype.datasetIndex;
377
- /** @type {?|undefined} */
378
- ITdLineSeries.prototype.data;
379
- /** @type {?|undefined} */
380
- ITdLineSeries.prototype.markPoint;
381
- /** @type {?|undefined} */
382
- ITdLineSeries.prototype.markLine;
383
- /** @type {?|undefined} */
384
- ITdLineSeries.prototype.markArea;
385
- /** @type {?|undefined} */
386
- ITdLineSeries.prototype.zlevel;
387
- /** @type {?|undefined} */
388
- ITdLineSeries.prototype.z;
389
- /** @type {?|undefined} */
390
- ITdLineSeries.prototype.silent;
391
- }
392
- var TdChartSeriesLineComponent = /** @class */ (function (_super) {
393
- __extends(TdChartSeriesLineComponent, _super);
394
- /**
395
- * @param {?} _optionsService
396
- */
397
- function TdChartSeriesLineComponent(_optionsService) {
398
- return _super.call(this, 'line', _optionsService) || this;
399
- }
400
- /**
401
- * @return {?}
402
- */
403
- TdChartSeriesLineComponent.prototype.getConfig = function () {
404
- return {
405
- coordinateSystem: this.coordinateSystem,
406
- xAxisIndex: this.xAxisIndex,
407
- yAxisIndex: this.yAxisIndex,
408
- polarIndex: this.polarIndex,
409
- symbol: this.symbol,
410
- symbolSize: this.symbolSize,
411
- symbolRotate: this.symbolRotate,
412
- symbolKeepAspect: this.symbolKeepAspect,
413
- symbolOffset: this.symbolOffset,
414
- showSymbol: this.showSymbol,
415
- showAllSymbol: this.showAllSymbol,
416
- hoverAnimation: this.hoverAnimation,
417
- legendHoverLink: this.legendHoverLink,
418
- stack: this.stack,
419
- cursor: this.cursor,
420
- connectNulls: this.connectNulls,
421
- clipOverflow: this.clipOverflow,
422
- step: this.step,
423
- label: this.label,
424
- itemStyle: this.itemStyle,
425
- lineStyle: this.lineStyle,
426
- areaStyle: this.areaStyle,
427
- emphasis: this.emphasis,
428
- smooth: this.smooth,
429
- smoothMonotone: this.smoothMonotone,
430
- sampling: this.sampling,
431
- dimensions: this.dimensions,
432
- encode: this.encode,
433
- seriesLayoutBy: this.seriesLayoutBy,
434
- datasetIndex: this.datasetIndex,
435
- markPoint: this.markPoint,
436
- markLine: this.markLine,
437
- markArea: this.markArea,
438
- zlevel: this.zlevel,
439
- z: this.z,
440
- silent: this.silent,
441
- };
442
- };
443
- return TdChartSeriesLineComponent;
444
- }(base.TdSeriesDirective));
445
- TdChartSeriesLineComponent.decorators = [
446
- { type: core.Component, args: [{
447
- selector: 'td-chart-series[td-line]',
448
- template: '',
449
- changeDetection: core.ChangeDetectionStrategy.OnPush,
450
- inputs: [
451
- 'config',
452
- 'id',
453
- 'name',
454
- 'color',
455
- 'data',
456
- 'animation',
457
- 'animationThreshold',
458
- 'animationDuration',
459
- 'animationEasing',
460
- 'animationDelay',
461
- 'animationDurationUpdate',
462
- 'animationEasingUpdate',
463
- 'animationDelayUpdate',
464
- 'tooltip',
465
- ],
466
- providers: [
467
- {
468
- provide: base.TdSeriesDirective,
469
- useExisting: core.forwardRef(( /**
470
- * @return {?}
471
- */function () { return TdChartSeriesLineComponent; })),
472
- },
473
- ]
474
- }] }
475
- ];
476
- /** @nocollapse */
477
- TdChartSeriesLineComponent.ctorParameters = function () { return [
478
- { type: base.TdChartOptionsService }
479
- ]; };
480
- TdChartSeriesLineComponent.propDecorators = {
481
- coordinateSystem: [{ type: core.Input }],
482
- xAxisIndex: [{ type: core.Input }],
483
- yAxisIndex: [{ type: core.Input }],
484
- polarIndex: [{ type: core.Input }],
485
- symbol: [{ type: core.Input }],
486
- symbolSize: [{ type: core.Input }],
487
- symbolRotate: [{ type: core.Input }],
488
- symbolKeepAspect: [{ type: core.Input }],
489
- symbolOffset: [{ type: core.Input }],
490
- showSymbol: [{ type: core.Input }],
491
- showAllSymbol: [{ type: core.Input }],
492
- hoverAnimation: [{ type: core.Input }],
493
- legendHoverLink: [{ type: core.Input }],
494
- stack: [{ type: core.Input }],
495
- cursor: [{ type: core.Input }],
496
- connectNulls: [{ type: core.Input }],
497
- clipOverflow: [{ type: core.Input }],
498
- step: [{ type: core.Input }],
499
- label: [{ type: core.Input }],
500
- itemStyle: [{ type: core.Input }],
501
- lineStyle: [{ type: core.Input }],
502
- areaStyle: [{ type: core.Input }],
503
- emphasis: [{ type: core.Input }],
504
- smooth: [{ type: core.Input }],
505
- smoothMonotone: [{ type: core.Input }],
506
- sampling: [{ type: core.Input }],
507
- dimensions: [{ type: core.Input }],
508
- encode: [{ type: core.Input }],
509
- seriesLayoutBy: [{ type: core.Input }],
510
- datasetIndex: [{ type: core.Input }],
511
- markPoint: [{ type: core.Input }],
512
- markLine: [{ type: core.Input }],
513
- markArea: [{ type: core.Input }],
514
- zlevel: [{ type: core.Input }],
515
- z: [{ type: core.Input }],
516
- silent: [{ type: core.Input }]
517
- };
518
- if (false) {
519
- /** @type {?} */
520
- TdChartSeriesLineComponent.prototype.coordinateSystem;
521
- /** @type {?} */
522
- TdChartSeriesLineComponent.prototype.xAxisIndex;
523
- /** @type {?} */
524
- TdChartSeriesLineComponent.prototype.yAxisIndex;
525
- /** @type {?} */
526
- TdChartSeriesLineComponent.prototype.polarIndex;
527
- /** @type {?} */
528
- TdChartSeriesLineComponent.prototype.symbol;
529
- /** @type {?} */
530
- TdChartSeriesLineComponent.prototype.symbolSize;
531
- /** @type {?} */
532
- TdChartSeriesLineComponent.prototype.symbolRotate;
533
- /** @type {?} */
534
- TdChartSeriesLineComponent.prototype.symbolKeepAspect;
535
- /** @type {?} */
536
- TdChartSeriesLineComponent.prototype.symbolOffset;
537
- /** @type {?} */
538
- TdChartSeriesLineComponent.prototype.showSymbol;
539
- /** @type {?} */
540
- TdChartSeriesLineComponent.prototype.showAllSymbol;
541
- /** @type {?} */
542
- TdChartSeriesLineComponent.prototype.hoverAnimation;
543
- /** @type {?} */
544
- TdChartSeriesLineComponent.prototype.legendHoverLink;
545
- /** @type {?} */
546
- TdChartSeriesLineComponent.prototype.stack;
547
- /** @type {?} */
548
- TdChartSeriesLineComponent.prototype.cursor;
549
- /** @type {?} */
550
- TdChartSeriesLineComponent.prototype.connectNulls;
551
- /** @type {?} */
552
- TdChartSeriesLineComponent.prototype.clipOverflow;
553
- /** @type {?} */
554
- TdChartSeriesLineComponent.prototype.step;
555
- /** @type {?} */
556
- TdChartSeriesLineComponent.prototype.label;
557
- /** @type {?} */
558
- TdChartSeriesLineComponent.prototype.itemStyle;
559
- /** @type {?} */
560
- TdChartSeriesLineComponent.prototype.lineStyle;
561
- /** @type {?} */
562
- TdChartSeriesLineComponent.prototype.areaStyle;
563
- /** @type {?} */
564
- TdChartSeriesLineComponent.prototype.emphasis;
565
- /** @type {?} */
566
- TdChartSeriesLineComponent.prototype.smooth;
567
- /** @type {?} */
568
- TdChartSeriesLineComponent.prototype.smoothMonotone;
569
- /** @type {?} */
570
- TdChartSeriesLineComponent.prototype.sampling;
571
- /** @type {?} */
572
- TdChartSeriesLineComponent.prototype.dimensions;
573
- /** @type {?} */
574
- TdChartSeriesLineComponent.prototype.encode;
575
- /** @type {?} */
576
- TdChartSeriesLineComponent.prototype.seriesLayoutBy;
577
- /** @type {?} */
578
- TdChartSeriesLineComponent.prototype.datasetIndex;
579
- /** @type {?} */
580
- TdChartSeriesLineComponent.prototype.markPoint;
581
- /** @type {?} */
582
- TdChartSeriesLineComponent.prototype.markLine;
583
- /** @type {?} */
584
- TdChartSeriesLineComponent.prototype.markArea;
585
- /** @type {?} */
586
- TdChartSeriesLineComponent.prototype.zlevel;
587
- /** @type {?} */
588
- TdChartSeriesLineComponent.prototype.z;
589
- /** @type {?} */
590
- TdChartSeriesLineComponent.prototype.silent;
591
- }
592
-
593
- /**
594
- * @fileoverview added by tsickle
595
- * Generated from: line.module.ts
596
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
597
- */
598
- /** @type {?} */
599
- var LINE_MODULE_COMPONENTS = [TdChartSeriesLineComponent];
600
- var CovalentLineEchartsModule = /** @class */ (function () {
601
- function CovalentLineEchartsModule() {
602
- }
603
- return CovalentLineEchartsModule;
604
- }());
605
- CovalentLineEchartsModule.decorators = [
606
- { type: core.NgModule, args: [{
607
- imports: [common.CommonModule],
608
- declarations: [LINE_MODULE_COMPONENTS],
609
- exports: [LINE_MODULE_COMPONENTS],
610
- },] }
611
- ];
612
-
613
- /**
614
- * @fileoverview added by tsickle
615
- * Generated from: public-api.ts
616
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
617
- */
618
-
619
- /**
620
- * @fileoverview added by tsickle
621
- * Generated from: index.ts
622
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
623
- */
624
-
625
- /**
626
- * @fileoverview added by tsickle
627
- * Generated from: covalent-echarts-line.ts
628
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
629
- */
630
-
631
- exports.CovalentLineEchartsModule = CovalentLineEchartsModule;
632
- exports.LINE_MODULE_COMPONENTS = LINE_MODULE_COMPONENTS;
633
- exports.TdChartSeriesLineComponent = TdChartSeriesLineComponent;
634
-
635
- Object.defineProperty(exports, '__esModule', { value: true });
636
-
637
- })));
638
- //# sourceMappingURL=covalent-echarts-line.umd.js.map