echarts 4.0.4 → 4.1.0

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 (918) hide show
  1. package/.jshintrc-dist +1 -1
  2. package/KEYS +74 -0
  3. package/LICENSE +223 -29
  4. package/NOTICE +5 -0
  5. package/README.md +8 -1
  6. package/build/addHeader.js +113 -0
  7. package/build/amd2common.js +19 -0
  8. package/build/build.js +19 -0
  9. package/build/config.js +25 -1
  10. package/build/mangleString.js +19 -0
  11. package/build/optimize.js +19 -0
  12. package/build/pre-publish.js +26 -3
  13. package/build/preamble.js +20 -0
  14. package/build/rollup-plugin-ec-lang.js +20 -0
  15. package/build/rollup-plugin-ec-remove-dev.js +19 -0
  16. package/dist/echarts-en.common.js +5624 -1049
  17. package/dist/echarts-en.common.min.js +21 -1
  18. package/dist/echarts-en.js +10720 -1979
  19. package/dist/echarts-en.js.map +1 -1
  20. package/dist/echarts-en.min.js +21 -1
  21. package/dist/echarts-en.simple.js +3835 -869
  22. package/dist/echarts-en.simple.min.js +21 -1
  23. package/dist/echarts.common.js +5624 -1049
  24. package/dist/echarts.common.min.js +21 -1
  25. package/dist/echarts.js +10720 -1979
  26. package/dist/echarts.js.map +1 -1
  27. package/dist/echarts.min.js +21 -1
  28. package/dist/echarts.simple.js +3835 -869
  29. package/dist/echarts.simple.min.js +21 -1
  30. package/dist/extension/bmap.js +76 -0
  31. package/dist/extension/bmap.js.map +1 -1
  32. package/dist/extension/bmap.min.js +20 -0
  33. package/dist/extension/dataTool.js +95 -0
  34. package/dist/extension/dataTool.js.map +1 -1
  35. package/dist/extension/dataTool.min.js +20 -0
  36. package/echarts.all.js +19 -0
  37. package/echarts.blank.js +19 -0
  38. package/echarts.common.js +19 -0
  39. package/echarts.simple.js +19 -0
  40. package/extension/bmap/BMapCoordSys.js +19 -0
  41. package/extension/bmap/BMapModel.js +18 -0
  42. package/extension/bmap/BMapView.js +18 -0
  43. package/extension/bmap/bmap.js +19 -0
  44. package/extension/dataTool/gexf.js +18 -0
  45. package/extension/dataTool/index.js +19 -0
  46. package/extension/dataTool/prepareBoxplotData.js +19 -0
  47. package/extension/dataTool/quantile.js +19 -0
  48. package/extension/echarts.js +19 -0
  49. package/extension/webpack.config.js +19 -0
  50. package/extension-src/bmap/BMapCoordSys.js +19 -0
  51. package/extension-src/bmap/BMapModel.js +19 -0
  52. package/extension-src/bmap/BMapView.js +19 -0
  53. package/extension-src/bmap/bmap.js +19 -0
  54. package/extension-src/dataTool/gexf.js +19 -0
  55. package/extension-src/dataTool/index.js +19 -0
  56. package/extension-src/dataTool/prepareBoxplotData.js +19 -0
  57. package/extension-src/dataTool/quantile.js +19 -0
  58. package/index.common.js +19 -0
  59. package/index.js +19 -0
  60. package/index.simple.js +19 -0
  61. package/lib/CoordinateSystem.js +18 -0
  62. package/lib/ExtensionAPI.js +18 -0
  63. package/lib/action/createDataSelectAction.js +18 -0
  64. package/lib/action/geoRoam.js +19 -0
  65. package/lib/action/roamHelper.js +19 -0
  66. package/lib/chart/bar/BarSeries.js +42 -1
  67. package/lib/chart/bar/BarView.js +112 -14
  68. package/lib/chart/bar/BaseBarSeries.js +22 -0
  69. package/lib/chart/bar/PictorialBarSeries.js +18 -0
  70. package/lib/chart/bar/PictorialBarView.js +19 -0
  71. package/lib/chart/bar/barItemStyle.js +18 -0
  72. package/lib/chart/bar/helper.js +18 -0
  73. package/lib/chart/bar.js +28 -7
  74. package/lib/chart/boxplot/BoxplotSeries.js +35 -1
  75. package/lib/chart/boxplot/BoxplotView.js +128 -21
  76. package/lib/chart/boxplot/boxplotLayout.js +70 -63
  77. package/lib/chart/boxplot/boxplotVisual.js +18 -0
  78. package/lib/chart/boxplot.js +18 -0
  79. package/lib/chart/candlestick/CandlestickSeries.js +38 -4
  80. package/lib/chart/candlestick/CandlestickView.js +236 -22
  81. package/lib/chart/candlestick/candlestickLayout.js +143 -83
  82. package/lib/chart/candlestick/candlestickVisual.js +59 -14
  83. package/lib/chart/candlestick/preprocessor.js +18 -0
  84. package/lib/chart/candlestick.js +18 -0
  85. package/lib/chart/chord/ChordSeries.js +18 -0
  86. package/lib/chart/chord/ChordView.js +18 -0
  87. package/lib/chart/chord/Ribbon.js +18 -0
  88. package/lib/chart/chord/chordCircularLayout.js +19 -0
  89. package/lib/chart/chord.js +18 -0
  90. package/lib/chart/custom.js +18 -0
  91. package/lib/chart/effectScatter/EffectScatterSeries.js +18 -0
  92. package/lib/chart/effectScatter/EffectScatterView.js +18 -0
  93. package/lib/chart/effectScatter.js +18 -0
  94. package/lib/chart/funnel/FunnelSeries.js +19 -0
  95. package/lib/chart/funnel/FunnelView.js +19 -0
  96. package/lib/chart/funnel/funnelLayout.js +18 -0
  97. package/lib/chart/funnel.js +18 -0
  98. package/lib/chart/gauge/GaugeSeries.js +18 -0
  99. package/lib/chart/gauge/GaugeView.js +18 -0
  100. package/lib/chart/gauge/PointerPath.js +18 -0
  101. package/lib/chart/graph/GraphSeries.js +25 -1
  102. package/lib/chart/graph/GraphView.js +18 -0
  103. package/lib/chart/graph/adjustEdge.js +18 -0
  104. package/lib/chart/graph/backwardCompat.js +18 -0
  105. package/lib/chart/graph/categoryFilter.js +18 -0
  106. package/lib/chart/graph/categoryVisual.js +18 -0
  107. package/lib/chart/graph/circularLayout.js +18 -0
  108. package/lib/chart/graph/circularLayoutHelper.js +18 -0
  109. package/lib/chart/graph/createView.js +18 -0
  110. package/lib/chart/graph/edgeVisual.js +18 -0
  111. package/lib/chart/graph/forceHelper.js +18 -0
  112. package/lib/chart/graph/forceLayout.js +18 -0
  113. package/lib/chart/graph/graphAction.js +19 -0
  114. package/lib/chart/graph/simpleLayout.js +18 -0
  115. package/lib/chart/graph/simpleLayoutHelper.js +18 -0
  116. package/lib/chart/graph.js +18 -0
  117. package/lib/chart/heatmap/HeatmapLayer.js +19 -0
  118. package/lib/chart/heatmap/HeatmapSeries.js +18 -0
  119. package/lib/chart/heatmap/HeatmapView.js +18 -0
  120. package/lib/chart/helper/EffectLine.js +19 -0
  121. package/lib/chart/helper/EffectPolyline.js +19 -0
  122. package/lib/chart/helper/EffectSymbol.js +19 -0
  123. package/lib/chart/helper/LargeLineDraw.js +18 -0
  124. package/lib/chart/helper/LargeSymbolDraw.js +18 -0
  125. package/lib/chart/helper/Line.js +31 -13
  126. package/lib/chart/helper/LineDraw.js +26 -1
  127. package/lib/chart/helper/LinePath.js +19 -0
  128. package/lib/chart/helper/Polyline.js +19 -0
  129. package/lib/chart/helper/Symbol.js +53 -12
  130. package/lib/chart/helper/SymbolDraw.js +22 -2
  131. package/lib/chart/helper/createGraphFromNodeEdge.js +27 -3
  132. package/lib/chart/helper/createGraphFromNodeMatrix.js +19 -0
  133. package/lib/chart/helper/createListFromArray.js +19 -0
  134. package/lib/chart/helper/createListSimply.js +19 -0
  135. package/lib/chart/helper/createRenderPlanner.js +21 -2
  136. package/lib/chart/helper/labelHelper.js +19 -0
  137. package/lib/chart/helper/treeHelper.js +18 -0
  138. package/lib/chart/helper/whiskerBoxCommon.js +20 -27
  139. package/lib/chart/line/LineSeries.js +25 -10
  140. package/lib/chart/line/LineView.js +122 -41
  141. package/lib/chart/line/helper.js +39 -4
  142. package/lib/chart/line/lineAnimationDiff.js +18 -0
  143. package/lib/chart/line/poly.js +62 -36
  144. package/lib/chart/line.js +18 -0
  145. package/lib/chart/lines/LinesSeries.js +25 -4
  146. package/lib/chart/lines/LinesView.js +20 -1
  147. package/lib/chart/lines/linesLayout.js +19 -1
  148. package/lib/chart/lines/linesVisual.js +18 -0
  149. package/lib/chart/lines.js +18 -0
  150. package/lib/chart/map/MapSeries.js +18 -0
  151. package/lib/chart/map/MapView.js +18 -0
  152. package/lib/chart/map/backwardCompat.js +18 -0
  153. package/lib/chart/map/mapDataStatistic.js +18 -0
  154. package/lib/chart/map/mapSymbolLayout.js +18 -0
  155. package/lib/chart/map/mapVisual.js +18 -0
  156. package/lib/chart/map.js +18 -0
  157. package/lib/chart/parallel/ParallelSeries.js +20 -7
  158. package/lib/chart/parallel/ParallelView.js +86 -55
  159. package/lib/chart/parallel/parallelVisual.js +38 -15
  160. package/lib/chart/parallel.js +18 -0
  161. package/lib/chart/pictorialBar.js +18 -0
  162. package/lib/chart/pie/PieSeries.js +19 -0
  163. package/lib/chart/pie/PieView.js +19 -0
  164. package/lib/chart/pie/labelLayout.js +18 -0
  165. package/lib/chart/pie/pieLayout.js +18 -0
  166. package/lib/chart/pie.js +18 -0
  167. package/lib/chart/radar/RadarSeries.js +19 -0
  168. package/lib/chart/radar/RadarView.js +18 -0
  169. package/lib/chart/radar/backwardCompat.js +18 -0
  170. package/lib/chart/radar/radarLayout.js +19 -1
  171. package/lib/chart/radar.js +18 -0
  172. package/lib/chart/sankey/SankeySeries.js +26 -0
  173. package/lib/chart/sankey/SankeyView.js +62 -10
  174. package/lib/chart/sankey/sankeyAction.js +34 -0
  175. package/lib/chart/sankey/sankeyLayout.js +68 -19
  176. package/lib/chart/sankey/sankeyVisual.js +49 -19
  177. package/lib/chart/sankey.js +20 -0
  178. package/lib/chart/scatter/ScatterSeries.js +20 -2
  179. package/lib/chart/scatter/ScatterView.js +18 -0
  180. package/lib/chart/scatter.js +18 -0
  181. package/lib/chart/sunburst/SunburstPiece.js +24 -0
  182. package/lib/chart/sunburst/SunburstSeries.js +18 -0
  183. package/lib/chart/sunburst/SunburstView.js +27 -9
  184. package/lib/chart/sunburst/sunburstAction.js +19 -0
  185. package/lib/chart/sunburst/sunburstLayout.js +18 -0
  186. package/lib/chart/sunburst.js +18 -0
  187. package/lib/chart/themeRiver/ThemeRiverSeries.js +19 -1
  188. package/lib/chart/themeRiver/ThemeRiverView.js +19 -0
  189. package/lib/chart/themeRiver/themeRiverLayout.js +19 -0
  190. package/lib/chart/themeRiver/themeRiverVisual.js +19 -0
  191. package/lib/chart/themeRiver.js +18 -0
  192. package/lib/chart/tree/TreeSeries.js +40 -3
  193. package/lib/chart/tree/TreeView.js +32 -6
  194. package/lib/chart/tree/layoutHelper.js +19 -0
  195. package/lib/chart/tree/traversalHelper.js +19 -0
  196. package/lib/chart/tree/treeAction.js +18 -0
  197. package/lib/chart/tree/treeLayout.js +137 -0
  198. package/lib/chart/tree.js +20 -5
  199. package/lib/chart/treemap/Breadcrumb.js +19 -0
  200. package/lib/chart/treemap/TreemapSeries.js +18 -0
  201. package/lib/chart/treemap/TreemapView.js +18 -0
  202. package/lib/chart/treemap/helper.js +18 -0
  203. package/lib/chart/treemap/treemapAction.js +19 -0
  204. package/lib/chart/treemap/treemapLayout.js +18 -0
  205. package/lib/chart/treemap/treemapVisual.js +18 -0
  206. package/lib/chart/treemap.js +18 -0
  207. package/lib/component/axis/AngleAxisView.js +59 -27
  208. package/lib/component/axis/AxisBuilder.js +39 -69
  209. package/lib/component/axis/AxisView.js +19 -0
  210. package/lib/component/axis/CartesianAxisView.js +71 -39
  211. package/lib/component/axis/ParallelAxisView.js +18 -0
  212. package/lib/component/axis/RadiusAxisView.js +26 -4
  213. package/lib/component/axis/SingleAxisView.js +25 -14
  214. package/lib/component/axis/parallelAxisAction.js +19 -0
  215. package/lib/component/axisPointer/AxisPointerModel.js +18 -0
  216. package/lib/component/axisPointer/AxisPointerView.js +18 -0
  217. package/lib/component/axisPointer/BaseAxisPointer.js +19 -0
  218. package/lib/component/axisPointer/CartesianAxisPointer.js +20 -2
  219. package/lib/component/axisPointer/PolarAxisPointer.js +19 -1
  220. package/lib/component/axisPointer/SingleAxisPointer.js +19 -1
  221. package/lib/component/axisPointer/axisTrigger.js +18 -0
  222. package/lib/component/axisPointer/findPointFromSeries.js +19 -0
  223. package/lib/component/axisPointer/globalListener.js +19 -0
  224. package/lib/component/axisPointer/modelHelper.js +18 -0
  225. package/lib/component/axisPointer/viewHelper.js +20 -0
  226. package/lib/component/axisPointer.js +18 -0
  227. package/lib/component/brush/BrushModel.js +25 -1
  228. package/lib/component/brush/BrushView.js +18 -0
  229. package/lib/component/brush/brushAction.js +19 -0
  230. package/lib/component/brush/preprocessor.js +18 -0
  231. package/lib/component/brush/selector.js +18 -0
  232. package/lib/component/brush/visualEncoding.js +18 -0
  233. package/lib/component/brush.js +19 -0
  234. package/lib/component/calendar/CalendarView.js +18 -0
  235. package/lib/component/dataZoom/AxisProxy.js +18 -0
  236. package/lib/component/dataZoom/DataZoomModel.js +18 -0
  237. package/lib/component/dataZoom/DataZoomView.js +18 -0
  238. package/lib/component/dataZoom/InsideZoomModel.js +18 -0
  239. package/lib/component/dataZoom/InsideZoomView.js +36 -13
  240. package/lib/component/dataZoom/SelectZoomModel.js +18 -0
  241. package/lib/component/dataZoom/SelectZoomView.js +18 -0
  242. package/lib/component/dataZoom/SliderZoomModel.js +18 -0
  243. package/lib/component/dataZoom/SliderZoomView.js +29 -6
  244. package/lib/component/dataZoom/dataZoomAction.js +18 -0
  245. package/lib/component/dataZoom/dataZoomProcessor.js +23 -1
  246. package/lib/component/dataZoom/helper.js +18 -0
  247. package/lib/component/dataZoom/history.js +18 -0
  248. package/lib/component/dataZoom/roams.js +19 -18
  249. package/lib/component/dataZoom/typeDefaulter.js +18 -0
  250. package/lib/component/dataset.js +56 -3
  251. package/lib/component/geo/GeoView.js +18 -0
  252. package/lib/component/geo.js +18 -0
  253. package/lib/component/graphic.js +18 -0
  254. package/lib/component/gridSimple.js +18 -0
  255. package/lib/component/helper/BrushController.js +18 -0
  256. package/lib/component/helper/BrushTargetManager.js +18 -0
  257. package/lib/component/helper/MapDraw.js +18 -0
  258. package/lib/component/helper/RoamController.js +19 -0
  259. package/lib/component/helper/brushHelper.js +18 -0
  260. package/lib/component/helper/cursorHelper.js +18 -0
  261. package/lib/component/helper/interactionMutex.js +18 -0
  262. package/lib/component/helper/listComponent.js +19 -0
  263. package/lib/component/helper/roamHelper.js +19 -0
  264. package/lib/component/helper/selectableMixin.js +19 -0
  265. package/lib/component/helper/sliderMove.js +19 -0
  266. package/lib/component/legend/LegendModel.js +19 -0
  267. package/lib/component/legend/LegendView.js +41 -12
  268. package/lib/component/legend/ScrollableLegendModel.js +19 -0
  269. package/lib/component/legend/ScrollableLegendView.js +19 -0
  270. package/lib/component/legend/legendAction.js +18 -0
  271. package/lib/component/legend/legendFilter.js +18 -0
  272. package/lib/component/legend/scrollableLegendAction.js +19 -0
  273. package/lib/component/legend.js +18 -0
  274. package/lib/component/markArea.js +18 -0
  275. package/lib/component/markLine.js +18 -0
  276. package/lib/component/markPoint.js +18 -0
  277. package/lib/component/marker/MarkAreaModel.js +18 -0
  278. package/lib/component/marker/MarkAreaView.js +20 -2
  279. package/lib/component/marker/MarkLineModel.js +18 -0
  280. package/lib/component/marker/MarkLineView.js +20 -2
  281. package/lib/component/marker/MarkPointModel.js +18 -0
  282. package/lib/component/marker/MarkPointView.js +18 -0
  283. package/lib/component/marker/MarkerModel.js +19 -1
  284. package/lib/component/marker/MarkerView.js +18 -0
  285. package/lib/component/marker/markerHelper.js +25 -1
  286. package/lib/component/parallel.js +18 -0
  287. package/lib/component/polar.js +18 -0
  288. package/lib/component/radar/RadarView.js +22 -4
  289. package/lib/component/singleAxis.js +18 -0
  290. package/lib/component/timeline/SliderTimelineModel.js +18 -0
  291. package/lib/component/timeline/SliderTimelineView.js +41 -31
  292. package/lib/component/timeline/TimelineAxis.js +24 -35
  293. package/lib/component/timeline/TimelineModel.js +18 -0
  294. package/lib/component/timeline/TimelineView.js +18 -0
  295. package/lib/component/timeline/preprocessor.js +18 -0
  296. package/lib/component/timeline/timelineAction.js +18 -0
  297. package/lib/component/timeline/typeDefaulter.js +18 -0
  298. package/lib/component/timeline.js +19 -0
  299. package/lib/component/title.js +19 -0
  300. package/lib/component/toolbox/ToolboxModel.js +20 -2
  301. package/lib/component/toolbox/ToolboxView.js +18 -0
  302. package/lib/component/toolbox/feature/Brush.js +18 -0
  303. package/lib/component/toolbox/feature/DataView.js +18 -0
  304. package/lib/component/toolbox/feature/DataZoom.js +22 -1
  305. package/lib/component/toolbox/feature/MagicType.js +18 -0
  306. package/lib/component/toolbox/feature/Restore.js +18 -0
  307. package/lib/component/toolbox/feature/SaveAsImage.js +18 -0
  308. package/lib/component/toolbox/featureManager.js +18 -0
  309. package/lib/component/tooltip/TooltipContent.js +18 -0
  310. package/lib/component/tooltip/TooltipModel.js +18 -0
  311. package/lib/component/tooltip/TooltipView.js +19 -1
  312. package/lib/component/tooltip.js +18 -0
  313. package/lib/component/visualMap/ContinuousModel.js +18 -0
  314. package/lib/component/visualMap/ContinuousView.js +18 -0
  315. package/lib/component/visualMap/PiecewiseModel.js +19 -0
  316. package/lib/component/visualMap/PiecewiseView.js +18 -0
  317. package/lib/component/visualMap/VisualMapModel.js +18 -0
  318. package/lib/component/visualMap/VisualMapView.js +18 -0
  319. package/lib/component/visualMap/helper.js +19 -0
  320. package/lib/component/visualMap/preprocessor.js +18 -0
  321. package/lib/component/visualMap/typeDefaulter.js +18 -0
  322. package/lib/component/visualMap/visualEncoding.js +21 -1
  323. package/lib/component/visualMap/visualMapAction.js +18 -0
  324. package/lib/component/visualMapContinuous.js +19 -0
  325. package/lib/component/visualMapPiecewise.js +19 -0
  326. package/lib/config.js +18 -0
  327. package/lib/coord/Axis.js +164 -85
  328. package/lib/coord/View.js +19 -0
  329. package/lib/coord/axisDefault.js +52 -42
  330. package/lib/coord/axisHelper.js +120 -85
  331. package/lib/coord/axisModelCommonMixin.js +18 -8
  332. package/lib/coord/axisModelCreator.js +26 -3
  333. package/lib/coord/axisTickLabelBuilder.js +350 -0
  334. package/lib/coord/calendar/Calendar.js +19 -1
  335. package/lib/coord/calendar/CalendarModel.js +19 -0
  336. package/lib/coord/calendar/prepareCustom.js +18 -0
  337. package/lib/coord/cartesian/Axis2D.js +24 -16
  338. package/lib/coord/cartesian/AxisModel.js +18 -0
  339. package/lib/coord/cartesian/Cartesian.js +19 -0
  340. package/lib/coord/cartesian/Cartesian2D.js +26 -4
  341. package/lib/coord/cartesian/Grid.js +71 -79
  342. package/lib/coord/cartesian/GridModel.js +18 -0
  343. package/lib/{component/axis → coord/cartesian}/cartesianAxisHelper.js +29 -9
  344. package/lib/coord/cartesian/prepareCustom.js +18 -0
  345. package/lib/coord/geo/Geo.js +18 -0
  346. package/lib/coord/geo/GeoModel.js +18 -0
  347. package/lib/coord/geo/Region.js +19 -0
  348. package/lib/coord/geo/fix/diaoyuIsland.js +18 -0
  349. package/lib/coord/geo/fix/geoCoord.js +18 -0
  350. package/lib/coord/geo/fix/nanhai.js +18 -0
  351. package/lib/coord/geo/fix/textCoord.js +18 -0
  352. package/lib/coord/geo/geoCreator.js +19 -0
  353. package/lib/coord/geo/parseGeoJson.js +19 -0
  354. package/lib/coord/geo/prepareCustom.js +18 -0
  355. package/lib/coord/parallel/AxisModel.js +31 -4
  356. package/lib/coord/parallel/Parallel.js +35 -12
  357. package/lib/coord/parallel/ParallelAxis.js +19 -0
  358. package/lib/coord/parallel/ParallelModel.js +18 -0
  359. package/lib/coord/parallel/parallelCreator.js +19 -0
  360. package/lib/coord/parallel/parallelPreprocessor.js +18 -0
  361. package/lib/coord/polar/AngleAxis.js +18 -0
  362. package/lib/coord/polar/AxisModel.js +18 -0
  363. package/lib/coord/polar/Polar.js +19 -0
  364. package/lib/coord/polar/PolarModel.js +18 -0
  365. package/lib/coord/polar/RadiusAxis.js +18 -0
  366. package/lib/coord/polar/polarCreator.js +24 -3
  367. package/lib/coord/polar/prepareCustom.js +18 -0
  368. package/lib/coord/radar/IndicatorAxis.js +18 -0
  369. package/lib/coord/radar/Radar.js +18 -0
  370. package/lib/coord/radar/RadarModel.js +18 -0
  371. package/lib/coord/single/AxisModel.js +18 -0
  372. package/lib/coord/single/Single.js +19 -0
  373. package/lib/coord/single/SingleAxis.js +19 -5
  374. package/lib/coord/single/prepareCustom.js +18 -0
  375. package/lib/{component/axis → coord/single}/singleAxisHelper.js +20 -2
  376. package/lib/coord/single/singleCreator.js +19 -0
  377. package/lib/data/DataDiffer.js +18 -0
  378. package/lib/data/Graph.js +19 -0
  379. package/lib/data/List.js +184 -121
  380. package/lib/data/OrdinalMeta.js +19 -0
  381. package/lib/data/Source.js +19 -0
  382. package/lib/data/Tree.js +19 -0
  383. package/lib/data/helper/completeDimensions.js +26 -2
  384. package/lib/data/helper/createDimensions.js +19 -0
  385. package/lib/data/helper/dataProvider.js +22 -4
  386. package/lib/data/helper/dataStackHelper.js +50 -5
  387. package/lib/data/helper/dimensionHelper.js +26 -1
  388. package/lib/data/helper/linkList.js +19 -0
  389. package/lib/data/helper/sourceHelper.js +19 -0
  390. package/lib/data/helper/sourceType.js +18 -0
  391. package/lib/echarts.js +38 -16
  392. package/lib/export.js +19 -0
  393. package/lib/helper.js +21 -1
  394. package/lib/lang.js +18 -0
  395. package/lib/langEN.js +18 -0
  396. package/lib/langFI.js +18 -0
  397. package/lib/langTH.js +18 -0
  398. package/lib/layout/barGrid.js +139 -22
  399. package/lib/layout/barPolar.js +21 -1
  400. package/lib/layout/points.js +30 -7
  401. package/lib/loading/default.js +18 -0
  402. package/lib/model/Component.js +19 -0
  403. package/lib/model/Global.js +19 -1
  404. package/lib/model/Model.js +19 -0
  405. package/lib/model/OptionManager.js +19 -0
  406. package/lib/model/Series.js +21 -2
  407. package/lib/model/globalDefault.js +18 -0
  408. package/lib/model/mixin/areaStyle.js +18 -0
  409. package/lib/model/mixin/boxLayout.js +18 -0
  410. package/lib/model/mixin/colorPalette.js +19 -0
  411. package/lib/model/mixin/dataFormat.js +20 -1
  412. package/lib/model/mixin/itemStyle.js +18 -0
  413. package/lib/model/mixin/lineStyle.js +18 -0
  414. package/lib/model/mixin/makeStyleMapper.js +18 -0
  415. package/lib/model/mixin/textStyle.js +18 -0
  416. package/lib/model/referHelper.js +19 -0
  417. package/lib/preprocessor/backwardCompat.js +18 -0
  418. package/lib/preprocessor/helper/compatStyle.js +20 -0
  419. package/lib/processor/dataFilter.js +18 -0
  420. package/lib/processor/dataSample.js +27 -5
  421. package/lib/processor/dataStack.js +18 -0
  422. package/lib/scale/Interval.js +19 -14
  423. package/lib/scale/Log.js +19 -0
  424. package/lib/scale/Ordinal.js +26 -1
  425. package/lib/scale/Scale.js +26 -15
  426. package/lib/scale/Time.js +18 -0
  427. package/lib/scale/helper.js +19 -0
  428. package/lib/stream/Scheduler.js +110 -37
  429. package/lib/stream/task.js +104 -11
  430. package/lib/theme/dark.js +18 -0
  431. package/lib/theme/light.js +18 -0
  432. package/lib/util/KDTree.js +19 -0
  433. package/lib/util/animation.js +19 -0
  434. package/lib/util/array/nest.js +19 -0
  435. package/lib/util/clazz.js +18 -0
  436. package/lib/util/component.js +19 -0
  437. package/lib/util/format.js +30 -1
  438. package/lib/util/graphic.js +19 -0
  439. package/lib/util/layout.js +18 -0
  440. package/lib/util/model.js +19 -0
  441. package/lib/util/number.js +18 -0
  442. package/lib/util/quickSelect.js +19 -0
  443. package/lib/util/symbol.js +18 -0
  444. package/lib/util/throttle.js +26 -1
  445. package/lib/view/Chart.js +20 -2
  446. package/lib/view/Component.js +18 -0
  447. package/lib/visual/VisualMapping.js +28 -0
  448. package/lib/visual/aria.js +18 -0
  449. package/lib/visual/dataColor.js +18 -0
  450. package/lib/visual/seriesColor.js +18 -0
  451. package/lib/visual/symbol.js +28 -2
  452. package/lib/visual/visualDefault.js +19 -0
  453. package/lib/visual/visualSolution.js +22 -1
  454. package/licenses/LICENSE-d3 +27 -0
  455. package/licenses/LICENSE-zrender +29 -0
  456. package/map/js/china-contour.js +19 -0
  457. package/map/js/china.js +19 -0
  458. package/map/js/province/anhui.js +19 -0
  459. package/map/js/province/aomen.js +19 -0
  460. package/map/js/province/beijing.js +19 -0
  461. package/map/js/province/chongqing.js +19 -0
  462. package/map/js/province/fujian.js +19 -0
  463. package/map/js/province/gansu.js +19 -0
  464. package/map/js/province/guangdong.js +19 -0
  465. package/map/js/province/guangxi.js +19 -0
  466. package/map/js/province/guizhou.js +19 -0
  467. package/map/js/province/hainan.js +19 -0
  468. package/map/js/province/hebei.js +19 -0
  469. package/map/js/province/heilongjiang.js +19 -0
  470. package/map/js/province/henan.js +19 -0
  471. package/map/js/province/hubei.js +19 -0
  472. package/map/js/province/hunan.js +19 -0
  473. package/map/js/province/jiangsu.js +19 -0
  474. package/map/js/province/jiangxi.js +19 -0
  475. package/map/js/province/jilin.js +19 -0
  476. package/map/js/province/liaoning.js +19 -0
  477. package/map/js/province/neimenggu.js +19 -0
  478. package/map/js/province/ningxia.js +19 -0
  479. package/map/js/province/qinghai.js +19 -0
  480. package/map/js/province/shandong.js +19 -0
  481. package/map/js/province/shanghai.js +19 -0
  482. package/map/js/province/shanxi.js +19 -0
  483. package/map/js/province/shanxi1.js +19 -0
  484. package/map/js/province/sichuan.js +19 -0
  485. package/map/js/province/taiwan.js +19 -0
  486. package/map/js/province/tianjin.js +19 -0
  487. package/map/js/province/xianggang.js +19 -0
  488. package/map/js/province/xinjiang.js +19 -0
  489. package/map/js/province/xizang.js +19 -0
  490. package/map/js/province/yunnan.js +19 -0
  491. package/map/js/province/zhejiang.js +19 -0
  492. package/map/js/world.js +19 -0
  493. package/package.json +3 -3
  494. package/src/CoordinateSystem.js +19 -0
  495. package/src/ExtensionAPI.js +19 -0
  496. package/src/action/createDataSelectAction.js +19 -0
  497. package/src/action/geoRoam.js +19 -0
  498. package/src/action/roamHelper.js +19 -0
  499. package/src/chart/bar/BarSeries.js +44 -1
  500. package/src/chart/bar/BarView.js +120 -16
  501. package/src/chart/bar/BaseBarSeries.js +24 -0
  502. package/src/chart/bar/PictorialBarSeries.js +19 -0
  503. package/src/chart/bar/PictorialBarView.js +19 -0
  504. package/src/chart/bar/barItemStyle.js +19 -0
  505. package/src/chart/bar/helper.js +20 -1
  506. package/src/chart/bar.js +28 -7
  507. package/src/chart/boxplot/BoxplotSeries.js +26 -1
  508. package/src/chart/boxplot/BoxplotView.js +152 -21
  509. package/src/chart/boxplot/boxplotLayout.js +75 -71
  510. package/src/chart/boxplot/boxplotVisual.js +19 -0
  511. package/src/chart/boxplot.js +19 -0
  512. package/src/chart/candlestick/CandlestickSeries.js +35 -4
  513. package/src/chart/candlestick/CandlestickView.js +272 -24
  514. package/src/chart/candlestick/candlestickLayout.js +151 -97
  515. package/src/chart/candlestick/candlestickVisual.js +66 -17
  516. package/src/chart/candlestick/preprocessor.js +19 -0
  517. package/src/chart/candlestick.js +19 -0
  518. package/src/chart/chord/ChordSeries.js +19 -0
  519. package/src/chart/chord/ChordView.js +19 -0
  520. package/src/chart/chord/Ribbon.js +19 -0
  521. package/src/chart/chord/chordCircularLayout.js +19 -0
  522. package/src/chart/chord.js +19 -0
  523. package/src/chart/custom.js +19 -0
  524. package/src/chart/effectScatter/EffectScatterSeries.js +19 -0
  525. package/src/chart/effectScatter/EffectScatterView.js +19 -0
  526. package/src/chart/effectScatter.js +19 -0
  527. package/src/chart/funnel/FunnelSeries.js +19 -0
  528. package/src/chart/funnel/FunnelView.js +19 -0
  529. package/src/chart/funnel/funnelLayout.js +19 -0
  530. package/src/chart/funnel.js +19 -0
  531. package/src/chart/gauge/GaugeSeries.js +19 -0
  532. package/src/chart/gauge/GaugeView.js +19 -0
  533. package/src/chart/gauge/PointerPath.js +19 -0
  534. package/src/chart/gauge.js +19 -0
  535. package/src/chart/graph/GraphSeries.js +27 -0
  536. package/src/chart/graph/GraphView.js +19 -0
  537. package/src/chart/graph/adjustEdge.js +19 -0
  538. package/src/chart/graph/backwardCompat.js +19 -0
  539. package/src/chart/graph/categoryFilter.js +19 -0
  540. package/src/chart/graph/categoryVisual.js +19 -0
  541. package/src/chart/graph/circularLayout.js +19 -0
  542. package/src/chart/graph/circularLayoutHelper.js +19 -0
  543. package/src/chart/graph/createView.js +19 -0
  544. package/src/chart/graph/edgeVisual.js +19 -0
  545. package/src/chart/graph/forceHelper.js +19 -0
  546. package/src/chart/graph/forceLayout.js +19 -0
  547. package/src/chart/graph/graphAction.js +19 -0
  548. package/src/chart/graph/simpleLayout.js +19 -0
  549. package/src/chart/graph/simpleLayoutHelper.js +19 -0
  550. package/src/chart/graph.js +19 -0
  551. package/src/chart/heatmap/HeatmapLayer.js +19 -0
  552. package/src/chart/heatmap/HeatmapSeries.js +19 -0
  553. package/src/chart/heatmap/HeatmapView.js +19 -0
  554. package/src/chart/heatmap.js +19 -0
  555. package/src/chart/helper/EffectLine.js +19 -0
  556. package/src/chart/helper/EffectPolyline.js +19 -0
  557. package/src/chart/helper/EffectSymbol.js +19 -0
  558. package/src/chart/helper/LargeLineDraw.js +20 -0
  559. package/src/chart/helper/LargeSymbolDraw.js +19 -0
  560. package/src/chart/helper/Line.js +38 -16
  561. package/src/chart/helper/LineDraw.js +27 -0
  562. package/src/chart/helper/LinePath.js +19 -0
  563. package/src/chart/helper/Polyline.js +19 -0
  564. package/src/chart/helper/Symbol.js +60 -14
  565. package/src/chart/helper/SymbolDraw.js +23 -2
  566. package/src/chart/helper/createGraphFromNodeEdge.js +29 -6
  567. package/src/chart/helper/createGraphFromNodeMatrix.js +19 -0
  568. package/src/chart/helper/createListFromArray.js +19 -0
  569. package/src/chart/helper/createListSimply.js +19 -0
  570. package/src/chart/helper/createRenderPlanner.js +21 -2
  571. package/src/chart/helper/labelHelper.js +19 -0
  572. package/src/chart/helper/treeHelper.js +19 -0
  573. package/src/chart/helper/whiskerBoxCommon.js +19 -32
  574. package/src/chart/line/LineSeries.js +28 -10
  575. package/src/chart/line/LineView.js +127 -38
  576. package/src/chart/line/helper.js +31 -5
  577. package/src/chart/line/lineAnimationDiff.js +19 -0
  578. package/src/chart/line/poly.js +64 -39
  579. package/src/chart/line.js +19 -0
  580. package/src/chart/lines/LinesSeries.js +27 -4
  581. package/src/chart/lines/LinesView.js +21 -1
  582. package/src/chart/lines/linesLayout.js +20 -1
  583. package/src/chart/lines/linesVisual.js +19 -0
  584. package/src/chart/lines.js +19 -0
  585. package/src/chart/map/MapSeries.js +19 -0
  586. package/src/chart/map/MapView.js +19 -0
  587. package/src/chart/map/backwardCompat.js +19 -0
  588. package/src/chart/map/mapDataStatistic.js +19 -0
  589. package/src/chart/map/mapSymbolLayout.js +19 -0
  590. package/src/chart/map/mapVisual.js +19 -0
  591. package/src/chart/map.js +19 -0
  592. package/src/chart/parallel/ParallelSeries.js +21 -7
  593. package/src/chart/parallel/ParallelView.js +90 -58
  594. package/src/chart/parallel/parallelVisual.js +39 -14
  595. package/src/chart/parallel.js +19 -0
  596. package/src/chart/pictorialBar.js +19 -0
  597. package/src/chart/pie/PieSeries.js +19 -0
  598. package/src/chart/pie/PieView.js +19 -0
  599. package/src/chart/pie/labelLayout.js +19 -0
  600. package/src/chart/pie/pieLayout.js +19 -0
  601. package/src/chart/pie.js +19 -0
  602. package/src/chart/radar/RadarSeries.js +19 -0
  603. package/src/chart/radar/RadarView.js +19 -0
  604. package/src/chart/radar/backwardCompat.js +19 -0
  605. package/src/chart/radar/radarLayout.js +20 -1
  606. package/src/chart/radar.js +19 -0
  607. package/src/chart/sankey/SankeySeries.js +28 -0
  608. package/src/chart/sankey/SankeyView.js +62 -11
  609. package/src/chart/sankey/sankeyAction.js +31 -0
  610. package/src/chart/sankey/sankeyLayout.js +71 -17
  611. package/src/chart/sankey/sankeyVisual.js +49 -25
  612. package/src/chart/sankey.js +20 -0
  613. package/src/chart/scatter/ScatterSeries.js +21 -2
  614. package/src/chart/scatter/ScatterView.js +19 -0
  615. package/src/chart/scatter.js +19 -0
  616. package/src/chart/sunburst/SunburstPiece.js +24 -0
  617. package/src/chart/sunburst/SunburstSeries.js +19 -0
  618. package/src/chart/sunburst/SunburstView.js +28 -9
  619. package/src/chart/sunburst/sunburstAction.js +19 -0
  620. package/src/chart/sunburst/sunburstLayout.js +19 -0
  621. package/src/chart/sunburst.js +19 -0
  622. package/src/chart/themeRiver/ThemeRiverSeries.js +19 -1
  623. package/src/chart/themeRiver/ThemeRiverView.js +19 -0
  624. package/src/chart/themeRiver/themeRiverLayout.js +19 -0
  625. package/src/chart/themeRiver/themeRiverVisual.js +19 -0
  626. package/src/chart/themeRiver.js +19 -0
  627. package/src/chart/tree/TreeSeries.js +38 -2
  628. package/src/chart/tree/TreeView.js +31 -5
  629. package/src/chart/tree/layoutHelper.js +19 -0
  630. package/src/chart/tree/traversalHelper.js +19 -0
  631. package/src/chart/tree/treeAction.js +19 -0
  632. package/src/chart/tree/treeLayout.js +128 -0
  633. package/src/chart/tree.js +21 -4
  634. package/src/chart/treemap/Breadcrumb.js +19 -0
  635. package/src/chart/treemap/TreemapSeries.js +19 -0
  636. package/src/chart/treemap/TreemapView.js +19 -0
  637. package/src/chart/treemap/helper.js +19 -0
  638. package/src/chart/treemap/treemapAction.js +19 -0
  639. package/src/chart/treemap/treemapLayout.js +19 -0
  640. package/src/chart/treemap/treemapVisual.js +19 -0
  641. package/src/chart/treemap.js +19 -0
  642. package/src/component/angleAxis.js +19 -0
  643. package/src/component/axis/AngleAxisView.js +62 -25
  644. package/src/component/axis/AxisBuilder.js +43 -88
  645. package/src/component/axis/AxisView.js +19 -0
  646. package/src/component/axis/CartesianAxisView.js +69 -54
  647. package/src/component/axis/ParallelAxisView.js +19 -0
  648. package/src/component/axis/RadiusAxisView.js +26 -4
  649. package/src/component/axis/SingleAxisView.js +26 -18
  650. package/src/component/axis/parallelAxisAction.js +19 -0
  651. package/src/component/axis.js +19 -0
  652. package/src/component/axisPointer/AxisPointerModel.js +19 -0
  653. package/src/component/axisPointer/AxisPointerView.js +19 -0
  654. package/src/component/axisPointer/BaseAxisPointer.js +19 -0
  655. package/src/component/axisPointer/CartesianAxisPointer.js +21 -2
  656. package/src/component/axisPointer/PolarAxisPointer.js +20 -1
  657. package/src/component/axisPointer/SingleAxisPointer.js +20 -1
  658. package/src/component/axisPointer/axisTrigger.js +19 -0
  659. package/src/component/axisPointer/findPointFromSeries.js +19 -0
  660. package/src/component/axisPointer/globalListener.js +19 -0
  661. package/src/component/axisPointer/modelHelper.js +19 -0
  662. package/src/component/axisPointer/viewHelper.js +20 -0
  663. package/src/component/axisPointer.js +19 -0
  664. package/src/component/brush/BrushModel.js +26 -1
  665. package/src/component/brush/BrushView.js +19 -0
  666. package/src/component/brush/brushAction.js +19 -0
  667. package/src/component/brush/preprocessor.js +19 -0
  668. package/src/component/brush/selector.js +19 -0
  669. package/src/component/brush/visualEncoding.js +19 -0
  670. package/src/component/brush.js +19 -0
  671. package/src/component/calendar/CalendarView.js +19 -0
  672. package/src/component/calendar.js +19 -0
  673. package/src/component/dataZoom/AxisProxy.js +19 -0
  674. package/src/component/dataZoom/DataZoomModel.js +19 -0
  675. package/src/component/dataZoom/DataZoomView.js +19 -0
  676. package/src/component/dataZoom/InsideZoomModel.js +19 -0
  677. package/src/component/dataZoom/InsideZoomView.js +37 -10
  678. package/src/component/dataZoom/SelectZoomModel.js +19 -0
  679. package/src/component/dataZoom/SelectZoomView.js +19 -0
  680. package/src/component/dataZoom/SliderZoomModel.js +19 -0
  681. package/src/component/dataZoom/SliderZoomView.js +30 -5
  682. package/src/component/dataZoom/dataZoomAction.js +19 -0
  683. package/src/component/dataZoom/dataZoomProcessor.js +24 -1
  684. package/src/component/dataZoom/helper.js +19 -0
  685. package/src/component/dataZoom/history.js +19 -0
  686. package/src/component/dataZoom/roams.js +20 -15
  687. package/src/component/dataZoom/typeDefaulter.js +19 -0
  688. package/src/component/dataZoom.js +19 -0
  689. package/src/component/dataZoomInside.js +19 -0
  690. package/src/component/dataZoomSelect.js +19 -0
  691. package/src/component/dataset.js +63 -3
  692. package/src/component/geo/GeoView.js +19 -0
  693. package/src/component/geo.js +19 -0
  694. package/src/component/graphic.js +19 -0
  695. package/src/component/grid.js +19 -0
  696. package/src/component/gridSimple.js +19 -0
  697. package/src/component/helper/BrushController.js +19 -0
  698. package/src/component/helper/BrushTargetManager.js +19 -0
  699. package/src/component/helper/MapDraw.js +19 -0
  700. package/src/component/helper/RoamController.js +19 -0
  701. package/src/component/helper/brushHelper.js +19 -0
  702. package/src/component/helper/cursorHelper.js +19 -0
  703. package/src/component/helper/interactionMutex.js +19 -0
  704. package/src/component/helper/listComponent.js +19 -0
  705. package/src/component/helper/roamHelper.js +19 -0
  706. package/src/component/helper/selectableMixin.js +19 -0
  707. package/src/component/helper/sliderMove.js +19 -0
  708. package/src/component/legend/LegendModel.js +19 -0
  709. package/src/component/legend/LegendView.js +51 -13
  710. package/src/component/legend/ScrollableLegendModel.js +19 -0
  711. package/src/component/legend/ScrollableLegendView.js +19 -0
  712. package/src/component/legend/legendAction.js +19 -0
  713. package/src/component/legend/legendFilter.js +19 -0
  714. package/src/component/legend/scrollableLegendAction.js +19 -0
  715. package/src/component/legend.js +19 -0
  716. package/src/component/legendScroll.js +19 -0
  717. package/src/component/markArea.js +19 -0
  718. package/src/component/markLine.js +19 -0
  719. package/src/component/markPoint.js +19 -0
  720. package/src/component/marker/MarkAreaModel.js +19 -0
  721. package/src/component/marker/MarkAreaView.js +22 -3
  722. package/src/component/marker/MarkLineModel.js +19 -0
  723. package/src/component/marker/MarkLineView.js +22 -3
  724. package/src/component/marker/MarkPointModel.js +19 -0
  725. package/src/component/marker/MarkPointView.js +19 -0
  726. package/src/component/marker/MarkerModel.js +20 -1
  727. package/src/component/marker/MarkerView.js +19 -0
  728. package/src/component/marker/markerHelper.js +24 -1
  729. package/src/component/parallel.js +19 -0
  730. package/src/component/parallelAxis.js +19 -0
  731. package/src/component/polar.js +19 -0
  732. package/src/component/radar/RadarView.js +23 -4
  733. package/src/component/radar.js +19 -0
  734. package/src/component/radiusAxis.js +19 -0
  735. package/src/component/singleAxis.js +19 -0
  736. package/src/component/timeline/SliderTimelineModel.js +19 -0
  737. package/src/component/timeline/SliderTimelineView.js +40 -31
  738. package/src/component/timeline/TimelineAxis.js +25 -43
  739. package/src/component/timeline/TimelineModel.js +19 -0
  740. package/src/component/timeline/TimelineView.js +19 -0
  741. package/src/component/timeline/preprocessor.js +19 -0
  742. package/src/component/timeline/timelineAction.js +19 -0
  743. package/src/component/timeline/typeDefaulter.js +19 -0
  744. package/src/component/timeline.js +19 -0
  745. package/src/component/title.js +19 -0
  746. package/src/component/toolbox/ToolboxModel.js +21 -2
  747. package/src/component/toolbox/ToolboxView.js +19 -0
  748. package/src/component/toolbox/feature/Brush.js +19 -0
  749. package/src/component/toolbox/feature/DataView.js +19 -0
  750. package/src/component/toolbox/feature/DataZoom.js +22 -0
  751. package/src/component/toolbox/feature/MagicType.js +19 -0
  752. package/src/component/toolbox/feature/Restore.js +19 -0
  753. package/src/component/toolbox/feature/SaveAsImage.js +19 -0
  754. package/src/component/toolbox/featureManager.js +19 -0
  755. package/src/component/toolbox.js +19 -0
  756. package/src/component/tooltip/TooltipContent.js +19 -0
  757. package/src/component/tooltip/TooltipModel.js +19 -0
  758. package/src/component/tooltip/TooltipView.js +20 -1
  759. package/src/component/tooltip.js +19 -0
  760. package/src/component/visualMap/ContinuousModel.js +19 -0
  761. package/src/component/visualMap/ContinuousView.js +19 -0
  762. package/src/component/visualMap/PiecewiseModel.js +19 -0
  763. package/src/component/visualMap/PiecewiseView.js +19 -0
  764. package/src/component/visualMap/VisualMapModel.js +19 -0
  765. package/src/component/visualMap/VisualMapView.js +19 -0
  766. package/src/component/visualMap/helper.js +19 -0
  767. package/src/component/visualMap/preprocessor.js +19 -0
  768. package/src/component/visualMap/typeDefaulter.js +19 -0
  769. package/src/component/visualMap/visualEncoding.js +23 -1
  770. package/src/component/visualMap/visualMapAction.js +19 -0
  771. package/src/component/visualMap.js +19 -0
  772. package/src/component/visualMapContinuous.js +19 -0
  773. package/src/component/visualMapPiecewise.js +19 -0
  774. package/src/config.js +19 -0
  775. package/src/coord/Axis.js +157 -98
  776. package/src/coord/View.js +19 -0
  777. package/src/coord/axisDefault.js +68 -41
  778. package/src/coord/axisHelper.js +127 -86
  779. package/src/coord/axisModelCommonMixin.js +19 -11
  780. package/src/coord/axisModelCreator.js +25 -2
  781. package/src/coord/axisTickLabelBuilder.js +369 -0
  782. package/src/coord/calendar/Calendar.js +23 -1
  783. package/src/coord/calendar/CalendarModel.js +19 -0
  784. package/src/coord/calendar/prepareCustom.js +19 -0
  785. package/src/coord/cartesian/Axis2D.js +25 -18
  786. package/src/coord/cartesian/AxisModel.js +19 -0
  787. package/src/coord/cartesian/Cartesian.js +19 -0
  788. package/src/coord/cartesian/Cartesian2D.js +27 -4
  789. package/src/coord/cartesian/Grid.js +65 -76
  790. package/src/coord/cartesian/GridModel.js +19 -0
  791. package/src/{component/axis → coord/cartesian}/cartesianAxisHelper.js +28 -9
  792. package/src/coord/cartesian/prepareCustom.js +19 -0
  793. package/src/coord/geo/Geo.js +19 -0
  794. package/src/coord/geo/GeoModel.js +19 -0
  795. package/src/coord/geo/Region.js +19 -0
  796. package/src/coord/geo/fix/diaoyuIsland.js +19 -0
  797. package/src/coord/geo/fix/geoCoord.js +19 -0
  798. package/src/coord/geo/fix/nanhai.js +19 -0
  799. package/src/coord/geo/fix/textCoord.js +19 -0
  800. package/src/coord/geo/geoCreator.js +19 -0
  801. package/src/coord/geo/parseGeoJson.js +19 -0
  802. package/src/coord/geo/prepareCustom.js +19 -0
  803. package/src/coord/parallel/AxisModel.js +32 -3
  804. package/src/coord/parallel/Parallel.js +38 -12
  805. package/src/coord/parallel/ParallelAxis.js +19 -0
  806. package/src/coord/parallel/ParallelModel.js +19 -0
  807. package/src/coord/parallel/parallelCreator.js +19 -0
  808. package/src/coord/parallel/parallelPreprocessor.js +19 -0
  809. package/src/coord/polar/AngleAxis.js +19 -0
  810. package/src/coord/polar/AxisModel.js +19 -0
  811. package/src/coord/polar/Polar.js +19 -0
  812. package/src/coord/polar/PolarModel.js +19 -0
  813. package/src/coord/polar/RadiusAxis.js +19 -0
  814. package/src/coord/polar/polarCreator.js +26 -3
  815. package/src/coord/polar/prepareCustom.js +19 -0
  816. package/src/coord/radar/IndicatorAxis.js +19 -0
  817. package/src/coord/radar/Radar.js +19 -0
  818. package/src/coord/radar/RadarModel.js +19 -0
  819. package/src/coord/single/AxisModel.js +19 -0
  820. package/src/coord/single/Single.js +19 -0
  821. package/src/coord/single/SingleAxis.js +19 -5
  822. package/src/coord/single/prepareCustom.js +19 -0
  823. package/src/{component/axis → coord/single}/singleAxisHelper.js +21 -4
  824. package/src/coord/single/singleCreator.js +19 -0
  825. package/src/data/DataDiffer.js +19 -0
  826. package/src/data/Graph.js +20 -1
  827. package/src/data/List.js +163 -87
  828. package/src/data/OrdinalMeta.js +19 -0
  829. package/src/data/Source.js +19 -0
  830. package/src/data/Tree.js +19 -0
  831. package/src/data/helper/completeDimensions.js +24 -2
  832. package/src/data/helper/createDimensions.js +19 -0
  833. package/src/data/helper/dataProvider.js +23 -4
  834. package/src/data/helper/dataStackHelper.js +46 -9
  835. package/src/data/helper/dimensionHelper.js +26 -1
  836. package/src/data/helper/linkList.js +19 -0
  837. package/src/data/helper/sourceHelper.js +19 -0
  838. package/src/data/helper/sourceType.js +19 -0
  839. package/src/echarts.js +37 -20
  840. package/src/export.js +19 -0
  841. package/src/helper.js +26 -2
  842. package/src/lang.js +19 -0
  843. package/src/langEN.js +19 -0
  844. package/src/langFI.js +19 -0
  845. package/src/langTH.js +19 -0
  846. package/src/layout/barGrid.js +135 -23
  847. package/src/layout/barPolar.js +20 -1
  848. package/src/layout/points.js +27 -7
  849. package/src/loading/default.js +19 -0
  850. package/src/model/Component.js +19 -0
  851. package/src/model/Global.js +19 -2
  852. package/src/model/Model.js +19 -0
  853. package/src/model/OptionManager.js +19 -0
  854. package/src/model/Series.js +21 -2
  855. package/src/model/globalDefault.js +19 -0
  856. package/src/model/mixin/areaStyle.js +19 -0
  857. package/src/model/mixin/boxLayout.js +19 -0
  858. package/src/model/mixin/colorPalette.js +19 -0
  859. package/src/model/mixin/dataFormat.js +20 -1
  860. package/src/model/mixin/itemStyle.js +19 -0
  861. package/src/model/mixin/lineStyle.js +19 -0
  862. package/src/model/mixin/makeStyleMapper.js +19 -0
  863. package/src/model/mixin/textStyle.js +19 -0
  864. package/src/model/referHelper.js +19 -0
  865. package/src/preprocessor/backwardCompat.js +19 -0
  866. package/src/preprocessor/helper/compatStyle.js +22 -0
  867. package/src/processor/dataFilter.js +19 -0
  868. package/src/processor/dataSample.js +29 -3
  869. package/src/processor/dataStack.js +19 -0
  870. package/src/scale/Interval.js +19 -12
  871. package/src/scale/Log.js +19 -0
  872. package/src/scale/Ordinal.js +27 -1
  873. package/src/scale/Scale.js +26 -12
  874. package/src/scale/Time.js +19 -0
  875. package/src/scale/helper.js +19 -0
  876. package/src/stream/Scheduler.js +110 -34
  877. package/src/stream/task.js +105 -11
  878. package/src/theme/dark.js +19 -0
  879. package/src/theme/light.js +19 -0
  880. package/src/util/KDTree.js +19 -0
  881. package/src/util/animation.js +19 -0
  882. package/src/util/array/nest.js +19 -0
  883. package/src/util/clazz.js +19 -0
  884. package/src/util/component.js +19 -0
  885. package/src/util/format.js +34 -6
  886. package/src/util/graphic.js +19 -0
  887. package/src/util/layout.js +19 -0
  888. package/src/util/model.js +20 -0
  889. package/src/util/number.js +19 -0
  890. package/src/util/quickSelect.js +19 -0
  891. package/src/util/symbol.js +19 -0
  892. package/src/util/throttle.js +27 -0
  893. package/src/view/Chart.js +21 -2
  894. package/src/view/Component.js +19 -0
  895. package/src/visual/VisualMapping.js +29 -0
  896. package/src/visual/aria.js +19 -0
  897. package/src/visual/dataColor.js +19 -0
  898. package/src/visual/seriesColor.js +19 -0
  899. package/src/visual/symbol.js +34 -2
  900. package/src/visual/visualDefault.js +19 -0
  901. package/src/visual/visualSolution.js +21 -1
  902. package/theme/dark.js +19 -0
  903. package/theme/infographic.js +19 -0
  904. package/theme/macarons.js +19 -0
  905. package/theme/roma.js +19 -0
  906. package/theme/shine.js +19 -0
  907. package/theme/vintage.js +19 -0
  908. package/build/rollup-plugin-ec-dev.js +0 -38
  909. package/lib/chart/helper/WhiskerBoxDraw.js +0 -222
  910. package/lib/chart/tree/commonLayout.js +0 -108
  911. package/lib/chart/tree/orthogonalLayout.js +0 -9
  912. package/lib/chart/tree/radialLayout.js +0 -9
  913. package/lib/component/dataset/DatasetModel.js +0 -29
  914. package/src/chart/helper/WhiskerBoxDraw.js +0 -233
  915. package/src/chart/tree/commonLayout.js +0 -96
  916. package/src/chart/tree/orthogonalLayout.js +0 -7
  917. package/src/chart/tree/radialLayout.js +0 -7
  918. package/src/component/dataset/DatasetModel.js +0 -31
