tvcharts 0.8.70 → 0.8.72

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 (1860) hide show
  1. package/index.blank.js +1 -1
  2. package/index.common.js +22 -22
  3. package/index.js +6 -6
  4. package/index.simple.js +9 -9
  5. package/lib/animation/basicTransition.js +243 -0
  6. package/lib/animation/customGraphicKeyframeAnimation.js +143 -0
  7. package/lib/animation/customGraphicTransition.js +481 -0
  8. package/lib/animation/morphTransitionHelper.js +203 -0
  9. package/lib/animation/universalTransition.js +650 -0
  10. package/lib/chart/arrowsPlot/ArrowPlotView.js +132 -0
  11. package/lib/chart/arrowsPlot/ArrowSymbolPath.js +70 -0
  12. package/lib/chart/arrowsPlot/ArrowsPlotLayout.js +123 -0
  13. package/lib/chart/arrowsPlot/ArrowsPlotSeries.js +88 -0
  14. package/lib/chart/arrowsPlot/install.js +53 -0
  15. package/lib/chart/bar/BarSeries.js +112 -0
  16. package/lib/chart/bar/BarView.js +892 -0
  17. package/lib/chart/bar/BaseBarSeries.js +159 -0
  18. package/lib/chart/bar/PictorialBarSeries.js +95 -0
  19. package/lib/chart/bar/PictorialBarView.js +630 -0
  20. package/lib/chart/bar/install.js +81 -0
  21. package/lib/chart/bar/installPictorialBar.js +54 -0
  22. package/lib/chart/bar.js +46 -0
  23. package/lib/chart/barPlot/BarPath.js +68 -0
  24. package/lib/chart/barPlot/BarPlotSeries.js +139 -0
  25. package/lib/chart/barPlot/BarPlotView.js +116 -0
  26. package/lib/chart/barPlot/barPlotLayout.js +149 -0
  27. package/lib/chart/barPlot/install.js +51 -0
  28. package/lib/chart/bgColor/BgColorLayout.js +122 -0
  29. package/lib/chart/bgColor/BgColorPath.js +106 -0
  30. package/lib/chart/bgColor/BgColorSeries.js +98 -0
  31. package/lib/chart/bgColor/BgColorView.js +119 -0
  32. package/lib/chart/bgColor/install.js +73 -0
  33. package/lib/chart/bgColor.js +46 -0
  34. package/lib/chart/boxes/BoxesLayout.js +206 -0
  35. package/lib/chart/boxes/BoxesPath.js +78 -0
  36. package/lib/chart/boxes/BoxesSeries.js +131 -0
  37. package/lib/chart/boxes/BoxesView.js +174 -0
  38. package/lib/chart/boxes/install.js +51 -0
  39. package/lib/chart/boxes/util.js +77 -0
  40. package/lib/chart/boxes.js +46 -0
  41. package/lib/chart/boxplot/BoxplotSeries.js +108 -0
  42. package/lib/chart/boxplot/BoxplotView.js +172 -0
  43. package/lib/chart/boxplot/boxplotLayout.js +181 -0
  44. package/lib/chart/boxplot/boxplotTransform.js +66 -0
  45. package/lib/chart/boxplot/install.js +53 -0
  46. package/lib/chart/boxplot/prepareBoxplotData.js +96 -0
  47. package/lib/chart/boxplot.js +46 -0
  48. package/lib/chart/candlePlot/CandlePlotSeries.js +149 -0
  49. package/lib/chart/candlePlot/CandlePlotView.js +133 -0
  50. package/lib/chart/candlePlot/NormalBoxPath.js +66 -0
  51. package/lib/chart/candlePlot/WickPath.js +57 -0
  52. package/lib/chart/candlePlot/candlePlotLayout.js +244 -0
  53. package/lib/chart/candlePlot/install.js +51 -0
  54. package/lib/chart/candlestick/CandlestickSeries.js +138 -0
  55. package/lib/chart/candlestick/CandlestickView.js +335 -0
  56. package/lib/chart/candlestick/candlestickLayout.js +234 -0
  57. package/lib/chart/candlestick/candlestickVisual.js +86 -0
  58. package/lib/chart/candlestick/install.js +55 -0
  59. package/lib/chart/candlestick/preprocessor.js +55 -0
  60. package/lib/chart/candlestick.js +46 -0
  61. package/lib/chart/charPlot/CharPlotLayout.js +140 -0
  62. package/lib/chart/charPlot/CharPlotSeries.js +106 -0
  63. package/lib/chart/charPlot/CharPlotView.js +135 -0
  64. package/lib/chart/charPlot/install.js +53 -0
  65. package/lib/chart/custom/CustomSeries.js +106 -0
  66. package/lib/chart/custom/CustomView.js +925 -0
  67. package/lib/chart/custom/install.js +49 -0
  68. package/lib/chart/custom.js +46 -0
  69. package/lib/chart/effectScatter/EffectScatterSeries.js +105 -0
  70. package/lib/chart/effectScatter/EffectScatterView.js +99 -0
  71. package/lib/chart/effectScatter/install.js +51 -0
  72. package/lib/chart/effectScatter.js +46 -0
  73. package/lib/chart/fills/FillPolyPath.js +106 -0
  74. package/lib/chart/fills/FillsSeries.js +113 -0
  75. package/lib/chart/fills/FillsView.js +148 -0
  76. package/lib/chart/fills/LargeFillPolyPath.js +107 -0
  77. package/lib/chart/fills/fillsLayout.js +175 -0
  78. package/lib/chart/fills/install.js +73 -0
  79. package/lib/chart/fills.js +46 -0
  80. package/lib/chart/funnel/FunnelSeries.js +145 -0
  81. package/lib/chart/funnel/FunnelView.js +198 -0
  82. package/lib/chart/funnel/funnelLayout.js +344 -0
  83. package/lib/chart/funnel/install.js +53 -0
  84. package/lib/chart/funnel.js +46 -0
  85. package/lib/chart/gauge/GaugeSeries.js +185 -0
  86. package/lib/chart/gauge/GaugeView.js +560 -0
  87. package/lib/chart/gauge/PointerPath.js +83 -0
  88. package/lib/chart/gauge/install.js +49 -0
  89. package/lib/chart/gauge.js +46 -0
  90. package/lib/chart/graph/GraphSeries.js +275 -0
  91. package/lib/chart/graph/GraphView.js +266 -0
  92. package/lib/chart/graph/adjustEdge.js +173 -0
  93. package/lib/chart/graph/categoryFilter.js +74 -0
  94. package/lib/chart/graph/categoryVisual.js +90 -0
  95. package/lib/chart/graph/circularLayout.js +51 -0
  96. package/lib/chart/graph/circularLayoutHelper.js +191 -0
  97. package/lib/chart/graph/createView.js +103 -0
  98. package/lib/chart/graph/edgeVisual.js +93 -0
  99. package/lib/chart/graph/forceHelper.js +185 -0
  100. package/lib/chart/graph/forceLayout.js +160 -0
  101. package/lib/chart/graph/install.js +97 -0
  102. package/lib/chart/graph/simpleLayout.js +78 -0
  103. package/lib/chart/graph/simpleLayoutHelper.js +70 -0
  104. package/lib/chart/graph.js +46 -0
  105. package/lib/chart/heatmap/HeatmapLayer.js +166 -0
  106. package/lib/chart/heatmap/HeatmapSeries.js +89 -0
  107. package/lib/chart/heatmap/HeatmapView.js +310 -0
  108. package/lib/chart/heatmap/install.js +49 -0
  109. package/lib/chart/heatmap.js +46 -0
  110. package/lib/chart/helper/EffectLine.js +207 -0
  111. package/lib/chart/helper/EffectPolyline.js +134 -0
  112. package/lib/chart/helper/EffectSymbol.js +207 -0
  113. package/lib/chart/helper/LargeLineDraw.js +302 -0
  114. package/lib/chart/helper/LargeSymbolDraw.js +309 -0
  115. package/lib/chart/helper/Line.js +420 -0
  116. package/lib/chart/helper/LineDraw.js +167 -0
  117. package/lib/chart/helper/LinePath.js +111 -0
  118. package/lib/chart/helper/Polyline.js +107 -0
  119. package/lib/chart/helper/Symbol.js +380 -0
  120. package/lib/chart/helper/SymbolDraw.js +217 -0
  121. package/lib/chart/helper/createClipPathFromCoordSys.js +145 -0
  122. package/lib/chart/helper/createGraphFromNodeEdge.js +114 -0
  123. package/lib/chart/helper/createRenderPlanner.js +62 -0
  124. package/lib/chart/helper/createSeriesData.js +162 -0
  125. package/lib/chart/helper/createSeriesDataSimply.js +68 -0
  126. package/lib/chart/helper/enableAriaDecalForTree.js +58 -0
  127. package/lib/chart/helper/labelHelper.js +77 -0
  128. package/lib/chart/helper/multipleGraphEdgeHelper.js +226 -0
  129. package/lib/chart/helper/sectorHelper.js +62 -0
  130. package/lib/chart/helper/treeHelper.js +92 -0
  131. package/lib/chart/helper/whiskerBoxCommon.js +138 -0
  132. package/lib/chart/hlines/HLinesSeries.js +140 -0
  133. package/lib/chart/hlines/HLinesView.js +100 -0
  134. package/lib/chart/hlines/hLinesLayout.js +90 -0
  135. package/lib/chart/hlines/install.js +73 -0
  136. package/lib/chart/hlines.js +46 -0
  137. package/lib/chart/labels/LabelsSeries.js +146 -0
  138. package/lib/chart/labels/LabelsView.js +186 -0
  139. package/lib/chart/labels/SymbolPath.js +114 -0
  140. package/lib/chart/labels/install.js +55 -0
  141. package/lib/chart/labels/labelsLayout.js +301 -0
  142. package/lib/chart/labels/labelsVisual.js +185 -0
  143. package/lib/chart/labels.js +46 -0
  144. package/lib/chart/line/LineSeries.js +155 -0
  145. package/lib/chart/line/LineView.js +1121 -0
  146. package/lib/chart/line/helper.js +123 -0
  147. package/lib/chart/line/install.js +69 -0
  148. package/lib/chart/line/lineAnimationDiff.js +165 -0
  149. package/lib/chart/line/poly.js +353 -0
  150. package/lib/chart/line.js +46 -0
  151. package/lib/chart/lineFills/LineFillsLayout.js +125 -0
  152. package/lib/chart/lineFills/LineFillsPath.js +82 -0
  153. package/lib/chart/lineFills/LineFillsSeries.js +126 -0
  154. package/lib/chart/lineFills/LineFillsView.js +120 -0
  155. package/lib/chart/lineFills/install.js +51 -0
  156. package/lib/chart/lineFills.js +46 -0
  157. package/lib/chart/lines/LinesSeries.js +310 -0
  158. package/lib/chart/lines/LinesView.js +184 -0
  159. package/lib/chart/lines/install.js +53 -0
  160. package/lib/chart/lines/linesLayout.js +113 -0
  161. package/lib/chart/lines.js +46 -0
  162. package/lib/chart/linesPlot/BarPath.js +108 -0
  163. package/lib/chart/linesPlot/GradientBarPath.js +119 -0
  164. package/lib/chart/linesPlot/GradientHistogramPlotPath.js +106 -0
  165. package/lib/chart/linesPlot/GradientLinePath.js +117 -0
  166. package/lib/chart/linesPlot/HistogramPlotPath.js +97 -0
  167. package/lib/chart/linesPlot/LinePlotPath.js +137 -0
  168. package/lib/chart/linesPlot/LinesPlotSeries.js +137 -0
  169. package/lib/chart/linesPlot/LinesPlotView.js +641 -0
  170. package/lib/chart/linesPlot/PolyPlotPath.js +120 -0
  171. package/lib/chart/linesPlot/SymbolPath.js +100 -0
  172. package/lib/chart/linesPlot/install.js +52 -0
  173. package/lib/chart/linesPlot/linesPlotLayout.js +278 -0
  174. package/lib/chart/linesPlot.js +46 -0
  175. package/lib/chart/map/MapSeries.js +247 -0
  176. package/lib/chart/map/MapView.js +177 -0
  177. package/lib/chart/map/install.js +58 -0
  178. package/lib/chart/map/mapDataStatistic.js +104 -0
  179. package/lib/chart/map/mapSymbolLayout.js +86 -0
  180. package/lib/chart/map.js +46 -0
  181. package/lib/chart/mineLines/LinesPath.js +226 -0
  182. package/lib/chart/mineLines/MineLinesLayout.js +118 -0
  183. package/lib/chart/mineLines/MineLinesSeries.js +128 -0
  184. package/lib/chart/mineLines/MineLinesView.js +140 -0
  185. package/lib/chart/mineLines/install.js +51 -0
  186. package/lib/chart/mineLines.js +46 -0
  187. package/lib/chart/minePolyLines/MinePolyLinesLayout.js +102 -0
  188. package/lib/chart/minePolyLines/MinePolyLinesSeries.js +129 -0
  189. package/lib/chart/minePolyLines/MinePolyLinesView.js +143 -0
  190. package/lib/chart/minePolyLines/PolyLinesPath.js +169 -0
  191. package/lib/chart/minePolyLines/install.js +51 -0
  192. package/lib/chart/parallel/ParallelSeries.js +127 -0
  193. package/lib/chart/parallel/ParallelView.js +221 -0
  194. package/lib/chart/parallel/install.js +54 -0
  195. package/lib/chart/parallel.js +46 -0
  196. package/lib/chart/pictorialBar.js +46 -0
  197. package/lib/chart/pie/PieSeries.js +216 -0
  198. package/lib/chart/pie/PieView.js +283 -0
  199. package/lib/chart/pie/install.js +58 -0
  200. package/lib/chart/pie/labelLayout.js +474 -0
  201. package/lib/chart/pie/pieLayout.js +238 -0
  202. package/lib/chart/pie.js +46 -0
  203. package/lib/chart/playbackOrder/PlaybackHtmlContent.js +179 -0
  204. package/lib/chart/playbackOrder/PlaybackOrderLayout.js +108 -0
  205. package/lib/chart/playbackOrder/PlaybackOrderSeries.js +103 -0
  206. package/lib/chart/playbackOrder/PlaybackOrderView.js +311 -0
  207. package/lib/chart/playbackOrder/SymbolPath.js +87 -0
  208. package/lib/chart/playbackOrder/install.js +52 -0
  209. package/lib/chart/radar/RadarSeries.js +134 -0
  210. package/lib/chart/radar/RadarView.js +225 -0
  211. package/lib/chart/radar/backwardCompat.js +75 -0
  212. package/lib/chart/radar/install.js +58 -0
  213. package/lib/chart/radar/radarLayout.js +82 -0
  214. package/lib/chart/radar.js +46 -0
  215. package/lib/chart/sankey/SankeySeries.js +215 -0
  216. package/lib/chart/sankey/SankeyView.js +324 -0
  217. package/lib/chart/sankey/install.js +67 -0
  218. package/lib/chart/sankey/sankeyLayout.js +489 -0
  219. package/lib/chart/sankey/sankeyVisual.js +92 -0
  220. package/lib/chart/sankey.js +46 -0
  221. package/lib/chart/scatter/ScatterSeries.js +118 -0
  222. package/lib/chart/scatter/ScatterView.js +134 -0
  223. package/lib/chart/scatter/install.js +55 -0
  224. package/lib/chart/scatter.js +46 -0
  225. package/lib/chart/strategy/StrategyLayout.js +159 -0
  226. package/lib/chart/strategy/StrategySeries.js +102 -0
  227. package/lib/chart/strategy/StrategyView.js +274 -0
  228. package/lib/chart/strategy/SymbolPath.js +85 -0
  229. package/lib/chart/strategy/install.js +52 -0
  230. package/lib/chart/sunburst/SunburstPiece.js +230 -0
  231. package/lib/chart/sunburst/SunburstSeries.js +206 -0
  232. package/lib/chart/sunburst/SunburstView.js +206 -0
  233. package/lib/chart/sunburst/install.js +58 -0
  234. package/lib/chart/sunburst/sunburstAction.js +108 -0
  235. package/lib/chart/sunburst/sunburstLayout.js +216 -0
  236. package/lib/chart/sunburst/sunburstVisual.js +75 -0
  237. package/lib/chart/sunburst.js +46 -0
  238. package/lib/chart/themeRiver/ThemeRiverSeries.js +260 -0
  239. package/lib/chart/themeRiver/ThemeRiverView.js +186 -0
  240. package/lib/chart/themeRiver/install.js +35 -0
  241. package/lib/chart/themeRiver/themeRiverLayout.js +157 -0
  242. package/lib/chart/themeRiver.js +46 -0
  243. package/lib/chart/tree/TreeSeries.js +187 -0
  244. package/lib/chart/tree/TreeView.js +622 -0
  245. package/lib/chart/tree/install.js +55 -0
  246. package/lib/chart/tree/layoutHelper.js +288 -0
  247. package/lib/chart/tree/treeAction.js +82 -0
  248. package/lib/chart/tree/treeLayout.js +139 -0
  249. package/lib/chart/tree/treeVisual.js +57 -0
  250. package/lib/chart/tree.js +46 -0
  251. package/lib/chart/treemap/Breadcrumb.js +187 -0
  252. package/lib/chart/treemap/TreemapSeries.js +367 -0
  253. package/lib/chart/treemap/TreemapView.js +852 -0
  254. package/lib/chart/treemap/install.js +55 -0
  255. package/lib/chart/treemap/treemapAction.js +75 -0
  256. package/lib/chart/treemap/treemapLayout.js +499 -0
  257. package/lib/chart/treemap/treemapVisual.js +194 -0
  258. package/lib/chart/treemap.js +46 -0
  259. package/lib/component/alarm/AlarmModel.js +116 -0
  260. package/lib/component/alarm/AlarmView.js +457 -0
  261. package/lib/component/alarm/install.js +61 -0
  262. package/lib/component/aria/install.js +49 -0
  263. package/lib/component/aria/preprocessor.js +61 -0
  264. package/lib/component/aria.js +46 -0
  265. package/lib/component/axis/AngleAxisView.js +323 -0
  266. package/lib/component/axis/AxisBuilder.js +626 -0
  267. package/lib/component/axis/AxisView.js +181 -0
  268. package/lib/component/axis/CartesianAxisView.js +247 -0
  269. package/lib/component/axis/ParallelAxisView.js +174 -0
  270. package/lib/component/axis/RadiusAxisView.js +206 -0
  271. package/lib/component/axis/SingleAxisView.js +146 -0
  272. package/lib/component/axis/axisSplitHelper.js +124 -0
  273. package/lib/component/axis/globalListener.js +81 -0
  274. package/lib/component/axisPointer/AxisPointerModel.js +123 -0
  275. package/lib/component/axisPointer/AxisPointerView.js +124 -0
  276. package/lib/component/axisPointer/BaseAxisPointer.js +513 -0
  277. package/lib/component/axisPointer/CartesianAxisPointer.js +148 -0
  278. package/lib/component/axisPointer/PolarAxisPointer.js +144 -0
  279. package/lib/component/axisPointer/SingleAxisPointer.js +145 -0
  280. package/lib/component/axisPointer/axisTrigger.js +460 -0
  281. package/lib/component/axisPointer/findPointFromSeries.js +98 -0
  282. package/lib/component/axisPointer/globalListener.js +142 -0
  283. package/lib/component/axisPointer/install.js +89 -0
  284. package/lib/component/axisPointer/modelHelper.js +298 -0
  285. package/lib/component/axisPointer/viewHelper.js +201 -0
  286. package/lib/component/axisPointer.js +46 -0
  287. package/lib/component/bgRect/install.js +128 -0
  288. package/lib/component/brush/BrushModel.js +136 -0
  289. package/lib/component/brush/BrushView.js +111 -0
  290. package/lib/component/brush/install.js +101 -0
  291. package/lib/component/brush/preprocessor.js +87 -0
  292. package/lib/component/brush/selector.js +115 -0
  293. package/lib/component/brush/visualEncoding.js +257 -0
  294. package/lib/component/brush.js +46 -0
  295. package/lib/component/calendar/CalendarView.js +390 -0
  296. package/lib/component/calendar/install.js +51 -0
  297. package/lib/component/calendar.js +46 -0
  298. package/lib/component/cursorPointer/install.js +130 -0
  299. package/lib/component/dataZoom/AxisProxy.js +526 -0
  300. package/lib/component/dataZoom/DataZoomModel.js +520 -0
  301. package/lib/component/dataZoom/DataZoomView.js +61 -0
  302. package/lib/component/dataZoom/InsideZoomModel.js +66 -0
  303. package/lib/component/dataZoom/InsideZoomView.js +304 -0
  304. package/lib/component/dataZoom/SelectZoomModel.js +56 -0
  305. package/lib/component/dataZoom/SelectZoomView.js +56 -0
  306. package/lib/component/dataZoom/SliderZoomModel.js +126 -0
  307. package/lib/component/dataZoom/SliderZoomView.js +817 -0
  308. package/lib/component/dataZoom/dataZoomAction.js +84 -0
  309. package/lib/component/dataZoom/dataZoomProcessor.js +152 -0
  310. package/lib/component/dataZoom/helper.js +220 -0
  311. package/lib/component/dataZoom/history.js +116 -0
  312. package/lib/component/dataZoom/install.js +52 -0
  313. package/lib/component/dataZoom/installCommon.js +58 -0
  314. package/lib/component/dataZoom/installDataZoomInside.js +53 -0
  315. package/lib/component/dataZoom/installDataZoomSelect.js +51 -0
  316. package/lib/component/dataZoom/installDataZoomSlider.js +51 -0
  317. package/lib/component/dataZoom/roams.js +319 -0
  318. package/lib/component/dataZoom.js +46 -0
  319. package/lib/component/dataZoomInside.js +46 -0
  320. package/lib/component/dataZoomSelect.js +50 -0
  321. package/lib/component/dataZoomSlider.js +46 -0
  322. package/lib/component/dataset/install.js +99 -0
  323. package/lib/component/dataset.js +46 -0
  324. package/lib/component/geo/GeoView.js +110 -0
  325. package/lib/component/geo/install.js +141 -0
  326. package/lib/component/geo.js +46 -0
  327. package/lib/component/graphic/GraphicModel.js +273 -0
  328. package/lib/component/graphic/GraphicView.js +531 -0
  329. package/lib/component/graphic/install.js +78 -0
  330. package/lib/component/graphic.js +46 -0
  331. package/lib/component/grid/install.js +50 -0
  332. package/lib/component/grid/installSimple.js +96 -0
  333. package/lib/component/grid.js +46 -0
  334. package/lib/component/gridSimple.js +46 -0
  335. package/lib/component/helper/BrushController.js +751 -0
  336. package/lib/component/helper/BrushTargetManager.js +343 -0
  337. package/lib/component/helper/MapDraw.js +673 -0
  338. package/lib/component/helper/RoamController.js +310 -0
  339. package/lib/component/helper/brushHelper.js +71 -0
  340. package/lib/component/helper/interactionMutex.js +77 -0
  341. package/lib/component/helper/listComponent.js +87 -0
  342. package/lib/component/legend/LegendModel.js +318 -0
  343. package/lib/component/legend/LegendView.js +524 -0
  344. package/lib/component/legend/ScrollableLegendModel.js +105 -0
  345. package/lib/component/legend/ScrollableLegendView.js +401 -0
  346. package/lib/component/legend/install.js +50 -0
  347. package/lib/component/legend/installLegendPlain.js +56 -0
  348. package/lib/component/legend/installLegendScroll.js +54 -0
  349. package/lib/component/legend/legendAction.js +113 -0
  350. package/lib/component/legend.js +47 -0
  351. package/lib/component/legendPlain.js +47 -0
  352. package/lib/component/legendScroll.js +49 -0
  353. package/lib/component/limitTip/install.js +115 -0
  354. package/lib/component/logo/install.js +117 -0
  355. package/lib/component/markArea.js +46 -0
  356. package/lib/component/markLabel.js +46 -0
  357. package/lib/component/markLine.js +46 -0
  358. package/lib/component/markPoint.js +47 -0
  359. package/lib/component/marker/MarkAreaModel.js +85 -0
  360. package/lib/component/marker/MarkAreaView.js +362 -0
  361. package/lib/component/marker/MarkLabelModal.js +139 -0
  362. package/lib/component/marker/MarkLabelView.js +918 -0
  363. package/lib/component/marker/MarkLineModel.js +88 -0
  364. package/lib/component/marker/MarkLineView.js +363 -0
  365. package/lib/component/marker/MarkPointModel.js +82 -0
  366. package/lib/component/marker/MarkPointView.js +191 -0
  367. package/lib/component/marker/MarkerModel.js +166 -0
  368. package/lib/component/marker/MarkerView.js +95 -0
  369. package/lib/component/marker/checkMarkerInSeries.js +56 -0
  370. package/lib/component/marker/installMarkArea.js +56 -0
  371. package/lib/component/marker/installMarkLabel.js +38 -0
  372. package/lib/component/marker/installMarkLine.js +38 -0
  373. package/lib/component/marker/installMarkPoint.js +38 -0
  374. package/lib/component/marker/markerHelper.js +188 -0
  375. package/lib/component/parallel/ParallelView.js +137 -0
  376. package/lib/component/parallel/install.js +73 -0
  377. package/lib/component/parallel.js +46 -0
  378. package/lib/component/playback/PlaybackOrderModel.js +51 -0
  379. package/lib/component/playback/PlaybackOrderView.js +1309 -0
  380. package/lib/component/playback/PlaybackSelectModel.js +55 -0
  381. package/lib/component/playback/PlaybackSelectView.js +246 -0
  382. package/lib/component/playback/install.js +46 -0
  383. package/lib/component/polar/install.js +91 -0
  384. package/lib/component/polar.js +46 -0
  385. package/lib/component/radar/RadarView.js +203 -0
  386. package/lib/component/radar/install.js +63 -0
  387. package/lib/component/radar.js +46 -0
  388. package/lib/component/singleAxis/install.js +73 -0
  389. package/lib/component/singleAxis.js +46 -0
  390. package/lib/component/table/TableModel.js +95 -0
  391. package/lib/component/table/TableView.js +462 -0
  392. package/lib/component/table/install.js +49 -0
  393. package/lib/component/table.js +46 -0
  394. package/lib/component/timeline/SliderTimelineModel.js +159 -0
  395. package/lib/component/timeline/SliderTimelineView.js +653 -0
  396. package/lib/component/timeline/TimelineAxis.js +71 -0
  397. package/lib/component/timeline/TimelineModel.js +188 -0
  398. package/lib/component/timeline/TimelineView.js +56 -0
  399. package/lib/component/timeline/install.js +39 -0
  400. package/lib/component/timeline/preprocessor.js +113 -0
  401. package/lib/component/timeline/timelineAction.js +82 -0
  402. package/lib/component/timeline.js +49 -0
  403. package/lib/component/title/install.js +229 -0
  404. package/lib/component/title.js +46 -0
  405. package/lib/component/toolbox/ToolboxModel.js +108 -0
  406. package/lib/component/toolbox/ToolboxView.js +298 -0
  407. package/lib/component/toolbox/feature/Brush.js +134 -0
  408. package/lib/component/toolbox/feature/DataView.js +448 -0
  409. package/lib/component/toolbox/feature/DataZoom.js +251 -0
  410. package/lib/component/toolbox/feature/MagicType.js +210 -0
  411. package/lib/component/toolbox/feature/Restore.js +79 -0
  412. package/lib/component/toolbox/feature/SaveAsImage.js +145 -0
  413. package/lib/component/toolbox/install.js +64 -0
  414. package/lib/component/toolbox.js +46 -0
  415. package/lib/component/tooltip/TooltipHTMLContent.js +398 -0
  416. package/lib/component/tooltip/TooltipModel.js +130 -0
  417. package/lib/component/tooltip/TooltipRichContent.js +209 -0
  418. package/lib/component/tooltip/TooltipView.js +907 -0
  419. package/lib/component/tooltip/helper.js +78 -0
  420. package/lib/component/tooltip/install.js +81 -0
  421. package/lib/component/tooltip/seriesFormatTooltip.js +142 -0
  422. package/lib/component/tooltip/tooltipMarkup.js +324 -0
  423. package/lib/component/tooltip.js +46 -0
  424. package/lib/component/transform/filterTransform.js +96 -0
  425. package/lib/component/transform/install.js +49 -0
  426. package/lib/component/transform/sortTransform.js +155 -0
  427. package/lib/component/transform.js +46 -0
  428. package/lib/component/visualMap/ContinuousModel.js +256 -0
  429. package/lib/component/visualMap/ContinuousView.js +688 -0
  430. package/lib/component/visualMap/PiecewiseModel.js +439 -0
  431. package/lib/component/visualMap/PiecewiseView.js +213 -0
  432. package/lib/component/visualMap/VisualMapModel.js +413 -0
  433. package/lib/component/visualMap/VisualMapView.js +154 -0
  434. package/lib/component/visualMap/helper.js +90 -0
  435. package/lib/component/visualMap/install.js +52 -0
  436. package/lib/component/visualMap/installCommon.js +63 -0
  437. package/lib/component/visualMap/installVisualMapContinuous.js +51 -0
  438. package/lib/component/visualMap/installVisualMapPiecewise.js +51 -0
  439. package/lib/component/visualMap/preprocessor.js +78 -0
  440. package/lib/component/visualMap/typeDefaulter.js +48 -0
  441. package/lib/component/visualMap/visualEncoding.js +108 -0
  442. package/lib/component/visualMap.js +46 -0
  443. package/lib/component/visualMapContinuous.js +46 -0
  444. package/lib/component/visualMapPiecewise.js +46 -0
  445. package/lib/coord/Axis.js +301 -0
  446. package/lib/coord/View.js +251 -0
  447. package/lib/coord/axisAlignTicks.js +140 -0
  448. package/lib/coord/axisDefault.js +211 -0
  449. package/lib/coord/axisHelper.js +374 -0
  450. package/lib/coord/axisModelCreator.js +110 -0
  451. package/lib/coord/axisTickLabelBuilder.js +435 -0
  452. package/lib/coord/calendar/Calendar.js +374 -0
  453. package/lib/coord/calendar/CalendarModel.js +160 -0
  454. package/lib/coord/cartesian/Axis2D.js +94 -0
  455. package/lib/coord/cartesian/AxisModel.js +62 -0
  456. package/lib/coord/cartesian/Cartesian.js +74 -0
  457. package/lib/coord/cartesian/Cartesian2D.js +185 -0
  458. package/lib/coord/cartesian/Grid.js +508 -0
  459. package/lib/coord/cartesian/GridModel.js +72 -0
  460. package/lib/coord/cartesian/cartesianAxisHelper.js +119 -0
  461. package/lib/coord/cartesian/defaultAxisExtentFromData.js +223 -0
  462. package/lib/coord/cartesian/prepareCustom.js +74 -0
  463. package/lib/coord/geo/Geo.js +209 -0
  464. package/lib/coord/geo/GeoJSONResource.js +144 -0
  465. package/lib/coord/geo/GeoModel.js +212 -0
  466. package/lib/coord/geo/GeoSVGResource.js +333 -0
  467. package/lib/coord/geo/Region.js +286 -0
  468. package/lib/coord/geo/fix/diaoyuIsland.js +56 -0
  469. package/lib/coord/geo/fix/nanhai.js +73 -0
  470. package/lib/coord/geo/geoCreator.js +236 -0
  471. package/lib/coord/geo/geoSourceManager.js +121 -0
  472. package/lib/coord/geo/parseGeoJson.js +146 -0
  473. package/lib/coord/geo/prepareCustom.js +79 -0
  474. package/lib/coord/parallel/AxisModel.js +114 -0
  475. package/lib/coord/parallel/Parallel.js +410 -0
  476. package/lib/coord/parallel/ParallelAxis.js +59 -0
  477. package/lib/coord/parallel/ParallelModel.js +122 -0
  478. package/lib/coord/parallel/parallelCreator.js +71 -0
  479. package/lib/coord/parallel/parallelPreprocessor.js +84 -0
  480. package/lib/coord/polar/AngleAxis.js +111 -0
  481. package/lib/coord/polar/AxisModel.js +83 -0
  482. package/lib/coord/polar/Polar.js +216 -0
  483. package/lib/coord/polar/PolarModel.js +73 -0
  484. package/lib/coord/polar/RadiusAxis.js +58 -0
  485. package/lib/coord/polar/polarCreator.js +158 -0
  486. package/lib/coord/polar/prepareCustom.js +86 -0
  487. package/lib/coord/radar/IndicatorAxis.js +57 -0
  488. package/lib/coord/radar/Radar.js +194 -0
  489. package/lib/coord/radar/RadarModel.js +159 -0
  490. package/lib/coord/scaleRawExtentInfo.js +254 -0
  491. package/lib/coord/single/AxisModel.js +103 -0
  492. package/lib/coord/single/Single.js +210 -0
  493. package/lib/coord/single/SingleAxis.js +66 -0
  494. package/lib/coord/single/prepareCustom.js +70 -0
  495. package/lib/coord/single/singleAxisHelper.js +88 -0
  496. package/lib/coord/single/singleCreator.js +73 -0
  497. package/lib/core/CoordinateSystem.js +74 -0
  498. package/lib/core/ExtensionAPI.js +59 -0
  499. package/lib/core/Scheduler.js +491 -0
  500. package/lib/core/echarts.js +3068 -0
  501. package/lib/core/impl.js +65 -0
  502. package/lib/core/lifecycle.js +47 -0
  503. package/lib/core/locale.js +88 -0
  504. package/lib/core/task.js +345 -0
  505. package/lib/data/DataStore.js +1099 -0
  506. package/lib/data/Graph.js +459 -0
  507. package/lib/data/OrdinalMeta.js +313 -0
  508. package/lib/data/SeriesData.js +1027 -0
  509. package/lib/data/SeriesDimensionDefine.js +91 -0
  510. package/lib/data/Source.js +302 -0
  511. package/lib/data/Tree.js +353 -0
  512. package/lib/data/helper/SeriesDataSchema.js +224 -0
  513. package/lib/data/helper/createDimensions.js +322 -0
  514. package/lib/data/helper/dataProvider.js +385 -0
  515. package/lib/data/helper/dataStackHelper.js +179 -0
  516. package/lib/data/helper/dataValueHelper.js +246 -0
  517. package/lib/data/helper/dimensionHelper.js +172 -0
  518. package/lib/data/helper/linkList.js +46 -0
  519. package/lib/data/helper/linkSeriesData.js +150 -0
  520. package/lib/data/helper/sourceHelper.js +354 -0
  521. package/lib/data/helper/sourceManager.js +417 -0
  522. package/lib/data/helper/transform.js +417 -0
  523. package/lib/echarts.js +66 -0
  524. package/lib/export/all.js +46 -0
  525. package/lib/export/api/format.js +44 -0
  526. package/lib/export/api/graphic.js +44 -0
  527. package/lib/export/api/helper.js +128 -0
  528. package/lib/export/api/number.js +44 -0
  529. package/lib/export/api/time.js +45 -0
  530. package/lib/export/api/util.js +44 -0
  531. package/lib/export/api.js +114 -0
  532. package/lib/export/charts.js +85 -0
  533. package/lib/export/components.js +81 -0
  534. package/lib/export/core.js +51 -0
  535. package/lib/export/features.js +46 -0
  536. package/lib/export/renderers.js +45 -0
  537. package/lib/extension.js +110 -0
  538. package/lib/label/LabelManager.js +435 -0
  539. package/lib/label/installLabelLayout.js +65 -0
  540. package/lib/label/labelGuideHelper.js +541 -0
  541. package/lib/label/labelLayoutHelper.js +301 -0
  542. package/lib/label/labelStyle.js +484 -0
  543. package/lib/label/sectorLabel.js +201 -0
  544. package/lib/layout/barGrid.js +477 -0
  545. package/lib/layout/barPolar.js +254 -0
  546. package/lib/layout/points.js +105 -0
  547. package/lib/legacy/dataSelectAction.js +116 -0
  548. package/lib/legacy/getTextRect.js +59 -0
  549. package/lib/loading/default.js +161 -0
  550. package/lib/model/Component.js +233 -0
  551. package/lib/model/Global.js +793 -0
  552. package/lib/model/Model.js +179 -0
  553. package/lib/model/OptionManager.js +459 -0
  554. package/lib/model/Series.js +588 -0
  555. package/lib/model/globalDefault.js +132 -0
  556. package/lib/model/internalComponentCreator.js +66 -0
  557. package/lib/model/mixin/areaStyle.js +59 -0
  558. package/lib/model/mixin/dataFormat.js +202 -0
  559. package/lib/model/mixin/itemStyle.js +58 -0
  560. package/lib/model/mixin/lineStyle.js +59 -0
  561. package/lib/model/mixin/makeStyleMapper.js +70 -0
  562. package/lib/model/mixin/palette.js +105 -0
  563. package/lib/model/mixin/textStyle.js +87 -0
  564. package/lib/model/referHelper.js +175 -0
  565. package/lib/preprocessor/backwardCompat.js +255 -0
  566. package/lib/preprocessor/helper/compatStyle.js +331 -0
  567. package/lib/processor/dataSample.js +141 -0
  568. package/lib/processor/dataStack.js +133 -0
  569. package/lib/processor/negativeDataFilter.js +61 -0
  570. package/lib/renderer/installCanvasRenderer.js +47 -0
  571. package/lib/renderer/installSVGRenderer.js +47 -0
  572. package/lib/scale/Interval.js +267 -0
  573. package/lib/scale/Log.js +218 -0
  574. package/lib/scale/Ordinal.js +217 -0
  575. package/lib/scale/Percentage.js +230 -0
  576. package/lib/scale/Scale.js +122 -0
  577. package/lib/scale/Time.js +510 -0
  578. package/lib/scale/helper.js +169 -0
  579. package/lib/util/ECEventProcessor.js +144 -0
  580. package/lib/util/KDTree.js +255 -0
  581. package/lib/util/axisLabel.js +62 -0
  582. package/lib/util/clazz.js +305 -0
  583. package/lib/util/color.js +202 -0
  584. package/lib/util/component.js +186 -0
  585. package/lib/util/conditionalExpression.js +257 -0
  586. package/lib/util/decal.js +392 -0
  587. package/lib/util/format.js +254 -0
  588. package/lib/util/graphic.js +525 -0
  589. package/lib/util/innerStore.js +66 -0
  590. package/lib/util/layout.js +449 -0
  591. package/lib/util/log.js +134 -0
  592. package/lib/util/model.js +696 -0
  593. package/lib/util/number.js +563 -0
  594. package/lib/util/shape/circulateLine.js +92 -0
  595. package/lib/util/shape/diagonal.js +78 -0
  596. package/lib/util/shape/sausage.js +107 -0
  597. package/lib/util/states.js +848 -0
  598. package/lib/util/styleCompat.js +226 -0
  599. package/lib/util/symbol.js +1266 -0
  600. package/lib/util/time.js +271 -0
  601. package/lib/util/types.js +60 -0
  602. package/lib/util/vendor.js +55 -0
  603. package/lib/view/Chart.js +201 -0
  604. package/lib/view/Component.js +88 -0
  605. package/lib/visual/VisualMapping.js +479 -0
  606. package/lib/visual/aria.js +229 -0
  607. package/lib/visual/decal.js +66 -0
  608. package/lib/visual/style.js +216 -0
  609. package/lib/visual/symbol.js +124 -0
  610. package/lib/visual/visualDefault.js +91 -0
  611. package/lib/visual/visualSolution.js +202 -0
  612. package/package.json +1 -1
  613. package/types/dist/charts.d.ts +1 -0
  614. package/types/dist/components.d.ts +1 -0
  615. package/types/dist/core.d.ts +1 -0
  616. package/types/dist/echarts.d.ts +11455 -0
  617. package/types/dist/features.d.ts +1 -0
  618. package/types/dist/option.d.ts +1 -0
  619. package/types/dist/renderers.d.ts +1 -0
  620. package/types/dist/shared.d.ts +11611 -0
  621. package/types/src/action/roamHelper.d.ts +3 -3
  622. package/types/src/animation/basicTransition.d.ts +6 -6
  623. package/types/src/animation/customGraphicKeyframeAnimation.d.ts +4 -4
  624. package/types/src/animation/customGraphicTransition.d.ts +6 -6
  625. package/types/src/animation/morphTransitionHelper.d.ts +4 -4
  626. package/types/src/animation/universalTransition.d.ts +1 -1
  627. package/types/src/chart/arrowsPlot/ArrowPlotView.d.ts +7 -7
  628. package/types/src/chart/arrowsPlot/ArrowSymbolPath.d.ts +4 -4
  629. package/types/src/chart/arrowsPlot/ArrowsPlotLayout.d.ts +1 -1
  630. package/types/src/chart/arrowsPlot/ArrowsPlotSeries.d.ts +5 -5
  631. package/types/src/chart/arrowsPlot/install.d.ts +1 -1
  632. package/types/src/chart/bar/BarSeries.d.ts +6 -6
  633. package/types/src/chart/bar/BarView.d.ts +6 -6
  634. package/types/src/chart/bar/BaseBarSeries.d.ts +5 -5
  635. package/types/src/chart/bar/PictorialBarSeries.d.ts +3 -3
  636. package/types/src/chart/bar/PictorialBarView.d.ts +4 -4
  637. package/types/src/chart/bar/install.d.ts +1 -1
  638. package/types/src/chart/bar/installPictorialBar.d.ts +1 -1
  639. package/types/src/chart/barPlot/BarPath.d.ts +1 -1
  640. package/types/src/chart/barPlot/BarPlotSeries.d.ts +4 -4
  641. package/types/src/chart/barPlot/BarPlotView.d.ts +5 -5
  642. package/types/src/chart/barPlot/barPlotLayout.d.ts +2 -2
  643. package/types/src/chart/barPlot/install.d.ts +1 -1
  644. package/types/src/chart/bgColor/BgColorLayout.d.ts +1 -1
  645. package/types/src/chart/bgColor/BgColorPath.d.ts +2 -2
  646. package/types/src/chart/bgColor/BgColorSeries.d.ts +5 -5
  647. package/types/src/chart/bgColor/BgColorView.d.ts +5 -5
  648. package/types/src/chart/bgColor/install.d.ts +1 -1
  649. package/types/src/chart/boxes/BoxesLayout.d.ts +1 -1
  650. package/types/src/chart/boxes/BoxesPath.d.ts +4 -4
  651. package/types/src/chart/boxes/BoxesSeries.d.ts +4 -4
  652. package/types/src/chart/boxes/BoxesView.d.ts +5 -5
  653. package/types/src/chart/boxes/install.d.ts +1 -1
  654. package/types/src/chart/boxes/util.d.ts +1 -1
  655. package/types/src/chart/boxplot/BoxplotSeries.d.ts +5 -5
  656. package/types/src/chart/boxplot/BoxplotView.d.ts +4 -4
  657. package/types/src/chart/boxplot/boxplotLayout.d.ts +1 -1
  658. package/types/src/chart/boxplot/boxplotTransform.d.ts +2 -2
  659. package/types/src/chart/boxplot/install.d.ts +1 -1
  660. package/types/src/chart/candlePlot/CandlePlotSeries.d.ts +4 -4
  661. package/types/src/chart/candlePlot/CandlePlotView.d.ts +4 -4
  662. package/types/src/chart/candlePlot/NormalBoxPath.d.ts +1 -1
  663. package/types/src/chart/candlePlot/WickPath.d.ts +1 -1
  664. package/types/src/chart/candlePlot/candlePlotLayout.d.ts +2 -2
  665. package/types/src/chart/candlePlot/install.d.ts +1 -1
  666. package/types/src/chart/candlestick/CandlestickSeries.d.ts +5 -5
  667. package/types/src/chart/candlestick/CandlestickView.d.ts +6 -6
  668. package/types/src/chart/candlestick/candlestickLayout.d.ts +2 -2
  669. package/types/src/chart/candlestick/candlestickVisual.d.ts +1 -1
  670. package/types/src/chart/candlestick/install.d.ts +1 -1
  671. package/types/src/chart/candlestick/preprocessor.d.ts +1 -1
  672. package/types/src/chart/charPlot/CharPlotLayout.d.ts +1 -1
  673. package/types/src/chart/charPlot/CharPlotSeries.d.ts +6 -6
  674. package/types/src/chart/charPlot/CharPlotView.d.ts +7 -7
  675. package/types/src/chart/charPlot/install.d.ts +1 -1
  676. package/types/src/chart/charPlot/util.d.ts +1 -1
  677. package/types/src/chart/custom/CustomSeries.d.ts +18 -18
  678. package/types/src/chart/custom/CustomView.d.ts +6 -6
  679. package/types/src/chart/custom/install.d.ts +1 -1
  680. package/types/src/chart/effectScatter/EffectScatterSeries.d.ts +6 -6
  681. package/types/src/chart/effectScatter/EffectScatterView.d.ts +4 -4
  682. package/types/src/chart/effectScatter/install.d.ts +1 -1
  683. package/types/src/chart/fills/FillPolyPath.d.ts +2 -2
  684. package/types/src/chart/fills/FillsSeries.d.ts +5 -5
  685. package/types/src/chart/fills/FillsView.d.ts +5 -5
  686. package/types/src/chart/fills/LargeFillPolyPath.d.ts +3 -3
  687. package/types/src/chart/fills/fillsLayout.d.ts +1 -1
  688. package/types/src/chart/fills/install.d.ts +1 -1
  689. package/types/src/chart/funnel/FunnelSeries.d.ts +4 -4
  690. package/types/src/chart/funnel/FunnelView.d.ts +4 -4
  691. package/types/src/chart/funnel/funnelLayout.d.ts +2 -2
  692. package/types/src/chart/funnel/install.d.ts +1 -1
  693. package/types/src/chart/gauge/GaugeSeries.d.ts +4 -4
  694. package/types/src/chart/gauge/GaugeView.d.ts +5 -5
  695. package/types/src/chart/gauge/PointerPath.d.ts +1 -1
  696. package/types/src/chart/gauge/install.d.ts +1 -1
  697. package/types/src/chart/graph/GraphSeries.d.ts +8 -8
  698. package/types/src/chart/graph/GraphView.d.ts +4 -4
  699. package/types/src/chart/graph/adjustEdge.d.ts +1 -1
  700. package/types/src/chart/graph/categoryFilter.d.ts +1 -1
  701. package/types/src/chart/graph/categoryVisual.d.ts +1 -1
  702. package/types/src/chart/graph/circularLayout.d.ts +1 -1
  703. package/types/src/chart/graph/circularLayoutHelper.d.ts +2 -2
  704. package/types/src/chart/graph/createView.d.ts +3 -3
  705. package/types/src/chart/graph/edgeVisual.d.ts +1 -1
  706. package/types/src/chart/graph/forceHelper.d.ts +2 -2
  707. package/types/src/chart/graph/forceLayout.d.ts +1 -1
  708. package/types/src/chart/graph/graphHelper.d.ts +2 -2
  709. package/types/src/chart/graph/install.d.ts +1 -1
  710. package/types/src/chart/graph/simpleLayout.d.ts +2 -2
  711. package/types/src/chart/graph/simpleLayoutHelper.d.ts +2 -2
  712. package/types/src/chart/heatmap/HeatmapSeries.d.ts +7 -7
  713. package/types/src/chart/heatmap/HeatmapView.d.ts +9 -9
  714. package/types/src/chart/heatmap/install.d.ts +1 -1
  715. package/types/src/chart/helper/EffectLine.d.ts +4 -4
  716. package/types/src/chart/helper/EffectPolyline.d.ts +4 -4
  717. package/types/src/chart/helper/EffectSymbol.d.ts +3 -3
  718. package/types/src/chart/helper/LargeLineDraw.d.ts +5 -5
  719. package/types/src/chart/helper/LargeSymbolDraw.d.ts +5 -5
  720. package/types/src/chart/helper/Line.d.ts +5 -5
  721. package/types/src/chart/helper/LineDraw.d.ts +5 -5
  722. package/types/src/chart/helper/LinePath.d.ts +2 -2
  723. package/types/src/chart/helper/Polyline.d.ts +3 -3
  724. package/types/src/chart/helper/Symbol.d.ts +5 -5
  725. package/types/src/chart/helper/SymbolDraw.d.ts +7 -7
  726. package/types/src/chart/helper/createClipPathFromCoordSys.d.ts +6 -6
  727. package/types/src/chart/helper/createGraphFromNodeEdge.d.ts +4 -4
  728. package/types/src/chart/helper/createRenderPlanner.d.ts +2 -2
  729. package/types/src/chart/helper/createSeriesData.d.ts +3 -3
  730. package/types/src/chart/helper/createSeriesDataSimply.d.ts +3 -3
  731. package/types/src/chart/helper/enableAriaDecalForTree.d.ts +1 -1
  732. package/types/src/chart/helper/labelHelper.d.ts +2 -2
  733. package/types/src/chart/helper/sectorHelper.d.ts +2 -2
  734. package/types/src/chart/helper/treeHelper.d.ts +2 -2
  735. package/types/src/chart/helper/whiskerBoxCommon.d.ts +6 -6
  736. package/types/src/chart/hlines/HLinesSeries.d.ts +5 -5
  737. package/types/src/chart/hlines/HLinesView.d.ts +5 -5
  738. package/types/src/chart/hlines/hLinesLayout.d.ts +1 -1
  739. package/types/src/chart/hlines/install.d.ts +1 -1
  740. package/types/src/chart/labels/LabelsSeries.d.ts +6 -6
  741. package/types/src/chart/labels/LabelsView.d.ts +7 -7
  742. package/types/src/chart/labels/SymbolPath.d.ts +4 -4
  743. package/types/src/chart/labels/install.d.ts +1 -1
  744. package/types/src/chart/labels/labelsLayout.d.ts +1 -1
  745. package/types/src/chart/labels/labelsVisual.d.ts +1 -1
  746. package/types/src/chart/line/LineSeries.d.ts +9 -9
  747. package/types/src/chart/line/LineView.d.ts +14 -14
  748. package/types/src/chart/line/helper.d.ts +4 -4
  749. package/types/src/chart/line/install.d.ts +1 -1
  750. package/types/src/chart/line/lineAnimationDiff.d.ts +4 -4
  751. package/types/src/chart/line/poly.d.ts +2 -2
  752. package/types/src/chart/lineFills/LineFillsLayout.d.ts +1 -1
  753. package/types/src/chart/lineFills/LineFillsPath.d.ts +3 -3
  754. package/types/src/chart/lineFills/LineFillsSeries.d.ts +4 -4
  755. package/types/src/chart/lineFills/LineFillsView.d.ts +5 -5
  756. package/types/src/chart/lineFills/install.d.ts +1 -1
  757. package/types/src/chart/lines/LinesSeries.d.ts +5 -5
  758. package/types/src/chart/lines/LinesView.d.ts +9 -9
  759. package/types/src/chart/lines/install.d.ts +1 -1
  760. package/types/src/chart/lines/linesLayout.d.ts +1 -1
  761. package/types/src/chart/lines/linesVisual.d.ts +1 -1
  762. package/types/src/chart/linesPlot/BarPath.d.ts +2 -2
  763. package/types/src/chart/linesPlot/GradientBarPath.d.ts +3 -3
  764. package/types/src/chart/linesPlot/GradientHistogramPlotPath.d.ts +3 -3
  765. package/types/src/chart/linesPlot/GradientLinePath.d.ts +3 -3
  766. package/types/src/chart/linesPlot/HistogramPlotPath.d.ts +2 -2
  767. package/types/src/chart/linesPlot/LinePlotPath.d.ts +2 -2
  768. package/types/src/chart/linesPlot/LinesPlotSeries.d.ts +5 -5
  769. package/types/src/chart/linesPlot/LinesPlotView.d.ts +7 -7
  770. package/types/src/chart/linesPlot/PolyPlotPath.d.ts +2 -2
  771. package/types/src/chart/linesPlot/SymbolPath.d.ts +4 -4
  772. package/types/src/chart/linesPlot/install.d.ts +1 -1
  773. package/types/src/chart/linesPlot/linesPlotLayout.d.ts +1 -1
  774. package/types/src/chart/linesPlot/linesPlotVisual.d.ts +1 -1
  775. package/types/src/chart/map/MapSeries.d.ts +10 -10
  776. package/types/src/chart/map/MapView.d.ts +5 -5
  777. package/types/src/chart/map/install.d.ts +1 -1
  778. package/types/src/chart/map/mapDataStatistic.d.ts +1 -1
  779. package/types/src/chart/map/mapSymbolLayout.d.ts +1 -1
  780. package/types/src/chart/mineLines/LinesPath.d.ts +4 -4
  781. package/types/src/chart/mineLines/MineLinesLayout.d.ts +1 -1
  782. package/types/src/chart/mineLines/MineLinesSeries.d.ts +3 -3
  783. package/types/src/chart/mineLines/MineLinesView.d.ts +5 -5
  784. package/types/src/chart/mineLines/install.d.ts +1 -1
  785. package/types/src/chart/mineLines/util.d.ts +1 -1
  786. package/types/src/chart/minePolyLines/MinePolyLinesLayout.d.ts +1 -1
  787. package/types/src/chart/minePolyLines/MinePolyLinesSeries.d.ts +3 -3
  788. package/types/src/chart/minePolyLines/MinePolyLinesView.d.ts +5 -5
  789. package/types/src/chart/minePolyLines/PolyLinesPath.d.ts +4 -4
  790. package/types/src/chart/minePolyLines/install.d.ts +1 -1
  791. package/types/src/chart/parallel/ParallelSeries.d.ts +6 -6
  792. package/types/src/chart/parallel/ParallelView.d.ts +5 -5
  793. package/types/src/chart/parallel/install.d.ts +1 -1
  794. package/types/src/chart/parallel/parallelVisual.d.ts +1 -1
  795. package/types/src/chart/pie/PieSeries.d.ts +3 -3
  796. package/types/src/chart/pie/PieView.d.ts +5 -5
  797. package/types/src/chart/pie/install.d.ts +1 -1
  798. package/types/src/chart/pie/labelLayout.d.ts +1 -1
  799. package/types/src/chart/pie/pieLayout.d.ts +4 -4
  800. package/types/src/chart/playbackOrder/PlaybackHtmlContent.d.ts +2 -2
  801. package/types/src/chart/playbackOrder/PlaybackOrderLayout.d.ts +1 -1
  802. package/types/src/chart/playbackOrder/PlaybackOrderSeries.d.ts +3 -3
  803. package/types/src/chart/playbackOrder/PlaybackOrderView.d.ts +6 -6
  804. package/types/src/chart/playbackOrder/SymbolPath.d.ts +4 -4
  805. package/types/src/chart/playbackOrder/install.d.ts +1 -1
  806. package/types/src/chart/radar/RadarSeries.d.ts +5 -5
  807. package/types/src/chart/radar/RadarView.d.ts +4 -4
  808. package/types/src/chart/radar/install.d.ts +1 -1
  809. package/types/src/chart/radar/radarLayout.d.ts +1 -1
  810. package/types/src/chart/sankey/SankeySeries.d.ts +6 -6
  811. package/types/src/chart/sankey/SankeyView.d.ts +4 -4
  812. package/types/src/chart/sankey/install.d.ts +1 -1
  813. package/types/src/chart/sankey/sankeyLayout.d.ts +2 -2
  814. package/types/src/chart/sankey/sankeyVisual.d.ts +1 -1
  815. package/types/src/chart/scatter/ScatterSeries.d.ts +5 -5
  816. package/types/src/chart/scatter/ScatterView.d.ts +9 -9
  817. package/types/src/chart/scatter/install.d.ts +1 -1
  818. package/types/src/chart/strategy/StrategyLayout.d.ts +1 -1
  819. package/types/src/chart/strategy/StrategySeries.d.ts +3 -3
  820. package/types/src/chart/strategy/StrategyView.d.ts +5 -5
  821. package/types/src/chart/strategy/SymbolPath.d.ts +4 -4
  822. package/types/src/chart/strategy/install.d.ts +1 -1
  823. package/types/src/chart/sunburst/SunburstPiece.d.ts +5 -5
  824. package/types/src/chart/sunburst/SunburstSeries.d.ts +6 -6
  825. package/types/src/chart/sunburst/SunburstView.d.ts +6 -6
  826. package/types/src/chart/sunburst/install.d.ts +1 -1
  827. package/types/src/chart/sunburst/sunburstAction.d.ts +1 -1
  828. package/types/src/chart/sunburst/sunburstLayout.d.ts +2 -2
  829. package/types/src/chart/sunburst/sunburstVisual.d.ts +1 -1
  830. package/types/src/chart/themeRiver/ThemeRiverSeries.d.ts +7 -7
  831. package/types/src/chart/themeRiver/ThemeRiverView.d.ts +4 -4
  832. package/types/src/chart/themeRiver/install.d.ts +1 -1
  833. package/types/src/chart/themeRiver/themeRiverLayout.d.ts +4 -4
  834. package/types/src/chart/tree/TreeSeries.d.ts +5 -5
  835. package/types/src/chart/tree/TreeView.d.ts +4 -4
  836. package/types/src/chart/tree/install.d.ts +1 -1
  837. package/types/src/chart/tree/layoutHelper.d.ts +4 -4
  838. package/types/src/chart/tree/traversalHelper.d.ts +1 -1
  839. package/types/src/chart/tree/treeAction.d.ts +2 -2
  840. package/types/src/chart/tree/treeLayout.d.ts +2 -2
  841. package/types/src/chart/tree/treeVisual.d.ts +1 -1
  842. package/types/src/chart/treemap/Breadcrumb.d.ts +6 -6
  843. package/types/src/chart/treemap/TreemapSeries.d.ts +7 -7
  844. package/types/src/chart/treemap/TreemapView.d.ts +6 -6
  845. package/types/src/chart/treemap/install.d.ts +1 -1
  846. package/types/src/chart/treemap/treemapAction.d.ts +4 -4
  847. package/types/src/chart/treemap/treemapLayout.d.ts +6 -6
  848. package/types/src/chart/treemap/treemapVisual.d.ts +1 -1
  849. package/types/src/component/alarm/AlarmModel.d.ts +2 -2
  850. package/types/src/component/alarm/AlarmView.d.ts +7 -7
  851. package/types/src/component/alarm/install.d.ts +1 -1
  852. package/types/src/component/aria/install.d.ts +1 -1
  853. package/types/src/component/aria/preprocessor.d.ts +1 -1
  854. package/types/src/component/axis/AngleAxisView.d.ts +3 -3
  855. package/types/src/component/axis/AxisBuilder.d.ts +4 -4
  856. package/types/src/component/axis/AxisView.d.ts +7 -7
  857. package/types/src/component/axis/CartesianAxisView.d.ts +5 -5
  858. package/types/src/component/axis/ParallelAxisView.d.ts +8 -8
  859. package/types/src/component/axis/RadiusAxisView.d.ts +3 -3
  860. package/types/src/component/axis/SingleAxisView.d.ts +5 -5
  861. package/types/src/component/axis/axisSplitHelper.d.ts +6 -6
  862. package/types/src/component/axis/globalListener.d.ts +2 -2
  863. package/types/src/component/axis/parallelAxisAction.d.ts +2 -2
  864. package/types/src/component/axisPointer/AxisPointer.d.ts +4 -4
  865. package/types/src/component/axisPointer/AxisPointerModel.d.ts +2 -2
  866. package/types/src/component/axisPointer/AxisPointerView.d.ts +4 -4
  867. package/types/src/component/axisPointer/BaseAxisPointer.d.ts +9 -9
  868. package/types/src/component/axisPointer/CartesianAxisPointer.d.ts +5 -5
  869. package/types/src/component/axisPointer/PolarAxisPointer.d.ts +5 -5
  870. package/types/src/component/axisPointer/SingleAxisPointer.d.ts +5 -5
  871. package/types/src/component/axisPointer/axisTrigger.d.ts +4 -4
  872. package/types/src/component/axisPointer/findPointFromSeries.d.ts +2 -2
  873. package/types/src/component/axisPointer/globalListener.d.ts +2 -2
  874. package/types/src/component/axisPointer/install.d.ts +1 -1
  875. package/types/src/component/axisPointer/modelHelper.d.ts +10 -10
  876. package/types/src/component/axisPointer/viewHelper.d.ts +10 -10
  877. package/types/src/component/bgRect/install.d.ts +2 -2
  878. package/types/src/component/brush/BrushModel.d.ts +5 -5
  879. package/types/src/component/brush/BrushView.d.ts +5 -5
  880. package/types/src/component/brush/install.d.ts +1 -1
  881. package/types/src/component/brush/preprocessor.d.ts +1 -1
  882. package/types/src/component/brush/selector.d.ts +3 -3
  883. package/types/src/component/brush/visualEncoding.d.ts +3 -3
  884. package/types/src/component/calendar/CalendarView.d.ts +11 -11
  885. package/types/src/component/calendar/install.d.ts +1 -1
  886. package/types/src/component/cursorPointer/install.d.ts +2 -2
  887. package/types/src/component/dataZoom/AxisProxy.d.ts +6 -6
  888. package/types/src/component/dataZoom/DataZoomModel.d.ts +8 -8
  889. package/types/src/component/dataZoom/DataZoomView.d.ts +4 -4
  890. package/types/src/component/dataZoom/InsideZoomModel.d.ts +1 -1
  891. package/types/src/component/dataZoom/InsideZoomView.d.ts +6 -6
  892. package/types/src/component/dataZoom/SelectZoomModel.d.ts +1 -1
  893. package/types/src/component/dataZoom/SelectZoomView.d.ts +1 -1
  894. package/types/src/component/dataZoom/SliderZoomModel.d.ts +2 -2
  895. package/types/src/component/dataZoom/SliderZoomView.d.ts +5 -5
  896. package/types/src/component/dataZoom/dataZoomAction.d.ts +1 -1
  897. package/types/src/component/dataZoom/dataZoomProcessor.d.ts +1 -1
  898. package/types/src/component/dataZoom/helper.d.ts +8 -8
  899. package/types/src/component/dataZoom/history.d.ts +3 -3
  900. package/types/src/component/dataZoom/install.d.ts +1 -1
  901. package/types/src/component/dataZoom/installCommon.d.ts +1 -1
  902. package/types/src/component/dataZoom/installDataZoomInside.d.ts +1 -1
  903. package/types/src/component/dataZoom/installDataZoomSelect.d.ts +1 -1
  904. package/types/src/component/dataZoom/installDataZoomSlider.d.ts +1 -1
  905. package/types/src/component/dataZoom/roams.d.ts +4 -4
  906. package/types/src/component/dataset/install.d.ts +7 -7
  907. package/types/src/component/geo/GeoView.d.ts +6 -6
  908. package/types/src/component/geo/install.d.ts +1 -1
  909. package/types/src/component/graphic/GraphicModel.d.ts +15 -15
  910. package/types/src/component/graphic/GraphicView.d.ts +9 -9
  911. package/types/src/component/graphic/install.d.ts +1 -1
  912. package/types/src/component/grid/install.d.ts +1 -1
  913. package/types/src/component/grid/installSimple.d.ts +1 -1
  914. package/types/src/component/helper/BrushController.d.ts +7 -7
  915. package/types/src/component/helper/BrushTargetManager.d.ts +12 -12
  916. package/types/src/component/helper/MapDraw.d.ts +9 -9
  917. package/types/src/component/helper/RoamController.d.ts +6 -6
  918. package/types/src/component/helper/brushHelper.d.ts +4 -4
  919. package/types/src/component/helper/cursorHelper.d.ts +3 -3
  920. package/types/src/component/helper/roamHelper.d.ts +1 -1
  921. package/types/src/component/legend/LegendModel.d.ts +8 -8
  922. package/types/src/component/legend/LegendView.d.ts +6 -6
  923. package/types/src/component/legend/ScrollableLegendModel.d.ts +4 -4
  924. package/types/src/component/legend/ScrollableLegendView.d.ts +7 -7
  925. package/types/src/component/legend/install.d.ts +1 -1
  926. package/types/src/component/legend/installLegendPlain.d.ts +1 -1
  927. package/types/src/component/legend/installLegendScroll.d.ts +1 -1
  928. package/types/src/component/legend/legendFilter.d.ts +1 -1
  929. package/types/src/component/legend/scrollableLegendAction.d.ts +1 -1
  930. package/types/src/component/limitTip/install.d.ts +2 -2
  931. package/types/src/component/logo/install.d.ts +2 -2
  932. package/types/src/component/marker/MarkAreaModel.d.ts +3 -3
  933. package/types/src/component/marker/MarkAreaView.d.ts +7 -7
  934. package/types/src/component/marker/MarkLabelModal.d.ts +8 -8
  935. package/types/src/component/marker/MarkLabelView.d.ts +7 -7
  936. package/types/src/component/marker/MarkLineModel.d.ts +3 -3
  937. package/types/src/component/marker/MarkLineView.d.ts +7 -7
  938. package/types/src/component/marker/MarkPointModel.d.ts +3 -3
  939. package/types/src/component/marker/MarkPointView.d.ts +7 -7
  940. package/types/src/component/marker/MarkerModel.d.ts +7 -7
  941. package/types/src/component/marker/MarkerView.d.ts +7 -7
  942. package/types/src/component/marker/checkMarkerInSeries.d.ts +1 -1
  943. package/types/src/component/marker/installMarkArea.d.ts +1 -1
  944. package/types/src/component/marker/installMarkLabel.d.ts +1 -1
  945. package/types/src/component/marker/installMarkLine.d.ts +1 -1
  946. package/types/src/component/marker/installMarkPoint.d.ts +1 -1
  947. package/types/src/component/marker/markerHelper.d.ts +7 -7
  948. package/types/src/component/parallel/ParallelView.d.ts +5 -5
  949. package/types/src/component/parallel/install.d.ts +1 -1
  950. package/types/src/component/playback/PlaybackOrderModel.d.ts +2 -2
  951. package/types/src/component/playback/PlaybackOrderView.d.ts +8 -8
  952. package/types/src/component/playback/PlaybackSelectModel.d.ts +2 -2
  953. package/types/src/component/playback/PlaybackSelectView.d.ts +4 -4
  954. package/types/src/component/playback/install.d.ts +1 -1
  955. package/types/src/component/polar/install.d.ts +1 -1
  956. package/types/src/component/radar/RadarView.d.ts +4 -4
  957. package/types/src/component/radar/install.d.ts +1 -1
  958. package/types/src/component/singleAxis/install.d.ts +1 -1
  959. package/types/src/component/table/TableModel.d.ts +3 -3
  960. package/types/src/component/table/TableView.d.ts +4 -4
  961. package/types/src/component/table/install.d.ts +1 -1
  962. package/types/src/component/timeline/SliderTimelineModel.d.ts +3 -3
  963. package/types/src/component/timeline/SliderTimelineView.d.ts +4 -4
  964. package/types/src/component/timeline/TimelineAxis.d.ts +5 -5
  965. package/types/src/component/timeline/TimelineModel.d.ts +5 -5
  966. package/types/src/component/timeline/TimelineView.d.ts +1 -1
  967. package/types/src/component/timeline/install.d.ts +1 -1
  968. package/types/src/component/timeline/timelineAction.d.ts +2 -2
  969. package/types/src/component/title/install.d.ts +2 -2
  970. package/types/src/component/toolbox/ToolboxModel.d.ts +3 -3
  971. package/types/src/component/toolbox/ToolboxView.d.ts +6 -6
  972. package/types/src/component/toolbox/feature/Brush.d.ts +3 -3
  973. package/types/src/component/toolbox/feature/DataView.d.ts +4 -4
  974. package/types/src/component/toolbox/feature/DataZoom.d.ts +7 -7
  975. package/types/src/component/toolbox/feature/MagicType.d.ts +4 -4
  976. package/types/src/component/toolbox/feature/Restore.d.ts +3 -3
  977. package/types/src/component/toolbox/feature/SaveAsImage.d.ts +4 -4
  978. package/types/src/component/toolbox/featureManager.d.ts +5 -5
  979. package/types/src/component/toolbox/install.d.ts +1 -1
  980. package/types/src/component/tooltip/TooltipHTMLContent.d.ts +4 -4
  981. package/types/src/component/tooltip/TooltipModel.d.ts +3 -3
  982. package/types/src/component/tooltip/TooltipRichContent.d.ts +6 -6
  983. package/types/src/component/tooltip/TooltipView.d.ts +12 -12
  984. package/types/src/component/tooltip/helper.d.ts +2 -2
  985. package/types/src/component/tooltip/install.d.ts +1 -1
  986. package/types/src/component/tooltip/seriesFormatTooltip.d.ts +2 -2
  987. package/types/src/component/tooltip/tooltipMarkup.d.ts +5 -5
  988. package/types/src/component/transform/filterTransform.d.ts +2 -2
  989. package/types/src/component/transform/install.d.ts +1 -1
  990. package/types/src/component/transform/sortTransform.d.ts +3 -3
  991. package/types/src/component/visualMap/ContinuousModel.d.ts +2 -2
  992. package/types/src/component/visualMap/ContinuousView.d.ts +4 -4
  993. package/types/src/component/visualMap/PiecewiseModel.d.ts +4 -4
  994. package/types/src/component/visualMap/PiecewiseView.d.ts +2 -2
  995. package/types/src/component/visualMap/VisualMapModel.d.ts +7 -7
  996. package/types/src/component/visualMap/VisualMapView.d.ts +5 -5
  997. package/types/src/component/visualMap/helper.d.ts +3 -3
  998. package/types/src/component/visualMap/install.d.ts +1 -1
  999. package/types/src/component/visualMap/installCommon.d.ts +1 -1
  1000. package/types/src/component/visualMap/installVisualMapContinuous.d.ts +1 -1
  1001. package/types/src/component/visualMap/installVisualMapPiecewise.d.ts +1 -1
  1002. package/types/src/component/visualMap/visualEncoding.d.ts +1 -1
  1003. package/types/src/component/visualMap/visualMapAction.d.ts +2 -2
  1004. package/types/src/coord/Axis.d.ts +6 -6
  1005. package/types/src/coord/AxisBaseModel.d.ts +5 -5
  1006. package/types/src/coord/CoordinateSystem.d.ts +10 -10
  1007. package/types/src/coord/View.d.ts +7 -7
  1008. package/types/src/coord/axisAlignTicks.d.ts +4 -4
  1009. package/types/src/coord/axisCommonTypes.d.ts +3 -3
  1010. package/types/src/coord/axisDefault.d.ts +1 -1
  1011. package/types/src/coord/axisHelper.d.ts +8 -8
  1012. package/types/src/coord/axisModelCommonMixin.d.ts +4 -4
  1013. package/types/src/coord/axisModelCreator.d.ts +5 -5
  1014. package/types/src/coord/axisTickLabelBuilder.d.ts +2 -2
  1015. package/types/src/coord/calendar/Calendar.d.ts +7 -7
  1016. package/types/src/coord/calendar/CalendarModel.d.ts +5 -5
  1017. package/types/src/coord/calendar/prepareCustom.d.ts +2 -2
  1018. package/types/src/coord/cartesian/Axis2D.d.ts +6 -6
  1019. package/types/src/coord/cartesian/AxisModel.d.ts +8 -8
  1020. package/types/src/coord/cartesian/Cartesian.d.ts +2 -2
  1021. package/types/src/coord/cartesian/Cartesian2D.d.ts +8 -8
  1022. package/types/src/coord/cartesian/Grid.d.ts +9 -9
  1023. package/types/src/coord/cartesian/GridModel.d.ts +4 -4
  1024. package/types/src/coord/cartesian/cartesianAxisHelper.d.ts +3 -3
  1025. package/types/src/coord/cartesian/prepareCustom.d.ts +1 -1
  1026. package/types/src/coord/geo/Geo.d.ts +7 -7
  1027. package/types/src/coord/geo/GeoJSONResource.d.ts +4 -4
  1028. package/types/src/coord/geo/GeoModel.d.ts +6 -6
  1029. package/types/src/coord/geo/GeoSVGResource.d.ts +6 -6
  1030. package/types/src/coord/geo/Region.d.ts +3 -3
  1031. package/types/src/coord/geo/fix/diaoyuIsland.d.ts +1 -1
  1032. package/types/src/coord/geo/fix/geoCoord.d.ts +1 -1
  1033. package/types/src/coord/geo/fix/nanhai.d.ts +1 -1
  1034. package/types/src/coord/geo/fix/textCoord.d.ts +1 -1
  1035. package/types/src/coord/geo/geoCreator.d.ts +8 -8
  1036. package/types/src/coord/geo/geoSourceManager.d.ts +2 -2
  1037. package/types/src/coord/geo/geoTypes.d.ts +4 -4
  1038. package/types/src/coord/geo/parseGeoJson.d.ts +2 -2
  1039. package/types/src/coord/geo/prepareCustom.d.ts +1 -1
  1040. package/types/src/coord/parallel/AxisModel.d.ts +8 -8
  1041. package/types/src/coord/parallel/Parallel.d.ts +10 -10
  1042. package/types/src/coord/parallel/ParallelAxis.d.ts +6 -6
  1043. package/types/src/coord/parallel/ParallelModel.d.ts +6 -6
  1044. package/types/src/coord/parallel/parallelCreator.d.ts +3 -3
  1045. package/types/src/coord/parallel/parallelPreprocessor.d.ts +1 -1
  1046. package/types/src/coord/polar/AngleAxis.d.ts +4 -4
  1047. package/types/src/coord/polar/AxisModel.d.ts +7 -7
  1048. package/types/src/coord/polar/Polar.d.ts +8 -8
  1049. package/types/src/coord/polar/PolarModel.d.ts +4 -4
  1050. package/types/src/coord/polar/RadiusAxis.d.ts +4 -4
  1051. package/types/src/coord/polar/polarCreator.d.ts +3 -3
  1052. package/types/src/coord/polar/prepareCustom.d.ts +1 -1
  1053. package/types/src/coord/radar/IndicatorAxis.d.ts +5 -5
  1054. package/types/src/coord/radar/Radar.d.ts +7 -7
  1055. package/types/src/coord/radar/RadarModel.d.ts +6 -6
  1056. package/types/src/coord/scaleRawExtentInfo.d.ts +3 -3
  1057. package/types/src/coord/single/AxisModel.d.ts +8 -8
  1058. package/types/src/coord/single/Single.d.ts +8 -8
  1059. package/types/src/coord/single/SingleAxis.d.ts +6 -6
  1060. package/types/src/coord/single/prepareCustom.d.ts +1 -1
  1061. package/types/src/coord/single/singleAxisHelper.d.ts +1 -1
  1062. package/types/src/coord/single/singleCreator.d.ts +3 -3
  1063. package/types/src/core/CoordinateSystem.d.ts +3 -3
  1064. package/types/src/core/ExtensionAPI.d.ts +8 -8
  1065. package/types/src/core/Scheduler.d.ts +9 -9
  1066. package/types/src/core/echarts.d.ts +15 -15
  1067. package/types/src/core/lifecycle.d.ts +7 -7
  1068. package/types/src/core/locale.d.ts +2 -2
  1069. package/types/src/core/task.d.ts +4 -4
  1070. package/types/src/data/DataDiffer.d.ts +1 -1
  1071. package/types/src/data/DataStore.d.ts +4 -4
  1072. package/types/src/data/Graph.d.ts +5 -5
  1073. package/types/src/data/OrdinalMeta.d.ts +4 -4
  1074. package/types/src/data/SeriesData.d.ts +16 -16
  1075. package/types/src/data/SeriesDimensionDefine.d.ts +2 -2
  1076. package/types/src/data/Source.d.ts +3 -3
  1077. package/types/src/data/Tree.d.ts +4 -4
  1078. package/types/src/data/helper/SeriesDataSchema.d.ts +5 -5
  1079. package/types/src/data/helper/createDimensions.d.ts +6 -6
  1080. package/types/src/data/helper/dataProvider.d.ts +4 -4
  1081. package/types/src/data/helper/dataStackHelper.d.ts +6 -6
  1082. package/types/src/data/helper/dataValueHelper.d.ts +1 -1
  1083. package/types/src/data/helper/dimensionHelper.d.ts +4 -4
  1084. package/types/src/data/helper/linkList.d.ts +1 -1
  1085. package/types/src/data/helper/linkSeriesData.d.ts +2 -2
  1086. package/types/src/data/helper/sourceHelper.d.ts +6 -6
  1087. package/types/src/data/helper/sourceManager.d.ts +5 -5
  1088. package/types/src/data/helper/transform.d.ts +2 -2
  1089. package/types/src/data/scale-time/default-tick-mark-formatter.d.ts +1 -1
  1090. package/types/src/data/scale-time/time-scale-point-weight-generator.d.ts +1 -1
  1091. package/types/src/echarts.all.d.ts +1 -1
  1092. package/types/src/echarts.blank.d.ts +1 -1
  1093. package/types/src/echarts.common.d.ts +1 -1
  1094. package/types/src/echarts.d.ts +1 -1
  1095. package/types/src/echarts.simple.d.ts +1 -1
  1096. package/types/src/export/all.d.ts +2 -2
  1097. package/types/src/export/api/format.d.ts +1 -1
  1098. package/types/src/export/api/graphic.d.ts +1 -1
  1099. package/types/src/export/api/helper.d.ts +12 -12
  1100. package/types/src/export/api/number.d.ts +1 -1
  1101. package/types/src/export/api/time.d.ts +2 -2
  1102. package/types/src/export/api/util.d.ts +1 -1
  1103. package/types/src/export/api.d.ts +26 -26
  1104. package/types/src/export/charts.d.ts +38 -38
  1105. package/types/src/export/components.d.ts +39 -39
  1106. package/types/src/export/core.d.ts +13 -13
  1107. package/types/src/export/features.d.ts +2 -2
  1108. package/types/src/export/option.d.ts +62 -62
  1109. package/types/src/export/renderers.d.ts +2 -2
  1110. package/types/src/extension.d.ts +9 -9
  1111. package/types/src/label/LabelManager.d.ts +2 -2
  1112. package/types/src/label/installLabelLayout.d.ts +1 -1
  1113. package/types/src/label/labelGuideHelper.d.ts +5 -5
  1114. package/types/src/label/labelLayoutHelper.d.ts +3 -3
  1115. package/types/src/label/labelStyle.d.ts +6 -6
  1116. package/types/src/label/sectorLabel.d.ts +3 -3
  1117. package/types/src/layout/barGrid.d.ts +4 -4
  1118. package/types/src/layout/barPolar.d.ts +2 -2
  1119. package/types/src/layout/points.d.ts +1 -1
  1120. package/types/src/legacy/dataSelectAction.d.ts +3 -3
  1121. package/types/src/legacy/getTextRect.d.ts +2 -2
  1122. package/types/src/loading/default.d.ts +2 -2
  1123. package/types/src/model/Component.d.ts +9 -9
  1124. package/types/src/model/Global.d.ts +9 -9
  1125. package/types/src/model/Model.d.ts +6 -6
  1126. package/types/src/model/OptionManager.d.ts +3 -3
  1127. package/types/src/model/Series.d.ts +21 -21
  1128. package/types/src/model/internalComponentCreator.d.ts +2 -2
  1129. package/types/src/model/mixin/areaStyle.d.ts +3 -3
  1130. package/types/src/model/mixin/dataFormat.d.ts +3 -3
  1131. package/types/src/model/mixin/itemStyle.d.ts +3 -3
  1132. package/types/src/model/mixin/lineStyle.d.ts +3 -3
  1133. package/types/src/model/mixin/makeStyleMapper.d.ts +2 -2
  1134. package/types/src/model/mixin/palette.d.ts +3 -3
  1135. package/types/src/model/mixin/textStyle.d.ts +3 -3
  1136. package/types/src/model/referHelper.d.ts +3 -3
  1137. package/types/src/preprocessor/backwardCompat.d.ts +1 -1
  1138. package/types/src/processor/dataFilter.d.ts +1 -1
  1139. package/types/src/processor/dataSample.d.ts +1 -1
  1140. package/types/src/processor/dataStack.d.ts +1 -1
  1141. package/types/src/processor/negativeDataFilter.d.ts +1 -1
  1142. package/types/src/renderer/installCanvasRenderer.d.ts +1 -1
  1143. package/types/src/renderer/installSVGRenderer.d.ts +1 -1
  1144. package/types/src/scale/Interval.d.ts +2 -2
  1145. package/types/src/scale/Log.d.ts +5 -5
  1146. package/types/src/scale/Ordinal.d.ts +6 -6
  1147. package/types/src/scale/Percentage.d.ts +4 -4
  1148. package/types/src/scale/Scale.d.ts +5 -5
  1149. package/types/src/scale/Time.d.ts +6 -6
  1150. package/types/src/scale/helper.d.ts +3 -3
  1151. package/types/src/util/ECEventProcessor.d.ts +6 -6
  1152. package/types/src/util/KDTree.d.ts +1 -1
  1153. package/types/src/util/animation.d.ts +2 -2
  1154. package/types/src/util/axisLabel.d.ts +2 -2
  1155. package/types/src/util/clazz.d.ts +1 -1
  1156. package/types/src/util/color.d.ts +1 -1
  1157. package/types/src/util/component.d.ts +2 -2
  1158. package/types/src/util/conditionalExpression.d.ts +3 -3
  1159. package/types/src/util/decal.d.ts +3 -3
  1160. package/types/src/util/event.d.ts +2 -2
  1161. package/types/src/util/format.d.ts +6 -6
  1162. package/types/src/util/graphic.d.ts +33 -33
  1163. package/types/src/util/innerStore.d.ts +3 -3
  1164. package/types/src/util/layout.d.ts +4 -4
  1165. package/types/src/util/model.d.ts +8 -8
  1166. package/types/src/util/shape/circulateLine.d.ts +2 -2
  1167. package/types/src/util/shape/diagonal.d.ts +2 -2
  1168. package/types/src/util/shape/sausage.d.ts +2 -2
  1169. package/types/src/util/states.d.ts +10 -10
  1170. package/types/src/util/styleCompat.d.ts +4 -4
  1171. package/types/src/util/symbol.d.ts +3 -3
  1172. package/types/src/util/time.d.ts +4 -4
  1173. package/types/src/util/types.d.ts +24 -24
  1174. package/types/src/view/Chart.d.ts +7 -7
  1175. package/types/src/view/Component.d.ts +8 -8
  1176. package/types/src/visual/LegendVisualProvider.d.ts +1 -1
  1177. package/types/src/visual/VisualMapping.d.ts +3 -3
  1178. package/types/src/visual/aria.d.ts +2 -2
  1179. package/types/src/visual/commonVisualTypes.d.ts +1 -1
  1180. package/types/src/visual/decal.d.ts +2 -2
  1181. package/types/src/visual/helper.d.ts +3 -3
  1182. package/types/src/visual/style.d.ts +1 -1
  1183. package/types/src/visual/symbol.d.ts +1 -1
  1184. package/types/src/visual/visualSolution.d.ts +3 -3
  1185. package/pre-publish-tmp/src/animation/basicTransition.js +0 -243
  1186. package/pre-publish-tmp/src/animation/customGraphicKeyframeAnimation.js +0 -143
  1187. package/pre-publish-tmp/src/animation/customGraphicTransition.js +0 -481
  1188. package/pre-publish-tmp/src/animation/morphTransitionHelper.js +0 -203
  1189. package/pre-publish-tmp/src/animation/universalTransition.js +0 -650
  1190. package/pre-publish-tmp/src/chart/arrowsPlot/ArrowPlotView.js +0 -132
  1191. package/pre-publish-tmp/src/chart/arrowsPlot/ArrowSymbolPath.js +0 -70
  1192. package/pre-publish-tmp/src/chart/arrowsPlot/ArrowsPlotLayout.js +0 -123
  1193. package/pre-publish-tmp/src/chart/arrowsPlot/ArrowsPlotSeries.js +0 -88
  1194. package/pre-publish-tmp/src/chart/arrowsPlot/install.js +0 -53
  1195. package/pre-publish-tmp/src/chart/bar/BarSeries.js +0 -112
  1196. package/pre-publish-tmp/src/chart/bar/BarView.js +0 -892
  1197. package/pre-publish-tmp/src/chart/bar/BaseBarSeries.js +0 -159
  1198. package/pre-publish-tmp/src/chart/bar/PictorialBarSeries.js +0 -95
  1199. package/pre-publish-tmp/src/chart/bar/PictorialBarView.js +0 -630
  1200. package/pre-publish-tmp/src/chart/bar/install.js +0 -81
  1201. package/pre-publish-tmp/src/chart/bar/installPictorialBar.js +0 -54
  1202. package/pre-publish-tmp/src/chart/bar.js +0 -46
  1203. package/pre-publish-tmp/src/chart/barPlot/BarPath.js +0 -68
  1204. package/pre-publish-tmp/src/chart/barPlot/BarPlotSeries.js +0 -139
  1205. package/pre-publish-tmp/src/chart/barPlot/BarPlotView.js +0 -116
  1206. package/pre-publish-tmp/src/chart/barPlot/barPlotLayout.js +0 -149
  1207. package/pre-publish-tmp/src/chart/barPlot/install.js +0 -51
  1208. package/pre-publish-tmp/src/chart/bgColor/BgColorLayout.js +0 -122
  1209. package/pre-publish-tmp/src/chart/bgColor/BgColorPath.js +0 -106
  1210. package/pre-publish-tmp/src/chart/bgColor/BgColorSeries.js +0 -98
  1211. package/pre-publish-tmp/src/chart/bgColor/BgColorView.js +0 -119
  1212. package/pre-publish-tmp/src/chart/bgColor/install.js +0 -73
  1213. package/pre-publish-tmp/src/chart/bgColor.js +0 -46
  1214. package/pre-publish-tmp/src/chart/boxes/BoxesLayout.js +0 -206
  1215. package/pre-publish-tmp/src/chart/boxes/BoxesPath.js +0 -78
  1216. package/pre-publish-tmp/src/chart/boxes/BoxesSeries.js +0 -131
  1217. package/pre-publish-tmp/src/chart/boxes/BoxesView.js +0 -174
  1218. package/pre-publish-tmp/src/chart/boxes/install.js +0 -51
  1219. package/pre-publish-tmp/src/chart/boxes/util.js +0 -77
  1220. package/pre-publish-tmp/src/chart/boxes.js +0 -46
  1221. package/pre-publish-tmp/src/chart/boxplot/BoxplotSeries.js +0 -108
  1222. package/pre-publish-tmp/src/chart/boxplot/BoxplotView.js +0 -172
  1223. package/pre-publish-tmp/src/chart/boxplot/boxplotLayout.js +0 -181
  1224. package/pre-publish-tmp/src/chart/boxplot/boxplotTransform.js +0 -66
  1225. package/pre-publish-tmp/src/chart/boxplot/install.js +0 -53
  1226. package/pre-publish-tmp/src/chart/boxplot/prepareBoxplotData.js +0 -96
  1227. package/pre-publish-tmp/src/chart/boxplot.js +0 -46
  1228. package/pre-publish-tmp/src/chart/candlePlot/CandlePlotSeries.js +0 -149
  1229. package/pre-publish-tmp/src/chart/candlePlot/CandlePlotView.js +0 -133
  1230. package/pre-publish-tmp/src/chart/candlePlot/NormalBoxPath.js +0 -66
  1231. package/pre-publish-tmp/src/chart/candlePlot/WickPath.js +0 -57
  1232. package/pre-publish-tmp/src/chart/candlePlot/candlePlotLayout.js +0 -244
  1233. package/pre-publish-tmp/src/chart/candlePlot/install.js +0 -51
  1234. package/pre-publish-tmp/src/chart/candlestick/CandlestickSeries.js +0 -138
  1235. package/pre-publish-tmp/src/chart/candlestick/CandlestickView.js +0 -335
  1236. package/pre-publish-tmp/src/chart/candlestick/candlestickLayout.js +0 -234
  1237. package/pre-publish-tmp/src/chart/candlestick/candlestickVisual.js +0 -86
  1238. package/pre-publish-tmp/src/chart/candlestick/install.js +0 -55
  1239. package/pre-publish-tmp/src/chart/candlestick/preprocessor.js +0 -55
  1240. package/pre-publish-tmp/src/chart/candlestick.js +0 -46
  1241. package/pre-publish-tmp/src/chart/charPlot/CharPlotLayout.js +0 -140
  1242. package/pre-publish-tmp/src/chart/charPlot/CharPlotSeries.js +0 -106
  1243. package/pre-publish-tmp/src/chart/charPlot/CharPlotView.js +0 -135
  1244. package/pre-publish-tmp/src/chart/charPlot/install.js +0 -53
  1245. package/pre-publish-tmp/src/chart/custom/CustomSeries.js +0 -106
  1246. package/pre-publish-tmp/src/chart/custom/CustomView.js +0 -925
  1247. package/pre-publish-tmp/src/chart/custom/install.js +0 -49
  1248. package/pre-publish-tmp/src/chart/custom.js +0 -46
  1249. package/pre-publish-tmp/src/chart/effectScatter/EffectScatterSeries.js +0 -105
  1250. package/pre-publish-tmp/src/chart/effectScatter/EffectScatterView.js +0 -99
  1251. package/pre-publish-tmp/src/chart/effectScatter/install.js +0 -51
  1252. package/pre-publish-tmp/src/chart/effectScatter.js +0 -46
  1253. package/pre-publish-tmp/src/chart/fills/FillPolyPath.js +0 -106
  1254. package/pre-publish-tmp/src/chart/fills/FillsSeries.js +0 -113
  1255. package/pre-publish-tmp/src/chart/fills/FillsView.js +0 -148
  1256. package/pre-publish-tmp/src/chart/fills/LargeFillPolyPath.js +0 -107
  1257. package/pre-publish-tmp/src/chart/fills/fillsLayout.js +0 -175
  1258. package/pre-publish-tmp/src/chart/fills/install.js +0 -73
  1259. package/pre-publish-tmp/src/chart/fills.js +0 -46
  1260. package/pre-publish-tmp/src/chart/funnel/FunnelSeries.js +0 -145
  1261. package/pre-publish-tmp/src/chart/funnel/FunnelView.js +0 -198
  1262. package/pre-publish-tmp/src/chart/funnel/funnelLayout.js +0 -344
  1263. package/pre-publish-tmp/src/chart/funnel/install.js +0 -53
  1264. package/pre-publish-tmp/src/chart/funnel.js +0 -46
  1265. package/pre-publish-tmp/src/chart/gauge/GaugeSeries.js +0 -185
  1266. package/pre-publish-tmp/src/chart/gauge/GaugeView.js +0 -560
  1267. package/pre-publish-tmp/src/chart/gauge/PointerPath.js +0 -83
  1268. package/pre-publish-tmp/src/chart/gauge/install.js +0 -49
  1269. package/pre-publish-tmp/src/chart/gauge.js +0 -46
  1270. package/pre-publish-tmp/src/chart/graph/GraphSeries.js +0 -275
  1271. package/pre-publish-tmp/src/chart/graph/GraphView.js +0 -266
  1272. package/pre-publish-tmp/src/chart/graph/adjustEdge.js +0 -173
  1273. package/pre-publish-tmp/src/chart/graph/categoryFilter.js +0 -74
  1274. package/pre-publish-tmp/src/chart/graph/categoryVisual.js +0 -90
  1275. package/pre-publish-tmp/src/chart/graph/circularLayout.js +0 -51
  1276. package/pre-publish-tmp/src/chart/graph/circularLayoutHelper.js +0 -191
  1277. package/pre-publish-tmp/src/chart/graph/createView.js +0 -103
  1278. package/pre-publish-tmp/src/chart/graph/edgeVisual.js +0 -93
  1279. package/pre-publish-tmp/src/chart/graph/forceHelper.js +0 -185
  1280. package/pre-publish-tmp/src/chart/graph/forceLayout.js +0 -160
  1281. package/pre-publish-tmp/src/chart/graph/install.js +0 -97
  1282. package/pre-publish-tmp/src/chart/graph/simpleLayout.js +0 -78
  1283. package/pre-publish-tmp/src/chart/graph/simpleLayoutHelper.js +0 -70
  1284. package/pre-publish-tmp/src/chart/graph.js +0 -46
  1285. package/pre-publish-tmp/src/chart/heatmap/HeatmapLayer.js +0 -166
  1286. package/pre-publish-tmp/src/chart/heatmap/HeatmapSeries.js +0 -89
  1287. package/pre-publish-tmp/src/chart/heatmap/HeatmapView.js +0 -310
  1288. package/pre-publish-tmp/src/chart/heatmap/install.js +0 -49
  1289. package/pre-publish-tmp/src/chart/heatmap.js +0 -46
  1290. package/pre-publish-tmp/src/chart/helper/EffectLine.js +0 -207
  1291. package/pre-publish-tmp/src/chart/helper/EffectPolyline.js +0 -134
  1292. package/pre-publish-tmp/src/chart/helper/EffectSymbol.js +0 -207
  1293. package/pre-publish-tmp/src/chart/helper/LargeLineDraw.js +0 -302
  1294. package/pre-publish-tmp/src/chart/helper/LargeSymbolDraw.js +0 -309
  1295. package/pre-publish-tmp/src/chart/helper/Line.js +0 -420
  1296. package/pre-publish-tmp/src/chart/helper/LineDraw.js +0 -167
  1297. package/pre-publish-tmp/src/chart/helper/LinePath.js +0 -111
  1298. package/pre-publish-tmp/src/chart/helper/Polyline.js +0 -107
  1299. package/pre-publish-tmp/src/chart/helper/Symbol.js +0 -380
  1300. package/pre-publish-tmp/src/chart/helper/SymbolDraw.js +0 -217
  1301. package/pre-publish-tmp/src/chart/helper/createClipPathFromCoordSys.js +0 -145
  1302. package/pre-publish-tmp/src/chart/helper/createGraphFromNodeEdge.js +0 -114
  1303. package/pre-publish-tmp/src/chart/helper/createRenderPlanner.js +0 -62
  1304. package/pre-publish-tmp/src/chart/helper/createSeriesData.js +0 -162
  1305. package/pre-publish-tmp/src/chart/helper/createSeriesDataSimply.js +0 -68
  1306. package/pre-publish-tmp/src/chart/helper/enableAriaDecalForTree.js +0 -58
  1307. package/pre-publish-tmp/src/chart/helper/labelHelper.js +0 -77
  1308. package/pre-publish-tmp/src/chart/helper/multipleGraphEdgeHelper.js +0 -226
  1309. package/pre-publish-tmp/src/chart/helper/sectorHelper.js +0 -62
  1310. package/pre-publish-tmp/src/chart/helper/treeHelper.js +0 -92
  1311. package/pre-publish-tmp/src/chart/helper/whiskerBoxCommon.js +0 -138
  1312. package/pre-publish-tmp/src/chart/hlines/HLinesSeries.js +0 -140
  1313. package/pre-publish-tmp/src/chart/hlines/HLinesView.js +0 -100
  1314. package/pre-publish-tmp/src/chart/hlines/hLinesLayout.js +0 -90
  1315. package/pre-publish-tmp/src/chart/hlines/install.js +0 -73
  1316. package/pre-publish-tmp/src/chart/hlines.js +0 -46
  1317. package/pre-publish-tmp/src/chart/labels/LabelsSeries.js +0 -146
  1318. package/pre-publish-tmp/src/chart/labels/LabelsView.js +0 -186
  1319. package/pre-publish-tmp/src/chart/labels/SymbolPath.js +0 -114
  1320. package/pre-publish-tmp/src/chart/labels/install.js +0 -55
  1321. package/pre-publish-tmp/src/chart/labels/labelsLayout.js +0 -301
  1322. package/pre-publish-tmp/src/chart/labels/labelsVisual.js +0 -185
  1323. package/pre-publish-tmp/src/chart/labels.js +0 -46
  1324. package/pre-publish-tmp/src/chart/line/LineSeries.js +0 -155
  1325. package/pre-publish-tmp/src/chart/line/LineView.js +0 -1121
  1326. package/pre-publish-tmp/src/chart/line/helper.js +0 -123
  1327. package/pre-publish-tmp/src/chart/line/install.js +0 -69
  1328. package/pre-publish-tmp/src/chart/line/lineAnimationDiff.js +0 -165
  1329. package/pre-publish-tmp/src/chart/line/poly.js +0 -353
  1330. package/pre-publish-tmp/src/chart/line.js +0 -46
  1331. package/pre-publish-tmp/src/chart/lineFills/LineFillsLayout.js +0 -125
  1332. package/pre-publish-tmp/src/chart/lineFills/LineFillsPath.js +0 -82
  1333. package/pre-publish-tmp/src/chart/lineFills/LineFillsSeries.js +0 -126
  1334. package/pre-publish-tmp/src/chart/lineFills/LineFillsView.js +0 -120
  1335. package/pre-publish-tmp/src/chart/lineFills/install.js +0 -51
  1336. package/pre-publish-tmp/src/chart/lineFills.js +0 -46
  1337. package/pre-publish-tmp/src/chart/lines/LinesSeries.js +0 -310
  1338. package/pre-publish-tmp/src/chart/lines/LinesView.js +0 -184
  1339. package/pre-publish-tmp/src/chart/lines/install.js +0 -53
  1340. package/pre-publish-tmp/src/chart/lines/linesLayout.js +0 -113
  1341. package/pre-publish-tmp/src/chart/lines.js +0 -46
  1342. package/pre-publish-tmp/src/chart/linesPlot/BarPath.js +0 -108
  1343. package/pre-publish-tmp/src/chart/linesPlot/GradientBarPath.js +0 -119
  1344. package/pre-publish-tmp/src/chart/linesPlot/GradientHistogramPlotPath.js +0 -106
  1345. package/pre-publish-tmp/src/chart/linesPlot/GradientLinePath.js +0 -117
  1346. package/pre-publish-tmp/src/chart/linesPlot/HistogramPlotPath.js +0 -97
  1347. package/pre-publish-tmp/src/chart/linesPlot/LinePlotPath.js +0 -137
  1348. package/pre-publish-tmp/src/chart/linesPlot/LinesPlotSeries.js +0 -137
  1349. package/pre-publish-tmp/src/chart/linesPlot/LinesPlotView.js +0 -641
  1350. package/pre-publish-tmp/src/chart/linesPlot/PolyPlotPath.js +0 -120
  1351. package/pre-publish-tmp/src/chart/linesPlot/SymbolPath.js +0 -100
  1352. package/pre-publish-tmp/src/chart/linesPlot/install.js +0 -52
  1353. package/pre-publish-tmp/src/chart/linesPlot/linesPlotLayout.js +0 -278
  1354. package/pre-publish-tmp/src/chart/linesPlot.js +0 -46
  1355. package/pre-publish-tmp/src/chart/map/MapSeries.js +0 -247
  1356. package/pre-publish-tmp/src/chart/map/MapView.js +0 -177
  1357. package/pre-publish-tmp/src/chart/map/install.js +0 -58
  1358. package/pre-publish-tmp/src/chart/map/mapDataStatistic.js +0 -104
  1359. package/pre-publish-tmp/src/chart/map/mapSymbolLayout.js +0 -86
  1360. package/pre-publish-tmp/src/chart/map.js +0 -46
  1361. package/pre-publish-tmp/src/chart/mineLines/LinesPath.js +0 -226
  1362. package/pre-publish-tmp/src/chart/mineLines/MineLinesLayout.js +0 -118
  1363. package/pre-publish-tmp/src/chart/mineLines/MineLinesSeries.js +0 -128
  1364. package/pre-publish-tmp/src/chart/mineLines/MineLinesView.js +0 -140
  1365. package/pre-publish-tmp/src/chart/mineLines/install.js +0 -51
  1366. package/pre-publish-tmp/src/chart/mineLines.js +0 -46
  1367. package/pre-publish-tmp/src/chart/minePolyLines/MinePolyLinesLayout.js +0 -102
  1368. package/pre-publish-tmp/src/chart/minePolyLines/MinePolyLinesSeries.js +0 -129
  1369. package/pre-publish-tmp/src/chart/minePolyLines/MinePolyLinesView.js +0 -143
  1370. package/pre-publish-tmp/src/chart/minePolyLines/PolyLinesPath.js +0 -169
  1371. package/pre-publish-tmp/src/chart/minePolyLines/install.js +0 -51
  1372. package/pre-publish-tmp/src/chart/parallel/ParallelSeries.js +0 -127
  1373. package/pre-publish-tmp/src/chart/parallel/ParallelView.js +0 -221
  1374. package/pre-publish-tmp/src/chart/parallel/install.js +0 -54
  1375. package/pre-publish-tmp/src/chart/parallel.js +0 -46
  1376. package/pre-publish-tmp/src/chart/pictorialBar.js +0 -46
  1377. package/pre-publish-tmp/src/chart/pie/PieSeries.js +0 -216
  1378. package/pre-publish-tmp/src/chart/pie/PieView.js +0 -283
  1379. package/pre-publish-tmp/src/chart/pie/install.js +0 -58
  1380. package/pre-publish-tmp/src/chart/pie/labelLayout.js +0 -474
  1381. package/pre-publish-tmp/src/chart/pie/pieLayout.js +0 -238
  1382. package/pre-publish-tmp/src/chart/pie.js +0 -46
  1383. package/pre-publish-tmp/src/chart/playbackOrder/PlaybackHtmlContent.js +0 -179
  1384. package/pre-publish-tmp/src/chart/playbackOrder/PlaybackOrderLayout.js +0 -108
  1385. package/pre-publish-tmp/src/chart/playbackOrder/PlaybackOrderSeries.js +0 -103
  1386. package/pre-publish-tmp/src/chart/playbackOrder/PlaybackOrderView.js +0 -311
  1387. package/pre-publish-tmp/src/chart/playbackOrder/SymbolPath.js +0 -87
  1388. package/pre-publish-tmp/src/chart/playbackOrder/install.js +0 -52
  1389. package/pre-publish-tmp/src/chart/radar/RadarSeries.js +0 -134
  1390. package/pre-publish-tmp/src/chart/radar/RadarView.js +0 -225
  1391. package/pre-publish-tmp/src/chart/radar/backwardCompat.js +0 -75
  1392. package/pre-publish-tmp/src/chart/radar/install.js +0 -58
  1393. package/pre-publish-tmp/src/chart/radar/radarLayout.js +0 -82
  1394. package/pre-publish-tmp/src/chart/radar.js +0 -46
  1395. package/pre-publish-tmp/src/chart/sankey/SankeySeries.js +0 -215
  1396. package/pre-publish-tmp/src/chart/sankey/SankeyView.js +0 -324
  1397. package/pre-publish-tmp/src/chart/sankey/install.js +0 -67
  1398. package/pre-publish-tmp/src/chart/sankey/sankeyLayout.js +0 -489
  1399. package/pre-publish-tmp/src/chart/sankey/sankeyVisual.js +0 -92
  1400. package/pre-publish-tmp/src/chart/sankey.js +0 -46
  1401. package/pre-publish-tmp/src/chart/scatter/ScatterSeries.js +0 -118
  1402. package/pre-publish-tmp/src/chart/scatter/ScatterView.js +0 -134
  1403. package/pre-publish-tmp/src/chart/scatter/install.js +0 -55
  1404. package/pre-publish-tmp/src/chart/scatter.js +0 -46
  1405. package/pre-publish-tmp/src/chart/strategy/StrategyLayout.js +0 -159
  1406. package/pre-publish-tmp/src/chart/strategy/StrategySeries.js +0 -102
  1407. package/pre-publish-tmp/src/chart/strategy/StrategyView.js +0 -274
  1408. package/pre-publish-tmp/src/chart/strategy/SymbolPath.js +0 -85
  1409. package/pre-publish-tmp/src/chart/strategy/install.js +0 -52
  1410. package/pre-publish-tmp/src/chart/sunburst/SunburstPiece.js +0 -230
  1411. package/pre-publish-tmp/src/chart/sunburst/SunburstSeries.js +0 -206
  1412. package/pre-publish-tmp/src/chart/sunburst/SunburstView.js +0 -206
  1413. package/pre-publish-tmp/src/chart/sunburst/install.js +0 -58
  1414. package/pre-publish-tmp/src/chart/sunburst/sunburstAction.js +0 -108
  1415. package/pre-publish-tmp/src/chart/sunburst/sunburstLayout.js +0 -216
  1416. package/pre-publish-tmp/src/chart/sunburst/sunburstVisual.js +0 -75
  1417. package/pre-publish-tmp/src/chart/sunburst.js +0 -46
  1418. package/pre-publish-tmp/src/chart/themeRiver/ThemeRiverSeries.js +0 -260
  1419. package/pre-publish-tmp/src/chart/themeRiver/ThemeRiverView.js +0 -186
  1420. package/pre-publish-tmp/src/chart/themeRiver/install.js +0 -35
  1421. package/pre-publish-tmp/src/chart/themeRiver/themeRiverLayout.js +0 -157
  1422. package/pre-publish-tmp/src/chart/themeRiver.js +0 -46
  1423. package/pre-publish-tmp/src/chart/tree/TreeSeries.js +0 -187
  1424. package/pre-publish-tmp/src/chart/tree/TreeView.js +0 -622
  1425. package/pre-publish-tmp/src/chart/tree/install.js +0 -55
  1426. package/pre-publish-tmp/src/chart/tree/layoutHelper.js +0 -288
  1427. package/pre-publish-tmp/src/chart/tree/treeAction.js +0 -82
  1428. package/pre-publish-tmp/src/chart/tree/treeLayout.js +0 -139
  1429. package/pre-publish-tmp/src/chart/tree/treeVisual.js +0 -57
  1430. package/pre-publish-tmp/src/chart/tree.js +0 -46
  1431. package/pre-publish-tmp/src/chart/treemap/Breadcrumb.js +0 -187
  1432. package/pre-publish-tmp/src/chart/treemap/TreemapSeries.js +0 -367
  1433. package/pre-publish-tmp/src/chart/treemap/TreemapView.js +0 -852
  1434. package/pre-publish-tmp/src/chart/treemap/install.js +0 -55
  1435. package/pre-publish-tmp/src/chart/treemap/treemapAction.js +0 -75
  1436. package/pre-publish-tmp/src/chart/treemap/treemapLayout.js +0 -499
  1437. package/pre-publish-tmp/src/chart/treemap/treemapVisual.js +0 -194
  1438. package/pre-publish-tmp/src/chart/treemap.js +0 -46
  1439. package/pre-publish-tmp/src/component/alarm/AlarmModel.js +0 -116
  1440. package/pre-publish-tmp/src/component/alarm/AlarmView.js +0 -457
  1441. package/pre-publish-tmp/src/component/alarm/install.js +0 -61
  1442. package/pre-publish-tmp/src/component/aria/install.js +0 -49
  1443. package/pre-publish-tmp/src/component/aria/preprocessor.js +0 -61
  1444. package/pre-publish-tmp/src/component/aria.js +0 -46
  1445. package/pre-publish-tmp/src/component/axis/AngleAxisView.js +0 -323
  1446. package/pre-publish-tmp/src/component/axis/AxisBuilder.js +0 -626
  1447. package/pre-publish-tmp/src/component/axis/AxisView.js +0 -181
  1448. package/pre-publish-tmp/src/component/axis/CartesianAxisView.js +0 -247
  1449. package/pre-publish-tmp/src/component/axis/ParallelAxisView.js +0 -174
  1450. package/pre-publish-tmp/src/component/axis/RadiusAxisView.js +0 -206
  1451. package/pre-publish-tmp/src/component/axis/SingleAxisView.js +0 -146
  1452. package/pre-publish-tmp/src/component/axis/axisSplitHelper.js +0 -124
  1453. package/pre-publish-tmp/src/component/axis/globalListener.js +0 -81
  1454. package/pre-publish-tmp/src/component/axisPointer/AxisPointerModel.js +0 -123
  1455. package/pre-publish-tmp/src/component/axisPointer/AxisPointerView.js +0 -124
  1456. package/pre-publish-tmp/src/component/axisPointer/BaseAxisPointer.js +0 -513
  1457. package/pre-publish-tmp/src/component/axisPointer/CartesianAxisPointer.js +0 -148
  1458. package/pre-publish-tmp/src/component/axisPointer/PolarAxisPointer.js +0 -144
  1459. package/pre-publish-tmp/src/component/axisPointer/SingleAxisPointer.js +0 -145
  1460. package/pre-publish-tmp/src/component/axisPointer/axisTrigger.js +0 -460
  1461. package/pre-publish-tmp/src/component/axisPointer/findPointFromSeries.js +0 -98
  1462. package/pre-publish-tmp/src/component/axisPointer/globalListener.js +0 -142
  1463. package/pre-publish-tmp/src/component/axisPointer/install.js +0 -89
  1464. package/pre-publish-tmp/src/component/axisPointer/modelHelper.js +0 -298
  1465. package/pre-publish-tmp/src/component/axisPointer/viewHelper.js +0 -201
  1466. package/pre-publish-tmp/src/component/axisPointer.js +0 -46
  1467. package/pre-publish-tmp/src/component/bgRect/install.js +0 -128
  1468. package/pre-publish-tmp/src/component/brush/BrushModel.js +0 -136
  1469. package/pre-publish-tmp/src/component/brush/BrushView.js +0 -111
  1470. package/pre-publish-tmp/src/component/brush/install.js +0 -101
  1471. package/pre-publish-tmp/src/component/brush/preprocessor.js +0 -87
  1472. package/pre-publish-tmp/src/component/brush/selector.js +0 -115
  1473. package/pre-publish-tmp/src/component/brush/visualEncoding.js +0 -257
  1474. package/pre-publish-tmp/src/component/brush.js +0 -46
  1475. package/pre-publish-tmp/src/component/calendar/CalendarView.js +0 -390
  1476. package/pre-publish-tmp/src/component/calendar/install.js +0 -51
  1477. package/pre-publish-tmp/src/component/calendar.js +0 -46
  1478. package/pre-publish-tmp/src/component/cursorPointer/install.js +0 -130
  1479. package/pre-publish-tmp/src/component/dataZoom/AxisProxy.js +0 -526
  1480. package/pre-publish-tmp/src/component/dataZoom/DataZoomModel.js +0 -520
  1481. package/pre-publish-tmp/src/component/dataZoom/DataZoomView.js +0 -61
  1482. package/pre-publish-tmp/src/component/dataZoom/InsideZoomModel.js +0 -66
  1483. package/pre-publish-tmp/src/component/dataZoom/InsideZoomView.js +0 -304
  1484. package/pre-publish-tmp/src/component/dataZoom/SelectZoomModel.js +0 -56
  1485. package/pre-publish-tmp/src/component/dataZoom/SelectZoomView.js +0 -56
  1486. package/pre-publish-tmp/src/component/dataZoom/SliderZoomModel.js +0 -126
  1487. package/pre-publish-tmp/src/component/dataZoom/SliderZoomView.js +0 -817
  1488. package/pre-publish-tmp/src/component/dataZoom/dataZoomAction.js +0 -84
  1489. package/pre-publish-tmp/src/component/dataZoom/dataZoomProcessor.js +0 -152
  1490. package/pre-publish-tmp/src/component/dataZoom/helper.js +0 -220
  1491. package/pre-publish-tmp/src/component/dataZoom/history.js +0 -116
  1492. package/pre-publish-tmp/src/component/dataZoom/install.js +0 -52
  1493. package/pre-publish-tmp/src/component/dataZoom/installCommon.js +0 -58
  1494. package/pre-publish-tmp/src/component/dataZoom/installDataZoomInside.js +0 -53
  1495. package/pre-publish-tmp/src/component/dataZoom/installDataZoomSelect.js +0 -51
  1496. package/pre-publish-tmp/src/component/dataZoom/installDataZoomSlider.js +0 -51
  1497. package/pre-publish-tmp/src/component/dataZoom/roams.js +0 -319
  1498. package/pre-publish-tmp/src/component/dataZoom.js +0 -46
  1499. package/pre-publish-tmp/src/component/dataZoomInside.js +0 -46
  1500. package/pre-publish-tmp/src/component/dataZoomSelect.js +0 -50
  1501. package/pre-publish-tmp/src/component/dataZoomSlider.js +0 -46
  1502. package/pre-publish-tmp/src/component/dataset/install.js +0 -99
  1503. package/pre-publish-tmp/src/component/dataset.js +0 -46
  1504. package/pre-publish-tmp/src/component/geo/GeoView.js +0 -110
  1505. package/pre-publish-tmp/src/component/geo/install.js +0 -141
  1506. package/pre-publish-tmp/src/component/geo.js +0 -46
  1507. package/pre-publish-tmp/src/component/graphic/GraphicModel.js +0 -273
  1508. package/pre-publish-tmp/src/component/graphic/GraphicView.js +0 -531
  1509. package/pre-publish-tmp/src/component/graphic/install.js +0 -78
  1510. package/pre-publish-tmp/src/component/graphic.js +0 -46
  1511. package/pre-publish-tmp/src/component/grid/install.js +0 -50
  1512. package/pre-publish-tmp/src/component/grid/installSimple.js +0 -96
  1513. package/pre-publish-tmp/src/component/grid.js +0 -46
  1514. package/pre-publish-tmp/src/component/gridSimple.js +0 -46
  1515. package/pre-publish-tmp/src/component/helper/BrushController.js +0 -751
  1516. package/pre-publish-tmp/src/component/helper/BrushTargetManager.js +0 -343
  1517. package/pre-publish-tmp/src/component/helper/MapDraw.js +0 -673
  1518. package/pre-publish-tmp/src/component/helper/RoamController.js +0 -310
  1519. package/pre-publish-tmp/src/component/helper/brushHelper.js +0 -71
  1520. package/pre-publish-tmp/src/component/helper/interactionMutex.js +0 -77
  1521. package/pre-publish-tmp/src/component/helper/listComponent.js +0 -87
  1522. package/pre-publish-tmp/src/component/legend/LegendModel.js +0 -318
  1523. package/pre-publish-tmp/src/component/legend/LegendView.js +0 -524
  1524. package/pre-publish-tmp/src/component/legend/ScrollableLegendModel.js +0 -105
  1525. package/pre-publish-tmp/src/component/legend/ScrollableLegendView.js +0 -401
  1526. package/pre-publish-tmp/src/component/legend/install.js +0 -50
  1527. package/pre-publish-tmp/src/component/legend/installLegendPlain.js +0 -56
  1528. package/pre-publish-tmp/src/component/legend/installLegendScroll.js +0 -54
  1529. package/pre-publish-tmp/src/component/legend/legendAction.js +0 -113
  1530. package/pre-publish-tmp/src/component/legend.js +0 -47
  1531. package/pre-publish-tmp/src/component/legendPlain.js +0 -47
  1532. package/pre-publish-tmp/src/component/legendScroll.js +0 -49
  1533. package/pre-publish-tmp/src/component/limitTip/install.js +0 -115
  1534. package/pre-publish-tmp/src/component/logo/install.js +0 -117
  1535. package/pre-publish-tmp/src/component/markArea.js +0 -46
  1536. package/pre-publish-tmp/src/component/markLabel.js +0 -46
  1537. package/pre-publish-tmp/src/component/markLine.js +0 -46
  1538. package/pre-publish-tmp/src/component/markPoint.js +0 -47
  1539. package/pre-publish-tmp/src/component/marker/MarkAreaModel.js +0 -85
  1540. package/pre-publish-tmp/src/component/marker/MarkAreaView.js +0 -362
  1541. package/pre-publish-tmp/src/component/marker/MarkLabelModal.js +0 -139
  1542. package/pre-publish-tmp/src/component/marker/MarkLabelView.js +0 -918
  1543. package/pre-publish-tmp/src/component/marker/MarkLineModel.js +0 -88
  1544. package/pre-publish-tmp/src/component/marker/MarkLineView.js +0 -363
  1545. package/pre-publish-tmp/src/component/marker/MarkPointModel.js +0 -82
  1546. package/pre-publish-tmp/src/component/marker/MarkPointView.js +0 -191
  1547. package/pre-publish-tmp/src/component/marker/MarkerModel.js +0 -166
  1548. package/pre-publish-tmp/src/component/marker/MarkerView.js +0 -95
  1549. package/pre-publish-tmp/src/component/marker/checkMarkerInSeries.js +0 -56
  1550. package/pre-publish-tmp/src/component/marker/installMarkArea.js +0 -56
  1551. package/pre-publish-tmp/src/component/marker/installMarkLabel.js +0 -38
  1552. package/pre-publish-tmp/src/component/marker/installMarkLine.js +0 -38
  1553. package/pre-publish-tmp/src/component/marker/installMarkPoint.js +0 -38
  1554. package/pre-publish-tmp/src/component/marker/markerHelper.js +0 -188
  1555. package/pre-publish-tmp/src/component/parallel/ParallelView.js +0 -137
  1556. package/pre-publish-tmp/src/component/parallel/install.js +0 -73
  1557. package/pre-publish-tmp/src/component/parallel.js +0 -46
  1558. package/pre-publish-tmp/src/component/playback/PlaybackOrderModel.js +0 -51
  1559. package/pre-publish-tmp/src/component/playback/PlaybackOrderView.js +0 -1309
  1560. package/pre-publish-tmp/src/component/playback/PlaybackSelectModel.js +0 -55
  1561. package/pre-publish-tmp/src/component/playback/PlaybackSelectView.js +0 -244
  1562. package/pre-publish-tmp/src/component/playback/install.js +0 -46
  1563. package/pre-publish-tmp/src/component/polar/install.js +0 -91
  1564. package/pre-publish-tmp/src/component/polar.js +0 -46
  1565. package/pre-publish-tmp/src/component/radar/RadarView.js +0 -203
  1566. package/pre-publish-tmp/src/component/radar/install.js +0 -63
  1567. package/pre-publish-tmp/src/component/radar.js +0 -46
  1568. package/pre-publish-tmp/src/component/singleAxis/install.js +0 -73
  1569. package/pre-publish-tmp/src/component/singleAxis.js +0 -46
  1570. package/pre-publish-tmp/src/component/table/TableModel.js +0 -95
  1571. package/pre-publish-tmp/src/component/table/TableView.js +0 -462
  1572. package/pre-publish-tmp/src/component/table/install.js +0 -49
  1573. package/pre-publish-tmp/src/component/table.js +0 -46
  1574. package/pre-publish-tmp/src/component/timeline/SliderTimelineModel.js +0 -159
  1575. package/pre-publish-tmp/src/component/timeline/SliderTimelineView.js +0 -653
  1576. package/pre-publish-tmp/src/component/timeline/TimelineAxis.js +0 -71
  1577. package/pre-publish-tmp/src/component/timeline/TimelineModel.js +0 -188
  1578. package/pre-publish-tmp/src/component/timeline/TimelineView.js +0 -56
  1579. package/pre-publish-tmp/src/component/timeline/install.js +0 -39
  1580. package/pre-publish-tmp/src/component/timeline/preprocessor.js +0 -113
  1581. package/pre-publish-tmp/src/component/timeline/timelineAction.js +0 -82
  1582. package/pre-publish-tmp/src/component/timeline.js +0 -49
  1583. package/pre-publish-tmp/src/component/title/install.js +0 -229
  1584. package/pre-publish-tmp/src/component/title.js +0 -46
  1585. package/pre-publish-tmp/src/component/toolbox/ToolboxModel.js +0 -108
  1586. package/pre-publish-tmp/src/component/toolbox/ToolboxView.js +0 -298
  1587. package/pre-publish-tmp/src/component/toolbox/feature/Brush.js +0 -134
  1588. package/pre-publish-tmp/src/component/toolbox/feature/DataView.js +0 -448
  1589. package/pre-publish-tmp/src/component/toolbox/feature/DataZoom.js +0 -251
  1590. package/pre-publish-tmp/src/component/toolbox/feature/MagicType.js +0 -210
  1591. package/pre-publish-tmp/src/component/toolbox/feature/Restore.js +0 -79
  1592. package/pre-publish-tmp/src/component/toolbox/feature/SaveAsImage.js +0 -145
  1593. package/pre-publish-tmp/src/component/toolbox/install.js +0 -64
  1594. package/pre-publish-tmp/src/component/toolbox.js +0 -46
  1595. package/pre-publish-tmp/src/component/tooltip/TooltipHTMLContent.js +0 -398
  1596. package/pre-publish-tmp/src/component/tooltip/TooltipModel.js +0 -130
  1597. package/pre-publish-tmp/src/component/tooltip/TooltipRichContent.js +0 -209
  1598. package/pre-publish-tmp/src/component/tooltip/TooltipView.js +0 -907
  1599. package/pre-publish-tmp/src/component/tooltip/helper.js +0 -78
  1600. package/pre-publish-tmp/src/component/tooltip/install.js +0 -81
  1601. package/pre-publish-tmp/src/component/tooltip/seriesFormatTooltip.js +0 -142
  1602. package/pre-publish-tmp/src/component/tooltip/tooltipMarkup.js +0 -324
  1603. package/pre-publish-tmp/src/component/tooltip.js +0 -46
  1604. package/pre-publish-tmp/src/component/transform/filterTransform.js +0 -96
  1605. package/pre-publish-tmp/src/component/transform/install.js +0 -49
  1606. package/pre-publish-tmp/src/component/transform/sortTransform.js +0 -155
  1607. package/pre-publish-tmp/src/component/transform.js +0 -46
  1608. package/pre-publish-tmp/src/component/visualMap/ContinuousModel.js +0 -256
  1609. package/pre-publish-tmp/src/component/visualMap/ContinuousView.js +0 -688
  1610. package/pre-publish-tmp/src/component/visualMap/PiecewiseModel.js +0 -439
  1611. package/pre-publish-tmp/src/component/visualMap/PiecewiseView.js +0 -213
  1612. package/pre-publish-tmp/src/component/visualMap/VisualMapModel.js +0 -413
  1613. package/pre-publish-tmp/src/component/visualMap/VisualMapView.js +0 -154
  1614. package/pre-publish-tmp/src/component/visualMap/helper.js +0 -90
  1615. package/pre-publish-tmp/src/component/visualMap/install.js +0 -52
  1616. package/pre-publish-tmp/src/component/visualMap/installCommon.js +0 -63
  1617. package/pre-publish-tmp/src/component/visualMap/installVisualMapContinuous.js +0 -51
  1618. package/pre-publish-tmp/src/component/visualMap/installVisualMapPiecewise.js +0 -51
  1619. package/pre-publish-tmp/src/component/visualMap/preprocessor.js +0 -78
  1620. package/pre-publish-tmp/src/component/visualMap/typeDefaulter.js +0 -48
  1621. package/pre-publish-tmp/src/component/visualMap/visualEncoding.js +0 -108
  1622. package/pre-publish-tmp/src/component/visualMap.js +0 -46
  1623. package/pre-publish-tmp/src/component/visualMapContinuous.js +0 -46
  1624. package/pre-publish-tmp/src/component/visualMapPiecewise.js +0 -46
  1625. package/pre-publish-tmp/src/coord/Axis.js +0 -301
  1626. package/pre-publish-tmp/src/coord/View.js +0 -251
  1627. package/pre-publish-tmp/src/coord/axisAlignTicks.js +0 -140
  1628. package/pre-publish-tmp/src/coord/axisDefault.js +0 -211
  1629. package/pre-publish-tmp/src/coord/axisHelper.js +0 -374
  1630. package/pre-publish-tmp/src/coord/axisModelCreator.js +0 -110
  1631. package/pre-publish-tmp/src/coord/axisTickLabelBuilder.js +0 -435
  1632. package/pre-publish-tmp/src/coord/calendar/Calendar.js +0 -374
  1633. package/pre-publish-tmp/src/coord/calendar/CalendarModel.js +0 -160
  1634. package/pre-publish-tmp/src/coord/cartesian/Axis2D.js +0 -94
  1635. package/pre-publish-tmp/src/coord/cartesian/AxisModel.js +0 -62
  1636. package/pre-publish-tmp/src/coord/cartesian/Cartesian.js +0 -74
  1637. package/pre-publish-tmp/src/coord/cartesian/Cartesian2D.js +0 -185
  1638. package/pre-publish-tmp/src/coord/cartesian/Grid.js +0 -508
  1639. package/pre-publish-tmp/src/coord/cartesian/GridModel.js +0 -72
  1640. package/pre-publish-tmp/src/coord/cartesian/cartesianAxisHelper.js +0 -119
  1641. package/pre-publish-tmp/src/coord/cartesian/defaultAxisExtentFromData.js +0 -223
  1642. package/pre-publish-tmp/src/coord/cartesian/prepareCustom.js +0 -74
  1643. package/pre-publish-tmp/src/coord/geo/Geo.js +0 -209
  1644. package/pre-publish-tmp/src/coord/geo/GeoJSONResource.js +0 -144
  1645. package/pre-publish-tmp/src/coord/geo/GeoModel.js +0 -212
  1646. package/pre-publish-tmp/src/coord/geo/GeoSVGResource.js +0 -333
  1647. package/pre-publish-tmp/src/coord/geo/Region.js +0 -286
  1648. package/pre-publish-tmp/src/coord/geo/fix/diaoyuIsland.js +0 -56
  1649. package/pre-publish-tmp/src/coord/geo/fix/nanhai.js +0 -73
  1650. package/pre-publish-tmp/src/coord/geo/geoCreator.js +0 -236
  1651. package/pre-publish-tmp/src/coord/geo/geoSourceManager.js +0 -121
  1652. package/pre-publish-tmp/src/coord/geo/parseGeoJson.js +0 -146
  1653. package/pre-publish-tmp/src/coord/geo/prepareCustom.js +0 -79
  1654. package/pre-publish-tmp/src/coord/parallel/AxisModel.js +0 -114
  1655. package/pre-publish-tmp/src/coord/parallel/Parallel.js +0 -410
  1656. package/pre-publish-tmp/src/coord/parallel/ParallelAxis.js +0 -59
  1657. package/pre-publish-tmp/src/coord/parallel/ParallelModel.js +0 -122
  1658. package/pre-publish-tmp/src/coord/parallel/parallelCreator.js +0 -71
  1659. package/pre-publish-tmp/src/coord/parallel/parallelPreprocessor.js +0 -84
  1660. package/pre-publish-tmp/src/coord/polar/AngleAxis.js +0 -111
  1661. package/pre-publish-tmp/src/coord/polar/AxisModel.js +0 -83
  1662. package/pre-publish-tmp/src/coord/polar/Polar.js +0 -216
  1663. package/pre-publish-tmp/src/coord/polar/PolarModel.js +0 -73
  1664. package/pre-publish-tmp/src/coord/polar/RadiusAxis.js +0 -58
  1665. package/pre-publish-tmp/src/coord/polar/polarCreator.js +0 -158
  1666. package/pre-publish-tmp/src/coord/polar/prepareCustom.js +0 -86
  1667. package/pre-publish-tmp/src/coord/radar/IndicatorAxis.js +0 -57
  1668. package/pre-publish-tmp/src/coord/radar/Radar.js +0 -194
  1669. package/pre-publish-tmp/src/coord/radar/RadarModel.js +0 -159
  1670. package/pre-publish-tmp/src/coord/scaleRawExtentInfo.js +0 -254
  1671. package/pre-publish-tmp/src/coord/single/AxisModel.js +0 -103
  1672. package/pre-publish-tmp/src/coord/single/Single.js +0 -210
  1673. package/pre-publish-tmp/src/coord/single/SingleAxis.js +0 -66
  1674. package/pre-publish-tmp/src/coord/single/prepareCustom.js +0 -70
  1675. package/pre-publish-tmp/src/coord/single/singleAxisHelper.js +0 -88
  1676. package/pre-publish-tmp/src/coord/single/singleCreator.js +0 -73
  1677. package/pre-publish-tmp/src/core/CoordinateSystem.js +0 -74
  1678. package/pre-publish-tmp/src/core/ExtensionAPI.js +0 -59
  1679. package/pre-publish-tmp/src/core/Scheduler.js +0 -491
  1680. package/pre-publish-tmp/src/core/echarts.js +0 -3068
  1681. package/pre-publish-tmp/src/core/impl.js +0 -65
  1682. package/pre-publish-tmp/src/core/lifecycle.js +0 -47
  1683. package/pre-publish-tmp/src/core/locale.js +0 -88
  1684. package/pre-publish-tmp/src/core/task.js +0 -345
  1685. package/pre-publish-tmp/src/data/DataStore.js +0 -1099
  1686. package/pre-publish-tmp/src/data/Graph.js +0 -459
  1687. package/pre-publish-tmp/src/data/OrdinalMeta.js +0 -313
  1688. package/pre-publish-tmp/src/data/SeriesData.js +0 -1027
  1689. package/pre-publish-tmp/src/data/SeriesDimensionDefine.js +0 -91
  1690. package/pre-publish-tmp/src/data/Source.js +0 -302
  1691. package/pre-publish-tmp/src/data/Tree.js +0 -353
  1692. package/pre-publish-tmp/src/data/helper/SeriesDataSchema.js +0 -224
  1693. package/pre-publish-tmp/src/data/helper/createDimensions.js +0 -322
  1694. package/pre-publish-tmp/src/data/helper/dataProvider.js +0 -385
  1695. package/pre-publish-tmp/src/data/helper/dataStackHelper.js +0 -179
  1696. package/pre-publish-tmp/src/data/helper/dataValueHelper.js +0 -246
  1697. package/pre-publish-tmp/src/data/helper/dimensionHelper.js +0 -172
  1698. package/pre-publish-tmp/src/data/helper/linkList.js +0 -46
  1699. package/pre-publish-tmp/src/data/helper/linkSeriesData.js +0 -150
  1700. package/pre-publish-tmp/src/data/helper/sourceHelper.js +0 -354
  1701. package/pre-publish-tmp/src/data/helper/sourceManager.js +0 -417
  1702. package/pre-publish-tmp/src/data/helper/transform.js +0 -417
  1703. package/pre-publish-tmp/src/echarts.js +0 -66
  1704. package/pre-publish-tmp/src/export/all.js +0 -46
  1705. package/pre-publish-tmp/src/export/api/format.js +0 -44
  1706. package/pre-publish-tmp/src/export/api/graphic.js +0 -44
  1707. package/pre-publish-tmp/src/export/api/helper.js +0 -128
  1708. package/pre-publish-tmp/src/export/api/number.js +0 -44
  1709. package/pre-publish-tmp/src/export/api/time.js +0 -45
  1710. package/pre-publish-tmp/src/export/api/util.js +0 -44
  1711. package/pre-publish-tmp/src/export/api.js +0 -114
  1712. package/pre-publish-tmp/src/export/charts.js +0 -85
  1713. package/pre-publish-tmp/src/export/components.js +0 -81
  1714. package/pre-publish-tmp/src/export/core.js +0 -51
  1715. package/pre-publish-tmp/src/export/features.js +0 -46
  1716. package/pre-publish-tmp/src/export/renderers.js +0 -45
  1717. package/pre-publish-tmp/src/extension.js +0 -110
  1718. package/pre-publish-tmp/src/label/LabelManager.js +0 -435
  1719. package/pre-publish-tmp/src/label/installLabelLayout.js +0 -65
  1720. package/pre-publish-tmp/src/label/labelGuideHelper.js +0 -541
  1721. package/pre-publish-tmp/src/label/labelLayoutHelper.js +0 -301
  1722. package/pre-publish-tmp/src/label/labelStyle.js +0 -484
  1723. package/pre-publish-tmp/src/label/sectorLabel.js +0 -201
  1724. package/pre-publish-tmp/src/layout/barGrid.js +0 -477
  1725. package/pre-publish-tmp/src/layout/barPolar.js +0 -254
  1726. package/pre-publish-tmp/src/layout/points.js +0 -105
  1727. package/pre-publish-tmp/src/legacy/dataSelectAction.js +0 -116
  1728. package/pre-publish-tmp/src/legacy/getTextRect.js +0 -59
  1729. package/pre-publish-tmp/src/loading/default.js +0 -161
  1730. package/pre-publish-tmp/src/model/Component.js +0 -233
  1731. package/pre-publish-tmp/src/model/Global.js +0 -793
  1732. package/pre-publish-tmp/src/model/Model.js +0 -179
  1733. package/pre-publish-tmp/src/model/OptionManager.js +0 -459
  1734. package/pre-publish-tmp/src/model/Series.js +0 -588
  1735. package/pre-publish-tmp/src/model/globalDefault.js +0 -132
  1736. package/pre-publish-tmp/src/model/internalComponentCreator.js +0 -66
  1737. package/pre-publish-tmp/src/model/mixin/areaStyle.js +0 -59
  1738. package/pre-publish-tmp/src/model/mixin/dataFormat.js +0 -202
  1739. package/pre-publish-tmp/src/model/mixin/itemStyle.js +0 -58
  1740. package/pre-publish-tmp/src/model/mixin/lineStyle.js +0 -59
  1741. package/pre-publish-tmp/src/model/mixin/makeStyleMapper.js +0 -70
  1742. package/pre-publish-tmp/src/model/mixin/palette.js +0 -105
  1743. package/pre-publish-tmp/src/model/mixin/textStyle.js +0 -87
  1744. package/pre-publish-tmp/src/model/referHelper.js +0 -175
  1745. package/pre-publish-tmp/src/preprocessor/backwardCompat.js +0 -255
  1746. package/pre-publish-tmp/src/preprocessor/helper/compatStyle.js +0 -331
  1747. package/pre-publish-tmp/src/processor/dataSample.js +0 -141
  1748. package/pre-publish-tmp/src/processor/dataStack.js +0 -133
  1749. package/pre-publish-tmp/src/processor/negativeDataFilter.js +0 -61
  1750. package/pre-publish-tmp/src/renderer/installCanvasRenderer.js +0 -47
  1751. package/pre-publish-tmp/src/renderer/installSVGRenderer.js +0 -47
  1752. package/pre-publish-tmp/src/scale/Interval.js +0 -267
  1753. package/pre-publish-tmp/src/scale/Log.js +0 -218
  1754. package/pre-publish-tmp/src/scale/Ordinal.js +0 -217
  1755. package/pre-publish-tmp/src/scale/Percentage.js +0 -230
  1756. package/pre-publish-tmp/src/scale/Scale.js +0 -122
  1757. package/pre-publish-tmp/src/scale/Time.js +0 -510
  1758. package/pre-publish-tmp/src/scale/helper.js +0 -169
  1759. package/pre-publish-tmp/src/util/ECEventProcessor.js +0 -144
  1760. package/pre-publish-tmp/src/util/KDTree.js +0 -255
  1761. package/pre-publish-tmp/src/util/axisLabel.js +0 -62
  1762. package/pre-publish-tmp/src/util/clazz.js +0 -305
  1763. package/pre-publish-tmp/src/util/color.js +0 -202
  1764. package/pre-publish-tmp/src/util/component.js +0 -186
  1765. package/pre-publish-tmp/src/util/conditionalExpression.js +0 -257
  1766. package/pre-publish-tmp/src/util/decal.js +0 -392
  1767. package/pre-publish-tmp/src/util/format.js +0 -254
  1768. package/pre-publish-tmp/src/util/graphic.js +0 -525
  1769. package/pre-publish-tmp/src/util/innerStore.js +0 -66
  1770. package/pre-publish-tmp/src/util/layout.js +0 -449
  1771. package/pre-publish-tmp/src/util/log.js +0 -134
  1772. package/pre-publish-tmp/src/util/model.js +0 -696
  1773. package/pre-publish-tmp/src/util/number.js +0 -563
  1774. package/pre-publish-tmp/src/util/shape/circulateLine.js +0 -92
  1775. package/pre-publish-tmp/src/util/shape/diagonal.js +0 -78
  1776. package/pre-publish-tmp/src/util/shape/sausage.js +0 -107
  1777. package/pre-publish-tmp/src/util/states.js +0 -848
  1778. package/pre-publish-tmp/src/util/styleCompat.js +0 -226
  1779. package/pre-publish-tmp/src/util/symbol.js +0 -1266
  1780. package/pre-publish-tmp/src/util/time.js +0 -271
  1781. package/pre-publish-tmp/src/util/types.js +0 -60
  1782. package/pre-publish-tmp/src/util/vendor.js +0 -55
  1783. package/pre-publish-tmp/src/view/Chart.js +0 -201
  1784. package/pre-publish-tmp/src/view/Component.js +0 -88
  1785. package/pre-publish-tmp/src/visual/VisualMapping.js +0 -479
  1786. package/pre-publish-tmp/src/visual/aria.js +0 -229
  1787. package/pre-publish-tmp/src/visual/decal.js +0 -66
  1788. package/pre-publish-tmp/src/visual/style.js +0 -216
  1789. package/pre-publish-tmp/src/visual/symbol.js +0 -124
  1790. package/pre-publish-tmp/src/visual/visualDefault.js +0 -91
  1791. package/pre-publish-tmp/src/visual/visualSolution.js +0 -202
  1792. /package/{pre-publish-tmp/src → lib}/action/roamHelper.js +0 -0
  1793. /package/{pre-publish-tmp/src → lib}/chart/charPlot/util.js +0 -0
  1794. /package/{pre-publish-tmp/src → lib}/chart/graph/graphHelper.js +0 -0
  1795. /package/{pre-publish-tmp/src → lib}/chart/lines/linesVisual.js +0 -0
  1796. /package/{pre-publish-tmp/src → lib}/chart/linesPlot/linesPlotVisual.js +0 -0
  1797. /package/{pre-publish-tmp/src → lib}/chart/mineLines/util.js +0 -0
  1798. /package/{pre-publish-tmp/src → lib}/chart/parallel/parallelVisual.js +0 -0
  1799. /package/{pre-publish-tmp/src → lib}/chart/playbackOrder/constants.js +0 -0
  1800. /package/{pre-publish-tmp/src → lib}/chart/strategy/constants.js +0 -0
  1801. /package/{pre-publish-tmp/src → lib}/chart/tree/traversalHelper.js +0 -0
  1802. /package/{pre-publish-tmp/src → lib}/component/axis/parallelAxisAction.js +0 -0
  1803. /package/{pre-publish-tmp/src → lib}/component/axisPointer/AxisPointer.js +0 -0
  1804. /package/{pre-publish-tmp/src → lib}/component/helper/cursorHelper.js +0 -0
  1805. /package/{pre-publish-tmp/src → lib}/component/helper/kineticAnimation.js +0 -0
  1806. /package/{pre-publish-tmp/src → lib}/component/helper/roamHelper.js +0 -0
  1807. /package/{pre-publish-tmp/src → lib}/component/helper/sliderMove.js +0 -0
  1808. /package/{pre-publish-tmp/src → lib}/component/legend/legendFilter.js +0 -0
  1809. /package/{pre-publish-tmp/src → lib}/component/legend/scrollableLegendAction.js +0 -0
  1810. /package/{pre-publish-tmp/src → lib}/component/toolbox/featureManager.js +0 -0
  1811. /package/{pre-publish-tmp/src → lib}/component/visualMap/visualMapAction.js +0 -0
  1812. /package/{pre-publish-tmp/src → lib}/coord/AxisBaseModel.js +0 -0
  1813. /package/{pre-publish-tmp/src → lib}/coord/CoordinateSystem.js +0 -0
  1814. /package/{pre-publish-tmp/src → lib}/coord/axisCommonTypes.js +0 -0
  1815. /package/{pre-publish-tmp/src → lib}/coord/axisModelCommonMixin.js +0 -0
  1816. /package/{pre-publish-tmp/src → lib}/coord/calendar/prepareCustom.js +0 -0
  1817. /package/{pre-publish-tmp/src → lib}/coord/geo/fix/geoCoord.js +0 -0
  1818. /package/{pre-publish-tmp/src → lib}/coord/geo/fix/textCoord.js +0 -0
  1819. /package/{pre-publish-tmp/src → lib}/coord/geo/geoTypes.js +0 -0
  1820. /package/{pre-publish-tmp/src → lib}/data/Constant.js +0 -0
  1821. /package/{pre-publish-tmp/src → lib}/data/DataDiffer.js +0 -0
  1822. /package/{pre-publish-tmp/src → lib}/data/scale-time/default-tick-mark-formatter.js +0 -0
  1823. /package/{pre-publish-tmp/src → lib}/data/scale-time/find-time-range.js +0 -0
  1824. /package/{pre-publish-tmp/src → lib}/data/scale-time/time-scale-point-weight-generator.js +0 -0
  1825. /package/{pre-publish-tmp/src → lib}/data/scale-time/types.js +0 -0
  1826. /package/{pre-publish-tmp/src → lib}/export/option.js +0 -0
  1827. /package/{pre-publish-tmp/src → lib}/i18n/langAR.js +0 -0
  1828. /package/{pre-publish-tmp/src → lib}/i18n/langCS.js +0 -0
  1829. /package/{pre-publish-tmp/src → lib}/i18n/langDE.js +0 -0
  1830. /package/{pre-publish-tmp/src → lib}/i18n/langEN.js +0 -0
  1831. /package/{pre-publish-tmp/src → lib}/i18n/langES.js +0 -0
  1832. /package/{pre-publish-tmp/src → lib}/i18n/langFI.js +0 -0
  1833. /package/{pre-publish-tmp/src → lib}/i18n/langFR.js +0 -0
  1834. /package/{pre-publish-tmp/src → lib}/i18n/langHU.js +0 -0
  1835. /package/{pre-publish-tmp/src → lib}/i18n/langIT.js +0 -0
  1836. /package/{pre-publish-tmp/src → lib}/i18n/langJA.js +0 -0
  1837. /package/{pre-publish-tmp/src → lib}/i18n/langKO.js +0 -0
  1838. /package/{pre-publish-tmp/src → lib}/i18n/langNL.js +0 -0
  1839. /package/{pre-publish-tmp/src → lib}/i18n/langPL.js +0 -0
  1840. /package/{pre-publish-tmp/src → lib}/i18n/langPT-br.js +0 -0
  1841. /package/{pre-publish-tmp/src → lib}/i18n/langRO.js +0 -0
  1842. /package/{pre-publish-tmp/src → lib}/i18n/langRU.js +0 -0
  1843. /package/{pre-publish-tmp/src → lib}/i18n/langSI.js +0 -0
  1844. /package/{pre-publish-tmp/src → lib}/i18n/langTH.js +0 -0
  1845. /package/{pre-publish-tmp/src → lib}/i18n/langTR.js +0 -0
  1846. /package/{pre-publish-tmp/src → lib}/i18n/langUK.js +0 -0
  1847. /package/{pre-publish-tmp/src → lib}/i18n/langVI.js +0 -0
  1848. /package/{pre-publish-tmp/src → lib}/i18n/langZH.js +0 -0
  1849. /package/{pre-publish-tmp/src → lib}/processor/dataFilter.js +0 -0
  1850. /package/{pre-publish-tmp/src → lib}/theme/dark.js +0 -0
  1851. /package/{pre-publish-tmp/src → lib}/theme/light.js +0 -0
  1852. /package/{pre-publish-tmp/src → lib}/util/animation.js +0 -0
  1853. /package/{pre-publish-tmp/src → lib}/util/event.js +0 -0
  1854. /package/{pre-publish-tmp/src → lib}/util/quickSelect.js +0 -0
  1855. /package/{pre-publish-tmp/src → lib}/util/seriesType.js +0 -0
  1856. /package/{pre-publish-tmp/src → lib}/util/symbolSize.js +0 -0
  1857. /package/{pre-publish-tmp/src → lib}/util/throttle.js +0 -0
  1858. /package/{pre-publish-tmp/src → lib}/visual/LegendVisualProvider.js +0 -0
  1859. /package/{pre-publish-tmp/src → lib}/visual/commonVisualTypes.js +0 -0
  1860. /package/{pre-publish-tmp/src → lib}/visual/helper.js +0 -0
