tvcharts 0.8.69 → 0.8.70
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.
- package/index.blank.js +1 -1
- package/index.common.js +22 -22
- package/index.js +6 -6
- package/index.simple.js +9 -9
- package/package.json +1 -1
- package/pre-publish-tmp/src/animation/basicTransition.js +243 -0
- package/pre-publish-tmp/src/animation/customGraphicKeyframeAnimation.js +143 -0
- package/pre-publish-tmp/src/animation/customGraphicTransition.js +481 -0
- package/pre-publish-tmp/src/animation/morphTransitionHelper.js +203 -0
- package/pre-publish-tmp/src/animation/universalTransition.js +650 -0
- package/pre-publish-tmp/src/chart/arrowsPlot/ArrowPlotView.js +132 -0
- package/pre-publish-tmp/src/chart/arrowsPlot/ArrowSymbolPath.js +70 -0
- package/pre-publish-tmp/src/chart/arrowsPlot/ArrowsPlotLayout.js +123 -0
- package/pre-publish-tmp/src/chart/arrowsPlot/ArrowsPlotSeries.js +88 -0
- package/pre-publish-tmp/src/chart/arrowsPlot/install.js +53 -0
- package/pre-publish-tmp/src/chart/bar/BarSeries.js +112 -0
- package/pre-publish-tmp/src/chart/bar/BarView.js +892 -0
- package/pre-publish-tmp/src/chart/bar/BaseBarSeries.js +159 -0
- package/pre-publish-tmp/src/chart/bar/PictorialBarSeries.js +95 -0
- package/pre-publish-tmp/src/chart/bar/PictorialBarView.js +630 -0
- package/pre-publish-tmp/src/chart/bar/install.js +81 -0
- package/pre-publish-tmp/src/chart/bar/installPictorialBar.js +54 -0
- package/pre-publish-tmp/src/chart/bar.js +46 -0
- package/pre-publish-tmp/src/chart/barPlot/BarPath.js +68 -0
- package/pre-publish-tmp/src/chart/barPlot/BarPlotSeries.js +139 -0
- package/pre-publish-tmp/src/chart/barPlot/BarPlotView.js +116 -0
- package/pre-publish-tmp/src/chart/barPlot/barPlotLayout.js +149 -0
- package/pre-publish-tmp/src/chart/barPlot/install.js +51 -0
- package/pre-publish-tmp/src/chart/bgColor/BgColorLayout.js +122 -0
- package/pre-publish-tmp/src/chart/bgColor/BgColorPath.js +106 -0
- package/pre-publish-tmp/src/chart/bgColor/BgColorSeries.js +98 -0
- package/pre-publish-tmp/src/chart/bgColor/BgColorView.js +119 -0
- package/pre-publish-tmp/src/chart/bgColor/install.js +73 -0
- package/pre-publish-tmp/src/chart/bgColor.js +46 -0
- package/pre-publish-tmp/src/chart/boxes/BoxesLayout.js +206 -0
- package/pre-publish-tmp/src/chart/boxes/BoxesPath.js +78 -0
- package/pre-publish-tmp/src/chart/boxes/BoxesSeries.js +131 -0
- package/pre-publish-tmp/src/chart/boxes/BoxesView.js +174 -0
- package/pre-publish-tmp/src/chart/boxes/install.js +51 -0
- package/pre-publish-tmp/src/chart/boxes/util.js +77 -0
- package/pre-publish-tmp/src/chart/boxes.js +46 -0
- package/pre-publish-tmp/src/chart/boxplot/BoxplotSeries.js +108 -0
- package/pre-publish-tmp/src/chart/boxplot/BoxplotView.js +172 -0
- package/pre-publish-tmp/src/chart/boxplot/boxplotLayout.js +181 -0
- package/pre-publish-tmp/src/chart/boxplot/boxplotTransform.js +66 -0
- package/pre-publish-tmp/src/chart/boxplot/install.js +53 -0
- package/pre-publish-tmp/src/chart/boxplot/prepareBoxplotData.js +96 -0
- package/pre-publish-tmp/src/chart/boxplot.js +46 -0
- package/pre-publish-tmp/src/chart/candlePlot/CandlePlotSeries.js +149 -0
- package/pre-publish-tmp/src/chart/candlePlot/CandlePlotView.js +133 -0
- package/pre-publish-tmp/src/chart/candlePlot/NormalBoxPath.js +66 -0
- package/pre-publish-tmp/src/chart/candlePlot/WickPath.js +57 -0
- package/pre-publish-tmp/src/chart/candlePlot/candlePlotLayout.js +244 -0
- package/pre-publish-tmp/src/chart/candlePlot/install.js +51 -0
- package/pre-publish-tmp/src/chart/candlestick/CandlestickSeries.js +138 -0
- package/pre-publish-tmp/src/chart/candlestick/CandlestickView.js +335 -0
- package/pre-publish-tmp/src/chart/candlestick/candlestickLayout.js +234 -0
- package/pre-publish-tmp/src/chart/candlestick/candlestickVisual.js +86 -0
- package/pre-publish-tmp/src/chart/candlestick/install.js +55 -0
- package/pre-publish-tmp/src/chart/candlestick/preprocessor.js +55 -0
- package/pre-publish-tmp/src/chart/candlestick.js +46 -0
- package/pre-publish-tmp/src/chart/charPlot/CharPlotLayout.js +140 -0
- package/pre-publish-tmp/src/chart/charPlot/CharPlotSeries.js +106 -0
- package/pre-publish-tmp/src/chart/charPlot/CharPlotView.js +135 -0
- package/pre-publish-tmp/src/chart/charPlot/install.js +53 -0
- package/pre-publish-tmp/src/chart/custom/CustomSeries.js +106 -0
- package/pre-publish-tmp/src/chart/custom/CustomView.js +925 -0
- package/pre-publish-tmp/src/chart/custom/install.js +49 -0
- package/pre-publish-tmp/src/chart/custom.js +46 -0
- package/pre-publish-tmp/src/chart/effectScatter/EffectScatterSeries.js +105 -0
- package/pre-publish-tmp/src/chart/effectScatter/EffectScatterView.js +99 -0
- package/pre-publish-tmp/src/chart/effectScatter/install.js +51 -0
- package/pre-publish-tmp/src/chart/effectScatter.js +46 -0
- package/pre-publish-tmp/src/chart/fills/FillPolyPath.js +106 -0
- package/pre-publish-tmp/src/chart/fills/FillsSeries.js +113 -0
- package/pre-publish-tmp/src/chart/fills/FillsView.js +148 -0
- package/pre-publish-tmp/src/chart/fills/LargeFillPolyPath.js +107 -0
- package/pre-publish-tmp/src/chart/fills/fillsLayout.js +175 -0
- package/pre-publish-tmp/src/chart/fills/install.js +73 -0
- package/pre-publish-tmp/src/chart/fills.js +46 -0
- package/pre-publish-tmp/src/chart/funnel/FunnelSeries.js +145 -0
- package/pre-publish-tmp/src/chart/funnel/FunnelView.js +198 -0
- package/pre-publish-tmp/src/chart/funnel/funnelLayout.js +344 -0
- package/pre-publish-tmp/src/chart/funnel/install.js +53 -0
- package/pre-publish-tmp/src/chart/funnel.js +46 -0
- package/pre-publish-tmp/src/chart/gauge/GaugeSeries.js +185 -0
- package/pre-publish-tmp/src/chart/gauge/GaugeView.js +560 -0
- package/pre-publish-tmp/src/chart/gauge/PointerPath.js +83 -0
- package/pre-publish-tmp/src/chart/gauge/install.js +49 -0
- package/pre-publish-tmp/src/chart/gauge.js +46 -0
- package/pre-publish-tmp/src/chart/graph/GraphSeries.js +275 -0
- package/pre-publish-tmp/src/chart/graph/GraphView.js +266 -0
- package/pre-publish-tmp/src/chart/graph/adjustEdge.js +173 -0
- package/pre-publish-tmp/src/chart/graph/categoryFilter.js +74 -0
- package/pre-publish-tmp/src/chart/graph/categoryVisual.js +90 -0
- package/pre-publish-tmp/src/chart/graph/circularLayout.js +51 -0
- package/pre-publish-tmp/src/chart/graph/circularLayoutHelper.js +191 -0
- package/pre-publish-tmp/src/chart/graph/createView.js +103 -0
- package/pre-publish-tmp/src/chart/graph/edgeVisual.js +93 -0
- package/pre-publish-tmp/src/chart/graph/forceHelper.js +185 -0
- package/pre-publish-tmp/src/chart/graph/forceLayout.js +160 -0
- package/pre-publish-tmp/src/chart/graph/install.js +97 -0
- package/pre-publish-tmp/src/chart/graph/simpleLayout.js +78 -0
- package/pre-publish-tmp/src/chart/graph/simpleLayoutHelper.js +70 -0
- package/pre-publish-tmp/src/chart/graph.js +46 -0
- package/pre-publish-tmp/src/chart/heatmap/HeatmapLayer.js +166 -0
- package/pre-publish-tmp/src/chart/heatmap/HeatmapSeries.js +89 -0
- package/pre-publish-tmp/src/chart/heatmap/HeatmapView.js +310 -0
- package/pre-publish-tmp/src/chart/heatmap/install.js +49 -0
- package/pre-publish-tmp/src/chart/heatmap.js +46 -0
- package/pre-publish-tmp/src/chart/helper/EffectLine.js +207 -0
- package/pre-publish-tmp/src/chart/helper/EffectPolyline.js +134 -0
- package/pre-publish-tmp/src/chart/helper/EffectSymbol.js +207 -0
- package/pre-publish-tmp/src/chart/helper/LargeLineDraw.js +302 -0
- package/pre-publish-tmp/src/chart/helper/LargeSymbolDraw.js +309 -0
- package/pre-publish-tmp/src/chart/helper/Line.js +420 -0
- package/pre-publish-tmp/src/chart/helper/LineDraw.js +167 -0
- package/pre-publish-tmp/src/chart/helper/LinePath.js +111 -0
- package/pre-publish-tmp/src/chart/helper/Polyline.js +107 -0
- package/pre-publish-tmp/src/chart/helper/Symbol.js +380 -0
- package/pre-publish-tmp/src/chart/helper/SymbolDraw.js +217 -0
- package/pre-publish-tmp/src/chart/helper/createClipPathFromCoordSys.js +145 -0
- package/pre-publish-tmp/src/chart/helper/createGraphFromNodeEdge.js +114 -0
- package/pre-publish-tmp/src/chart/helper/createRenderPlanner.js +62 -0
- package/pre-publish-tmp/src/chart/helper/createSeriesData.js +162 -0
- package/pre-publish-tmp/src/chart/helper/createSeriesDataSimply.js +68 -0
- package/pre-publish-tmp/src/chart/helper/enableAriaDecalForTree.js +58 -0
- package/pre-publish-tmp/src/chart/helper/labelHelper.js +77 -0
- package/pre-publish-tmp/src/chart/helper/multipleGraphEdgeHelper.js +226 -0
- package/pre-publish-tmp/src/chart/helper/sectorHelper.js +62 -0
- package/pre-publish-tmp/src/chart/helper/treeHelper.js +92 -0
- package/pre-publish-tmp/src/chart/helper/whiskerBoxCommon.js +138 -0
- package/pre-publish-tmp/src/chart/hlines/HLinesSeries.js +140 -0
- package/pre-publish-tmp/src/chart/hlines/HLinesView.js +100 -0
- package/pre-publish-tmp/src/chart/hlines/hLinesLayout.js +90 -0
- package/pre-publish-tmp/src/chart/hlines/install.js +73 -0
- package/pre-publish-tmp/src/chart/hlines.js +46 -0
- package/pre-publish-tmp/src/chart/labels/LabelsSeries.js +146 -0
- package/pre-publish-tmp/src/chart/labels/LabelsView.js +186 -0
- package/pre-publish-tmp/src/chart/labels/SymbolPath.js +114 -0
- package/pre-publish-tmp/src/chart/labels/install.js +55 -0
- package/pre-publish-tmp/src/chart/labels/labelsLayout.js +301 -0
- package/pre-publish-tmp/src/chart/labels/labelsVisual.js +185 -0
- package/pre-publish-tmp/src/chart/labels.js +46 -0
- package/pre-publish-tmp/src/chart/line/LineSeries.js +155 -0
- package/pre-publish-tmp/src/chart/line/LineView.js +1121 -0
- package/pre-publish-tmp/src/chart/line/helper.js +123 -0
- package/pre-publish-tmp/src/chart/line/install.js +69 -0
- package/pre-publish-tmp/src/chart/line/lineAnimationDiff.js +165 -0
- package/pre-publish-tmp/src/chart/line/poly.js +353 -0
- package/pre-publish-tmp/src/chart/line.js +46 -0
- package/pre-publish-tmp/src/chart/lineFills/LineFillsLayout.js +125 -0
- package/pre-publish-tmp/src/chart/lineFills/LineFillsPath.js +82 -0
- package/pre-publish-tmp/src/chart/lineFills/LineFillsSeries.js +126 -0
- package/pre-publish-tmp/src/chart/lineFills/LineFillsView.js +120 -0
- package/pre-publish-tmp/src/chart/lineFills/install.js +51 -0
- package/pre-publish-tmp/src/chart/lineFills.js +46 -0
- package/pre-publish-tmp/src/chart/lines/LinesSeries.js +310 -0
- package/pre-publish-tmp/src/chart/lines/LinesView.js +184 -0
- package/pre-publish-tmp/src/chart/lines/install.js +53 -0
- package/pre-publish-tmp/src/chart/lines/linesLayout.js +113 -0
- package/pre-publish-tmp/src/chart/lines.js +46 -0
- package/pre-publish-tmp/src/chart/linesPlot/BarPath.js +108 -0
- package/pre-publish-tmp/src/chart/linesPlot/GradientBarPath.js +119 -0
- package/pre-publish-tmp/src/chart/linesPlot/GradientHistogramPlotPath.js +106 -0
- package/pre-publish-tmp/src/chart/linesPlot/GradientLinePath.js +117 -0
- package/pre-publish-tmp/src/chart/linesPlot/HistogramPlotPath.js +97 -0
- package/pre-publish-tmp/src/chart/linesPlot/LinePlotPath.js +137 -0
- package/pre-publish-tmp/src/chart/linesPlot/LinesPlotSeries.js +137 -0
- package/pre-publish-tmp/src/chart/linesPlot/LinesPlotView.js +641 -0
- package/pre-publish-tmp/src/chart/linesPlot/PolyPlotPath.js +120 -0
- package/pre-publish-tmp/src/chart/linesPlot/SymbolPath.js +100 -0
- package/pre-publish-tmp/src/chart/linesPlot/install.js +52 -0
- package/pre-publish-tmp/src/chart/linesPlot/linesPlotLayout.js +278 -0
- package/pre-publish-tmp/src/chart/linesPlot.js +46 -0
- package/pre-publish-tmp/src/chart/map/MapSeries.js +247 -0
- package/pre-publish-tmp/src/chart/map/MapView.js +177 -0
- package/pre-publish-tmp/src/chart/map/install.js +58 -0
- package/pre-publish-tmp/src/chart/map/mapDataStatistic.js +104 -0
- package/pre-publish-tmp/src/chart/map/mapSymbolLayout.js +86 -0
- package/pre-publish-tmp/src/chart/map.js +46 -0
- package/pre-publish-tmp/src/chart/mineLines/LinesPath.js +226 -0
- package/pre-publish-tmp/src/chart/mineLines/MineLinesLayout.js +118 -0
- package/pre-publish-tmp/src/chart/mineLines/MineLinesSeries.js +128 -0
- package/pre-publish-tmp/src/chart/mineLines/MineLinesView.js +140 -0
- package/pre-publish-tmp/src/chart/mineLines/install.js +51 -0
- package/pre-publish-tmp/src/chart/mineLines.js +46 -0
- package/pre-publish-tmp/src/chart/minePolyLines/MinePolyLinesLayout.js +102 -0
- package/pre-publish-tmp/src/chart/minePolyLines/MinePolyLinesSeries.js +129 -0
- package/pre-publish-tmp/src/chart/minePolyLines/MinePolyLinesView.js +143 -0
- package/pre-publish-tmp/src/chart/minePolyLines/PolyLinesPath.js +169 -0
- package/pre-publish-tmp/src/chart/minePolyLines/install.js +51 -0
- package/pre-publish-tmp/src/chart/parallel/ParallelSeries.js +127 -0
- package/pre-publish-tmp/src/chart/parallel/ParallelView.js +221 -0
- package/pre-publish-tmp/src/chart/parallel/install.js +54 -0
- package/pre-publish-tmp/src/chart/parallel.js +46 -0
- package/pre-publish-tmp/src/chart/pictorialBar.js +46 -0
- package/pre-publish-tmp/src/chart/pie/PieSeries.js +216 -0
- package/pre-publish-tmp/src/chart/pie/PieView.js +283 -0
- package/pre-publish-tmp/src/chart/pie/install.js +58 -0
- package/pre-publish-tmp/src/chart/pie/labelLayout.js +474 -0
- package/pre-publish-tmp/src/chart/pie/pieLayout.js +238 -0
- package/pre-publish-tmp/src/chart/pie.js +46 -0
- package/pre-publish-tmp/src/chart/playbackOrder/PlaybackHtmlContent.js +179 -0
- package/pre-publish-tmp/src/chart/playbackOrder/PlaybackOrderLayout.js +108 -0
- package/pre-publish-tmp/src/chart/playbackOrder/PlaybackOrderSeries.js +103 -0
- package/pre-publish-tmp/src/chart/playbackOrder/PlaybackOrderView.js +311 -0
- package/pre-publish-tmp/src/chart/playbackOrder/SymbolPath.js +87 -0
- package/pre-publish-tmp/src/chart/playbackOrder/install.js +52 -0
- package/pre-publish-tmp/src/chart/radar/RadarSeries.js +134 -0
- package/pre-publish-tmp/src/chart/radar/RadarView.js +225 -0
- package/pre-publish-tmp/src/chart/radar/backwardCompat.js +75 -0
- package/pre-publish-tmp/src/chart/radar/install.js +58 -0
- package/pre-publish-tmp/src/chart/radar/radarLayout.js +82 -0
- package/pre-publish-tmp/src/chart/radar.js +46 -0
- package/pre-publish-tmp/src/chart/sankey/SankeySeries.js +215 -0
- package/pre-publish-tmp/src/chart/sankey/SankeyView.js +324 -0
- package/pre-publish-tmp/src/chart/sankey/install.js +67 -0
- package/pre-publish-tmp/src/chart/sankey/sankeyLayout.js +489 -0
- package/pre-publish-tmp/src/chart/sankey/sankeyVisual.js +92 -0
- package/pre-publish-tmp/src/chart/sankey.js +46 -0
- package/pre-publish-tmp/src/chart/scatter/ScatterSeries.js +118 -0
- package/pre-publish-tmp/src/chart/scatter/ScatterView.js +134 -0
- package/pre-publish-tmp/src/chart/scatter/install.js +55 -0
- package/pre-publish-tmp/src/chart/scatter.js +46 -0
- package/pre-publish-tmp/src/chart/strategy/StrategyLayout.js +159 -0
- package/pre-publish-tmp/src/chart/strategy/StrategySeries.js +102 -0
- package/pre-publish-tmp/src/chart/strategy/StrategyView.js +274 -0
- package/pre-publish-tmp/src/chart/strategy/SymbolPath.js +85 -0
- package/pre-publish-tmp/src/chart/strategy/install.js +52 -0
- package/pre-publish-tmp/src/chart/sunburst/SunburstPiece.js +230 -0
- package/pre-publish-tmp/src/chart/sunburst/SunburstSeries.js +206 -0
- package/pre-publish-tmp/src/chart/sunburst/SunburstView.js +206 -0
- package/pre-publish-tmp/src/chart/sunburst/install.js +58 -0
- package/pre-publish-tmp/src/chart/sunburst/sunburstAction.js +108 -0
- package/pre-publish-tmp/src/chart/sunburst/sunburstLayout.js +216 -0
- package/pre-publish-tmp/src/chart/sunburst/sunburstVisual.js +75 -0
- package/pre-publish-tmp/src/chart/sunburst.js +46 -0
- package/pre-publish-tmp/src/chart/themeRiver/ThemeRiverSeries.js +260 -0
- package/pre-publish-tmp/src/chart/themeRiver/ThemeRiverView.js +186 -0
- package/pre-publish-tmp/src/chart/themeRiver/install.js +35 -0
- package/pre-publish-tmp/src/chart/themeRiver/themeRiverLayout.js +157 -0
- package/pre-publish-tmp/src/chart/themeRiver.js +46 -0
- package/pre-publish-tmp/src/chart/tree/TreeSeries.js +187 -0
- package/pre-publish-tmp/src/chart/tree/TreeView.js +622 -0
- package/pre-publish-tmp/src/chart/tree/install.js +55 -0
- package/pre-publish-tmp/src/chart/tree/layoutHelper.js +288 -0
- package/pre-publish-tmp/src/chart/tree/treeAction.js +82 -0
- package/pre-publish-tmp/src/chart/tree/treeLayout.js +139 -0
- package/pre-publish-tmp/src/chart/tree/treeVisual.js +57 -0
- package/pre-publish-tmp/src/chart/tree.js +46 -0
- package/pre-publish-tmp/src/chart/treemap/Breadcrumb.js +187 -0
- package/pre-publish-tmp/src/chart/treemap/TreemapSeries.js +367 -0
- package/pre-publish-tmp/src/chart/treemap/TreemapView.js +852 -0
- package/pre-publish-tmp/src/chart/treemap/install.js +55 -0
- package/pre-publish-tmp/src/chart/treemap/treemapAction.js +75 -0
- package/pre-publish-tmp/src/chart/treemap/treemapLayout.js +499 -0
- package/pre-publish-tmp/src/chart/treemap/treemapVisual.js +194 -0
- package/pre-publish-tmp/src/chart/treemap.js +46 -0
- package/pre-publish-tmp/src/component/alarm/AlarmModel.js +116 -0
- package/pre-publish-tmp/src/component/alarm/AlarmView.js +457 -0
- package/pre-publish-tmp/src/component/alarm/install.js +61 -0
- package/pre-publish-tmp/src/component/aria/install.js +49 -0
- package/pre-publish-tmp/src/component/aria/preprocessor.js +61 -0
- package/pre-publish-tmp/src/component/aria.js +46 -0
- package/pre-publish-tmp/src/component/axis/AngleAxisView.js +323 -0
- package/pre-publish-tmp/src/component/axis/AxisBuilder.js +626 -0
- package/pre-publish-tmp/src/component/axis/AxisView.js +181 -0
- package/pre-publish-tmp/src/component/axis/CartesianAxisView.js +247 -0
- package/pre-publish-tmp/src/component/axis/ParallelAxisView.js +174 -0
- package/pre-publish-tmp/src/component/axis/RadiusAxisView.js +206 -0
- package/pre-publish-tmp/src/component/axis/SingleAxisView.js +146 -0
- package/pre-publish-tmp/src/component/axis/axisSplitHelper.js +124 -0
- package/pre-publish-tmp/src/component/axis/globalListener.js +81 -0
- package/pre-publish-tmp/src/component/axisPointer/AxisPointerModel.js +123 -0
- package/pre-publish-tmp/src/component/axisPointer/AxisPointerView.js +124 -0
- package/pre-publish-tmp/src/component/axisPointer/BaseAxisPointer.js +513 -0
- package/pre-publish-tmp/src/component/axisPointer/CartesianAxisPointer.js +148 -0
- package/pre-publish-tmp/src/component/axisPointer/PolarAxisPointer.js +144 -0
- package/pre-publish-tmp/src/component/axisPointer/SingleAxisPointer.js +145 -0
- package/pre-publish-tmp/src/component/axisPointer/axisTrigger.js +460 -0
- package/pre-publish-tmp/src/component/axisPointer/findPointFromSeries.js +98 -0
- package/pre-publish-tmp/src/component/axisPointer/globalListener.js +142 -0
- package/pre-publish-tmp/src/component/axisPointer/install.js +89 -0
- package/pre-publish-tmp/src/component/axisPointer/modelHelper.js +298 -0
- package/pre-publish-tmp/src/component/axisPointer/viewHelper.js +201 -0
- package/pre-publish-tmp/src/component/axisPointer.js +46 -0
- package/pre-publish-tmp/src/component/bgRect/install.js +128 -0
- package/pre-publish-tmp/src/component/brush/BrushModel.js +136 -0
- package/pre-publish-tmp/src/component/brush/BrushView.js +111 -0
- package/pre-publish-tmp/src/component/brush/install.js +101 -0
- package/pre-publish-tmp/src/component/brush/preprocessor.js +87 -0
- package/pre-publish-tmp/src/component/brush/selector.js +115 -0
- package/pre-publish-tmp/src/component/brush/visualEncoding.js +257 -0
- package/pre-publish-tmp/src/component/brush.js +46 -0
- package/pre-publish-tmp/src/component/calendar/CalendarView.js +390 -0
- package/pre-publish-tmp/src/component/calendar/install.js +51 -0
- package/pre-publish-tmp/src/component/calendar.js +46 -0
- package/pre-publish-tmp/src/component/cursorPointer/install.js +130 -0
- package/pre-publish-tmp/src/component/dataZoom/AxisProxy.js +526 -0
- package/pre-publish-tmp/src/component/dataZoom/DataZoomModel.js +520 -0
- package/pre-publish-tmp/src/component/dataZoom/DataZoomView.js +61 -0
- package/pre-publish-tmp/src/component/dataZoom/InsideZoomModel.js +66 -0
- package/pre-publish-tmp/src/component/dataZoom/InsideZoomView.js +304 -0
- package/pre-publish-tmp/src/component/dataZoom/SelectZoomModel.js +56 -0
- package/pre-publish-tmp/src/component/dataZoom/SelectZoomView.js +56 -0
- package/pre-publish-tmp/src/component/dataZoom/SliderZoomModel.js +126 -0
- package/pre-publish-tmp/src/component/dataZoom/SliderZoomView.js +817 -0
- package/pre-publish-tmp/src/component/dataZoom/dataZoomAction.js +84 -0
- package/pre-publish-tmp/src/component/dataZoom/dataZoomProcessor.js +152 -0
- package/pre-publish-tmp/src/component/dataZoom/helper.js +220 -0
- package/pre-publish-tmp/src/component/dataZoom/history.js +116 -0
- package/pre-publish-tmp/src/component/dataZoom/install.js +52 -0
- package/pre-publish-tmp/src/component/dataZoom/installCommon.js +58 -0
- package/pre-publish-tmp/src/component/dataZoom/installDataZoomInside.js +53 -0
- package/pre-publish-tmp/src/component/dataZoom/installDataZoomSelect.js +51 -0
- package/pre-publish-tmp/src/component/dataZoom/installDataZoomSlider.js +51 -0
- package/pre-publish-tmp/src/component/dataZoom/roams.js +319 -0
- package/pre-publish-tmp/src/component/dataZoom.js +46 -0
- package/pre-publish-tmp/src/component/dataZoomInside.js +46 -0
- package/pre-publish-tmp/src/component/dataZoomSelect.js +50 -0
- package/pre-publish-tmp/src/component/dataZoomSlider.js +46 -0
- package/pre-publish-tmp/src/component/dataset/install.js +99 -0
- package/pre-publish-tmp/src/component/dataset.js +46 -0
- package/pre-publish-tmp/src/component/geo/GeoView.js +110 -0
- package/pre-publish-tmp/src/component/geo/install.js +141 -0
- package/pre-publish-tmp/src/component/geo.js +46 -0
- package/pre-publish-tmp/src/component/graphic/GraphicModel.js +273 -0
- package/pre-publish-tmp/src/component/graphic/GraphicView.js +531 -0
- package/pre-publish-tmp/src/component/graphic/install.js +78 -0
- package/pre-publish-tmp/src/component/graphic.js +46 -0
- package/pre-publish-tmp/src/component/grid/install.js +50 -0
- package/pre-publish-tmp/src/component/grid/installSimple.js +96 -0
- package/pre-publish-tmp/src/component/grid.js +46 -0
- package/pre-publish-tmp/src/component/gridSimple.js +46 -0
- package/pre-publish-tmp/src/component/helper/BrushController.js +751 -0
- package/pre-publish-tmp/src/component/helper/BrushTargetManager.js +343 -0
- package/pre-publish-tmp/src/component/helper/MapDraw.js +673 -0
- package/pre-publish-tmp/src/component/helper/RoamController.js +310 -0
- package/pre-publish-tmp/src/component/helper/brushHelper.js +71 -0
- package/pre-publish-tmp/src/component/helper/interactionMutex.js +77 -0
- package/pre-publish-tmp/src/component/helper/listComponent.js +87 -0
- package/pre-publish-tmp/src/component/legend/LegendModel.js +318 -0
- package/pre-publish-tmp/src/component/legend/LegendView.js +524 -0
- package/pre-publish-tmp/src/component/legend/ScrollableLegendModel.js +105 -0
- package/pre-publish-tmp/src/component/legend/ScrollableLegendView.js +401 -0
- package/pre-publish-tmp/src/component/legend/install.js +50 -0
- package/pre-publish-tmp/src/component/legend/installLegendPlain.js +56 -0
- package/pre-publish-tmp/src/component/legend/installLegendScroll.js +54 -0
- package/pre-publish-tmp/src/component/legend/legendAction.js +113 -0
- package/pre-publish-tmp/src/component/legend.js +47 -0
- package/pre-publish-tmp/src/component/legendPlain.js +47 -0
- package/pre-publish-tmp/src/component/legendScroll.js +49 -0
- package/pre-publish-tmp/src/component/limitTip/install.js +115 -0
- package/pre-publish-tmp/src/component/logo/install.js +117 -0
- package/pre-publish-tmp/src/component/markArea.js +46 -0
- package/pre-publish-tmp/src/component/markLabel.js +46 -0
- package/pre-publish-tmp/src/component/markLine.js +46 -0
- package/pre-publish-tmp/src/component/markPoint.js +47 -0
- package/pre-publish-tmp/src/component/marker/MarkAreaModel.js +85 -0
- package/pre-publish-tmp/src/component/marker/MarkAreaView.js +362 -0
- package/pre-publish-tmp/src/component/marker/MarkLabelModal.js +139 -0
- package/pre-publish-tmp/src/component/marker/MarkLabelView.js +918 -0
- package/pre-publish-tmp/src/component/marker/MarkLineModel.js +88 -0
- package/pre-publish-tmp/src/component/marker/MarkLineView.js +363 -0
- package/pre-publish-tmp/src/component/marker/MarkPointModel.js +82 -0
- package/pre-publish-tmp/src/component/marker/MarkPointView.js +191 -0
- package/pre-publish-tmp/src/component/marker/MarkerModel.js +166 -0
- package/pre-publish-tmp/src/component/marker/MarkerView.js +95 -0
- package/pre-publish-tmp/src/component/marker/checkMarkerInSeries.js +56 -0
- package/pre-publish-tmp/src/component/marker/installMarkArea.js +56 -0
- package/pre-publish-tmp/src/component/marker/installMarkLabel.js +38 -0
- package/pre-publish-tmp/src/component/marker/installMarkLine.js +38 -0
- package/pre-publish-tmp/src/component/marker/installMarkPoint.js +38 -0
- package/pre-publish-tmp/src/component/marker/markerHelper.js +188 -0
- package/pre-publish-tmp/src/component/parallel/ParallelView.js +137 -0
- package/pre-publish-tmp/src/component/parallel/install.js +73 -0
- package/pre-publish-tmp/src/component/parallel.js +46 -0
- package/pre-publish-tmp/src/component/playback/PlaybackOrderModel.js +51 -0
- package/pre-publish-tmp/src/component/playback/PlaybackOrderView.js +1309 -0
- package/pre-publish-tmp/src/component/playback/PlaybackSelectModel.js +55 -0
- package/pre-publish-tmp/src/component/playback/PlaybackSelectView.js +244 -0
- package/pre-publish-tmp/src/component/playback/install.js +46 -0
- package/pre-publish-tmp/src/component/polar/install.js +91 -0
- package/pre-publish-tmp/src/component/polar.js +46 -0
- package/pre-publish-tmp/src/component/radar/RadarView.js +203 -0
- package/pre-publish-tmp/src/component/radar/install.js +63 -0
- package/pre-publish-tmp/src/component/radar.js +46 -0
- package/pre-publish-tmp/src/component/singleAxis/install.js +73 -0
- package/pre-publish-tmp/src/component/singleAxis.js +46 -0
- package/pre-publish-tmp/src/component/table/TableModel.js +95 -0
- package/pre-publish-tmp/src/component/table/TableView.js +462 -0
- package/pre-publish-tmp/src/component/table/install.js +49 -0
- package/pre-publish-tmp/src/component/table.js +46 -0
- package/pre-publish-tmp/src/component/timeline/SliderTimelineModel.js +159 -0
- package/pre-publish-tmp/src/component/timeline/SliderTimelineView.js +653 -0
- package/pre-publish-tmp/src/component/timeline/TimelineAxis.js +71 -0
- package/pre-publish-tmp/src/component/timeline/TimelineModel.js +188 -0
- package/pre-publish-tmp/src/component/timeline/TimelineView.js +56 -0
- package/pre-publish-tmp/src/component/timeline/install.js +39 -0
- package/pre-publish-tmp/src/component/timeline/preprocessor.js +113 -0
- package/pre-publish-tmp/src/component/timeline/timelineAction.js +82 -0
- package/pre-publish-tmp/src/component/timeline.js +49 -0
- package/pre-publish-tmp/src/component/title/install.js +229 -0
- package/pre-publish-tmp/src/component/title.js +46 -0
- package/pre-publish-tmp/src/component/toolbox/ToolboxModel.js +108 -0
- package/pre-publish-tmp/src/component/toolbox/ToolboxView.js +298 -0
- package/pre-publish-tmp/src/component/toolbox/feature/Brush.js +134 -0
- package/pre-publish-tmp/src/component/toolbox/feature/DataView.js +448 -0
- package/pre-publish-tmp/src/component/toolbox/feature/DataZoom.js +251 -0
- package/pre-publish-tmp/src/component/toolbox/feature/MagicType.js +210 -0
- package/pre-publish-tmp/src/component/toolbox/feature/Restore.js +79 -0
- package/pre-publish-tmp/src/component/toolbox/feature/SaveAsImage.js +145 -0
- package/pre-publish-tmp/src/component/toolbox/install.js +64 -0
- package/pre-publish-tmp/src/component/toolbox.js +46 -0
- package/pre-publish-tmp/src/component/tooltip/TooltipHTMLContent.js +398 -0
- package/pre-publish-tmp/src/component/tooltip/TooltipModel.js +130 -0
- package/pre-publish-tmp/src/component/tooltip/TooltipRichContent.js +209 -0
- package/pre-publish-tmp/src/component/tooltip/TooltipView.js +907 -0
- package/pre-publish-tmp/src/component/tooltip/helper.js +78 -0
- package/pre-publish-tmp/src/component/tooltip/install.js +81 -0
- package/pre-publish-tmp/src/component/tooltip/seriesFormatTooltip.js +142 -0
- package/pre-publish-tmp/src/component/tooltip/tooltipMarkup.js +324 -0
- package/pre-publish-tmp/src/component/tooltip.js +46 -0
- package/pre-publish-tmp/src/component/transform/filterTransform.js +96 -0
- package/pre-publish-tmp/src/component/transform/install.js +49 -0
- package/pre-publish-tmp/src/component/transform/sortTransform.js +155 -0
- package/pre-publish-tmp/src/component/transform.js +46 -0
- package/pre-publish-tmp/src/component/visualMap/ContinuousModel.js +256 -0
- package/pre-publish-tmp/src/component/visualMap/ContinuousView.js +688 -0
- package/pre-publish-tmp/src/component/visualMap/PiecewiseModel.js +439 -0
- package/pre-publish-tmp/src/component/visualMap/PiecewiseView.js +213 -0
- package/pre-publish-tmp/src/component/visualMap/VisualMapModel.js +413 -0
- package/pre-publish-tmp/src/component/visualMap/VisualMapView.js +154 -0
- package/pre-publish-tmp/src/component/visualMap/helper.js +90 -0
- package/pre-publish-tmp/src/component/visualMap/install.js +52 -0
- package/pre-publish-tmp/src/component/visualMap/installCommon.js +63 -0
- package/pre-publish-tmp/src/component/visualMap/installVisualMapContinuous.js +51 -0
- package/pre-publish-tmp/src/component/visualMap/installVisualMapPiecewise.js +51 -0
- package/pre-publish-tmp/src/component/visualMap/preprocessor.js +78 -0
- package/pre-publish-tmp/src/component/visualMap/typeDefaulter.js +48 -0
- package/pre-publish-tmp/src/component/visualMap/visualEncoding.js +108 -0
- package/pre-publish-tmp/src/component/visualMap.js +46 -0
- package/pre-publish-tmp/src/component/visualMapContinuous.js +46 -0
- package/pre-publish-tmp/src/component/visualMapPiecewise.js +46 -0
- package/pre-publish-tmp/src/coord/Axis.js +301 -0
- package/pre-publish-tmp/src/coord/View.js +251 -0
- package/pre-publish-tmp/src/coord/axisAlignTicks.js +140 -0
- package/pre-publish-tmp/src/coord/axisDefault.js +211 -0
- package/pre-publish-tmp/src/coord/axisHelper.js +374 -0
- package/pre-publish-tmp/src/coord/axisModelCreator.js +110 -0
- package/pre-publish-tmp/src/coord/axisTickLabelBuilder.js +435 -0
- package/pre-publish-tmp/src/coord/calendar/Calendar.js +374 -0
- package/pre-publish-tmp/src/coord/calendar/CalendarModel.js +160 -0
- package/pre-publish-tmp/src/coord/cartesian/Axis2D.js +94 -0
- package/pre-publish-tmp/src/coord/cartesian/AxisModel.js +62 -0
- package/pre-publish-tmp/src/coord/cartesian/Cartesian.js +74 -0
- package/pre-publish-tmp/src/coord/cartesian/Cartesian2D.js +185 -0
- package/pre-publish-tmp/src/coord/cartesian/Grid.js +508 -0
- package/pre-publish-tmp/src/coord/cartesian/GridModel.js +72 -0
- package/pre-publish-tmp/src/coord/cartesian/cartesianAxisHelper.js +119 -0
- package/pre-publish-tmp/src/coord/cartesian/defaultAxisExtentFromData.js +223 -0
- package/pre-publish-tmp/src/coord/cartesian/prepareCustom.js +74 -0
- package/pre-publish-tmp/src/coord/geo/Geo.js +209 -0
- package/pre-publish-tmp/src/coord/geo/GeoJSONResource.js +144 -0
- package/pre-publish-tmp/src/coord/geo/GeoModel.js +212 -0
- package/pre-publish-tmp/src/coord/geo/GeoSVGResource.js +333 -0
- package/pre-publish-tmp/src/coord/geo/Region.js +286 -0
- package/pre-publish-tmp/src/coord/geo/fix/diaoyuIsland.js +56 -0
- package/pre-publish-tmp/src/coord/geo/fix/nanhai.js +73 -0
- package/pre-publish-tmp/src/coord/geo/geoCreator.js +236 -0
- package/pre-publish-tmp/src/coord/geo/geoSourceManager.js +121 -0
- package/pre-publish-tmp/src/coord/geo/parseGeoJson.js +146 -0
- package/pre-publish-tmp/src/coord/geo/prepareCustom.js +79 -0
- package/pre-publish-tmp/src/coord/parallel/AxisModel.js +114 -0
- package/pre-publish-tmp/src/coord/parallel/Parallel.js +410 -0
- package/pre-publish-tmp/src/coord/parallel/ParallelAxis.js +59 -0
- package/pre-publish-tmp/src/coord/parallel/ParallelModel.js +122 -0
- package/pre-publish-tmp/src/coord/parallel/parallelCreator.js +71 -0
- package/pre-publish-tmp/src/coord/parallel/parallelPreprocessor.js +84 -0
- package/pre-publish-tmp/src/coord/polar/AngleAxis.js +111 -0
- package/pre-publish-tmp/src/coord/polar/AxisModel.js +83 -0
- package/pre-publish-tmp/src/coord/polar/Polar.js +216 -0
- package/pre-publish-tmp/src/coord/polar/PolarModel.js +73 -0
- package/pre-publish-tmp/src/coord/polar/RadiusAxis.js +58 -0
- package/pre-publish-tmp/src/coord/polar/polarCreator.js +158 -0
- package/pre-publish-tmp/src/coord/polar/prepareCustom.js +86 -0
- package/pre-publish-tmp/src/coord/radar/IndicatorAxis.js +57 -0
- package/pre-publish-tmp/src/coord/radar/Radar.js +194 -0
- package/pre-publish-tmp/src/coord/radar/RadarModel.js +159 -0
- package/pre-publish-tmp/src/coord/scaleRawExtentInfo.js +254 -0
- package/pre-publish-tmp/src/coord/single/AxisModel.js +103 -0
- package/pre-publish-tmp/src/coord/single/Single.js +210 -0
- package/pre-publish-tmp/src/coord/single/SingleAxis.js +66 -0
- package/pre-publish-tmp/src/coord/single/prepareCustom.js +70 -0
- package/pre-publish-tmp/src/coord/single/singleAxisHelper.js +88 -0
- package/pre-publish-tmp/src/coord/single/singleCreator.js +73 -0
- package/pre-publish-tmp/src/core/CoordinateSystem.js +74 -0
- package/pre-publish-tmp/src/core/ExtensionAPI.js +59 -0
- package/pre-publish-tmp/src/core/Scheduler.js +491 -0
- package/pre-publish-tmp/src/core/echarts.js +3068 -0
- package/pre-publish-tmp/src/core/impl.js +65 -0
- package/pre-publish-tmp/src/core/lifecycle.js +47 -0
- package/pre-publish-tmp/src/core/locale.js +88 -0
- package/pre-publish-tmp/src/core/task.js +345 -0
- package/pre-publish-tmp/src/data/DataStore.js +1099 -0
- package/pre-publish-tmp/src/data/Graph.js +459 -0
- package/pre-publish-tmp/src/data/OrdinalMeta.js +313 -0
- package/pre-publish-tmp/src/data/SeriesData.js +1027 -0
- package/pre-publish-tmp/src/data/SeriesDimensionDefine.js +91 -0
- package/pre-publish-tmp/src/data/Source.js +302 -0
- package/pre-publish-tmp/src/data/Tree.js +353 -0
- package/pre-publish-tmp/src/data/helper/SeriesDataSchema.js +224 -0
- package/pre-publish-tmp/src/data/helper/createDimensions.js +322 -0
- package/pre-publish-tmp/src/data/helper/dataProvider.js +385 -0
- package/pre-publish-tmp/src/data/helper/dataStackHelper.js +179 -0
- package/pre-publish-tmp/src/data/helper/dataValueHelper.js +246 -0
- package/pre-publish-tmp/src/data/helper/dimensionHelper.js +172 -0
- package/pre-publish-tmp/src/data/helper/linkList.js +46 -0
- package/pre-publish-tmp/src/data/helper/linkSeriesData.js +150 -0
- package/pre-publish-tmp/src/data/helper/sourceHelper.js +354 -0
- package/pre-publish-tmp/src/data/helper/sourceManager.js +417 -0
- package/pre-publish-tmp/src/data/helper/transform.js +417 -0
- package/pre-publish-tmp/src/echarts.js +66 -0
- package/pre-publish-tmp/src/export/all.js +46 -0
- package/pre-publish-tmp/src/export/api/format.js +44 -0
- package/pre-publish-tmp/src/export/api/graphic.js +44 -0
- package/pre-publish-tmp/src/export/api/helper.js +128 -0
- package/pre-publish-tmp/src/export/api/number.js +44 -0
- package/pre-publish-tmp/src/export/api/time.js +45 -0
- package/pre-publish-tmp/src/export/api/util.js +44 -0
- package/pre-publish-tmp/src/export/api.js +114 -0
- package/pre-publish-tmp/src/export/charts.js +85 -0
- package/pre-publish-tmp/src/export/components.js +81 -0
- package/pre-publish-tmp/src/export/core.js +51 -0
- package/pre-publish-tmp/src/export/features.js +46 -0
- package/pre-publish-tmp/src/export/renderers.js +45 -0
- package/pre-publish-tmp/src/extension.js +110 -0
- package/pre-publish-tmp/src/label/LabelManager.js +435 -0
- package/pre-publish-tmp/src/label/installLabelLayout.js +65 -0
- package/pre-publish-tmp/src/label/labelGuideHelper.js +541 -0
- package/pre-publish-tmp/src/label/labelLayoutHelper.js +301 -0
- package/pre-publish-tmp/src/label/labelStyle.js +484 -0
- package/pre-publish-tmp/src/label/sectorLabel.js +201 -0
- package/pre-publish-tmp/src/layout/barGrid.js +477 -0
- package/pre-publish-tmp/src/layout/barPolar.js +254 -0
- package/pre-publish-tmp/src/layout/points.js +105 -0
- package/pre-publish-tmp/src/legacy/dataSelectAction.js +116 -0
- package/pre-publish-tmp/src/legacy/getTextRect.js +59 -0
- package/pre-publish-tmp/src/loading/default.js +161 -0
- package/pre-publish-tmp/src/model/Component.js +233 -0
- package/pre-publish-tmp/src/model/Global.js +793 -0
- package/pre-publish-tmp/src/model/Model.js +179 -0
- package/pre-publish-tmp/src/model/OptionManager.js +459 -0
- package/pre-publish-tmp/src/model/Series.js +588 -0
- package/pre-publish-tmp/src/model/globalDefault.js +132 -0
- package/pre-publish-tmp/src/model/internalComponentCreator.js +66 -0
- package/pre-publish-tmp/src/model/mixin/areaStyle.js +59 -0
- package/pre-publish-tmp/src/model/mixin/dataFormat.js +202 -0
- package/pre-publish-tmp/src/model/mixin/itemStyle.js +58 -0
- package/pre-publish-tmp/src/model/mixin/lineStyle.js +59 -0
- package/pre-publish-tmp/src/model/mixin/makeStyleMapper.js +70 -0
- package/pre-publish-tmp/src/model/mixin/palette.js +105 -0
- package/pre-publish-tmp/src/model/mixin/textStyle.js +87 -0
- package/pre-publish-tmp/src/model/referHelper.js +175 -0
- package/pre-publish-tmp/src/preprocessor/backwardCompat.js +255 -0
- package/pre-publish-tmp/src/preprocessor/helper/compatStyle.js +331 -0
- package/pre-publish-tmp/src/processor/dataSample.js +141 -0
- package/pre-publish-tmp/src/processor/dataStack.js +133 -0
- package/pre-publish-tmp/src/processor/negativeDataFilter.js +61 -0
- package/pre-publish-tmp/src/renderer/installCanvasRenderer.js +47 -0
- package/pre-publish-tmp/src/renderer/installSVGRenderer.js +47 -0
- package/pre-publish-tmp/src/scale/Interval.js +267 -0
- package/pre-publish-tmp/src/scale/Log.js +218 -0
- package/pre-publish-tmp/src/scale/Ordinal.js +217 -0
- package/pre-publish-tmp/src/scale/Percentage.js +230 -0
- package/pre-publish-tmp/src/scale/Scale.js +122 -0
- package/pre-publish-tmp/src/scale/Time.js +510 -0
- package/pre-publish-tmp/src/scale/helper.js +169 -0
- package/pre-publish-tmp/src/util/ECEventProcessor.js +144 -0
- package/pre-publish-tmp/src/util/KDTree.js +255 -0
- package/pre-publish-tmp/src/util/axisLabel.js +62 -0
- package/pre-publish-tmp/src/util/clazz.js +305 -0
- package/pre-publish-tmp/src/util/color.js +202 -0
- package/pre-publish-tmp/src/util/component.js +186 -0
- package/pre-publish-tmp/src/util/conditionalExpression.js +257 -0
- package/pre-publish-tmp/src/util/decal.js +392 -0
- package/pre-publish-tmp/src/util/format.js +254 -0
- package/pre-publish-tmp/src/util/graphic.js +525 -0
- package/pre-publish-tmp/src/util/innerStore.js +66 -0
- package/pre-publish-tmp/src/util/layout.js +449 -0
- package/pre-publish-tmp/src/util/log.js +134 -0
- package/pre-publish-tmp/src/util/model.js +696 -0
- package/pre-publish-tmp/src/util/number.js +563 -0
- package/pre-publish-tmp/src/util/shape/circulateLine.js +92 -0
- package/pre-publish-tmp/src/util/shape/diagonal.js +78 -0
- package/pre-publish-tmp/src/util/shape/sausage.js +107 -0
- package/pre-publish-tmp/src/util/states.js +848 -0
- package/pre-publish-tmp/src/util/styleCompat.js +226 -0
- package/pre-publish-tmp/src/util/symbol.js +1266 -0
- package/pre-publish-tmp/src/util/time.js +271 -0
- package/pre-publish-tmp/src/util/types.js +60 -0
- package/pre-publish-tmp/src/util/vendor.js +55 -0
- package/pre-publish-tmp/src/view/Chart.js +201 -0
- package/pre-publish-tmp/src/view/Component.js +88 -0
- package/pre-publish-tmp/src/visual/VisualMapping.js +479 -0
- package/pre-publish-tmp/src/visual/aria.js +229 -0
- package/pre-publish-tmp/src/visual/decal.js +66 -0
- package/pre-publish-tmp/src/visual/style.js +216 -0
- package/pre-publish-tmp/src/visual/symbol.js +124 -0
- package/pre-publish-tmp/src/visual/visualDefault.js +91 -0
- package/pre-publish-tmp/src/visual/visualSolution.js +202 -0
- package/types/src/action/roamHelper.d.ts +3 -3
- package/types/src/animation/basicTransition.d.ts +6 -6
- package/types/src/animation/customGraphicKeyframeAnimation.d.ts +4 -4
- package/types/src/animation/customGraphicTransition.d.ts +6 -6
- package/types/src/animation/morphTransitionHelper.d.ts +4 -4
- package/types/src/animation/universalTransition.d.ts +1 -1
- package/types/src/chart/arrowsPlot/ArrowPlotView.d.ts +7 -7
- package/types/src/chart/arrowsPlot/ArrowSymbolPath.d.ts +4 -4
- package/types/src/chart/arrowsPlot/ArrowsPlotLayout.d.ts +1 -1
- package/types/src/chart/arrowsPlot/ArrowsPlotSeries.d.ts +5 -5
- package/types/src/chart/arrowsPlot/install.d.ts +1 -1
- package/types/src/chart/bar/BarSeries.d.ts +6 -6
- package/types/src/chart/bar/BarView.d.ts +6 -6
- package/types/src/chart/bar/BaseBarSeries.d.ts +5 -5
- package/types/src/chart/bar/PictorialBarSeries.d.ts +3 -3
- package/types/src/chart/bar/PictorialBarView.d.ts +4 -4
- package/types/src/chart/bar/install.d.ts +1 -1
- package/types/src/chart/bar/installPictorialBar.d.ts +1 -1
- package/types/src/chart/barPlot/BarPath.d.ts +1 -1
- package/types/src/chart/barPlot/BarPlotSeries.d.ts +4 -4
- package/types/src/chart/barPlot/BarPlotView.d.ts +5 -5
- package/types/src/chart/barPlot/barPlotLayout.d.ts +2 -2
- package/types/src/chart/barPlot/install.d.ts +1 -1
- package/types/src/chart/bgColor/BgColorLayout.d.ts +1 -1
- package/types/src/chart/bgColor/BgColorPath.d.ts +2 -2
- package/types/src/chart/bgColor/BgColorSeries.d.ts +5 -5
- package/types/src/chart/bgColor/BgColorView.d.ts +5 -5
- package/types/src/chart/bgColor/install.d.ts +1 -1
- package/types/src/chart/boxes/BoxesLayout.d.ts +1 -1
- package/types/src/chart/boxes/BoxesPath.d.ts +4 -4
- package/types/src/chart/boxes/BoxesSeries.d.ts +4 -4
- package/types/src/chart/boxes/BoxesView.d.ts +5 -5
- package/types/src/chart/boxes/install.d.ts +1 -1
- package/types/src/chart/boxes/util.d.ts +1 -1
- package/types/src/chart/boxplot/BoxplotSeries.d.ts +5 -5
- package/types/src/chart/boxplot/BoxplotView.d.ts +4 -4
- package/types/src/chart/boxplot/boxplotLayout.d.ts +1 -1
- package/types/src/chart/boxplot/boxplotTransform.d.ts +2 -2
- package/types/src/chart/boxplot/install.d.ts +1 -1
- package/types/src/chart/candlePlot/CandlePlotSeries.d.ts +4 -4
- package/types/src/chart/candlePlot/CandlePlotView.d.ts +4 -4
- package/types/src/chart/candlePlot/NormalBoxPath.d.ts +1 -1
- package/types/src/chart/candlePlot/WickPath.d.ts +1 -1
- package/types/src/chart/candlePlot/candlePlotLayout.d.ts +2 -2
- package/types/src/chart/candlePlot/install.d.ts +1 -1
- package/types/src/chart/candlestick/CandlestickSeries.d.ts +5 -5
- package/types/src/chart/candlestick/CandlestickView.d.ts +6 -6
- package/types/src/chart/candlestick/candlestickLayout.d.ts +2 -2
- package/types/src/chart/candlestick/candlestickVisual.d.ts +1 -1
- package/types/src/chart/candlestick/install.d.ts +1 -1
- package/types/src/chart/candlestick/preprocessor.d.ts +1 -1
- package/types/src/chart/charPlot/CharPlotLayout.d.ts +1 -1
- package/types/src/chart/charPlot/CharPlotSeries.d.ts +6 -6
- package/types/src/chart/charPlot/CharPlotView.d.ts +7 -7
- package/types/src/chart/charPlot/install.d.ts +1 -1
- package/types/src/chart/charPlot/util.d.ts +1 -1
- package/types/src/chart/custom/CustomSeries.d.ts +18 -18
- package/types/src/chart/custom/CustomView.d.ts +6 -6
- package/types/src/chart/custom/install.d.ts +1 -1
- package/types/src/chart/effectScatter/EffectScatterSeries.d.ts +6 -6
- package/types/src/chart/effectScatter/EffectScatterView.d.ts +4 -4
- package/types/src/chart/effectScatter/install.d.ts +1 -1
- package/types/src/chart/fills/FillPolyPath.d.ts +2 -2
- package/types/src/chart/fills/FillsSeries.d.ts +5 -5
- package/types/src/chart/fills/FillsView.d.ts +5 -5
- package/types/src/chart/fills/LargeFillPolyPath.d.ts +3 -3
- package/types/src/chart/fills/fillsLayout.d.ts +1 -1
- package/types/src/chart/fills/install.d.ts +1 -1
- package/types/src/chart/funnel/FunnelSeries.d.ts +4 -4
- package/types/src/chart/funnel/FunnelView.d.ts +4 -4
- package/types/src/chart/funnel/funnelLayout.d.ts +2 -2
- package/types/src/chart/funnel/install.d.ts +1 -1
- package/types/src/chart/gauge/GaugeSeries.d.ts +4 -4
- package/types/src/chart/gauge/GaugeView.d.ts +5 -5
- package/types/src/chart/gauge/PointerPath.d.ts +1 -1
- package/types/src/chart/gauge/install.d.ts +1 -1
- package/types/src/chart/graph/GraphSeries.d.ts +8 -8
- package/types/src/chart/graph/GraphView.d.ts +4 -4
- package/types/src/chart/graph/adjustEdge.d.ts +1 -1
- package/types/src/chart/graph/categoryFilter.d.ts +1 -1
- package/types/src/chart/graph/categoryVisual.d.ts +1 -1
- package/types/src/chart/graph/circularLayout.d.ts +1 -1
- package/types/src/chart/graph/circularLayoutHelper.d.ts +2 -2
- package/types/src/chart/graph/createView.d.ts +3 -3
- package/types/src/chart/graph/edgeVisual.d.ts +1 -1
- package/types/src/chart/graph/forceHelper.d.ts +2 -2
- package/types/src/chart/graph/forceLayout.d.ts +1 -1
- package/types/src/chart/graph/graphHelper.d.ts +2 -2
- package/types/src/chart/graph/install.d.ts +1 -1
- package/types/src/chart/graph/simpleLayout.d.ts +2 -2
- package/types/src/chart/graph/simpleLayoutHelper.d.ts +2 -2
- package/types/src/chart/heatmap/HeatmapSeries.d.ts +7 -7
- package/types/src/chart/heatmap/HeatmapView.d.ts +9 -9
- package/types/src/chart/heatmap/install.d.ts +1 -1
- package/types/src/chart/helper/EffectLine.d.ts +4 -4
- package/types/src/chart/helper/EffectPolyline.d.ts +4 -4
- package/types/src/chart/helper/EffectSymbol.d.ts +3 -3
- package/types/src/chart/helper/LargeLineDraw.d.ts +5 -5
- package/types/src/chart/helper/LargeSymbolDraw.d.ts +5 -5
- package/types/src/chart/helper/Line.d.ts +5 -5
- package/types/src/chart/helper/LineDraw.d.ts +5 -5
- package/types/src/chart/helper/LinePath.d.ts +2 -2
- package/types/src/chart/helper/Polyline.d.ts +3 -3
- package/types/src/chart/helper/Symbol.d.ts +5 -5
- package/types/src/chart/helper/SymbolDraw.d.ts +7 -7
- package/types/src/chart/helper/createClipPathFromCoordSys.d.ts +6 -6
- package/types/src/chart/helper/createGraphFromNodeEdge.d.ts +4 -4
- package/types/src/chart/helper/createRenderPlanner.d.ts +2 -2
- package/types/src/chart/helper/createSeriesData.d.ts +3 -3
- package/types/src/chart/helper/createSeriesDataSimply.d.ts +3 -3
- package/types/src/chart/helper/enableAriaDecalForTree.d.ts +1 -1
- package/types/src/chart/helper/labelHelper.d.ts +2 -2
- package/types/src/chart/helper/sectorHelper.d.ts +2 -2
- package/types/src/chart/helper/treeHelper.d.ts +2 -2
- package/types/src/chart/helper/whiskerBoxCommon.d.ts +6 -6
- package/types/src/chart/hlines/HLinesSeries.d.ts +5 -5
- package/types/src/chart/hlines/HLinesView.d.ts +5 -5
- package/types/src/chart/hlines/hLinesLayout.d.ts +1 -1
- package/types/src/chart/hlines/install.d.ts +1 -1
- package/types/src/chart/labels/LabelsSeries.d.ts +6 -6
- package/types/src/chart/labels/LabelsView.d.ts +7 -7
- package/types/src/chart/labels/SymbolPath.d.ts +4 -4
- package/types/src/chart/labels/install.d.ts +1 -1
- package/types/src/chart/labels/labelsLayout.d.ts +1 -1
- package/types/src/chart/labels/labelsVisual.d.ts +1 -1
- package/types/src/chart/line/LineSeries.d.ts +9 -9
- package/types/src/chart/line/LineView.d.ts +14 -14
- package/types/src/chart/line/helper.d.ts +4 -4
- package/types/src/chart/line/install.d.ts +1 -1
- package/types/src/chart/line/lineAnimationDiff.d.ts +4 -4
- package/types/src/chart/line/poly.d.ts +2 -2
- package/types/src/chart/lineFills/LineFillsLayout.d.ts +1 -1
- package/types/src/chart/lineFills/LineFillsPath.d.ts +3 -3
- package/types/src/chart/lineFills/LineFillsSeries.d.ts +4 -4
- package/types/src/chart/lineFills/LineFillsView.d.ts +5 -5
- package/types/src/chart/lineFills/install.d.ts +1 -1
- package/types/src/chart/lines/LinesSeries.d.ts +5 -5
- package/types/src/chart/lines/LinesView.d.ts +9 -9
- package/types/src/chart/lines/install.d.ts +1 -1
- package/types/src/chart/lines/linesLayout.d.ts +1 -1
- package/types/src/chart/lines/linesVisual.d.ts +1 -1
- package/types/src/chart/linesPlot/BarPath.d.ts +2 -2
- package/types/src/chart/linesPlot/GradientBarPath.d.ts +3 -3
- package/types/src/chart/linesPlot/GradientHistogramPlotPath.d.ts +3 -3
- package/types/src/chart/linesPlot/GradientLinePath.d.ts +3 -3
- package/types/src/chart/linesPlot/HistogramPlotPath.d.ts +2 -2
- package/types/src/chart/linesPlot/LinePlotPath.d.ts +2 -2
- package/types/src/chart/linesPlot/LinesPlotSeries.d.ts +5 -5
- package/types/src/chart/linesPlot/LinesPlotView.d.ts +7 -7
- package/types/src/chart/linesPlot/PolyPlotPath.d.ts +2 -2
- package/types/src/chart/linesPlot/SymbolPath.d.ts +4 -4
- package/types/src/chart/linesPlot/install.d.ts +1 -1
- package/types/src/chart/linesPlot/linesPlotLayout.d.ts +1 -1
- package/types/src/chart/linesPlot/linesPlotVisual.d.ts +1 -1
- package/types/src/chart/map/MapSeries.d.ts +10 -10
- package/types/src/chart/map/MapView.d.ts +5 -5
- package/types/src/chart/map/install.d.ts +1 -1
- package/types/src/chart/map/mapDataStatistic.d.ts +1 -1
- package/types/src/chart/map/mapSymbolLayout.d.ts +1 -1
- package/types/src/chart/mineLines/LinesPath.d.ts +4 -4
- package/types/src/chart/mineLines/MineLinesLayout.d.ts +1 -1
- package/types/src/chart/mineLines/MineLinesSeries.d.ts +3 -3
- package/types/src/chart/mineLines/MineLinesView.d.ts +5 -5
- package/types/src/chart/mineLines/install.d.ts +1 -1
- package/types/src/chart/mineLines/util.d.ts +1 -1
- package/types/src/chart/minePolyLines/MinePolyLinesLayout.d.ts +1 -1
- package/types/src/chart/minePolyLines/MinePolyLinesSeries.d.ts +3 -3
- package/types/src/chart/minePolyLines/MinePolyLinesView.d.ts +5 -5
- package/types/src/chart/minePolyLines/PolyLinesPath.d.ts +4 -4
- package/types/src/chart/minePolyLines/install.d.ts +1 -1
- package/types/src/chart/parallel/ParallelSeries.d.ts +6 -6
- package/types/src/chart/parallel/ParallelView.d.ts +5 -5
- package/types/src/chart/parallel/install.d.ts +1 -1
- package/types/src/chart/parallel/parallelVisual.d.ts +1 -1
- package/types/src/chart/pie/PieSeries.d.ts +3 -3
- package/types/src/chart/pie/PieView.d.ts +5 -5
- package/types/src/chart/pie/install.d.ts +1 -1
- package/types/src/chart/pie/labelLayout.d.ts +1 -1
- package/types/src/chart/pie/pieLayout.d.ts +4 -4
- package/types/src/chart/playbackOrder/PlaybackHtmlContent.d.ts +2 -2
- package/types/src/chart/playbackOrder/PlaybackOrderLayout.d.ts +1 -1
- package/types/src/chart/playbackOrder/PlaybackOrderSeries.d.ts +3 -3
- package/types/src/chart/playbackOrder/PlaybackOrderView.d.ts +6 -6
- package/types/src/chart/playbackOrder/SymbolPath.d.ts +4 -4
- package/types/src/chart/playbackOrder/install.d.ts +1 -1
- package/types/src/chart/radar/RadarSeries.d.ts +5 -5
- package/types/src/chart/radar/RadarView.d.ts +4 -4
- package/types/src/chart/radar/install.d.ts +1 -1
- package/types/src/chart/radar/radarLayout.d.ts +1 -1
- package/types/src/chart/sankey/SankeySeries.d.ts +6 -6
- package/types/src/chart/sankey/SankeyView.d.ts +4 -4
- package/types/src/chart/sankey/install.d.ts +1 -1
- package/types/src/chart/sankey/sankeyLayout.d.ts +2 -2
- package/types/src/chart/sankey/sankeyVisual.d.ts +1 -1
- package/types/src/chart/scatter/ScatterSeries.d.ts +5 -5
- package/types/src/chart/scatter/ScatterView.d.ts +9 -9
- package/types/src/chart/scatter/install.d.ts +1 -1
- package/types/src/chart/strategy/StrategyLayout.d.ts +1 -1
- package/types/src/chart/strategy/StrategySeries.d.ts +3 -3
- package/types/src/chart/strategy/StrategyView.d.ts +5 -5
- package/types/src/chart/strategy/SymbolPath.d.ts +4 -4
- package/types/src/chart/strategy/install.d.ts +1 -1
- package/types/src/chart/sunburst/SunburstPiece.d.ts +5 -5
- package/types/src/chart/sunburst/SunburstSeries.d.ts +6 -6
- package/types/src/chart/sunburst/SunburstView.d.ts +6 -6
- package/types/src/chart/sunburst/install.d.ts +1 -1
- package/types/src/chart/sunburst/sunburstAction.d.ts +1 -1
- package/types/src/chart/sunburst/sunburstLayout.d.ts +2 -2
- package/types/src/chart/sunburst/sunburstVisual.d.ts +1 -1
- package/types/src/chart/themeRiver/ThemeRiverSeries.d.ts +7 -7
- package/types/src/chart/themeRiver/ThemeRiverView.d.ts +4 -4
- package/types/src/chart/themeRiver/install.d.ts +1 -1
- package/types/src/chart/themeRiver/themeRiverLayout.d.ts +4 -4
- package/types/src/chart/tree/TreeSeries.d.ts +5 -5
- package/types/src/chart/tree/TreeView.d.ts +4 -4
- package/types/src/chart/tree/install.d.ts +1 -1
- package/types/src/chart/tree/layoutHelper.d.ts +4 -4
- package/types/src/chart/tree/traversalHelper.d.ts +1 -1
- package/types/src/chart/tree/treeAction.d.ts +2 -2
- package/types/src/chart/tree/treeLayout.d.ts +2 -2
- package/types/src/chart/tree/treeVisual.d.ts +1 -1
- package/types/src/chart/treemap/Breadcrumb.d.ts +6 -6
- package/types/src/chart/treemap/TreemapSeries.d.ts +7 -7
- package/types/src/chart/treemap/TreemapView.d.ts +6 -6
- package/types/src/chart/treemap/install.d.ts +1 -1
- package/types/src/chart/treemap/treemapAction.d.ts +4 -4
- package/types/src/chart/treemap/treemapLayout.d.ts +6 -6
- package/types/src/chart/treemap/treemapVisual.d.ts +1 -1
- package/types/src/component/alarm/AlarmModel.d.ts +2 -2
- package/types/src/component/alarm/AlarmView.d.ts +7 -7
- package/types/src/component/alarm/install.d.ts +1 -1
- package/types/src/component/aria/install.d.ts +1 -1
- package/types/src/component/aria/preprocessor.d.ts +1 -1
- package/types/src/component/axis/AngleAxisView.d.ts +3 -3
- package/types/src/component/axis/AxisBuilder.d.ts +4 -4
- package/types/src/component/axis/AxisView.d.ts +7 -7
- package/types/src/component/axis/CartesianAxisView.d.ts +5 -5
- package/types/src/component/axis/ParallelAxisView.d.ts +8 -8
- package/types/src/component/axis/RadiusAxisView.d.ts +3 -3
- package/types/src/component/axis/SingleAxisView.d.ts +5 -5
- package/types/src/component/axis/axisSplitHelper.d.ts +6 -6
- package/types/src/component/axis/globalListener.d.ts +2 -2
- package/types/src/component/axis/parallelAxisAction.d.ts +2 -2
- package/types/src/component/axisPointer/AxisPointer.d.ts +4 -4
- package/types/src/component/axisPointer/AxisPointerModel.d.ts +2 -2
- package/types/src/component/axisPointer/AxisPointerView.d.ts +4 -4
- package/types/src/component/axisPointer/BaseAxisPointer.d.ts +9 -9
- package/types/src/component/axisPointer/CartesianAxisPointer.d.ts +5 -5
- package/types/src/component/axisPointer/PolarAxisPointer.d.ts +5 -5
- package/types/src/component/axisPointer/SingleAxisPointer.d.ts +5 -5
- package/types/src/component/axisPointer/axisTrigger.d.ts +4 -4
- package/types/src/component/axisPointer/findPointFromSeries.d.ts +2 -2
- package/types/src/component/axisPointer/globalListener.d.ts +2 -2
- package/types/src/component/axisPointer/install.d.ts +1 -1
- package/types/src/component/axisPointer/modelHelper.d.ts +10 -10
- package/types/src/component/axisPointer/viewHelper.d.ts +10 -10
- package/types/src/component/bgRect/install.d.ts +2 -2
- package/types/src/component/brush/BrushModel.d.ts +5 -5
- package/types/src/component/brush/BrushView.d.ts +5 -5
- package/types/src/component/brush/install.d.ts +1 -1
- package/types/src/component/brush/preprocessor.d.ts +1 -1
- package/types/src/component/brush/selector.d.ts +3 -3
- package/types/src/component/brush/visualEncoding.d.ts +3 -3
- package/types/src/component/calendar/CalendarView.d.ts +11 -11
- package/types/src/component/calendar/install.d.ts +1 -1
- package/types/src/component/cursorPointer/install.d.ts +2 -2
- package/types/src/component/dataZoom/AxisProxy.d.ts +6 -6
- package/types/src/component/dataZoom/DataZoomModel.d.ts +8 -8
- package/types/src/component/dataZoom/DataZoomView.d.ts +4 -4
- package/types/src/component/dataZoom/InsideZoomModel.d.ts +1 -1
- package/types/src/component/dataZoom/InsideZoomView.d.ts +6 -6
- package/types/src/component/dataZoom/SelectZoomModel.d.ts +1 -1
- package/types/src/component/dataZoom/SelectZoomView.d.ts +1 -1
- package/types/src/component/dataZoom/SliderZoomModel.d.ts +2 -2
- package/types/src/component/dataZoom/SliderZoomView.d.ts +5 -5
- package/types/src/component/dataZoom/dataZoomAction.d.ts +1 -1
- package/types/src/component/dataZoom/dataZoomProcessor.d.ts +1 -1
- package/types/src/component/dataZoom/helper.d.ts +8 -8
- package/types/src/component/dataZoom/history.d.ts +3 -3
- package/types/src/component/dataZoom/install.d.ts +1 -1
- package/types/src/component/dataZoom/installCommon.d.ts +1 -1
- package/types/src/component/dataZoom/installDataZoomInside.d.ts +1 -1
- package/types/src/component/dataZoom/installDataZoomSelect.d.ts +1 -1
- package/types/src/component/dataZoom/installDataZoomSlider.d.ts +1 -1
- package/types/src/component/dataZoom/roams.d.ts +4 -4
- package/types/src/component/dataset/install.d.ts +7 -7
- package/types/src/component/geo/GeoView.d.ts +6 -6
- package/types/src/component/geo/install.d.ts +1 -1
- package/types/src/component/graphic/GraphicModel.d.ts +15 -15
- package/types/src/component/graphic/GraphicView.d.ts +9 -9
- package/types/src/component/graphic/install.d.ts +1 -1
- package/types/src/component/grid/install.d.ts +1 -1
- package/types/src/component/grid/installSimple.d.ts +1 -1
- package/types/src/component/helper/BrushController.d.ts +7 -7
- package/types/src/component/helper/BrushTargetManager.d.ts +12 -12
- package/types/src/component/helper/MapDraw.d.ts +9 -9
- package/types/src/component/helper/RoamController.d.ts +6 -6
- package/types/src/component/helper/brushHelper.d.ts +4 -4
- package/types/src/component/helper/cursorHelper.d.ts +3 -3
- package/types/src/component/helper/roamHelper.d.ts +1 -1
- package/types/src/component/legend/LegendModel.d.ts +8 -8
- package/types/src/component/legend/LegendView.d.ts +6 -6
- package/types/src/component/legend/ScrollableLegendModel.d.ts +4 -4
- package/types/src/component/legend/ScrollableLegendView.d.ts +7 -7
- package/types/src/component/legend/install.d.ts +1 -1
- package/types/src/component/legend/installLegendPlain.d.ts +1 -1
- package/types/src/component/legend/installLegendScroll.d.ts +1 -1
- package/types/src/component/legend/legendFilter.d.ts +1 -1
- package/types/src/component/legend/scrollableLegendAction.d.ts +1 -1
- package/types/src/component/limitTip/install.d.ts +2 -2
- package/types/src/component/logo/install.d.ts +2 -2
- package/types/src/component/marker/MarkAreaModel.d.ts +3 -3
- package/types/src/component/marker/MarkAreaView.d.ts +7 -7
- package/types/src/component/marker/MarkLabelModal.d.ts +8 -8
- package/types/src/component/marker/MarkLabelView.d.ts +7 -7
- package/types/src/component/marker/MarkLineModel.d.ts +3 -3
- package/types/src/component/marker/MarkLineView.d.ts +7 -7
- package/types/src/component/marker/MarkPointModel.d.ts +3 -3
- package/types/src/component/marker/MarkPointView.d.ts +7 -7
- package/types/src/component/marker/MarkerModel.d.ts +7 -7
- package/types/src/component/marker/MarkerView.d.ts +7 -7
- package/types/src/component/marker/checkMarkerInSeries.d.ts +1 -1
- package/types/src/component/marker/installMarkArea.d.ts +1 -1
- package/types/src/component/marker/installMarkLabel.d.ts +1 -1
- package/types/src/component/marker/installMarkLine.d.ts +1 -1
- package/types/src/component/marker/installMarkPoint.d.ts +1 -1
- package/types/src/component/marker/markerHelper.d.ts +7 -7
- package/types/src/component/parallel/ParallelView.d.ts +5 -5
- package/types/src/component/parallel/install.d.ts +1 -1
- package/types/src/component/playback/PlaybackOrderModel.d.ts +2 -2
- package/types/src/component/playback/PlaybackOrderView.d.ts +8 -8
- package/types/src/component/playback/PlaybackSelectModel.d.ts +2 -2
- package/types/src/component/playback/PlaybackSelectView.d.ts +4 -4
- package/types/src/component/playback/install.d.ts +1 -1
- package/types/src/component/polar/install.d.ts +1 -1
- package/types/src/component/radar/RadarView.d.ts +4 -4
- package/types/src/component/radar/install.d.ts +1 -1
- package/types/src/component/singleAxis/install.d.ts +1 -1
- package/types/src/component/table/TableModel.d.ts +3 -3
- package/types/src/component/table/TableView.d.ts +4 -4
- package/types/src/component/table/install.d.ts +1 -1
- package/types/src/component/timeline/SliderTimelineModel.d.ts +3 -3
- package/types/src/component/timeline/SliderTimelineView.d.ts +4 -4
- package/types/src/component/timeline/TimelineAxis.d.ts +5 -5
- package/types/src/component/timeline/TimelineModel.d.ts +5 -5
- package/types/src/component/timeline/TimelineView.d.ts +1 -1
- package/types/src/component/timeline/install.d.ts +1 -1
- package/types/src/component/timeline/timelineAction.d.ts +2 -2
- package/types/src/component/title/install.d.ts +2 -2
- package/types/src/component/toolbox/ToolboxModel.d.ts +3 -3
- package/types/src/component/toolbox/ToolboxView.d.ts +6 -6
- package/types/src/component/toolbox/feature/Brush.d.ts +3 -3
- package/types/src/component/toolbox/feature/DataView.d.ts +4 -4
- package/types/src/component/toolbox/feature/DataZoom.d.ts +7 -7
- package/types/src/component/toolbox/feature/MagicType.d.ts +4 -4
- package/types/src/component/toolbox/feature/Restore.d.ts +3 -3
- package/types/src/component/toolbox/feature/SaveAsImage.d.ts +4 -4
- package/types/src/component/toolbox/featureManager.d.ts +5 -5
- package/types/src/component/toolbox/install.d.ts +1 -1
- package/types/src/component/tooltip/TooltipHTMLContent.d.ts +4 -4
- package/types/src/component/tooltip/TooltipModel.d.ts +3 -3
- package/types/src/component/tooltip/TooltipRichContent.d.ts +6 -6
- package/types/src/component/tooltip/TooltipView.d.ts +12 -12
- package/types/src/component/tooltip/helper.d.ts +2 -2
- package/types/src/component/tooltip/install.d.ts +1 -1
- package/types/src/component/tooltip/seriesFormatTooltip.d.ts +2 -2
- package/types/src/component/tooltip/tooltipMarkup.d.ts +5 -5
- package/types/src/component/transform/filterTransform.d.ts +2 -2
- package/types/src/component/transform/install.d.ts +1 -1
- package/types/src/component/transform/sortTransform.d.ts +3 -3
- package/types/src/component/visualMap/ContinuousModel.d.ts +2 -2
- package/types/src/component/visualMap/ContinuousView.d.ts +4 -4
- package/types/src/component/visualMap/PiecewiseModel.d.ts +4 -4
- package/types/src/component/visualMap/PiecewiseView.d.ts +2 -2
- package/types/src/component/visualMap/VisualMapModel.d.ts +7 -7
- package/types/src/component/visualMap/VisualMapView.d.ts +5 -5
- package/types/src/component/visualMap/helper.d.ts +3 -3
- package/types/src/component/visualMap/install.d.ts +1 -1
- package/types/src/component/visualMap/installCommon.d.ts +1 -1
- package/types/src/component/visualMap/installVisualMapContinuous.d.ts +1 -1
- package/types/src/component/visualMap/installVisualMapPiecewise.d.ts +1 -1
- package/types/src/component/visualMap/visualEncoding.d.ts +1 -1
- package/types/src/component/visualMap/visualMapAction.d.ts +2 -2
- package/types/src/coord/Axis.d.ts +6 -6
- package/types/src/coord/AxisBaseModel.d.ts +5 -5
- package/types/src/coord/CoordinateSystem.d.ts +10 -10
- package/types/src/coord/View.d.ts +7 -7
- package/types/src/coord/axisAlignTicks.d.ts +4 -4
- package/types/src/coord/axisCommonTypes.d.ts +3 -3
- package/types/src/coord/axisDefault.d.ts +1 -1
- package/types/src/coord/axisHelper.d.ts +8 -8
- package/types/src/coord/axisModelCommonMixin.d.ts +4 -4
- package/types/src/coord/axisModelCreator.d.ts +5 -5
- package/types/src/coord/axisTickLabelBuilder.d.ts +2 -2
- package/types/src/coord/calendar/Calendar.d.ts +7 -7
- package/types/src/coord/calendar/CalendarModel.d.ts +5 -5
- package/types/src/coord/calendar/prepareCustom.d.ts +2 -2
- package/types/src/coord/cartesian/Axis2D.d.ts +6 -6
- package/types/src/coord/cartesian/AxisModel.d.ts +8 -8
- package/types/src/coord/cartesian/Cartesian.d.ts +2 -2
- package/types/src/coord/cartesian/Cartesian2D.d.ts +8 -8
- package/types/src/coord/cartesian/Grid.d.ts +9 -9
- package/types/src/coord/cartesian/GridModel.d.ts +4 -4
- package/types/src/coord/cartesian/cartesianAxisHelper.d.ts +3 -3
- package/types/src/coord/cartesian/prepareCustom.d.ts +1 -1
- package/types/src/coord/geo/Geo.d.ts +7 -7
- package/types/src/coord/geo/GeoJSONResource.d.ts +4 -4
- package/types/src/coord/geo/GeoModel.d.ts +6 -6
- package/types/src/coord/geo/GeoSVGResource.d.ts +6 -6
- package/types/src/coord/geo/Region.d.ts +3 -3
- package/types/src/coord/geo/fix/diaoyuIsland.d.ts +1 -1
- package/types/src/coord/geo/fix/geoCoord.d.ts +1 -1
- package/types/src/coord/geo/fix/nanhai.d.ts +1 -1
- package/types/src/coord/geo/fix/textCoord.d.ts +1 -1
- package/types/src/coord/geo/geoCreator.d.ts +8 -8
- package/types/src/coord/geo/geoSourceManager.d.ts +2 -2
- package/types/src/coord/geo/geoTypes.d.ts +4 -4
- package/types/src/coord/geo/parseGeoJson.d.ts +2 -2
- package/types/src/coord/geo/prepareCustom.d.ts +1 -1
- package/types/src/coord/parallel/AxisModel.d.ts +8 -8
- package/types/src/coord/parallel/Parallel.d.ts +10 -10
- package/types/src/coord/parallel/ParallelAxis.d.ts +6 -6
- package/types/src/coord/parallel/ParallelModel.d.ts +6 -6
- package/types/src/coord/parallel/parallelCreator.d.ts +3 -3
- package/types/src/coord/parallel/parallelPreprocessor.d.ts +1 -1
- package/types/src/coord/polar/AngleAxis.d.ts +4 -4
- package/types/src/coord/polar/AxisModel.d.ts +7 -7
- package/types/src/coord/polar/Polar.d.ts +8 -8
- package/types/src/coord/polar/PolarModel.d.ts +4 -4
- package/types/src/coord/polar/RadiusAxis.d.ts +4 -4
- package/types/src/coord/polar/polarCreator.d.ts +3 -3
- package/types/src/coord/polar/prepareCustom.d.ts +1 -1
- package/types/src/coord/radar/IndicatorAxis.d.ts +5 -5
- package/types/src/coord/radar/Radar.d.ts +7 -7
- package/types/src/coord/radar/RadarModel.d.ts +6 -6
- package/types/src/coord/scaleRawExtentInfo.d.ts +3 -3
- package/types/src/coord/single/AxisModel.d.ts +8 -8
- package/types/src/coord/single/Single.d.ts +8 -8
- package/types/src/coord/single/SingleAxis.d.ts +6 -6
- package/types/src/coord/single/prepareCustom.d.ts +1 -1
- package/types/src/coord/single/singleAxisHelper.d.ts +1 -1
- package/types/src/coord/single/singleCreator.d.ts +3 -3
- package/types/src/core/CoordinateSystem.d.ts +3 -3
- package/types/src/core/ExtensionAPI.d.ts +8 -8
- package/types/src/core/Scheduler.d.ts +9 -9
- package/types/src/core/echarts.d.ts +15 -15
- package/types/src/core/lifecycle.d.ts +7 -7
- package/types/src/core/locale.d.ts +2 -2
- package/types/src/core/task.d.ts +4 -4
- package/types/src/data/DataDiffer.d.ts +1 -1
- package/types/src/data/DataStore.d.ts +4 -4
- package/types/src/data/Graph.d.ts +5 -5
- package/types/src/data/OrdinalMeta.d.ts +4 -4
- package/types/src/data/SeriesData.d.ts +16 -16
- package/types/src/data/SeriesDimensionDefine.d.ts +2 -2
- package/types/src/data/Source.d.ts +3 -3
- package/types/src/data/Tree.d.ts +4 -4
- package/types/src/data/helper/SeriesDataSchema.d.ts +5 -5
- package/types/src/data/helper/createDimensions.d.ts +6 -6
- package/types/src/data/helper/dataProvider.d.ts +4 -4
- package/types/src/data/helper/dataStackHelper.d.ts +6 -6
- package/types/src/data/helper/dataValueHelper.d.ts +1 -1
- package/types/src/data/helper/dimensionHelper.d.ts +4 -4
- package/types/src/data/helper/linkList.d.ts +1 -1
- package/types/src/data/helper/linkSeriesData.d.ts +2 -2
- package/types/src/data/helper/sourceHelper.d.ts +6 -6
- package/types/src/data/helper/sourceManager.d.ts +5 -5
- package/types/src/data/helper/transform.d.ts +2 -2
- package/types/src/data/scale-time/default-tick-mark-formatter.d.ts +1 -1
- package/types/src/data/scale-time/time-scale-point-weight-generator.d.ts +1 -1
- package/types/src/echarts.all.d.ts +1 -1
- package/types/src/echarts.blank.d.ts +1 -1
- package/types/src/echarts.common.d.ts +1 -1
- package/types/src/echarts.d.ts +1 -1
- package/types/src/echarts.simple.d.ts +1 -1
- package/types/src/export/all.d.ts +2 -2
- package/types/src/export/api/format.d.ts +1 -1
- package/types/src/export/api/graphic.d.ts +1 -1
- package/types/src/export/api/helper.d.ts +12 -12
- package/types/src/export/api/number.d.ts +1 -1
- package/types/src/export/api/time.d.ts +2 -2
- package/types/src/export/api/util.d.ts +1 -1
- package/types/src/export/api.d.ts +26 -26
- package/types/src/export/charts.d.ts +38 -38
- package/types/src/export/components.d.ts +39 -39
- package/types/src/export/core.d.ts +13 -13
- package/types/src/export/features.d.ts +2 -2
- package/types/src/export/option.d.ts +62 -62
- package/types/src/export/renderers.d.ts +2 -2
- package/types/src/extension.d.ts +9 -9
- package/types/src/label/LabelManager.d.ts +2 -2
- package/types/src/label/installLabelLayout.d.ts +1 -1
- package/types/src/label/labelGuideHelper.d.ts +5 -5
- package/types/src/label/labelLayoutHelper.d.ts +3 -3
- package/types/src/label/labelStyle.d.ts +6 -6
- package/types/src/label/sectorLabel.d.ts +3 -3
- package/types/src/layout/barGrid.d.ts +4 -4
- package/types/src/layout/barPolar.d.ts +2 -2
- package/types/src/layout/points.d.ts +1 -1
- package/types/src/legacy/dataSelectAction.d.ts +3 -3
- package/types/src/legacy/getTextRect.d.ts +2 -2
- package/types/src/loading/default.d.ts +2 -2
- package/types/src/model/Component.d.ts +9 -9
- package/types/src/model/Global.d.ts +9 -9
- package/types/src/model/Model.d.ts +6 -6
- package/types/src/model/OptionManager.d.ts +3 -3
- package/types/src/model/Series.d.ts +21 -21
- package/types/src/model/internalComponentCreator.d.ts +2 -2
- package/types/src/model/mixin/areaStyle.d.ts +3 -3
- package/types/src/model/mixin/dataFormat.d.ts +3 -3
- package/types/src/model/mixin/itemStyle.d.ts +3 -3
- package/types/src/model/mixin/lineStyle.d.ts +3 -3
- package/types/src/model/mixin/makeStyleMapper.d.ts +2 -2
- package/types/src/model/mixin/palette.d.ts +3 -3
- package/types/src/model/mixin/textStyle.d.ts +3 -3
- package/types/src/model/referHelper.d.ts +3 -3
- package/types/src/preprocessor/backwardCompat.d.ts +1 -1
- package/types/src/processor/dataFilter.d.ts +1 -1
- package/types/src/processor/dataSample.d.ts +1 -1
- package/types/src/processor/dataStack.d.ts +1 -1
- package/types/src/processor/negativeDataFilter.d.ts +1 -1
- package/types/src/renderer/installCanvasRenderer.d.ts +1 -1
- package/types/src/renderer/installSVGRenderer.d.ts +1 -1
- package/types/src/scale/Interval.d.ts +2 -2
- package/types/src/scale/Log.d.ts +5 -5
- package/types/src/scale/Ordinal.d.ts +6 -6
- package/types/src/scale/Percentage.d.ts +4 -4
- package/types/src/scale/Scale.d.ts +5 -5
- package/types/src/scale/Time.d.ts +6 -6
- package/types/src/scale/helper.d.ts +3 -3
- package/types/src/util/ECEventProcessor.d.ts +6 -6
- package/types/src/util/KDTree.d.ts +1 -1
- package/types/src/util/animation.d.ts +2 -2
- package/types/src/util/axisLabel.d.ts +2 -2
- package/types/src/util/clazz.d.ts +1 -1
- package/types/src/util/color.d.ts +1 -1
- package/types/src/util/component.d.ts +2 -2
- package/types/src/util/conditionalExpression.d.ts +3 -3
- package/types/src/util/decal.d.ts +3 -3
- package/types/src/util/event.d.ts +2 -2
- package/types/src/util/format.d.ts +6 -6
- package/types/src/util/graphic.d.ts +33 -33
- package/types/src/util/innerStore.d.ts +3 -3
- package/types/src/util/layout.d.ts +4 -4
- package/types/src/util/model.d.ts +8 -8
- package/types/src/util/shape/circulateLine.d.ts +2 -2
- package/types/src/util/shape/diagonal.d.ts +2 -2
- package/types/src/util/shape/sausage.d.ts +2 -2
- package/types/src/util/states.d.ts +10 -10
- package/types/src/util/styleCompat.d.ts +4 -4
- package/types/src/util/symbol.d.ts +3 -3
- package/types/src/util/time.d.ts +4 -4
- package/types/src/util/types.d.ts +24 -24
- package/types/src/view/Chart.d.ts +7 -7
- package/types/src/view/Component.d.ts +8 -8
- package/types/src/visual/LegendVisualProvider.d.ts +1 -1
- package/types/src/visual/VisualMapping.d.ts +3 -3
- package/types/src/visual/aria.d.ts +2 -2
- package/types/src/visual/commonVisualTypes.d.ts +1 -1
- package/types/src/visual/decal.d.ts +2 -2
- package/types/src/visual/helper.d.ts +3 -3
- package/types/src/visual/style.d.ts +1 -1
- package/types/src/visual/symbol.d.ts +1 -1
- package/types/src/visual/visualSolution.d.ts +3 -3
- package/lib/animation/basicTransition.js +0 -243
- package/lib/animation/customGraphicKeyframeAnimation.js +0 -143
- package/lib/animation/customGraphicTransition.js +0 -481
- package/lib/animation/morphTransitionHelper.js +0 -203
- package/lib/animation/universalTransition.js +0 -650
- package/lib/chart/arrowsPlot/ArrowPlotView.js +0 -132
- package/lib/chart/arrowsPlot/ArrowSymbolPath.js +0 -70
- package/lib/chart/arrowsPlot/ArrowsPlotLayout.js +0 -123
- package/lib/chart/arrowsPlot/ArrowsPlotSeries.js +0 -88
- package/lib/chart/arrowsPlot/install.js +0 -53
- package/lib/chart/bar/BarSeries.js +0 -112
- package/lib/chart/bar/BarView.js +0 -892
- package/lib/chart/bar/BaseBarSeries.js +0 -159
- package/lib/chart/bar/PictorialBarSeries.js +0 -95
- package/lib/chart/bar/PictorialBarView.js +0 -630
- package/lib/chart/bar/install.js +0 -81
- package/lib/chart/bar/installPictorialBar.js +0 -54
- package/lib/chart/bar.js +0 -46
- package/lib/chart/barPlot/BarPath.js +0 -68
- package/lib/chart/barPlot/BarPlotSeries.js +0 -139
- package/lib/chart/barPlot/BarPlotView.js +0 -116
- package/lib/chart/barPlot/barPlotLayout.js +0 -149
- package/lib/chart/barPlot/install.js +0 -51
- package/lib/chart/bgColor/BgColorLayout.js +0 -122
- package/lib/chart/bgColor/BgColorPath.js +0 -106
- package/lib/chart/bgColor/BgColorSeries.js +0 -98
- package/lib/chart/bgColor/BgColorView.js +0 -119
- package/lib/chart/bgColor/install.js +0 -73
- package/lib/chart/bgColor.js +0 -46
- package/lib/chart/boxes/BoxesLayout.js +0 -206
- package/lib/chart/boxes/BoxesPath.js +0 -78
- package/lib/chart/boxes/BoxesSeries.js +0 -131
- package/lib/chart/boxes/BoxesView.js +0 -174
- package/lib/chart/boxes/install.js +0 -51
- package/lib/chart/boxes/util.js +0 -77
- package/lib/chart/boxes.js +0 -46
- package/lib/chart/boxplot/BoxplotSeries.js +0 -108
- package/lib/chart/boxplot/BoxplotView.js +0 -172
- package/lib/chart/boxplot/boxplotLayout.js +0 -181
- package/lib/chart/boxplot/boxplotTransform.js +0 -66
- package/lib/chart/boxplot/install.js +0 -53
- package/lib/chart/boxplot/prepareBoxplotData.js +0 -96
- package/lib/chart/boxplot.js +0 -46
- package/lib/chart/candlePlot/CandlePlotSeries.js +0 -149
- package/lib/chart/candlePlot/CandlePlotView.js +0 -133
- package/lib/chart/candlePlot/NormalBoxPath.js +0 -66
- package/lib/chart/candlePlot/WickPath.js +0 -57
- package/lib/chart/candlePlot/candlePlotLayout.js +0 -244
- package/lib/chart/candlePlot/install.js +0 -51
- package/lib/chart/candlestick/CandlestickSeries.js +0 -138
- package/lib/chart/candlestick/CandlestickView.js +0 -335
- package/lib/chart/candlestick/candlestickLayout.js +0 -234
- package/lib/chart/candlestick/candlestickVisual.js +0 -86
- package/lib/chart/candlestick/install.js +0 -55
- package/lib/chart/candlestick/preprocessor.js +0 -55
- package/lib/chart/candlestick.js +0 -46
- package/lib/chart/charPlot/CharPlotLayout.js +0 -140
- package/lib/chart/charPlot/CharPlotSeries.js +0 -106
- package/lib/chart/charPlot/CharPlotView.js +0 -135
- package/lib/chart/charPlot/install.js +0 -53
- package/lib/chart/custom/CustomSeries.js +0 -106
- package/lib/chart/custom/CustomView.js +0 -925
- package/lib/chart/custom/install.js +0 -49
- package/lib/chart/custom.js +0 -46
- package/lib/chart/effectScatter/EffectScatterSeries.js +0 -105
- package/lib/chart/effectScatter/EffectScatterView.js +0 -99
- package/lib/chart/effectScatter/install.js +0 -51
- package/lib/chart/effectScatter.js +0 -46
- package/lib/chart/fills/FillPolyPath.js +0 -106
- package/lib/chart/fills/FillsSeries.js +0 -113
- package/lib/chart/fills/FillsView.js +0 -148
- package/lib/chart/fills/LargeFillPolyPath.js +0 -107
- package/lib/chart/fills/fillsLayout.js +0 -175
- package/lib/chart/fills/install.js +0 -73
- package/lib/chart/fills.js +0 -46
- package/lib/chart/funnel/FunnelSeries.js +0 -145
- package/lib/chart/funnel/FunnelView.js +0 -198
- package/lib/chart/funnel/funnelLayout.js +0 -344
- package/lib/chart/funnel/install.js +0 -53
- package/lib/chart/funnel.js +0 -46
- package/lib/chart/gauge/GaugeSeries.js +0 -185
- package/lib/chart/gauge/GaugeView.js +0 -560
- package/lib/chart/gauge/PointerPath.js +0 -83
- package/lib/chart/gauge/install.js +0 -49
- package/lib/chart/gauge.js +0 -46
- package/lib/chart/graph/GraphSeries.js +0 -275
- package/lib/chart/graph/GraphView.js +0 -266
- package/lib/chart/graph/adjustEdge.js +0 -173
- package/lib/chart/graph/categoryFilter.js +0 -74
- package/lib/chart/graph/categoryVisual.js +0 -90
- package/lib/chart/graph/circularLayout.js +0 -51
- package/lib/chart/graph/circularLayoutHelper.js +0 -191
- package/lib/chart/graph/createView.js +0 -103
- package/lib/chart/graph/edgeVisual.js +0 -93
- package/lib/chart/graph/forceHelper.js +0 -185
- package/lib/chart/graph/forceLayout.js +0 -160
- package/lib/chart/graph/install.js +0 -97
- package/lib/chart/graph/simpleLayout.js +0 -78
- package/lib/chart/graph/simpleLayoutHelper.js +0 -70
- package/lib/chart/graph.js +0 -46
- package/lib/chart/heatmap/HeatmapLayer.js +0 -166
- package/lib/chart/heatmap/HeatmapSeries.js +0 -89
- package/lib/chart/heatmap/HeatmapView.js +0 -310
- package/lib/chart/heatmap/install.js +0 -49
- package/lib/chart/heatmap.js +0 -46
- package/lib/chart/helper/EffectLine.js +0 -207
- package/lib/chart/helper/EffectPolyline.js +0 -134
- package/lib/chart/helper/EffectSymbol.js +0 -207
- package/lib/chart/helper/LargeLineDraw.js +0 -302
- package/lib/chart/helper/LargeSymbolDraw.js +0 -309
- package/lib/chart/helper/Line.js +0 -420
- package/lib/chart/helper/LineDraw.js +0 -167
- package/lib/chart/helper/LinePath.js +0 -111
- package/lib/chart/helper/Polyline.js +0 -107
- package/lib/chart/helper/Symbol.js +0 -380
- package/lib/chart/helper/SymbolDraw.js +0 -217
- package/lib/chart/helper/createClipPathFromCoordSys.js +0 -145
- package/lib/chart/helper/createGraphFromNodeEdge.js +0 -114
- package/lib/chart/helper/createRenderPlanner.js +0 -62
- package/lib/chart/helper/createSeriesData.js +0 -162
- package/lib/chart/helper/createSeriesDataSimply.js +0 -68
- package/lib/chart/helper/enableAriaDecalForTree.js +0 -58
- package/lib/chart/helper/labelHelper.js +0 -77
- package/lib/chart/helper/multipleGraphEdgeHelper.js +0 -226
- package/lib/chart/helper/sectorHelper.js +0 -62
- package/lib/chart/helper/treeHelper.js +0 -92
- package/lib/chart/helper/whiskerBoxCommon.js +0 -138
- package/lib/chart/hlines/HLinesSeries.js +0 -140
- package/lib/chart/hlines/HLinesView.js +0 -100
- package/lib/chart/hlines/hLinesLayout.js +0 -90
- package/lib/chart/hlines/install.js +0 -73
- package/lib/chart/hlines.js +0 -46
- package/lib/chart/labels/LabelsSeries.js +0 -146
- package/lib/chart/labels/LabelsView.js +0 -186
- package/lib/chart/labels/SymbolPath.js +0 -114
- package/lib/chart/labels/install.js +0 -55
- package/lib/chart/labels/labelsLayout.js +0 -301
- package/lib/chart/labels/labelsVisual.js +0 -185
- package/lib/chart/labels.js +0 -46
- package/lib/chart/line/LineSeries.js +0 -155
- package/lib/chart/line/LineView.js +0 -1121
- package/lib/chart/line/helper.js +0 -123
- package/lib/chart/line/install.js +0 -69
- package/lib/chart/line/lineAnimationDiff.js +0 -165
- package/lib/chart/line/poly.js +0 -353
- package/lib/chart/line.js +0 -46
- package/lib/chart/lineFills/LineFillsLayout.js +0 -125
- package/lib/chart/lineFills/LineFillsPath.js +0 -82
- package/lib/chart/lineFills/LineFillsSeries.js +0 -126
- package/lib/chart/lineFills/LineFillsView.js +0 -120
- package/lib/chart/lineFills/install.js +0 -51
- package/lib/chart/lineFills.js +0 -46
- package/lib/chart/lines/LinesSeries.js +0 -310
- package/lib/chart/lines/LinesView.js +0 -184
- package/lib/chart/lines/install.js +0 -53
- package/lib/chart/lines/linesLayout.js +0 -113
- package/lib/chart/lines.js +0 -46
- package/lib/chart/linesPlot/BarPath.js +0 -108
- package/lib/chart/linesPlot/GradientBarPath.js +0 -119
- package/lib/chart/linesPlot/GradientHistogramPlotPath.js +0 -106
- package/lib/chart/linesPlot/GradientLinePath.js +0 -117
- package/lib/chart/linesPlot/HistogramPlotPath.js +0 -97
- package/lib/chart/linesPlot/LinePlotPath.js +0 -137
- package/lib/chart/linesPlot/LinesPlotSeries.js +0 -137
- package/lib/chart/linesPlot/LinesPlotView.js +0 -641
- package/lib/chart/linesPlot/PolyPlotPath.js +0 -120
- package/lib/chart/linesPlot/SymbolPath.js +0 -100
- package/lib/chart/linesPlot/install.js +0 -52
- package/lib/chart/linesPlot/linesPlotLayout.js +0 -278
- package/lib/chart/linesPlot.js +0 -46
- package/lib/chart/map/MapSeries.js +0 -247
- package/lib/chart/map/MapView.js +0 -177
- package/lib/chart/map/install.js +0 -58
- package/lib/chart/map/mapDataStatistic.js +0 -104
- package/lib/chart/map/mapSymbolLayout.js +0 -86
- package/lib/chart/map.js +0 -46
- package/lib/chart/mineLines/LinesPath.js +0 -226
- package/lib/chart/mineLines/MineLinesLayout.js +0 -118
- package/lib/chart/mineLines/MineLinesSeries.js +0 -128
- package/lib/chart/mineLines/MineLinesView.js +0 -140
- package/lib/chart/mineLines/install.js +0 -51
- package/lib/chart/mineLines.js +0 -46
- package/lib/chart/minePolyLines/MinePolyLinesLayout.js +0 -102
- package/lib/chart/minePolyLines/MinePolyLinesSeries.js +0 -129
- package/lib/chart/minePolyLines/MinePolyLinesView.js +0 -143
- package/lib/chart/minePolyLines/PolyLinesPath.js +0 -169
- package/lib/chart/minePolyLines/install.js +0 -51
- package/lib/chart/parallel/ParallelSeries.js +0 -127
- package/lib/chart/parallel/ParallelView.js +0 -221
- package/lib/chart/parallel/install.js +0 -54
- package/lib/chart/parallel.js +0 -46
- package/lib/chart/pictorialBar.js +0 -46
- package/lib/chart/pie/PieSeries.js +0 -216
- package/lib/chart/pie/PieView.js +0 -283
- package/lib/chart/pie/install.js +0 -58
- package/lib/chart/pie/labelLayout.js +0 -474
- package/lib/chart/pie/pieLayout.js +0 -238
- package/lib/chart/pie.js +0 -46
- package/lib/chart/playbackOrder/PlaybackHtmlContent.js +0 -179
- package/lib/chart/playbackOrder/PlaybackOrderLayout.js +0 -108
- package/lib/chart/playbackOrder/PlaybackOrderSeries.js +0 -103
- package/lib/chart/playbackOrder/PlaybackOrderView.js +0 -311
- package/lib/chart/playbackOrder/SymbolPath.js +0 -87
- package/lib/chart/playbackOrder/install.js +0 -52
- package/lib/chart/radar/RadarSeries.js +0 -134
- package/lib/chart/radar/RadarView.js +0 -225
- package/lib/chart/radar/backwardCompat.js +0 -75
- package/lib/chart/radar/install.js +0 -58
- package/lib/chart/radar/radarLayout.js +0 -82
- package/lib/chart/radar.js +0 -46
- package/lib/chart/sankey/SankeySeries.js +0 -215
- package/lib/chart/sankey/SankeyView.js +0 -324
- package/lib/chart/sankey/install.js +0 -67
- package/lib/chart/sankey/sankeyLayout.js +0 -489
- package/lib/chart/sankey/sankeyVisual.js +0 -92
- package/lib/chart/sankey.js +0 -46
- package/lib/chart/scatter/ScatterSeries.js +0 -118
- package/lib/chart/scatter/ScatterView.js +0 -134
- package/lib/chart/scatter/install.js +0 -55
- package/lib/chart/scatter.js +0 -46
- package/lib/chart/strategy/StrategyLayout.js +0 -159
- package/lib/chart/strategy/StrategySeries.js +0 -102
- package/lib/chart/strategy/StrategyView.js +0 -274
- package/lib/chart/strategy/SymbolPath.js +0 -85
- package/lib/chart/strategy/install.js +0 -52
- package/lib/chart/sunburst/SunburstPiece.js +0 -230
- package/lib/chart/sunburst/SunburstSeries.js +0 -206
- package/lib/chart/sunburst/SunburstView.js +0 -206
- package/lib/chart/sunburst/install.js +0 -58
- package/lib/chart/sunburst/sunburstAction.js +0 -108
- package/lib/chart/sunburst/sunburstLayout.js +0 -216
- package/lib/chart/sunburst/sunburstVisual.js +0 -75
- package/lib/chart/sunburst.js +0 -46
- package/lib/chart/themeRiver/ThemeRiverSeries.js +0 -260
- package/lib/chart/themeRiver/ThemeRiverView.js +0 -186
- package/lib/chart/themeRiver/install.js +0 -35
- package/lib/chart/themeRiver/themeRiverLayout.js +0 -157
- package/lib/chart/themeRiver.js +0 -46
- package/lib/chart/tree/TreeSeries.js +0 -187
- package/lib/chart/tree/TreeView.js +0 -622
- package/lib/chart/tree/install.js +0 -55
- package/lib/chart/tree/layoutHelper.js +0 -288
- package/lib/chart/tree/treeAction.js +0 -82
- package/lib/chart/tree/treeLayout.js +0 -139
- package/lib/chart/tree/treeVisual.js +0 -57
- package/lib/chart/tree.js +0 -46
- package/lib/chart/treemap/Breadcrumb.js +0 -187
- package/lib/chart/treemap/TreemapSeries.js +0 -367
- package/lib/chart/treemap/TreemapView.js +0 -852
- package/lib/chart/treemap/install.js +0 -55
- package/lib/chart/treemap/treemapAction.js +0 -75
- package/lib/chart/treemap/treemapLayout.js +0 -499
- package/lib/chart/treemap/treemapVisual.js +0 -194
- package/lib/chart/treemap.js +0 -46
- package/lib/component/alarm/AlarmModel.js +0 -116
- package/lib/component/alarm/AlarmView.js +0 -457
- package/lib/component/alarm/install.js +0 -61
- package/lib/component/aria/install.js +0 -49
- package/lib/component/aria/preprocessor.js +0 -61
- package/lib/component/aria.js +0 -46
- package/lib/component/axis/AngleAxisView.js +0 -323
- package/lib/component/axis/AxisBuilder.js +0 -626
- package/lib/component/axis/AxisView.js +0 -181
- package/lib/component/axis/CartesianAxisView.js +0 -247
- package/lib/component/axis/ParallelAxisView.js +0 -174
- package/lib/component/axis/RadiusAxisView.js +0 -206
- package/lib/component/axis/SingleAxisView.js +0 -146
- package/lib/component/axis/axisSplitHelper.js +0 -124
- package/lib/component/axis/globalListener.js +0 -81
- package/lib/component/axisPointer/AxisPointerModel.js +0 -123
- package/lib/component/axisPointer/AxisPointerView.js +0 -124
- package/lib/component/axisPointer/BaseAxisPointer.js +0 -513
- package/lib/component/axisPointer/CartesianAxisPointer.js +0 -148
- package/lib/component/axisPointer/PolarAxisPointer.js +0 -144
- package/lib/component/axisPointer/SingleAxisPointer.js +0 -145
- package/lib/component/axisPointer/axisTrigger.js +0 -460
- package/lib/component/axisPointer/findPointFromSeries.js +0 -98
- package/lib/component/axisPointer/globalListener.js +0 -142
- package/lib/component/axisPointer/install.js +0 -89
- package/lib/component/axisPointer/modelHelper.js +0 -298
- package/lib/component/axisPointer/viewHelper.js +0 -201
- package/lib/component/axisPointer.js +0 -46
- package/lib/component/bgRect/install.js +0 -128
- package/lib/component/brush/BrushModel.js +0 -136
- package/lib/component/brush/BrushView.js +0 -111
- package/lib/component/brush/install.js +0 -101
- package/lib/component/brush/preprocessor.js +0 -87
- package/lib/component/brush/selector.js +0 -115
- package/lib/component/brush/visualEncoding.js +0 -257
- package/lib/component/brush.js +0 -46
- package/lib/component/calendar/CalendarView.js +0 -390
- package/lib/component/calendar/install.js +0 -51
- package/lib/component/calendar.js +0 -46
- package/lib/component/cursorPointer/install.js +0 -130
- package/lib/component/dataZoom/AxisProxy.js +0 -526
- package/lib/component/dataZoom/DataZoomModel.js +0 -520
- package/lib/component/dataZoom/DataZoomView.js +0 -61
- package/lib/component/dataZoom/InsideZoomModel.js +0 -66
- package/lib/component/dataZoom/InsideZoomView.js +0 -304
- package/lib/component/dataZoom/SelectZoomModel.js +0 -56
- package/lib/component/dataZoom/SelectZoomView.js +0 -56
- package/lib/component/dataZoom/SliderZoomModel.js +0 -126
- package/lib/component/dataZoom/SliderZoomView.js +0 -817
- package/lib/component/dataZoom/dataZoomAction.js +0 -84
- package/lib/component/dataZoom/dataZoomProcessor.js +0 -152
- package/lib/component/dataZoom/helper.js +0 -220
- package/lib/component/dataZoom/history.js +0 -116
- package/lib/component/dataZoom/install.js +0 -52
- package/lib/component/dataZoom/installCommon.js +0 -58
- package/lib/component/dataZoom/installDataZoomInside.js +0 -53
- package/lib/component/dataZoom/installDataZoomSelect.js +0 -51
- package/lib/component/dataZoom/installDataZoomSlider.js +0 -51
- package/lib/component/dataZoom/roams.js +0 -319
- package/lib/component/dataZoom.js +0 -46
- package/lib/component/dataZoomInside.js +0 -46
- package/lib/component/dataZoomSelect.js +0 -50
- package/lib/component/dataZoomSlider.js +0 -46
- package/lib/component/dataset/install.js +0 -99
- package/lib/component/dataset.js +0 -46
- package/lib/component/geo/GeoView.js +0 -110
- package/lib/component/geo/install.js +0 -141
- package/lib/component/geo.js +0 -46
- package/lib/component/graphic/GraphicModel.js +0 -273
- package/lib/component/graphic/GraphicView.js +0 -531
- package/lib/component/graphic/install.js +0 -78
- package/lib/component/graphic.js +0 -46
- package/lib/component/grid/install.js +0 -50
- package/lib/component/grid/installSimple.js +0 -96
- package/lib/component/grid.js +0 -46
- package/lib/component/gridSimple.js +0 -46
- package/lib/component/helper/BrushController.js +0 -751
- package/lib/component/helper/BrushTargetManager.js +0 -343
- package/lib/component/helper/MapDraw.js +0 -673
- package/lib/component/helper/RoamController.js +0 -310
- package/lib/component/helper/brushHelper.js +0 -71
- package/lib/component/helper/interactionMutex.js +0 -77
- package/lib/component/helper/listComponent.js +0 -87
- package/lib/component/legend/LegendModel.js +0 -318
- package/lib/component/legend/LegendView.js +0 -524
- package/lib/component/legend/ScrollableLegendModel.js +0 -105
- package/lib/component/legend/ScrollableLegendView.js +0 -401
- package/lib/component/legend/install.js +0 -50
- package/lib/component/legend/installLegendPlain.js +0 -56
- package/lib/component/legend/installLegendScroll.js +0 -54
- package/lib/component/legend/legendAction.js +0 -113
- package/lib/component/legend.js +0 -47
- package/lib/component/legendPlain.js +0 -47
- package/lib/component/legendScroll.js +0 -49
- package/lib/component/limitTip/install.js +0 -115
- package/lib/component/logo/install.js +0 -117
- package/lib/component/markArea.js +0 -46
- package/lib/component/markLabel.js +0 -46
- package/lib/component/markLine.js +0 -46
- package/lib/component/markPoint.js +0 -47
- package/lib/component/marker/MarkAreaModel.js +0 -85
- package/lib/component/marker/MarkAreaView.js +0 -362
- package/lib/component/marker/MarkLabelModal.js +0 -139
- package/lib/component/marker/MarkLabelView.js +0 -918
- package/lib/component/marker/MarkLineModel.js +0 -88
- package/lib/component/marker/MarkLineView.js +0 -363
- package/lib/component/marker/MarkPointModel.js +0 -82
- package/lib/component/marker/MarkPointView.js +0 -191
- package/lib/component/marker/MarkerModel.js +0 -166
- package/lib/component/marker/MarkerView.js +0 -95
- package/lib/component/marker/checkMarkerInSeries.js +0 -56
- package/lib/component/marker/installMarkArea.js +0 -56
- package/lib/component/marker/installMarkLabel.js +0 -38
- package/lib/component/marker/installMarkLine.js +0 -38
- package/lib/component/marker/installMarkPoint.js +0 -38
- package/lib/component/marker/markerHelper.js +0 -188
- package/lib/component/parallel/ParallelView.js +0 -137
- package/lib/component/parallel/install.js +0 -73
- package/lib/component/parallel.js +0 -46
- package/lib/component/playback/PlaybackOrderModel.js +0 -51
- package/lib/component/playback/PlaybackOrderView.js +0 -1309
- package/lib/component/playback/PlaybackSelectModel.js +0 -55
- package/lib/component/playback/PlaybackSelectView.js +0 -244
- package/lib/component/playback/install.js +0 -46
- package/lib/component/polar/install.js +0 -91
- package/lib/component/polar.js +0 -46
- package/lib/component/radar/RadarView.js +0 -203
- package/lib/component/radar/install.js +0 -63
- package/lib/component/radar.js +0 -46
- package/lib/component/singleAxis/install.js +0 -73
- package/lib/component/singleAxis.js +0 -46
- package/lib/component/table/TableModel.js +0 -95
- package/lib/component/table/TableView.js +0 -462
- package/lib/component/table/install.js +0 -49
- package/lib/component/table.js +0 -46
- package/lib/component/timeline/SliderTimelineModel.js +0 -159
- package/lib/component/timeline/SliderTimelineView.js +0 -653
- package/lib/component/timeline/TimelineAxis.js +0 -71
- package/lib/component/timeline/TimelineModel.js +0 -188
- package/lib/component/timeline/TimelineView.js +0 -56
- package/lib/component/timeline/install.js +0 -39
- package/lib/component/timeline/preprocessor.js +0 -113
- package/lib/component/timeline/timelineAction.js +0 -82
- package/lib/component/timeline.js +0 -49
- package/lib/component/title/install.js +0 -229
- package/lib/component/title.js +0 -46
- package/lib/component/toolbox/ToolboxModel.js +0 -108
- package/lib/component/toolbox/ToolboxView.js +0 -298
- package/lib/component/toolbox/feature/Brush.js +0 -134
- package/lib/component/toolbox/feature/DataView.js +0 -448
- package/lib/component/toolbox/feature/DataZoom.js +0 -251
- package/lib/component/toolbox/feature/MagicType.js +0 -210
- package/lib/component/toolbox/feature/Restore.js +0 -79
- package/lib/component/toolbox/feature/SaveAsImage.js +0 -145
- package/lib/component/toolbox/install.js +0 -64
- package/lib/component/toolbox.js +0 -46
- package/lib/component/tooltip/TooltipHTMLContent.js +0 -398
- package/lib/component/tooltip/TooltipModel.js +0 -130
- package/lib/component/tooltip/TooltipRichContent.js +0 -209
- package/lib/component/tooltip/TooltipView.js +0 -907
- package/lib/component/tooltip/helper.js +0 -78
- package/lib/component/tooltip/install.js +0 -81
- package/lib/component/tooltip/seriesFormatTooltip.js +0 -142
- package/lib/component/tooltip/tooltipMarkup.js +0 -324
- package/lib/component/tooltip.js +0 -46
- package/lib/component/transform/filterTransform.js +0 -96
- package/lib/component/transform/install.js +0 -49
- package/lib/component/transform/sortTransform.js +0 -155
- package/lib/component/transform.js +0 -46
- package/lib/component/visualMap/ContinuousModel.js +0 -256
- package/lib/component/visualMap/ContinuousView.js +0 -688
- package/lib/component/visualMap/PiecewiseModel.js +0 -439
- package/lib/component/visualMap/PiecewiseView.js +0 -213
- package/lib/component/visualMap/VisualMapModel.js +0 -413
- package/lib/component/visualMap/VisualMapView.js +0 -154
- package/lib/component/visualMap/helper.js +0 -90
- package/lib/component/visualMap/install.js +0 -52
- package/lib/component/visualMap/installCommon.js +0 -63
- package/lib/component/visualMap/installVisualMapContinuous.js +0 -51
- package/lib/component/visualMap/installVisualMapPiecewise.js +0 -51
- package/lib/component/visualMap/preprocessor.js +0 -78
- package/lib/component/visualMap/typeDefaulter.js +0 -48
- package/lib/component/visualMap/visualEncoding.js +0 -108
- package/lib/component/visualMap.js +0 -46
- package/lib/component/visualMapContinuous.js +0 -46
- package/lib/component/visualMapPiecewise.js +0 -46
- package/lib/coord/Axis.js +0 -301
- package/lib/coord/View.js +0 -251
- package/lib/coord/axisAlignTicks.js +0 -140
- package/lib/coord/axisDefault.js +0 -211
- package/lib/coord/axisHelper.js +0 -374
- package/lib/coord/axisModelCreator.js +0 -110
- package/lib/coord/axisTickLabelBuilder.js +0 -435
- package/lib/coord/calendar/Calendar.js +0 -374
- package/lib/coord/calendar/CalendarModel.js +0 -160
- package/lib/coord/cartesian/Axis2D.js +0 -94
- package/lib/coord/cartesian/AxisModel.js +0 -62
- package/lib/coord/cartesian/Cartesian.js +0 -74
- package/lib/coord/cartesian/Cartesian2D.js +0 -185
- package/lib/coord/cartesian/Grid.js +0 -508
- package/lib/coord/cartesian/GridModel.js +0 -72
- package/lib/coord/cartesian/cartesianAxisHelper.js +0 -119
- package/lib/coord/cartesian/defaultAxisExtentFromData.js +0 -223
- package/lib/coord/cartesian/prepareCustom.js +0 -74
- package/lib/coord/geo/Geo.js +0 -209
- package/lib/coord/geo/GeoJSONResource.js +0 -144
- package/lib/coord/geo/GeoModel.js +0 -212
- package/lib/coord/geo/GeoSVGResource.js +0 -333
- package/lib/coord/geo/Region.js +0 -286
- package/lib/coord/geo/fix/diaoyuIsland.js +0 -56
- package/lib/coord/geo/fix/nanhai.js +0 -73
- package/lib/coord/geo/geoCreator.js +0 -236
- package/lib/coord/geo/geoSourceManager.js +0 -121
- package/lib/coord/geo/parseGeoJson.js +0 -146
- package/lib/coord/geo/prepareCustom.js +0 -79
- package/lib/coord/parallel/AxisModel.js +0 -114
- package/lib/coord/parallel/Parallel.js +0 -410
- package/lib/coord/parallel/ParallelAxis.js +0 -59
- package/lib/coord/parallel/ParallelModel.js +0 -122
- package/lib/coord/parallel/parallelCreator.js +0 -71
- package/lib/coord/parallel/parallelPreprocessor.js +0 -84
- package/lib/coord/polar/AngleAxis.js +0 -111
- package/lib/coord/polar/AxisModel.js +0 -83
- package/lib/coord/polar/Polar.js +0 -216
- package/lib/coord/polar/PolarModel.js +0 -73
- package/lib/coord/polar/RadiusAxis.js +0 -58
- package/lib/coord/polar/polarCreator.js +0 -158
- package/lib/coord/polar/prepareCustom.js +0 -86
- package/lib/coord/radar/IndicatorAxis.js +0 -57
- package/lib/coord/radar/Radar.js +0 -194
- package/lib/coord/radar/RadarModel.js +0 -159
- package/lib/coord/scaleRawExtentInfo.js +0 -254
- package/lib/coord/single/AxisModel.js +0 -103
- package/lib/coord/single/Single.js +0 -210
- package/lib/coord/single/SingleAxis.js +0 -66
- package/lib/coord/single/prepareCustom.js +0 -70
- package/lib/coord/single/singleAxisHelper.js +0 -88
- package/lib/coord/single/singleCreator.js +0 -73
- package/lib/core/CoordinateSystem.js +0 -74
- package/lib/core/ExtensionAPI.js +0 -59
- package/lib/core/Scheduler.js +0 -491
- package/lib/core/echarts.js +0 -3068
- package/lib/core/impl.js +0 -65
- package/lib/core/lifecycle.js +0 -47
- package/lib/core/locale.js +0 -88
- package/lib/core/task.js +0 -345
- package/lib/data/DataStore.js +0 -1099
- package/lib/data/Graph.js +0 -459
- package/lib/data/OrdinalMeta.js +0 -313
- package/lib/data/SeriesData.js +0 -1027
- package/lib/data/SeriesDimensionDefine.js +0 -91
- package/lib/data/Source.js +0 -302
- package/lib/data/Tree.js +0 -353
- package/lib/data/helper/SeriesDataSchema.js +0 -224
- package/lib/data/helper/createDimensions.js +0 -322
- package/lib/data/helper/dataProvider.js +0 -385
- package/lib/data/helper/dataStackHelper.js +0 -179
- package/lib/data/helper/dataValueHelper.js +0 -246
- package/lib/data/helper/dimensionHelper.js +0 -172
- package/lib/data/helper/linkList.js +0 -46
- package/lib/data/helper/linkSeriesData.js +0 -150
- package/lib/data/helper/sourceHelper.js +0 -354
- package/lib/data/helper/sourceManager.js +0 -417
- package/lib/data/helper/transform.js +0 -417
- package/lib/echarts.js +0 -66
- package/lib/export/all.js +0 -46
- package/lib/export/api/format.js +0 -44
- package/lib/export/api/graphic.js +0 -44
- package/lib/export/api/helper.js +0 -128
- package/lib/export/api/number.js +0 -44
- package/lib/export/api/time.js +0 -45
- package/lib/export/api/util.js +0 -44
- package/lib/export/api.js +0 -114
- package/lib/export/charts.js +0 -85
- package/lib/export/components.js +0 -81
- package/lib/export/core.js +0 -51
- package/lib/export/features.js +0 -46
- package/lib/export/renderers.js +0 -45
- package/lib/extension.js +0 -110
- package/lib/label/LabelManager.js +0 -435
- package/lib/label/installLabelLayout.js +0 -65
- package/lib/label/labelGuideHelper.js +0 -541
- package/lib/label/labelLayoutHelper.js +0 -301
- package/lib/label/labelStyle.js +0 -484
- package/lib/label/sectorLabel.js +0 -201
- package/lib/layout/barGrid.js +0 -477
- package/lib/layout/barPolar.js +0 -254
- package/lib/layout/points.js +0 -105
- package/lib/legacy/dataSelectAction.js +0 -116
- package/lib/legacy/getTextRect.js +0 -59
- package/lib/loading/default.js +0 -161
- package/lib/model/Component.js +0 -233
- package/lib/model/Global.js +0 -793
- package/lib/model/Model.js +0 -179
- package/lib/model/OptionManager.js +0 -459
- package/lib/model/Series.js +0 -588
- package/lib/model/globalDefault.js +0 -132
- package/lib/model/internalComponentCreator.js +0 -66
- package/lib/model/mixin/areaStyle.js +0 -59
- package/lib/model/mixin/dataFormat.js +0 -202
- package/lib/model/mixin/itemStyle.js +0 -58
- package/lib/model/mixin/lineStyle.js +0 -59
- package/lib/model/mixin/makeStyleMapper.js +0 -70
- package/lib/model/mixin/palette.js +0 -105
- package/lib/model/mixin/textStyle.js +0 -87
- package/lib/model/referHelper.js +0 -175
- package/lib/preprocessor/backwardCompat.js +0 -255
- package/lib/preprocessor/helper/compatStyle.js +0 -331
- package/lib/processor/dataSample.js +0 -141
- package/lib/processor/dataStack.js +0 -133
- package/lib/processor/negativeDataFilter.js +0 -61
- package/lib/renderer/installCanvasRenderer.js +0 -47
- package/lib/renderer/installSVGRenderer.js +0 -47
- package/lib/scale/Interval.js +0 -267
- package/lib/scale/Log.js +0 -218
- package/lib/scale/Ordinal.js +0 -217
- package/lib/scale/Percentage.js +0 -230
- package/lib/scale/Scale.js +0 -122
- package/lib/scale/Time.js +0 -510
- package/lib/scale/helper.js +0 -169
- package/lib/util/ECEventProcessor.js +0 -144
- package/lib/util/KDTree.js +0 -255
- package/lib/util/axisLabel.js +0 -62
- package/lib/util/clazz.js +0 -305
- package/lib/util/color.js +0 -202
- package/lib/util/component.js +0 -186
- package/lib/util/conditionalExpression.js +0 -257
- package/lib/util/decal.js +0 -392
- package/lib/util/format.js +0 -254
- package/lib/util/graphic.js +0 -525
- package/lib/util/innerStore.js +0 -66
- package/lib/util/layout.js +0 -449
- package/lib/util/log.js +0 -134
- package/lib/util/model.js +0 -696
- package/lib/util/number.js +0 -563
- package/lib/util/shape/circulateLine.js +0 -92
- package/lib/util/shape/diagonal.js +0 -78
- package/lib/util/shape/sausage.js +0 -107
- package/lib/util/states.js +0 -848
- package/lib/util/styleCompat.js +0 -226
- package/lib/util/symbol.js +0 -1266
- package/lib/util/time.js +0 -271
- package/lib/util/types.js +0 -60
- package/lib/util/vendor.js +0 -55
- package/lib/view/Chart.js +0 -201
- package/lib/view/Component.js +0 -88
- package/lib/visual/VisualMapping.js +0 -479
- package/lib/visual/aria.js +0 -229
- package/lib/visual/decal.js +0 -66
- package/lib/visual/style.js +0 -216
- package/lib/visual/symbol.js +0 -124
- package/lib/visual/visualDefault.js +0 -91
- package/lib/visual/visualSolution.js +0 -202
- package/types/dist/charts.d.ts +0 -1
- package/types/dist/components.d.ts +0 -1
- package/types/dist/core.d.ts +0 -1
- package/types/dist/echarts.d.ts +0 -11455
- package/types/dist/features.d.ts +0 -1
- package/types/dist/option.d.ts +0 -1
- package/types/dist/renderers.d.ts +0 -1
- package/types/dist/shared.d.ts +0 -11611
- /package/{lib → pre-publish-tmp/src}/action/roamHelper.js +0 -0
- /package/{lib → pre-publish-tmp/src}/chart/charPlot/util.js +0 -0
- /package/{lib → pre-publish-tmp/src}/chart/graph/graphHelper.js +0 -0
- /package/{lib → pre-publish-tmp/src}/chart/lines/linesVisual.js +0 -0
- /package/{lib → pre-publish-tmp/src}/chart/linesPlot/linesPlotVisual.js +0 -0
- /package/{lib → pre-publish-tmp/src}/chart/mineLines/util.js +0 -0
- /package/{lib → pre-publish-tmp/src}/chart/parallel/parallelVisual.js +0 -0
- /package/{lib → pre-publish-tmp/src}/chart/playbackOrder/constants.js +0 -0
- /package/{lib → pre-publish-tmp/src}/chart/strategy/constants.js +0 -0
- /package/{lib → pre-publish-tmp/src}/chart/tree/traversalHelper.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/axis/parallelAxisAction.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/axisPointer/AxisPointer.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/helper/cursorHelper.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/helper/kineticAnimation.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/helper/roamHelper.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/helper/sliderMove.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/legend/legendFilter.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/legend/scrollableLegendAction.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/toolbox/featureManager.js +0 -0
- /package/{lib → pre-publish-tmp/src}/component/visualMap/visualMapAction.js +0 -0
- /package/{lib → pre-publish-tmp/src}/coord/AxisBaseModel.js +0 -0
- /package/{lib → pre-publish-tmp/src}/coord/CoordinateSystem.js +0 -0
- /package/{lib → pre-publish-tmp/src}/coord/axisCommonTypes.js +0 -0
- /package/{lib → pre-publish-tmp/src}/coord/axisModelCommonMixin.js +0 -0
- /package/{lib → pre-publish-tmp/src}/coord/calendar/prepareCustom.js +0 -0
- /package/{lib → pre-publish-tmp/src}/coord/geo/fix/geoCoord.js +0 -0
- /package/{lib → pre-publish-tmp/src}/coord/geo/fix/textCoord.js +0 -0
- /package/{lib → pre-publish-tmp/src}/coord/geo/geoTypes.js +0 -0
- /package/{lib → pre-publish-tmp/src}/data/Constant.js +0 -0
- /package/{lib → pre-publish-tmp/src}/data/DataDiffer.js +0 -0
- /package/{lib → pre-publish-tmp/src}/data/scale-time/default-tick-mark-formatter.js +0 -0
- /package/{lib → pre-publish-tmp/src}/data/scale-time/find-time-range.js +0 -0
- /package/{lib → pre-publish-tmp/src}/data/scale-time/time-scale-point-weight-generator.js +0 -0
- /package/{lib → pre-publish-tmp/src}/data/scale-time/types.js +0 -0
- /package/{lib → pre-publish-tmp/src}/export/option.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langAR.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langCS.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langDE.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langEN.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langES.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langFI.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langFR.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langHU.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langIT.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langJA.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langKO.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langNL.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langPL.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langPT-br.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langRO.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langRU.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langSI.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langTH.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langTR.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langUK.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langVI.js +0 -0
- /package/{lib → pre-publish-tmp/src}/i18n/langZH.js +0 -0
- /package/{lib → pre-publish-tmp/src}/processor/dataFilter.js +0 -0
- /package/{lib → pre-publish-tmp/src}/theme/dark.js +0 -0
- /package/{lib → pre-publish-tmp/src}/theme/light.js +0 -0
- /package/{lib → pre-publish-tmp/src}/util/animation.js +0 -0
- /package/{lib → pre-publish-tmp/src}/util/event.js +0 -0
- /package/{lib → pre-publish-tmp/src}/util/quickSelect.js +0 -0
- /package/{lib → pre-publish-tmp/src}/util/seriesType.js +0 -0
- /package/{lib → pre-publish-tmp/src}/util/symbolSize.js +0 -0
- /package/{lib → pre-publish-tmp/src}/util/throttle.js +0 -0
- /package/{lib → pre-publish-tmp/src}/visual/LegendVisualProvider.js +0 -0
- /package/{lib → pre-publish-tmp/src}/visual/commonVisualTypes.js +0 -0
- /package/{lib → pre-publish-tmp/src}/visual/helper.js +0 -0
package/lib/core/impl.js
DELETED
|
@@ -1,65 +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 { error } from '../util/log.js';
|
|
45
|
-
// Implementation of exported APIs. For example registerMap, getMap.
|
|
46
|
-
// The implementations will be registered when installing the component.
|
|
47
|
-
// Avoid these code being bundled to the core module.
|
|
48
|
-
var implsStore = {};
|
|
49
|
-
// TODO Type
|
|
50
|
-
export function registerImpl(name, impl) {
|
|
51
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
52
|
-
if (implsStore[name]) {
|
|
53
|
-
error("Already has an implementation of " + name + ".");
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
implsStore[name] = impl;
|
|
57
|
-
}
|
|
58
|
-
export function getImpl(name) {
|
|
59
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
60
|
-
if (!implsStore[name]) {
|
|
61
|
-
error("Implementation of " + name + " doesn't exists.");
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
return implsStore[name];
|
|
65
|
-
}
|
package/lib/core/lifecycle.js
DELETED
|
@@ -1,47 +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 Eventful from 'tvrender/lib/core/Eventful.js';
|
|
45
|
-
;
|
|
46
|
-
var lifecycle = new Eventful();
|
|
47
|
-
export default lifecycle;
|
package/lib/core/locale.js
DELETED
|
@@ -1,88 +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 Model from '../model/Model.js';
|
|
45
|
-
import env from 'tvrender/lib/core/env.js';
|
|
46
|
-
// default import ZH and EN lang
|
|
47
|
-
import langEN from '../i18n/langEN.js';
|
|
48
|
-
import langZH from '../i18n/langZH.js';
|
|
49
|
-
import { isString, clone, merge } from 'tvrender/lib/core/util.js';
|
|
50
|
-
var LOCALE_ZH = 'ZH';
|
|
51
|
-
var LOCALE_EN = 'EN';
|
|
52
|
-
var DEFAULT_LOCALE = LOCALE_EN;
|
|
53
|
-
var localeStorage = {};
|
|
54
|
-
var localeModels = {};
|
|
55
|
-
export var SYSTEM_LANG = !env.domSupported ? DEFAULT_LOCALE : function () {
|
|
56
|
-
var langStr = ( /* eslint-disable-next-line */
|
|
57
|
-
document.documentElement.lang || navigator.language || navigator.browserLanguage || DEFAULT_LOCALE).toUpperCase();
|
|
58
|
-
return langStr.indexOf(LOCALE_ZH) > -1 ? LOCALE_ZH : DEFAULT_LOCALE;
|
|
59
|
-
}();
|
|
60
|
-
export function registerLocale(locale, localeObj) {
|
|
61
|
-
locale = locale.toUpperCase();
|
|
62
|
-
localeModels[locale] = new Model(localeObj);
|
|
63
|
-
localeStorage[locale] = localeObj;
|
|
64
|
-
}
|
|
65
|
-
// export function getLocale(locale: string) {
|
|
66
|
-
// return localeStorage[locale];
|
|
67
|
-
// }
|
|
68
|
-
export function createLocaleObject(locale) {
|
|
69
|
-
if (isString(locale)) {
|
|
70
|
-
var localeObj = localeStorage[locale.toUpperCase()] || {};
|
|
71
|
-
if (locale === LOCALE_ZH || locale === LOCALE_EN) {
|
|
72
|
-
return clone(localeObj);
|
|
73
|
-
} else {
|
|
74
|
-
return merge(clone(localeObj), clone(localeStorage[DEFAULT_LOCALE]), false);
|
|
75
|
-
}
|
|
76
|
-
} else {
|
|
77
|
-
return merge(clone(locale), clone(localeStorage[DEFAULT_LOCALE]), false);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
export function getLocaleModel(lang) {
|
|
81
|
-
return localeModels[lang];
|
|
82
|
-
}
|
|
83
|
-
export function getDefaultLocaleModel() {
|
|
84
|
-
return localeModels[DEFAULT_LOCALE];
|
|
85
|
-
}
|
|
86
|
-
// Default locale
|
|
87
|
-
registerLocale(LOCALE_EN, langEN);
|
|
88
|
-
registerLocale(LOCALE_ZH, langZH);
|
package/lib/core/task.js
DELETED
|
@@ -1,345 +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 } from 'tvrender/lib/core/util.js';
|
|
45
|
-
;
|
|
46
|
-
/**
|
|
47
|
-
* @param {Object} define
|
|
48
|
-
* @return See the return of `createTask`.
|
|
49
|
-
*/
|
|
50
|
-
export function createTask(define) {
|
|
51
|
-
return new Task(define);
|
|
52
|
-
}
|
|
53
|
-
var Task = /** @class */function () {
|
|
54
|
-
function Task(define) {
|
|
55
|
-
define = define || {};
|
|
56
|
-
this._reset = define.reset;
|
|
57
|
-
this._plan = define.plan;
|
|
58
|
-
this._count = define.count;
|
|
59
|
-
this._onDirty = define.onDirty;
|
|
60
|
-
this._dirty = true;
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* @param step Specified step.
|
|
64
|
-
* @param skip Skip customer perform call.
|
|
65
|
-
* @param modBy Sampling window size.
|
|
66
|
-
* @param modDataCount Sampling count.
|
|
67
|
-
* @return whether unfinished.
|
|
68
|
-
*/
|
|
69
|
-
Task.prototype.perform = function (performArgs) {
|
|
70
|
-
var upTask = this._upstream;
|
|
71
|
-
var skip = performArgs && performArgs.skip;
|
|
72
|
-
// TODO some refactor.
|
|
73
|
-
// Pull data. Must pull data each time, because context.data
|
|
74
|
-
// may be updated by Series.setData.
|
|
75
|
-
if (this._dirty && upTask) {
|
|
76
|
-
var context = this.context;
|
|
77
|
-
context.data = context.outputData = upTask.context.outputData;
|
|
78
|
-
}
|
|
79
|
-
if (this.__pipeline) {
|
|
80
|
-
this.__pipeline.currentTask = this;
|
|
81
|
-
}
|
|
82
|
-
var planResult;
|
|
83
|
-
if (this._plan && !skip) {
|
|
84
|
-
planResult = this._plan(this.context);
|
|
85
|
-
}
|
|
86
|
-
// Support sharding by mod, which changes the render sequence and makes the rendered graphic
|
|
87
|
-
// elements uniformed distributed when progress, especially when moving or zooming.
|
|
88
|
-
var lastModBy = normalizeModBy(this._modBy);
|
|
89
|
-
var lastModDataCount = this._modDataCount || 0;
|
|
90
|
-
var modBy = normalizeModBy(performArgs && performArgs.modBy);
|
|
91
|
-
var modDataCount = performArgs && performArgs.modDataCount || 0;
|
|
92
|
-
if (lastModBy !== modBy || lastModDataCount !== modDataCount) {
|
|
93
|
-
planResult = 'reset';
|
|
94
|
-
}
|
|
95
|
-
function normalizeModBy(val) {
|
|
96
|
-
!(val >= 1) && (val = 1); // jshint ignore:line
|
|
97
|
-
return val;
|
|
98
|
-
}
|
|
99
|
-
var forceFirstProgress;
|
|
100
|
-
if (this._dirty || planResult === 'reset') {
|
|
101
|
-
this._dirty = false;
|
|
102
|
-
forceFirstProgress = this._doReset(skip);
|
|
103
|
-
}
|
|
104
|
-
this._modBy = modBy;
|
|
105
|
-
this._modDataCount = modDataCount;
|
|
106
|
-
var step = performArgs && performArgs.step;
|
|
107
|
-
if (upTask) {
|
|
108
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
109
|
-
assert(upTask._outputDueEnd != null);
|
|
110
|
-
}
|
|
111
|
-
this._dueEnd = upTask._outputDueEnd;
|
|
112
|
-
}
|
|
113
|
-
// DataTask or overallTask
|
|
114
|
-
else {
|
|
115
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
116
|
-
assert(!this._progress || this._count);
|
|
117
|
-
}
|
|
118
|
-
this._dueEnd = this._count ? this._count(this.context) : Infinity;
|
|
119
|
-
}
|
|
120
|
-
// Note: Stubs, that its host overall task let it has progress, has progress.
|
|
121
|
-
// If no progress, pass index from upstream to downstream each time plan called.
|
|
122
|
-
if (this._progress) {
|
|
123
|
-
var start = this._dueIndex;
|
|
124
|
-
var end = Math.min(step != null ? this._dueIndex + step : Infinity, this._dueEnd);
|
|
125
|
-
if (!skip && (forceFirstProgress || start < end)) {
|
|
126
|
-
var progress = this._progress;
|
|
127
|
-
if (isArray(progress)) {
|
|
128
|
-
for (var i = 0; i < progress.length; i++) {
|
|
129
|
-
this._doProgress(progress[i], start, end, modBy, modDataCount);
|
|
130
|
-
}
|
|
131
|
-
} else {
|
|
132
|
-
this._doProgress(progress, start, end, modBy, modDataCount);
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
this._dueIndex = end;
|
|
136
|
-
// If no `outputDueEnd`, assume that output data and
|
|
137
|
-
// input data is the same, so use `dueIndex` as `outputDueEnd`.
|
|
138
|
-
var outputDueEnd = this._settedOutputEnd != null ? this._settedOutputEnd : end;
|
|
139
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
140
|
-
// ??? Can not rollback.
|
|
141
|
-
assert(outputDueEnd >= this._outputDueEnd);
|
|
142
|
-
}
|
|
143
|
-
this._outputDueEnd = outputDueEnd;
|
|
144
|
-
} else {
|
|
145
|
-
// (1) Some overall task has no progress.
|
|
146
|
-
// (2) Stubs, that its host overall task do not let it has progress, has no progress.
|
|
147
|
-
// This should always be performed so it can be passed to downstream.
|
|
148
|
-
this._dueIndex = this._outputDueEnd = this._settedOutputEnd != null ? this._settedOutputEnd : this._dueEnd;
|
|
149
|
-
}
|
|
150
|
-
return this.unfinished();
|
|
151
|
-
};
|
|
152
|
-
Task.prototype.dirty = function () {
|
|
153
|
-
this._dirty = true;
|
|
154
|
-
this._onDirty && this._onDirty(this.context);
|
|
155
|
-
};
|
|
156
|
-
Task.prototype._doProgress = function (progress, start, end, modBy, modDataCount) {
|
|
157
|
-
iterator.reset(start, end, modBy, modDataCount);
|
|
158
|
-
this._callingProgress = progress;
|
|
159
|
-
this._callingProgress({
|
|
160
|
-
start: start,
|
|
161
|
-
end: end,
|
|
162
|
-
count: end - start,
|
|
163
|
-
next: iterator.next
|
|
164
|
-
}, this.context);
|
|
165
|
-
};
|
|
166
|
-
Task.prototype._doReset = function (skip) {
|
|
167
|
-
this._dueIndex = this._outputDueEnd = this._dueEnd = 0;
|
|
168
|
-
this._settedOutputEnd = null;
|
|
169
|
-
var progress;
|
|
170
|
-
var forceFirstProgress;
|
|
171
|
-
if (!skip && this._reset) {
|
|
172
|
-
progress = this._reset(this.context);
|
|
173
|
-
if (progress && progress.progress) {
|
|
174
|
-
forceFirstProgress = progress.forceFirstProgress;
|
|
175
|
-
progress = progress.progress;
|
|
176
|
-
}
|
|
177
|
-
// To simplify no progress checking, array must has item.
|
|
178
|
-
if (isArray(progress) && !progress.length) {
|
|
179
|
-
progress = null;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
this._progress = progress;
|
|
183
|
-
this._modBy = this._modDataCount = null;
|
|
184
|
-
var downstream = this._downstream;
|
|
185
|
-
downstream && downstream.dirty();
|
|
186
|
-
return forceFirstProgress;
|
|
187
|
-
};
|
|
188
|
-
Task.prototype.unfinished = function () {
|
|
189
|
-
return this._progress && this._dueIndex < this._dueEnd;
|
|
190
|
-
};
|
|
191
|
-
/**
|
|
192
|
-
* @param downTask The downstream task.
|
|
193
|
-
* @return The downstream task.
|
|
194
|
-
*/
|
|
195
|
-
Task.prototype.pipe = function (downTask) {
|
|
196
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
197
|
-
assert(downTask && !downTask._disposed && downTask !== this);
|
|
198
|
-
}
|
|
199
|
-
// If already downstream, do not dirty downTask.
|
|
200
|
-
if (this._downstream !== downTask || this._dirty) {
|
|
201
|
-
this._downstream = downTask;
|
|
202
|
-
downTask._upstream = this;
|
|
203
|
-
downTask.dirty();
|
|
204
|
-
}
|
|
205
|
-
};
|
|
206
|
-
Task.prototype.dispose = function () {
|
|
207
|
-
if (this._disposed) {
|
|
208
|
-
return;
|
|
209
|
-
}
|
|
210
|
-
this._upstream && (this._upstream._downstream = null);
|
|
211
|
-
this._downstream && (this._downstream._upstream = null);
|
|
212
|
-
this._dirty = false;
|
|
213
|
-
this._disposed = true;
|
|
214
|
-
};
|
|
215
|
-
Task.prototype.getUpstream = function () {
|
|
216
|
-
return this._upstream;
|
|
217
|
-
};
|
|
218
|
-
Task.prototype.getDownstream = function () {
|
|
219
|
-
return this._downstream;
|
|
220
|
-
};
|
|
221
|
-
Task.prototype.setOutputEnd = function (end) {
|
|
222
|
-
// This only happens in dataTask, dataZoom, map, currently.
|
|
223
|
-
// where dataZoom do not set end each time, but only set
|
|
224
|
-
// when reset. So we should record the set end, in case
|
|
225
|
-
// that the stub of dataZoom perform again and earse the
|
|
226
|
-
// set end by upstream.
|
|
227
|
-
this._outputDueEnd = this._settedOutputEnd = end;
|
|
228
|
-
};
|
|
229
|
-
return Task;
|
|
230
|
-
}();
|
|
231
|
-
export { Task };
|
|
232
|
-
var iterator = function () {
|
|
233
|
-
var end;
|
|
234
|
-
var current;
|
|
235
|
-
var modBy;
|
|
236
|
-
var modDataCount;
|
|
237
|
-
var winCount;
|
|
238
|
-
var it = {
|
|
239
|
-
reset: function (s, e, sStep, sCount) {
|
|
240
|
-
current = s;
|
|
241
|
-
end = e;
|
|
242
|
-
modBy = sStep;
|
|
243
|
-
modDataCount = sCount;
|
|
244
|
-
winCount = Math.ceil(modDataCount / modBy);
|
|
245
|
-
it.next = modBy > 1 && modDataCount > 0 ? modNext : sequentialNext;
|
|
246
|
-
}
|
|
247
|
-
};
|
|
248
|
-
return it;
|
|
249
|
-
function sequentialNext() {
|
|
250
|
-
return current < end ? current++ : null;
|
|
251
|
-
}
|
|
252
|
-
function modNext() {
|
|
253
|
-
var dataIndex = current % winCount * modBy + Math.ceil(current / winCount);
|
|
254
|
-
var result = current >= end ? null : dataIndex < modDataCount ? dataIndex
|
|
255
|
-
// If modDataCount is smaller than data.count() (consider `appendData` case),
|
|
256
|
-
// Use normal linear rendering mode.
|
|
257
|
-
: current;
|
|
258
|
-
current++;
|
|
259
|
-
return result;
|
|
260
|
-
}
|
|
261
|
-
}();
|
|
262
|
-
// -----------------------------------------------------------------------------
|
|
263
|
-
// For stream debug (Should be commented out after used!)
|
|
264
|
-
// @usage: printTask(this, 'begin');
|
|
265
|
-
// @usage: printTask(this, null, {someExtraProp});
|
|
266
|
-
// @usage: Use `__idxInPipeline` as conditional breakpiont.
|
|
267
|
-
//
|
|
268
|
-
// window.printTask = function (task: any, prefix: string, extra: { [key: string]: unknown }): void {
|
|
269
|
-
// window.ecTaskUID == null && (window.ecTaskUID = 0);
|
|
270
|
-
// task.uidDebug == null && (task.uidDebug = `task_${window.ecTaskUID++}`);
|
|
271
|
-
// task.agent && task.agent.uidDebug == null && (task.agent.uidDebug = `task_${window.ecTaskUID++}`);
|
|
272
|
-
// let props = [];
|
|
273
|
-
// if (task.__pipeline) {
|
|
274
|
-
// let val = `${task.__idxInPipeline}/${task.__pipeline.tail.__idxInPipeline} ${task.agent ? '(stub)' : ''}`;
|
|
275
|
-
// props.push({text: '__idxInPipeline/total', value: val});
|
|
276
|
-
// } else {
|
|
277
|
-
// let stubCount = 0;
|
|
278
|
-
// task.agentStubMap.each(() => stubCount++);
|
|
279
|
-
// props.push({text: 'idx', value: `overall (stubs: ${stubCount})`});
|
|
280
|
-
// }
|
|
281
|
-
// props.push({text: 'uid', value: task.uidDebug});
|
|
282
|
-
// if (task.__pipeline) {
|
|
283
|
-
// props.push({text: 'pipelineId', value: task.__pipeline.id});
|
|
284
|
-
// task.agent && props.push(
|
|
285
|
-
// {text: 'stubFor', value: task.agent.uidDebug}
|
|
286
|
-
// );
|
|
287
|
-
// }
|
|
288
|
-
// props.push(
|
|
289
|
-
// {text: 'dirty', value: task._dirty},
|
|
290
|
-
// {text: 'dueIndex', value: task._dueIndex},
|
|
291
|
-
// {text: 'dueEnd', value: task._dueEnd},
|
|
292
|
-
// {text: 'outputDueEnd', value: task._outputDueEnd}
|
|
293
|
-
// );
|
|
294
|
-
// if (extra) {
|
|
295
|
-
// Object.keys(extra).forEach(key => {
|
|
296
|
-
// props.push({text: key, value: extra[key]});
|
|
297
|
-
// });
|
|
298
|
-
// }
|
|
299
|
-
// let args = ['color: blue'];
|
|
300
|
-
// let msg = `%c[${prefix || 'T'}] %c` + props.map(item => (
|
|
301
|
-
// args.push('color: green', 'color: red'),
|
|
302
|
-
// `${item.text}: %c${item.value}`
|
|
303
|
-
// )).join('%c, ');
|
|
304
|
-
// console.log.apply(console, [msg].concat(args));
|
|
305
|
-
// // console.log(this);
|
|
306
|
-
// };
|
|
307
|
-
// window.printPipeline = function (task: any, prefix: string) {
|
|
308
|
-
// const pipeline = task.__pipeline;
|
|
309
|
-
// let currTask = pipeline.head;
|
|
310
|
-
// while (currTask) {
|
|
311
|
-
// window.printTask(currTask, prefix);
|
|
312
|
-
// currTask = currTask._downstream;
|
|
313
|
-
// }
|
|
314
|
-
// };
|
|
315
|
-
// window.showChain = function (chainHeadTask) {
|
|
316
|
-
// var chain = [];
|
|
317
|
-
// var task = chainHeadTask;
|
|
318
|
-
// while (task) {
|
|
319
|
-
// chain.push({
|
|
320
|
-
// task: task,
|
|
321
|
-
// up: task._upstream,
|
|
322
|
-
// down: task._downstream,
|
|
323
|
-
// idxInPipeline: task.__idxInPipeline
|
|
324
|
-
// });
|
|
325
|
-
// task = task._downstream;
|
|
326
|
-
// }
|
|
327
|
-
// return chain;
|
|
328
|
-
// };
|
|
329
|
-
// window.findTaskInChain = function (task, chainHeadTask) {
|
|
330
|
-
// let chain = window.showChain(chainHeadTask);
|
|
331
|
-
// let result = [];
|
|
332
|
-
// for (let i = 0; i < chain.length; i++) {
|
|
333
|
-
// let chainItem = chain[i];
|
|
334
|
-
// if (chainItem.task === task) {
|
|
335
|
-
// result.push(i);
|
|
336
|
-
// }
|
|
337
|
-
// }
|
|
338
|
-
// return result;
|
|
339
|
-
// };
|
|
340
|
-
// window.printChainAEachInChainB = function (chainHeadTaskA, chainHeadTaskB) {
|
|
341
|
-
// let chainA = window.showChain(chainHeadTaskA);
|
|
342
|
-
// for (let i = 0; i < chainA.length; i++) {
|
|
343
|
-
// console.log('chainAIdx:', i, 'inChainB:', window.findTaskInChain(chainA[i].task, chainHeadTaskB));
|
|
344
|
-
// }
|
|
345
|
-
// };
|