@@ -21,11 +21,33 @@ var Polygon = _poly.Polygon;
21
21
 
22
22
  var ChartView = require("../../view/Chart");
23
23
 
24
+ var _number = require("../../util/number");
25
+
26
+ var round = _number.round;
27
+
24
28
  var _helper = require("./helper");
25
29
 
26
30
  var prepareDataCoordInfo = _helper.prepareDataCoordInfo;
27
31
  var getStackedOnPoint = _helper.getStackedOnPoint;
28
32
 
33
+ /*
34
+ * Licensed to the Apache Software Foundation (ASF) under one
35
+ * or more contributor license agreements. See the NOTICE file
36
+ * distributed with this work for additional information
37
+ * regarding copyright ownership. The ASF licenses this file
38
+ * to you under the Apache License, Version 2.0 (the
39
+ * "License"); you may not use this file except in compliance
40
+ * with the License. You may obtain a copy of the License at
41
+ *
42
+ * http://www.apache.org/licenses/LICENSE-2.0
43
+ *
44
+ * Unless required by applicable law or agreed to in writing,
45
+ * software distributed under the License is distributed on an
46
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
47
+ * KIND, either express or implied. See the License for the
48
+ * specific language governing permissions and limitations
49
+ * under the License.
50
+ */
29
51
  // FIXME step not support polar