@@ -1,254 +0,0 @@
1
-
2
- /*
3
- * Licensed to the Apache Software Foundation (ASF) under one
4
- * or more contributor license agreements. See the NOTICE file
5
- * distributed with this work for additional information
6
- * regarding copyright ownership. The ASF licenses this file
7
- * to you under the Apache License, Version 2.0 (the
8
- * "License"); you may not use this file except in compliance
9
- * with the License. You may obtain a copy of the License at
10
- *
11
- * http://www.apache.org/licenses/LICENSE-2.0
12
- *
13
- * Unless required by applicable law or agreed to in writing,
14
- * software distributed under the License is distributed on an
15
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
- * KIND, either express or implied. See the License for the
17
- * specific language governing permissions and limitations
18
- * under the License.
19
- */
20
-
21
-
22
- /**
23
- * AUTO-GENERATED FILE. DO NOT MODIFY.
24
- */
25
-
26
- /*
27
- * Licensed to the Apache Software Foundation (ASF) under one
28
- * or more contributor license agreements. See the NOTICE file
29
- * distributed with this work for additional information
30
- * regarding copyright ownership. The ASF licenses this file
31
- * to you under the Apache License, Version 2.0 (the
32
- * "License"); you may not use this file except in compliance
33
- * with the License. You may obtain a copy of the License at
34
- *
35
- * http://www.apache.org/licenses/LICENSE-2.0
36
- *
37
- * Unless required by applicable law or agreed to in writing,
38
- * software distributed under the License is distributed on an
39
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
40
- * KIND, either express or implied. See the License for the
41
- * specific language governing permissions and limitations
42
- * under the License.
43
- */
44
- import { assert, isArray, eqNaN, isFunction } from 'tvrender/src/core/util';
45
- import { parsePercent } from 'tvrender/src/contain/text';
46
- var ScaleRawExtentInfo = /** @class */function () {
47
- function ScaleRawExtentInfo(scale, model,
48
- // Usually: data extent from all series on this axis.
49
- originalExtent) {
50
- this._prepareParams(scale, model, originalExtent);
51
- }
52
- /**
53
- * Parameters depending on outside (like model, user callback)
54
- * are prepared and fixed here.
55
- */
56
- ScaleRawExtentInfo.prototype._prepareParams = function (scale, model,
57
- // Usually: data extent from all series on this axis.
58
- dataExtent) {
59
- if (dataExtent[1] < dataExtent[0]) {
60
- dataExtent = [NaN, NaN];
61
- }
62
- this._dataMin = dataExtent[0];
63
- this._dataMax = dataExtent[1];
64
- var isOrdinal = this._isOrdinal = scale.type === 'ordinal';
65
- this._isLog = scale.type === 'log';
66
- this._needCrossZero = scale.type === 'interval' && model.getNeedCrossZero && model.getNeedCrossZero();
67
- var modelMinRaw = this._modelMinRaw = model.get('min', true);
68
- if (isFunction(modelMinRaw)) {
69
- // This callback always provides users the full data extent (before data is filtered).
70
- this._modelMinNum = parseAxisModelMinMax(scale, modelMinRaw({
71
- min: dataExtent[0],
72
- max: dataExtent[1]
73
- }));
74
- } else if (modelMinRaw !== 'dataMin') {
75
- this._modelMinNum = parseAxisModelMinMax(scale, modelMinRaw);
76
- }
77
- var modelMaxRaw = this._modelMaxRaw = model.get('max', true);
78
- if (isFunction(modelMaxRaw)) {
79
- // This callback always provides users the full data extent (before data is filtered).
80
- this._modelMaxNum = parseAxisModelMinMax(scale, modelMaxRaw({
81
- min: dataExtent[0],
82
- max: dataExtent[1]
83
- }));
84
- } else if (modelMaxRaw !== 'dataMax') {
85
- this._modelMaxNum = parseAxisModelMinMax(scale, modelMaxRaw);
86
- }
87
- if (isOrdinal) {
88
- // FIXME: there is a flaw here: if there is no "block" data processor like `dataZoom`,
89
- // and progressive rendering is using, here the category result might just only contain
90
- // the processed chunk rather than the entire result.
91
- this._axisDataLen = model.getCategories().length;
92
- } else {
93
- var boundaryGap = model.get('boundaryGap');
94
- var boundaryGapArr = isArray(boundaryGap) ? boundaryGap : [boundaryGap || 0, boundaryGap || 0];
95
- if (typeof boundaryGapArr[0] === 'boolean' || typeof boundaryGapArr[1] === 'boolean') {
96
- if (process.env.NODE_ENV !== 'production') {
97
- console.warn('Boolean type for boundaryGap is only ' + 'allowed for ordinal axis. Please use string in ' + 'percentage instead, e.g., "20%". Currently, ' + 'boundaryGap is set to be 0.');
98
- }
99
- this._boundaryGapInner = [0, 0];
100
- } else {
101
- this._boundaryGapInner = [parsePercent(boundaryGapArr[0], 1), parsePercent(boundaryGapArr[1], 1)];
102
- }
103
- }
104
- };
105
- /**
106
- * Calculate extent by prepared parameters.
107
- * This method has no external dependency and can be called duplicatedly,
108
- * getting the same result.
109
- * If parameters changed, should call this method to recalcuate.
110
- */
111
- ScaleRawExtentInfo.prototype.calculate = function () {
112
- // Notice: When min/max is not set (that is, when there are null/undefined,
113
- // which is the most common case), these cases should be ensured:
114
- // (1) For 'ordinal', show all axis.data.
115
- // (2) For others:
116
- // + `boundaryGap` is applied (if min/max set, boundaryGap is
117
- // disabled).
118
- // + If `needCrossZero`, min/max should be zero, otherwise, min/max should
119
- // be the result that originalExtent enlarged by boundaryGap.
120
- // (3) If no data, it should be ensured that `scale.setBlank` is set.
121
- var isOrdinal = this._isOrdinal;
122
- var isLog = this._isLog;
123
- var dataMin = this._dataMin;
124
- var dataMax = this._dataMax;
125
- var axisDataLen = this._axisDataLen;
126
- var boundaryGapInner = this._boundaryGapInner;
127
- var span = !isOrdinal ? dataMax - dataMin || Math.abs(dataMin) : null;
128
- // Currently if a `'value'` axis model min is specified as 'dataMin'/'dataMax',
129
- // `boundaryGap` will not be used. It's the different from specifying as `null`/`undefined`.
130
- var min = this._modelMinRaw === 'dataMin' ? dataMin : this._modelMinNum;
131
- var max = this._modelMaxRaw === 'dataMax' ? dataMax : this._modelMaxNum;
132
- // If `_modelMinNum`/`_modelMaxNum` is `null`/`undefined`, should not be fixed.
133
- var minFixed = min != null;
134
- var maxFixed = max != null;
135
- if (min == null) {
136
- min = isOrdinal ? axisDataLen ? 0 : NaN : dataMin - boundaryGapInner[0] * span;
137
- }
138
- if (max == null) {
139
- max = isOrdinal ? axisDataLen ? axisDataLen - 1 : NaN : dataMax + boundaryGapInner[1] * span;
140
- }
141
- (min == null || !isFinite(min)) && (min = NaN);
142
- (max == null || !isFinite(max)) && (max = NaN);
143
- var isBlank = eqNaN(min) || eqNaN(max) || isOrdinal && !axisDataLen;
144
- // If data extent modified, need to recalculated to ensure cross zero.
145
- if (this._needCrossZero) {
146
- // Axis is over zero and min is not set
147
- if (min > 0 && max > 0 && !minFixed) {
148
- min = 0;
149
- // minFixed = true;
150
- }
151
- // Axis is under zero and max is not set
152
- if (min < 0 && max < 0 && !maxFixed) {
153
- max = 0;
154
- // maxFixed = true;
155
- }
156
- // PENDING:
157
- // When `needCrossZero` and all data is positive/negative, should it be ensured
158
- // that the results processed by boundaryGap are positive/negative?
159
- // If so, here `minFixed`/`maxFixed` need to be set.
160
- }
161
-
162
- var determinedMin = this._determinedMin;
163
- var determinedMax = this._determinedMax;
164
- if (determinedMin != null) {
165
- min = determinedMin;
166
- minFixed = true;
167
- }
168
- if (determinedMax != null) {
169
- max = determinedMax;
170
- maxFixed = true;
171
- }
172
- // if (isLog && min < 0) {
173
- // min = Math.max(dataMin, 0);
174
- // }
175
- // Ensure min/max be finite number or NaN here. (not to be null/undefined)
176
- // `NaN` means min/max axis is blank.
177
- return {
178
- min: min,
179
- max: max,
180
- minFixed: minFixed,
181
- maxFixed: maxFixed,
182
- isBlank: isBlank
183
- };
184
- };
185
- ScaleRawExtentInfo.prototype.modifyDataMinMax = function (minMaxName, val) {
186
- if (process.env.NODE_ENV !== 'production') {
187
- assert(!this.frozen);
188
- }
189
- this[DATA_MIN_MAX_ATTR[minMaxName]] = val;
190
- };
191
- ScaleRawExtentInfo.prototype.getAxisDataLen = function () {
192
- return this._axisDataLen;
193
- };
194
- ScaleRawExtentInfo.prototype.setDeterminedMinMax = function (minMaxName, val) {
195
- var attr = DETERMINED_MIN_MAX_ATTR[minMaxName];
196
- if (process.env.NODE_ENV !== 'production') {
197
- assert(!this.frozen
198
- // Earse them usually means logic flaw.
199
- && this[attr] == null);
200
- }
201
- this[attr] = val;
202
- };
203
- ScaleRawExtentInfo.prototype.freeze = function () {
204
- // @ts-ignore
205
- this.frozen = true;
206
- };
207
- ScaleRawExtentInfo.prototype.getDataRange = function () {
208
- return [this._dataMin, this._dataMax];
209
- };
210
- ScaleRawExtentInfo.prototype.getBoundaryGapInner = function () {
211
- return this._boundaryGapInner;
212
- };
213
- return ScaleRawExtentInfo;
214
- }();
215
- export { ScaleRawExtentInfo };
216
- var DETERMINED_MIN_MAX_ATTR = {
217
- min: '_determinedMin',
218
- max: '_determinedMax'
219
- };
220
- var DATA_MIN_MAX_ATTR = {
221
- min: '_dataMin',
222
- max: '_dataMax'
223
- };
224
- /**
225
- * Get scale min max and related info only depends on model settings.
226
- * This method can be called after coordinate system created.
227
- * For example, in data processing stage.
228
- *
229
- * Scale extent info probably be required multiple times during a workflow.
230
- * For example:
231
- * (1) `dataZoom` depends it to get the axis extent in "100%" state.
232
- * (2) `processor/extentCalculator` depends it to make sure whether axis extent is specified.
233
- * (3) `coordSys.update` use it to finally decide the scale extent.
234
- * But the callback of `min`/`max` should not be called multiple times.
235
- * The code below should not be implemented repeatedly either.
236
- * So we cache the result in the scale instance, which will be recreated at the beginning
237
- * of the workflow (because `scale` instance will be recreated each round of the workflow).
238
- */
239
- export function ensureScaleRawExtentInfo(scale, model,
240
- // Usually: data extent from all series on this axis.
241
- originalExtent) {
242
- // Do not permit to recreate.
243
- var rawExtentInfo = scale.rawExtentInfo;
244
- if (rawExtentInfo) {
245
- return rawExtentInfo;
246
- }
247
- rawExtentInfo = new ScaleRawExtentInfo(scale, model, originalExtent);
248
- // @ts-ignore
249
- scale.rawExtentInfo = rawExtentInfo;
250
- return rawExtentInfo;
251
- }
252
- export function parseAxisModelMinMax(scale, minMax) {
253
- return minMax == null ? null : eqNaN(minMax) ? NaN : scale.parse(minMax);
254
- }
@@ -1,103 +0,0 @@
1
-
2
- /*
3
- * Licensed to the Apache Software Foundation (ASF) under one
4
- * or more contributor license agreements. See the NOTICE file
5
- * distributed with this work for additional information
6
- * regarding copyright ownership. The ASF licenses this file
7
- * to you under the Apache License, Version 2.0 (the
8
- * "License"); you may not use this file except in compliance
9
- * with the License. You may obtain a copy of the License at
10
- *
11
- * http://www.apache.org/licenses/LICENSE-2.0
12
- *
13
- * Unless required by applicable law or agreed to in writing,
14
- * software distributed under the License is distributed on an
15
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
- * KIND, either express or implied. See the License for the
17
- * specific language governing permissions and limitations
18
- * under the License.
19
- */
20
-
21
-
22
- /**
23
- * AUTO-GENERATED FILE. DO NOT MODIFY.
24
- */
25
-
26
- /*
27
- * Licensed to the Apache Software Foundation (ASF) under one
28
- * or more contributor license agreements. See the NOTICE file
29
- * distributed with this work for additional information
30
- * regarding copyright ownership. The ASF licenses this file
31
- * to you under the Apache License, Version 2.0 (the
32
- * "License"); you may not use this file except in compliance
33
- * with the License. You may obtain a copy of the License at
34
- *
35
- * http://www.apache.org/licenses/LICENSE-2.0
36
- *
37
- * Unless required by applicable law or agreed to in writing,
38
- * software distributed under the License is distributed on an
39
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
40
- * KIND, either express or implied. See the License for the
41
- * specific language governing permissions and limitations
42
- * under the License.
43
- */
44
- import { __extends } from "tslib";
45
- import ComponentModel from '../../model/Component';
46
- import { AxisModelCommonMixin } from '../axisModelCommonMixin';
47
- import { mixin } from 'tvrender/src/core/util';
48
- var SingleAxisModel = /** @class */function (_super) {
49
- __extends(SingleAxisModel, _super);
50
- function SingleAxisModel() {
51
- var _this = _super !== null && _super.apply(this, arguments) || this;
52
- _this.type = SingleAxisModel.type;
53
- return _this;
54
- }
55
- SingleAxisModel.prototype.getCoordSysModel = function () {
56
- return this;
57
- };
58
- SingleAxisModel.type = 'singleAxis';
59
- SingleAxisModel.layoutMode = 'box';
60
- SingleAxisModel.defaultOption = {
61
- left: '5%',
62
- top: '5%',
63
- right: '5%',
64
- bottom: '5%',
65
- type: 'value',
66
- position: 'bottom',
67
- orient: 'horizontal',
68
- axisLine: {
69
- show: true,
70
- lineStyle: {
71
- width: 1,
72
- type: 'solid'
73
- }
74
- },
75
- // Single coordinate system and single axis is the,
76
- // which is used as the parent tooltip model.
77
- // same model, so we set default tooltip show as true.
78
- tooltip: {
79
- show: true
80
- },
81
- axisTick: {
82
- show: true,
83
- length: 6,
84
- lineStyle: {
85
- width: 1
86
- }
87
- },
88
- axisLabel: {
89
- show: true,
90
- interval: 'auto'
91
- },
92
- splitLine: {
93
- show: true,
94
- lineStyle: {
95
- type: 'dashed',
96
- opacity: 0.2
97
- }
98
- }
99
- };
100
- return SingleAxisModel;
101
- }(ComponentModel);
102
- mixin(SingleAxisModel, AxisModelCommonMixin.prototype);
103
- export default SingleAxisModel;
@@ -1,210 +0,0 @@
1
-
2
- /*
3
- * Licensed to the Apache Software Foundation (ASF) under one
4
- * or more contributor license agreements. See the NOTICE file
5
- * distributed with this work for additional information
6
- * regarding copyright ownership. The ASF licenses this file
7
- * to you under the Apache License, Version 2.0 (the
8
- * "License"); you may not use this file except in compliance
9
- * with the License. You may obtain a copy of the License at
10
- *
11
- * http://www.apache.org/licenses/LICENSE-2.0
12
- *
13
- * Unless required by applicable law or agreed to in writing,
14
- * software distributed under the License is distributed on an
15
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
- * KIND, either express or implied. See the License for the
17
- * specific language governing permissions and limitations
18
- * under the License.
19
- */
20
-
21
-
22
- /**
23
- * AUTO-GENERATED FILE. DO NOT MODIFY.
24
- */
25
-
26
- /*
27
- * Licensed to the Apache Software Foundation (ASF) under one
28
- * or more contributor license agreements. See the NOTICE file
29
- * distributed with this work for additional information
30
- * regarding copyright ownership. The ASF licenses this file
31
- * to you under the Apache License, Version 2.0 (the
32
- * "License"); you may not use this file except in compliance
33
- * with the License. You may obtain a copy of the License at
34
- *
35
- * http://www.apache.org/licenses/LICENSE-2.0
36
- *
37
- * Unless required by applicable law or agreed to in writing,
38
- * software distributed under the License is distributed on an
39
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
40
- * KIND, either express or implied. See the License for the
41
- * specific language governing permissions and limitations
42
- * under the License.
43
- */
44
- /**
45
- * Single coordinates system.
46
- */
47
- import SingleAxis from './SingleAxis';
48
- import * as axisHelper from '../axisHelper';
49
- import { getLayoutRect } from '../../util/layout';
50
- import { each } from 'tvrender/src/core/util';
51
- export var singleDimensions = ['single'];
52
- /**
53
- * Create a single coordinates system.
54
- */
55
- var Single = /** @class */function () {
56
- function Single(axisModel, ecModel, api) {
57
- this.type = 'single';
58
- this.dimension = 'single';
59
- /**
60
- * Add it just for draw tooltip.
61
- */
62
- this.dimensions = singleDimensions;
63
- this.axisPointerEnabled = true;
64
- this.model = axisModel;
65
- this._init(axisModel, ecModel, api);
66
- }
67
- /**
68
- * Initialize single coordinate system.
69
- */
70
- Single.prototype._init = function (axisModel, ecModel, api) {
71
- var dim = this.dimension;
72
- var axis = new SingleAxis(dim, axisHelper.createScaleByModel(axisModel), [0, 0], axisModel.get('type'), axisModel.get('position'));
73
- var isCategory = axis.type === 'category';
74
- axis.onBand = isCategory && axisModel.get('boundaryGap');
75
- axis.inverse = axisModel.get('inverse');
76
- axis.orient = axisModel.get('orient');
77
- axisModel.axis = axis;
78
- axis.model = axisModel;
79
- axis.coordinateSystem = this;
80
- this._axis = axis;
81
- };
82
- /**
83
- * Update axis scale after data processed
84
- */
85
- Single.prototype.update = function (ecModel, api) {
86
- ecModel.eachSeries(function (seriesModel) {
87
- if (seriesModel.coordinateSystem === this) {
88
- var data_1 = seriesModel.getData();
89
- each(data_1.mapDimensionsAll(this.dimension), function (dim) {
90
- this._axis.scale.unionExtentFromData(data_1, dim);
91
- }, this);
92
- axisHelper.niceScaleExtent(this._axis.scale, this._axis.model);
93
- }
94
- }, this);
95
- };
96
- /**
97
- * Resize the single coordinate system.
98
- */
99
- Single.prototype.resize = function (axisModel, api) {
100
- this._rect = getLayoutRect({
101
- left: axisModel.get('left'),
102
- top: axisModel.get('top'),
103
- right: axisModel.get('right'),
104
- bottom: axisModel.get('bottom'),
105
- width: axisModel.get('width'),
106
- height: axisModel.get('height')
107
- }, {
108
- width: api.getWidth(),
109
- height: api.getHeight()
110
- });
111
- this._adjustAxis();
112
- };
113
- Single.prototype.getRect = function () {
114
- return this._rect;
115
- };
116
- Single.prototype._adjustAxis = function () {
117
- var rect = this._rect;
118
- var axis = this._axis;
119
- var isHorizontal = axis.isHorizontal();
120
- var extent = isHorizontal ? [0, rect.width] : [0, rect.height];
121
- var idx = axis.inverse ? 1 : 0;
122
- axis.setExtent(extent[idx], extent[1 - idx]);
123
- this._updateAxisTransform(axis, isHorizontal ? rect.x : rect.y);
124
- };
125
- Single.prototype._updateAxisTransform = function (axis, coordBase) {
126
- var axisExtent = axis.getExtent();
127
- var extentSum = axisExtent[0] + axisExtent[1];
128
- var isHorizontal = axis.isHorizontal();
129
- axis.toGlobalCoord = isHorizontal ? function (coord) {
130
- return coord + coordBase;
131
- } : function (coord) {
132
- return extentSum - coord + coordBase;
133
- };
134
- axis.toLocalCoord = isHorizontal ? function (coord) {
135
- return coord - coordBase;
136
- } : function (coord) {
137
- return extentSum - coord + coordBase;
138
- };
139
- };
140
- /**
141
- * Get axis.
142
- */
143
- Single.prototype.getAxis = function () {
144
- return this._axis;
145
- };
146
- /**
147
- * Get axis, add it just for draw tooltip.
148
- */
149
- Single.prototype.getBaseAxis = function () {
150
- return this._axis;
151
- };
152
- Single.prototype.getAxes = function () {
153
- return [this._axis];
154
- };
155
- Single.prototype.getTooltipAxes = function () {
156
- return {
157
- baseAxes: [this.getAxis()],
158
- // Empty otherAxes
159
- otherAxes: []
160
- };
161
- };
162
- /**
163
- * If contain point.
164
- */
165
- Single.prototype.containPoint = function (point) {
166
- var rect = this.getRect();
167
- var axis = this.getAxis();
168
- var orient = axis.orient;
169
- if (orient === 'horizontal') {
170
- return axis.contain(axis.toLocalCoord(point[0])) && point[1] >= rect.y && point[1] <= rect.y + rect.height;
171
- } else {
172
- return axis.contain(axis.toLocalCoord(point[1])) && point[0] >= rect.y && point[0] <= rect.y + rect.height;
173
- }
174
- };
175
- Single.prototype.pointToData = function (point) {
176
- var axis = this.getAxis();
177
- return [axis.coordToData(axis.toLocalCoord(point[axis.orient === 'horizontal' ? 0 : 1]))];
178
- };
179
- /**
180
- * Convert the series data to concrete point.
181
- * Can be [val] | val
182
- */
183
- Single.prototype.dataToPoint = function (val) {
184
- var axis = this.getAxis();
185
- var rect = this.getRect();
186
- var pt = [];
187
- var idx = axis.orient === 'horizontal' ? 0 : 1;
188
- if (val instanceof Array) {
189
- val = val[0];
190
- }
191
- pt[idx] = axis.toGlobalCoord(axis.dataToCoord(+val));
192
- pt[1 - idx] = idx === 0 ? rect.y + rect.height / 2 : rect.x + rect.width / 2;
193
- return pt;
194
- };
195
- Single.prototype.convertToPixel = function (ecModel, finder, value) {
196
- var coordSys = getCoordSys(finder);
197
- return coordSys === this ? this.dataToPoint(value) : null;
198
- };
199
- Single.prototype.convertFromPixel = function (ecModel, finder, pixel) {
200
- var coordSys = getCoordSys(finder);
201
- return coordSys === this ? this.pointToData(pixel) : null;
202
- };
203
- return Single;
204
- }();
205
- function getCoordSys(finder) {
206
- var seriesModel = finder.seriesModel;
207
- var singleModel = finder.singleAxisModel;
208
- return singleModel && singleModel.coordinateSystem || seriesModel && seriesModel.coordinateSystem;
209
- }
210
- export default Single;
@@ -1,66 +0,0 @@
1
-
2
- /*
3
- * Licensed to the Apache Software Foundation (ASF) under one
4
- * or more contributor license agreements. See the NOTICE file
5
- * distributed with this work for additional information
6
- * regarding copyright ownership. The ASF licenses this file
7
- * to you under the Apache License, Version 2.0 (the
8
- * "License"); you may not use this file except in compliance
9
- * with the License. You may obtain a copy of the License at
10
- *
11
- * http://www.apache.org/licenses/LICENSE-2.0
12
- *
13
- * Unless required by applicable law or agreed to in writing,
14
- * software distributed under the License is distributed on an
15
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
- * KIND, either express or implied. See the License for the
17
- * specific language governing permissions and limitations
18
- * under the License.
19
- */
20
-
21
-
22
- /**
23
- * AUTO-GENERATED FILE. DO NOT MODIFY.
24
- */
25
-
26
- /*
27
- * Licensed to the Apache Software Foundation (ASF) under one
28
- * or more contributor license agreements. See the NOTICE file
29
- * distributed with this work for additional information
30
- * regarding copyright ownership. The ASF licenses this file
31
- * to you under the Apache License, Version 2.0 (the
32
- * "License"); you may not use this file except in compliance
33
- * with the License. You may obtain a copy of the License at
34
- *
35
- * http://www.apache.org/licenses/LICENSE-2.0
36
- *
37
- * Unless required by applicable law or agreed to in writing,
38
- * software distributed under the License is distributed on an
39
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
40
- * KIND, either express or implied. See the License for the
41
- * specific language governing permissions and limitations
42
- * under the License.
43
- */
44
- import { __extends } from "tslib";
45
- import Axis from '../Axis';
46
- var SingleAxis = /** @class */function (_super) {
47
- __extends(SingleAxis, _super);
48
- function SingleAxis(dim, scale, coordExtent, axisType, position) {
49
- var _this = _super.call(this, dim, scale, coordExtent) || this;
50
- _this.type = axisType || 'value';
51
- _this.position = position || 'bottom';
52
- return _this;
53
- }
54
- /**
55
- * Judge the orient of the axis.
56
- */
57
- SingleAxis.prototype.isHorizontal = function () {
58
- var position = this.position;
59
- return position === 'top' || position === 'bottom';
60
- };
61
- SingleAxis.prototype.pointToData = function (point, clamp) {
62
- return this.coordinateSystem.pointToData(point)[0];
63
- };
64
- return SingleAxis;
65
- }(Axis);
66
- export default SingleAxis;