30
52
  function isPointsSame(points1, points2) {
31
53
  if (points1.length !== points2.length) {
@@ -83,24 +105,33 @@ function getStackedOnPoints(coordSys, data, dataCoordInfo) {
83
105
  return points;
84
106
  }
85
107
 
86
- function createGridClipShape(cartesian, hasAnimation, seriesModel) {
108
+ function createGridClipShape(cartesian, hasAnimation, forSymbol, seriesModel) {
87
109
  var xExtent = getAxisExtentWithGap(cartesian.getAxis('x'));
88
110
  var yExtent = getAxisExtentWithGap(cartesian.getAxis('y'));
89
111
  var isHorizontal = cartesian.getBaseAxis().isHorizontal();
90
112
  var x = Math.min(xExtent[0], xExtent[1]);
91
113
  var y = Math.min(yExtent[0], yExtent[1]);
92
114
  var width = Math.max(xExtent[0], xExtent[1]) - x;
93
- var height = Math.max(yExtent[0], yExtent[1]) - y;
94
- var lineWidth = seriesModel.get('lineStyle.width') || 2; // Expand clip shape to avoid clipping when line value exceeds axis
115
+ var height = Math.max(yExtent[0], yExtent[1]) - y; // Avoid float number rounding error for symbol on the edge of axis extent.
116
+ // See #7913 and `test/dataZoom-clip.html`.
117
+
118
+ if (forSymbol) {
119
+ x -= 0.5;
120
+ width += 0.5;
121
+ y -= 0.5;
122
+ height += 0.5;
123
+ } else {
124
+ var lineWidth = seriesModel.get('lineStyle.width') || 2; // Expand clip shape to avoid clipping when line value exceeds axis
95
125
 
96
- var expandSize = seriesModel.get('clipOverflow') ? lineWidth / 2 : Math.max(width, height);
126
+ var expandSize = seriesModel.get('clipOverflow') ? lineWidth / 2 : Math.max(width, height);
97
127
 
98
- if (isHorizontal) {
99
- y -= expandSize;
100
- height += expandSize * 2;
101
- } else {
102
- x -= expandSize;
103
- width += expandSize * 2;
128
+ if (isHorizontal) {
129
+ y -= expandSize;
130
+ height += expandSize * 2;
131
+ } else {
132
+ x -= expandSize;
133
+ width += expandSize * 2;
134
+ }
104
135
  }
105
136
 
106
137
  var clipPath = new graphic.Rect({
@@ -125,18 +156,25 @@ function createGridClipShape(cartesian, hasAnimation, seriesModel) {
125
156
  return clipPath;
126
157
  }
127
158
 
128
- function createPolarClipShape(polar, hasAnimation, seriesModel) {
159
+ function createPolarClipShape(polar, hasAnimation, forSymbol, seriesModel) {
129
160
  var angleAxis = polar.getAngleAxis();
130
161
  var radiusAxis = polar.getRadiusAxis();
131
- var radiusExtent = radiusAxis.getExtent();
162
+ var radiusExtent = radiusAxis.getExtent().slice();
163
+ radiusExtent[0] > radiusExtent[1] && radiusExtent.reverse();
132
164
  var angleExtent = angleAxis.getExtent();
133
- var RADIAN = Math.PI / 180;
165
+ var RADIAN = Math.PI / 180; // Avoid float number rounding error for symbol on the edge of axis extent.
166
+
167
+ if (forSymbol) {
168
+ radiusExtent[0] -= 0.5;
169
+ radiusExtent[1] += 0.5;
170
+ }
171
+
134
172
  var clipPath = new graphic.Sector({
135
173
  shape: {
136
- cx: polar.cx,
137
- cy: polar.cy,
138
- r0: radiusExtent[0],
139
- r: radiusExtent[1],
174
+ cx: round(polar.cx, 1),
175
+ cy: round(polar.cy, 1),
176
+ r0: round(radiusExtent[0], 1),
177
+ r: round(radiusExtent[1], 1),
140
178
  startAngle: -angleExtent[0] * RADIAN,
141
179
  endAngle: -angleExtent[1] * RADIAN,
142
180
  clockwise: angleAxis.inverse
@@ -155,8 +193,8 @@ function createPolarClipShape(polar, hasAnimation, seriesModel) {
155
193
  return clipPath;
156
194
  }
157
195
 
158
- function createClipShape(coordSys, hasAnimation, seriesModel) {
159
- return coordSys.type === 'polar' ? createPolarClipShape(coordSys, hasAnimation, seriesModel) : createGridClipShape(coordSys, hasAnimation, seriesModel);
196
+ function createClipShape(coordSys, hasAnimation, forSymbol, seriesModel) {
197
+ return coordSys.type === 'polar' ? createPolarClipShape(coordSys, hasAnimation, forSymbol, seriesModel) : createGridClipShape(coordSys, hasAnimation, forSymbol, seriesModel);
160
198
  }
161
199
 
162
200
  function turnPointsIntoStep(points, coordSys, stepTurnAt) {
@@ -287,6 +325,63 @@ function getVisualGradient(data, coordSys) {
287
325
  return gradient;
288
326
  }
289
327
 
328
+ function getIsIgnoreFunc(seriesModel, data, coordSys) {
329
+ var showAllSymbol = seriesModel.get('showAllSymbol');
330
+ var isAuto = showAllSymbol === 'auto';
331
+
332
+ if (showAllSymbol && !isAuto) {
333
+ return;
334
+ }
335
+
336
+ var categoryAxis = coordSys.getAxesByScale('ordinal')[0];
337
+
338
+ if (!categoryAxis) {
339
+ return;
340
+ } // Note that category label interval strategy might bring some weird effect
341
+ // in some scenario: users may wonder why some of the symbols are not
342
+ // displayed. So we show all symbols as possible as we can.
343
+
344
+
345
+ if (isAuto // Simplify the logic, do not determine label overlap here.
346
+ && canShowAllSymbolForCategory(categoryAxis, data)) {
347
+ return;
348
+ } // Otherwise follow the label interval strategy on category axis.
349
+
350
+
351
+ var categoryDataDim = data.mapDimension(categoryAxis.dim);
352
+ var labelMap = {};
353
+ zrUtil.each(categoryAxis.getViewLabels(), function (labelItem) {
354
+ labelMap[labelItem.tickValue] = 1;
355
+ });
356
+ return function (dataIndex) {
357
+ return !labelMap.hasOwnProperty(data.get(categoryDataDim, dataIndex));
358
+ };
359
+ }
360
+
361
+ function canShowAllSymbolForCategory(categoryAxis, data) {
362
+ // In mose cases, line is monotonous on category axis, and the label size
363
+ // is close with each other. So we check the symbol size and some of the
364
+ // label size alone with the category axis to estimate whether all symbol
365
+ // can be shown without overlap.
366
+ var axisExtent = categoryAxis.getExtent();
367
+ var availSize = Math.abs(axisExtent[1] - axisExtent[0]) / categoryAxis.scale.count();
368
+ isNaN(availSize) && (availSize = 0); // 0/0 is NaN.
369
+ // Sampling some points, max 5.
370
+
371
+ var dataLen = data.count();
372
+ var step = Math.max(1, Math.round(dataLen / 5));
373
+
374
+ for (var dataIndex = 0; dataIndex < dataLen; dataIndex += step) {
375
+ if (SymbolClz.getSymbolSize(data, dataIndex // Only for cartesian, where `isHorizontal` exists.
376
+ )[categoryAxis.isHorizontal() ? 1 : 0] // Empirical number
377
+ * 1.5 > availSize) {
378
+ return false;
379
+ }
380
+ }
381
+
382
+ return true;
383
+ }
384
+
290
385
  var _default = ChartView.extend({
291
386
  type: 'line',
292
387
  init: function () {
@@ -315,9 +410,7 @@ var _default = ChartView.extend({
315
410
  var dataCoordInfo = prepareDataCoordInfo(coordSys, data, valueOrigin);
316
411
  var stackedOnPoints = getStackedOnPoints(coordSys, data, dataCoordInfo);
317
412
  var showSymbol = seriesModel.get('showSymbol');
318
-
319
- var isSymbolIgnore = showSymbol && !isCoordSysPolar && !seriesModel.get('showAllSymbol') && this._getSymbolIgnoreFunc(data, coordSys); // Remove temporary symbols
320
-
413
+ var isIgnoreFunc = showSymbol && !isCoordSysPolar && getIsIgnoreFunc(seriesModel, data, coordSys); // Remove temporary symbols
321
414
 
322
415
  var oldData = this._data;
323
416
  oldData && oldData.eachItemGraphicEl(function (el, idx) {
@@ -337,8 +430,8 @@ var _default = ChartView.extend({
337
430
 
338
431
  if (!(polyline && prevCoordSys.type === coordSys.type && step === this._step)) {
339
432
  showSymbol && symbolDraw.updateData(data, {
340
- isIgnore: isSymbolIgnore,
341
- clipShape: createClipShape(coordSys, false, seriesModel)
433
+ isIgnore: isIgnoreFunc,
434
+ clipShape: createClipShape(coordSys, false, true, seriesModel)
342
435
  });
343
436
 
344
437
  if (step) {
@@ -353,7 +446,7 @@ var _default = ChartView.extend({
353
446
  polygon = this._newPolygon(points, stackedOnPoints, coordSys, hasAnimation);
354
447
  }
355
448
 
356
- lineGroup.setClipPath(createClipShape(coordSys, true, seriesModel));
449
+ lineGroup.setClipPath(createClipShape(coordSys, true, false, seriesModel));
357
450
  } else {
358
451
  if (isAreaChart && !polygon) {
359
452
  // If areaStyle is added
@@ -362,16 +455,15 @@ var _default = ChartView.extend({
362
455
  // If areaStyle is removed
363
456
  lineGroup.remove(polygon);
364
457
  polygon = this._polygon = null;
365
- }
458
+ } // Update clipPath
366
459
 
367
- var coordSysClipShape = createClipShape(coordSys, false, seriesModel); // Update clipPath
368
460
 
369
- lineGroup.setClipPath(coordSysClipShape); // Always update, or it is wrong in the case turning on legend
461
+ lineGroup.setClipPath(createClipShape(coordSys, false, false, seriesModel)); // Always update, or it is wrong in the case turning on legend
370
462
  // because points are not changed
371
463
 
372
464
  showSymbol && symbolDraw.updateData(data, {
373
- isIgnore: isSymbolIgnore,
374
- clipShape: coordSysClipShape
465
+ isIgnore: isIgnoreFunc,
466
+ clipShape: createClipShape(coordSys, false, true, seriesModel)
375
467
  }); // Stop symbol animation and sync with line points
376
468
  // FIXME performance?
377
469
 
@@ -556,17 +648,6 @@ var _default = ChartView.extend({
556
648
  return polygon;
557
649
  },
558
650
 
559
- /**
560
- * @private
561
- */
562
- _getSymbolIgnoreFunc: function (data, coordSys) {
563
- var categoryAxis = coordSys.getAxesByScale('ordinal')[0]; // `getLabelInterval` is provided by echarts/component/axis
564
-
565
- if (categoryAxis && categoryAxis.isLabelIgnored) {
566
- return zrUtil.bind(categoryAxis.isLabelIgnored, categoryAxis);
567
- }
568
- },
569
-
570
651
  /**
571
652
  * @private
572
653
  */
@@ -6,6 +6,25 @@ var _util = require("zrender/lib/core/util");
6
6
 
7
7
  var map = _util.map;
8
8
 
9
+ /*
10
+ * Licensed to the Apache Software Foundation (ASF) under one
11
+ * or more contributor license agreements. See the NOTICE file
12
+ * distributed with this work for additional information
13
+ * regarding copyright ownership. The ASF licenses this file
14
+ * to you under the Apache License, Version 2.0 (the
15
+ * "License"); you may not use this file except in compliance
16
+ * with the License. You may obtain a copy of the License at
17
+ *
18
+ * http://www.apache.org/licenses/LICENSE-2.0
19
+ *
20
+ * Unless required by applicable law or agreed to in writing,
21
+ * software distributed under the License is distributed on an
22
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
23
+ * KIND, either express or implied. See the License for the
24
+ * specific language governing permissions and limitations
25
+ * under the License.
26
+ */
27
+
9
28
  /**
10
29
  * @param {Object} coordSys
11
30
  * @param {module:echarts/data/List} data
@@ -20,16 +39,32 @@ function prepareDataCoordInfo(coordSys, data, valueOrigin) {
20
39
  var valueDim = data.mapDimension(valueAxisDim);
21
40
  var baseDim = data.mapDimension(baseAxisDim);
22
41
  var baseDataOffset = valueAxisDim === 'x' || valueAxisDim === 'radius' ? 1 : 0;
23
- var stacked = isDimensionStacked(data, valueDim, baseDim);
24
- var dataDimsForPoint = map(coordSys.dimensions, function (coordDim) {
42
+ var dims = map(coordSys.dimensions, function (coordDim) {
25
43
  return data.mapDimension(coordDim);
26
44
  });
45
+ var stacked;
46
+ var stackResultDim = data.getCalculationInfo('stackResultDimension');
47
+
48
+ if (stacked |= isDimensionStacked(data, dims[0]
49
+ /*, dims[1]*/
50
+ )) {
51
+ // jshint ignore:line
52
+ dims[0] = stackResultDim;
53
+ }
54
+
55
+ if (stacked |= isDimensionStacked(data, dims[1]
56
+ /*, dims[0]*/
57
+ )) {
58
+ // jshint ignore:line
59
+ dims[1] = stackResultDim;
60
+ }
61
+
27
62
  return {
28
- dataDimsForPoint: dataDimsForPoint,
63
+ dataDimsForPoint: dims,
29
64
  valueStart: valueStart,
30
65
  valueAxisDim: valueAxisDim,
31
66
  baseAxisDim: baseAxisDim,
32
- stacked: stacked,
67
+ stacked: !!stacked,
33
68
  valueDim: valueDim,
34
69
  baseDim: baseDim,
35
70
  baseDataOffset: baseDataOffset,
@@ -3,6 +3,24 @@ var _helper = require("./helper");
3
3
  var prepareDataCoordInfo = _helper.prepareDataCoordInfo;
4
4
  var getStackedOnPoint = _helper.getStackedOnPoint;
5
5
 
6
+ /*
7
+ * Licensed to the Apache Software Foundation (ASF) under one
8
+ * or more contributor license agreements. See the NOTICE file
9
+ * distributed with this work for additional information
10
+ * regarding copyright ownership. The ASF licenses this file
11
+ * to you under the Apache License, Version 2.0 (the
12
+ * "License"); you may not use this file except in compliance
13
+ * with the License. You may obtain a copy of the License at
14
+ *
15
+ * http://www.apache.org/licenses/LICENSE-2.0
16
+ *
17
+ * Unless required by applicable law or agreed to in writing,
18
+ * software distributed under the License is distributed on an
19
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20
+ * KIND, either express or implied. See the License for the
21
+ * specific language governing permissions and limitations
22
+ * under the License.
23
+ */
6
24
  // var arrayDiff = require('zrender/src/core/arrayDiff');
7
25
  // 'zrender/src/core/arrayDiff' has been used before, but it did
8
26
  // not do well in performance when roam with fixed dataZoom window.
@@ -4,6 +4,24 @@ var vec2 = require("zrender/lib/core/vector");
4
4
 
5
5
  var fixClipWithShadow = require("zrender/lib/graphic/helper/fixClipWithShadow");
6
6
 
7
+ /*
8
+ * Licensed to the Apache Software Foundation (ASF) under one
9
+ * or more contributor license agreements. See the NOTICE file
10
+ * distributed with this work for additional information
11
+ * regarding copyright ownership. The ASF licenses this file
12
+ * to you under the Apache License, Version 2.0 (the
13
+ * "License"); you may not use this file except in compliance
14
+ * with the License. You may obtain a copy of the License at
15
+ *
16
+ * http://www.apache.org/licenses/LICENSE-2.0
17
+ *
18
+ * Unless required by applicable law or agreed to in writing,
19
+ * software distributed under the License is distributed on an
20
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21
+ * KIND, either express or implied. See the License for the
22
+ * specific language governing permissions and limitations
23
+ * under the License.
24
+ */
7
25
  // Poly path support NaN point
8
26
  var vec2Min = vec2.min;
9
27
  var vec2Max = vec2.max;
@@ -19,18 +37,29 @@ function isPointNull(p) {
19
37
  }
20
38
 
21
39
  function drawSegment(ctx, points, start, segLen, allLen, dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls) {
22
- if (smoothMonotone == null) {
23
- if (isMono(points, 'x')) {
24
- return drawMono(ctx, points, start, segLen, allLen, dir, smoothMin, smoothMax, smooth, 'x', connectNulls);
25
- } else if (isMono(points, 'y')) {
26
- return drawMono(ctx, points, start, segLen, allLen, dir, smoothMin, smoothMax, smooth, 'y', connectNulls);
27
- } else {
28
- return drawNonMono.apply(this, arguments);
29
- }
30
- } else if (smoothMonotone !== 'none' && isMono(points, smoothMonotone)) {
31
- return drawMono.apply(this, arguments);
32
- } else {
40
+ // if (smoothMonotone == null) {
41
+ // if (isMono(points, 'x')) {
42
+ // return drawMono(ctx, points, start, segLen, allLen,
43
+ // dir, smoothMin, smoothMax, smooth, 'x', connectNulls);
44
+ // }
45
+ // else if (isMono(points, 'y')) {
46
+ // return drawMono(ctx, points, start, segLen, allLen,
47
+ // dir, smoothMin, smoothMax, smooth, 'y', connectNulls);
48
+ // }
49
+ // else {
50
+ // return drawNonMono.apply(this, arguments);
51
+ // }
52
+ // }
53
+ // else if (smoothMonotone !== 'none' && isMono(points, smoothMonotone)) {
54
+ // return drawMono.apply(this, arguments);
55
+ // }
56
+ // else {
57
+ // return drawNonMono.apply(this, arguments);
58
+ // }
59
+ if (smoothMonotone === 'none' || !smoothMonotone) {
33
60
  return drawNonMono.apply(this, arguments);
61
+ } else {
62
+ return drawMono.apply(this, arguments);
34
63
  }
35
64
  }
36
65
  /**
@@ -44,32 +73,29 @@ function drawSegment(ctx, points, start, segLen, allLen, dir, smoothMin, smoothM
44
73
  * If is undefined, either being monotone
45
74
  * in 'x' or 'y' will call `drawMono`.
46
75
  */
76
+ // function isMono(points, smoothMonotone) {
77
+ // if (points.length <= 1) {
78
+ // return true;
79
+ // }
80
+ // var dim = smoothMonotone === 'x' ? 0 : 1;
81
+ // var last = points[0][dim];
82
+ // var lastDiff = 0;
83
+ // for (var i = 1; i < points.length; ++i) {
84
+ // var diff = points[i][dim] - last;
85
+ // if (!isNaN(diff) && !isNaN(lastDiff)
86
+ // && diff !== 0 && lastDiff !== 0
87
+ // && ((diff >= 0) !== (lastDiff >= 0))
88
+ // ) {
89
+ // return false;
90
+ // }
91
+ // if (!isNaN(diff) && diff !== 0) {
92
+ // lastDiff = diff;
93
+ // last = points[i][dim];
94
+ // }
95
+ // }
96
+ // return true;
97
+ // }
47
98
 
48
-
49
- function isMono(points, smoothMonotone) {
50
- if (points.length <= 1) {
51
- return true;
52
- }
53
-
54
- var dim = smoothMonotone === 'x' ? 0 : 1;
55
- var last = points[0][dim];
56
- var lastDiff = 0;
57
-
58
- for (var i = 1; i < points.length; ++i) {
59
- var diff = points[i][dim] - last;
60
-
61
- if (!isNaN(diff) && !isNaN(lastDiff) && diff !== 0 && lastDiff !== 0 && diff >= 0 !== lastDiff >= 0) {
62
- return false;
63
- }
64
-
65
- if (!isNaN(diff) && diff !== 0) {
66
- lastDiff = diff;
67
- last = points[i][dim];
68
- }
69
- }
70
-
71
- return true;
72
- }
73
99
  /**
74
100
  * Draw smoothed line in monotone, in which only vertical or horizontal bezier
75
101
  * control points will be used. This should be used when points are monotone
package/lib/chart/line.js CHANGED
@@ -12,6 +12,24 @@ var dataSample = require("../processor/dataSample");
12
12
 
13
13
  require("../component/gridSimple");
14
14
 
15
+ /*
16
+ * Licensed to the Apache Software Foundation (ASF) under one
17
+ * or more contributor license agreements. See the NOTICE file
18
+ * distributed with this work for additional information
19
+ * regarding copyright ownership. The ASF licenses this file
20
+ * to you under the Apache License, Version 2.0 (the
21
+ * "License"); you may not use this file except in compliance
22
+ * with the License. You may obtain a copy of the License at
23
+ *
24
+ * http://www.apache.org/licenses/LICENSE-2.0
25
+ *
26
+ * Unless required by applicable law or agreed to in writing,
27
+ * software distributed under the License is distributed on an
28
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
29
+ * KIND, either express or implied. See the License for the
30
+ * specific language governing permissions and limitations
31
+ * under the License.
32
+ */
15
33
  // In case developer forget to include grid component
16
34
  echarts.registerVisual(visualSymbol('line', 'circle', 'line'));
17
35
  echarts.registerLayout(layoutPoints('line')); // Down sample after filter
@@ -18,9 +18,26 @@ var encodeHTML = _format.encodeHTML;
18
18
 
19
19
  var CoordinateSystem = require("../../CoordinateSystem");
20
20
 
21
- var globalObj = typeof window === 'undefined' ? global : window;
22
- var Uint32Arr = globalObj.Uint32Array || Array;
23
- var Float64Arr = globalObj.Float64Array || Array;
21
+ /*
22
+ * Licensed to the Apache Software Foundation (ASF) under one
23
+ * or more contributor license agreements. See the NOTICE file
24
+ * distributed with this work for additional information
25
+ * regarding copyright ownership. The ASF licenses this file
26
+ * to you under the Apache License, Version 2.0 (the
27
+ * "License"); you may not use this file except in compliance
28
+ * with the License. You may obtain a copy of the License at
29
+ *
30
+ * http://www.apache.org/licenses/LICENSE-2.0
31
+ *
32
+ * Unless required by applicable law or agreed to in writing,
33
+ * software distributed under the License is distributed on an
34
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
35
+ * KIND, either express or implied. See the License for the
36
+ * specific language governing permissions and limitations
37
+ * under the License.
38
+ */
39
+ var Uint32Arr = typeof Uint32Array === 'undefined' ? Array : Uint32Array;
40
+ var Float64Arr = typeof Float64Array === 'undefined' ? Array : Float64Array;
24
41
 
25
42
  function compatEc2(seriesOpt) {
26
43
  var data = seriesOpt.data;
@@ -50,7 +67,9 @@ var LinesSeries = SeriesModel.extend({
50
67
  dependencies: ['grid', 'polar'],
51
68
  visualColorAccessPath: 'lineStyle.color',
52
69
  init: function (option) {
53
- // Not using preprocessor because mergeOption may not have series.type
70
+ // The input data may be null/undefined.
71
+ option.data = option.data || []; // Not using preprocessor because mergeOption may not have series.type
72
+
54
73
  compatEc2(option);
55
74
 
56
75
  var result = this._processFlatCoordsArray(option.data);
@@ -65,6 +84,8 @@ var LinesSeries = SeriesModel.extend({
65
84
  LinesSeries.superApply(this, 'init', arguments);
66
85
  },
67
86
  mergeOption: function (option) {
87
+ // The input data may be null/undefined.
88
+ option.data = option.data || [];
68
89
  compatEc2(option);
69
90
 
70
91
  if (option.data) {
@@ -18,6 +18,24 @@ var LargeLineDraw = require("../helper/LargeLineDraw");
18
18
 
19
19
  var linesLayout = require("./linesLayout");
20
20
 
21
+ /*
22
+ * Licensed to the Apache Software Foundation (ASF) under one
23
+ * or more contributor license agreements. See the NOTICE file
24
+ * distributed with this work for additional information
25
+ * regarding copyright ownership. The ASF licenses this file
26
+ * to you under the Apache License, Version 2.0 (the
27
+ * "License"); you may not use this file except in compliance
28
+ * with the License. You may obtain a copy of the License at
29
+ *
30
+ * http://www.apache.org/licenses/LICENSE-2.0
31
+ *
32
+ * Unless required by applicable law or agreed to in writing,
33
+ * software distributed under the License is distributed on an
34
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
35
+ * KIND, either express or implied. See the License for the
36
+ * specific language governing permissions and limitations
37
+ * under the License.
38
+ */
21
39
  var _default = echarts.extendChartView({
22
40
  type: 'lines',
23
41
  init: function () {},
@@ -76,8 +94,9 @@ var _default = echarts.extendChartView({
76
94
  },
77
95
  updateTransform: function (seriesModel, ecModel, api) {
78
96
  var data = seriesModel.getData();
97
+ var pipelineContext = seriesModel.pipelineContext;
79
98
 
80
- if (!this._finished || seriesModel.pipelineContext.large) {
99
+ if (!this._finished || pipelineContext.large || pipelineContext.progressiveRender) {
81
100
  // TODO Don't have to do update in large mode. Only do it when there are millions of data.
82
101
  return {
83
102
  update: true
@@ -1,5 +1,23 @@
1
1
  var createRenderPlanner = require("../helper/createRenderPlanner");
2
2
 
3
+ /*
4
+ * Licensed to the Apache Software Foundation (ASF) under one
5
+ * or more contributor license agreements. See the NOTICE file
6
+ * distributed with this work for additional information
7
+ * regarding copyright ownership. The ASF licenses this file
8
+ * to you under the Apache License, Version 2.0 (the
9
+ * "License"); you may not use this file except in compliance
10
+ * with the License. You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing,
15
+ * software distributed under the License is distributed on an
16
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17
+ * KIND, either express or implied. See the License for the
18
+ * specific language governing permissions and limitations
19
+ * under the License.
20
+ */
3
21
  var _default = {
4
22
  seriesType: 'lines',
5
23
  plan: createRenderPlanner(),
@@ -24,7 +42,7 @@ var _default = {
24
42
 
25
43
  points = new Float32Array(segCount + totalCoordsCount * 2);
26
44
  } else {
27
- points = new Float32Array(segCount * 2);
45
+ points = new Float32Array(segCount * 4);
28
46
  }
29
47
 
30
48
  var offset = 0;
@@ -1,3 +1,21 @@
1
+ /*
2
+ * Licensed to the Apache Software Foundation (ASF) under one
3
+ * or more contributor license agreements. See the NOTICE file
4
+ * distributed with this work for additional information
5
+ * regarding copyright ownership. The ASF licenses this file
6
+ * to you under the Apache License, Version 2.0 (the
7
+ * "License"); you may not use this file except in compliance
8
+ * with the License. You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing,
13
+ * software distributed under the License is distributed on an
14
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ * KIND, either express or implied. See the License for the
16
+ * specific language governing permissions and limitations
17
+ * under the License.
18
+ */
1
19
  function normalize(a) {
2
20
  if (!(a instanceof Array)) {
3
21
  a = [a, a];
@@ -8,5 +8,23 @@ var linesLayout = require("./lines/linesLayout");
8
8
 
9
9
  var linesVisual = require("./lines/linesVisual");
10
10
 
11
+ /*
12
+ * Licensed to the Apache Software Foundation (ASF) under one
13
+ * or more contributor license agreements. See the NOTICE file
14
+ * distributed with this work for additional information
15
+ * regarding copyright ownership. The ASF licenses this file
16
+ * to you under the Apache License, Version 2.0 (the
17
+ * "License"); you may not use this file except in compliance
18
+ * with the License. You may obtain a copy of the License at
19
+ *
20
+ * http://www.apache.org/licenses/LICENSE-2.0
21
+ *
22
+ * Unless required by applicable law or agreed to in writing,
23
+ * software distributed under the License is distributed on an
24
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
25
+ * KIND, either express or implied. See the License for the
26
+ * specific language governing permissions and limitations
27
+ * under the License.
28
+ */
11
29
  echarts.registerLayout(linesLayout);
12
30
  echarts.registerVisual(linesVisual);