tvcharts 0.8.70 → 0.8.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.blank.js +1 -1
- package/index.common.js +22 -22
- package/index.js +6 -6
- package/index.simple.js +9 -9
- package/lib/animation/basicTransition.js +243 -0
- package/lib/animation/customGraphicKeyframeAnimation.js +143 -0
- package/lib/animation/customGraphicTransition.js +481 -0
- package/lib/animation/morphTransitionHelper.js +203 -0
- package/lib/animation/universalTransition.js +650 -0
- package/lib/chart/arrowsPlot/ArrowPlotView.js +132 -0
- package/lib/chart/arrowsPlot/ArrowSymbolPath.js +70 -0
- package/lib/chart/arrowsPlot/ArrowsPlotLayout.js +123 -0
- package/lib/chart/arrowsPlot/ArrowsPlotSeries.js +88 -0
- package/lib/chart/arrowsPlot/install.js +53 -0
- package/lib/chart/bar/BarSeries.js +112 -0
- package/lib/chart/bar/BarView.js +892 -0
- package/lib/chart/bar/BaseBarSeries.js +159 -0
- package/lib/chart/bar/PictorialBarSeries.js +95 -0
- package/lib/chart/bar/PictorialBarView.js +630 -0
- package/lib/chart/bar/install.js +81 -0
- package/lib/chart/bar/installPictorialBar.js +54 -0
- package/lib/chart/bar.js +46 -0
- package/lib/chart/barPlot/BarPath.js +68 -0
- package/lib/chart/barPlot/BarPlotSeries.js +139 -0
- package/lib/chart/barPlot/BarPlotView.js +116 -0
- package/lib/chart/barPlot/barPlotLayout.js +149 -0
- package/lib/chart/barPlot/install.js +51 -0
- package/lib/chart/bgColor/BgColorLayout.js +122 -0
- package/lib/chart/bgColor/BgColorPath.js +106 -0
- package/lib/chart/bgColor/BgColorSeries.js +98 -0
- package/lib/chart/bgColor/BgColorView.js +119 -0
- package/lib/chart/bgColor/install.js +73 -0
- package/lib/chart/bgColor.js +46 -0
- package/lib/chart/boxes/BoxesLayout.js +206 -0
- package/lib/chart/boxes/BoxesPath.js +78 -0
- package/lib/chart/boxes/BoxesSeries.js +131 -0
- package/lib/chart/boxes/BoxesView.js +174 -0
- package/lib/chart/boxes/install.js +51 -0
- package/lib/chart/boxes/util.js +77 -0
- package/lib/chart/boxes.js +46 -0
- package/lib/chart/boxplot/BoxplotSeries.js +108 -0
- package/lib/chart/boxplot/BoxplotView.js +172 -0
- package/lib/chart/boxplot/boxplotLayout.js +181 -0
- package/lib/chart/boxplot/boxplotTransform.js +66 -0
- package/lib/chart/boxplot/install.js +53 -0
- package/lib/chart/boxplot/prepareBoxplotData.js +96 -0
- package/lib/chart/boxplot.js +46 -0
- package/lib/chart/candlePlot/CandlePlotSeries.js +149 -0
- package/lib/chart/candlePlot/CandlePlotView.js +133 -0
- package/lib/chart/candlePlot/NormalBoxPath.js +66 -0
- package/lib/chart/candlePlot/WickPath.js +57 -0
- package/lib/chart/candlePlot/candlePlotLayout.js +244 -0
- package/lib/chart/candlePlot/install.js +51 -0
- package/lib/chart/candlestick/CandlestickSeries.js +138 -0
- package/lib/chart/candlestick/CandlestickView.js +335 -0
- package/lib/chart/candlestick/candlestickLayout.js +234 -0
- package/lib/chart/candlestick/candlestickVisual.js +86 -0
- package/lib/chart/candlestick/install.js +55 -0
- package/lib/chart/candlestick/preprocessor.js +55 -0
- package/lib/chart/candlestick.js +46 -0
- package/lib/chart/charPlot/CharPlotLayout.js +140 -0
- package/lib/chart/charPlot/CharPlotSeries.js +106 -0
- package/lib/chart/charPlot/CharPlotView.js +135 -0
- package/lib/chart/charPlot/install.js +53 -0
- package/lib/chart/custom/CustomSeries.js +106 -0
- package/lib/chart/custom/CustomView.js +925 -0
- package/lib/chart/custom/install.js +49 -0
- package/lib/chart/custom.js +46 -0
- package/lib/chart/effectScatter/EffectScatterSeries.js +105 -0
- package/lib/chart/effectScatter/EffectScatterView.js +99 -0
- package/lib/chart/effectScatter/install.js +51 -0
- package/lib/chart/effectScatter.js +46 -0
- package/lib/chart/fills/FillPolyPath.js +106 -0
- package/lib/chart/fills/FillsSeries.js +113 -0
- package/lib/chart/fills/FillsView.js +148 -0
- package/lib/chart/fills/LargeFillPolyPath.js +107 -0
- package/lib/chart/fills/fillsLayout.js +175 -0
- package/lib/chart/fills/install.js +73 -0
- package/lib/chart/fills.js +46 -0
- package/lib/chart/funnel/FunnelSeries.js +145 -0
- package/lib/chart/funnel/FunnelView.js +198 -0
- package/lib/chart/funnel/funnelLayout.js +344 -0
- package/lib/chart/funnel/install.js +53 -0
- package/lib/chart/funnel.js +46 -0
- package/lib/chart/gauge/GaugeSeries.js +185 -0
- package/lib/chart/gauge/GaugeView.js +560 -0
- package/lib/chart/gauge/PointerPath.js +83 -0
- package/lib/chart/gauge/install.js +49 -0
- package/lib/chart/gauge.js +46 -0
- package/lib/chart/graph/GraphSeries.js +275 -0
- package/lib/chart/graph/GraphView.js +266 -0
- package/lib/chart/graph/adjustEdge.js +173 -0
- package/lib/chart/graph/categoryFilter.js +74 -0
- package/lib/chart/graph/categoryVisual.js +90 -0
- package/lib/chart/graph/circularLayout.js +51 -0
- package/lib/chart/graph/circularLayoutHelper.js +191 -0
- package/lib/chart/graph/createView.js +103 -0
- package/lib/chart/graph/edgeVisual.js +93 -0
- package/lib/chart/graph/forceHelper.js +185 -0
- package/lib/chart/graph/forceLayout.js +160 -0
- package/lib/chart/graph/install.js +97 -0
- package/lib/chart/graph/simpleLayout.js +78 -0
- package/lib/chart/graph/simpleLayoutHelper.js +70 -0
- package/lib/chart/graph.js +46 -0
- package/lib/chart/heatmap/HeatmapLayer.js +166 -0
- package/lib/chart/heatmap/HeatmapSeries.js +89 -0
- package/lib/chart/heatmap/HeatmapView.js +310 -0
- package/lib/chart/heatmap/install.js +49 -0
- package/lib/chart/heatmap.js +46 -0
- package/lib/chart/helper/EffectLine.js +207 -0
- package/lib/chart/helper/EffectPolyline.js +134 -0
- package/lib/chart/helper/EffectSymbol.js +207 -0
- package/lib/chart/helper/LargeLineDraw.js +302 -0
- package/lib/chart/helper/LargeSymbolDraw.js +309 -0
- package/lib/chart/helper/Line.js +420 -0
- package/lib/chart/helper/LineDraw.js +167 -0
- package/lib/chart/helper/LinePath.js +111 -0
- package/lib/chart/helper/Polyline.js +107 -0
- package/lib/chart/helper/Symbol.js +380 -0
- package/lib/chart/helper/SymbolDraw.js +217 -0
- package/lib/chart/helper/createClipPathFromCoordSys.js +145 -0
- package/lib/chart/helper/createGraphFromNodeEdge.js +114 -0
- package/lib/chart/helper/createRenderPlanner.js +62 -0
- package/lib/chart/helper/createSeriesData.js +162 -0
- package/lib/chart/helper/createSeriesDataSimply.js +68 -0
- package/lib/chart/helper/enableAriaDecalForTree.js +58 -0
- package/lib/chart/helper/labelHelper.js +77 -0
- package/lib/chart/helper/multipleGraphEdgeHelper.js +226 -0
- package/lib/chart/helper/sectorHelper.js +62 -0
- package/lib/chart/helper/treeHelper.js +92 -0
- package/lib/chart/helper/whiskerBoxCommon.js +138 -0
- package/lib/chart/hlines/HLinesSeries.js +140 -0
- package/lib/chart/hlines/HLinesView.js +100 -0
- package/lib/chart/hlines/hLinesLayout.js +90 -0
- package/lib/chart/hlines/install.js +73 -0
- package/lib/chart/hlines.js +46 -0
- package/lib/chart/labels/LabelsSeries.js +146 -0
- package/lib/chart/labels/LabelsView.js +186 -0
- package/lib/chart/labels/SymbolPath.js +114 -0
- package/lib/chart/labels/install.js +55 -0
- package/lib/chart/labels/labelsLayout.js +301 -0
- package/lib/chart/labels/labelsVisual.js +185 -0
- package/lib/chart/labels.js +46 -0
- package/lib/chart/line/LineSeries.js +155 -0
- package/lib/chart/line/LineView.js +1121 -0
- package/lib/chart/line/helper.js +123 -0
- package/lib/chart/line/install.js +69 -0
- package/lib/chart/line/lineAnimationDiff.js +165 -0
- package/lib/chart/line/poly.js +353 -0
- package/lib/chart/line.js +46 -0
- package/lib/chart/lineFills/LineFillsLayout.js +125 -0
- package/lib/chart/lineFills/LineFillsPath.js +82 -0
- package/lib/chart/lineFills/LineFillsSeries.js +126 -0
- package/lib/chart/lineFills/LineFillsView.js +120 -0
- package/lib/chart/lineFills/install.js +51 -0
- package/lib/chart/lineFills.js +46 -0
- package/lib/chart/lines/LinesSeries.js +310 -0
- package/lib/chart/lines/LinesView.js +184 -0
- package/lib/chart/lines/install.js +53 -0
- package/lib/chart/lines/linesLayout.js +113 -0
- package/lib/chart/lines.js +46 -0
- package/lib/chart/linesPlot/BarPath.js +108 -0
- package/lib/chart/linesPlot/GradientBarPath.js +119 -0
- package/lib/chart/linesPlot/GradientHistogramPlotPath.js +106 -0
- package/lib/chart/linesPlot/GradientLinePath.js +117 -0
- package/lib/chart/linesPlot/HistogramPlotPath.js +97 -0
- package/lib/chart/linesPlot/LinePlotPath.js +137 -0
- package/lib/chart/linesPlot/LinesPlotSeries.js +137 -0
- package/lib/chart/linesPlot/LinesPlotView.js +641 -0
- package/lib/chart/linesPlot/PolyPlotPath.js +120 -0
- package/lib/chart/linesPlot/SymbolPath.js +100 -0
- package/lib/chart/linesPlot/install.js +52 -0
- package/lib/chart/linesPlot/linesPlotLayout.js +278 -0
- package/lib/chart/linesPlot.js +46 -0
- package/lib/chart/map/MapSeries.js +247 -0
- package/lib/chart/map/MapView.js +177 -0
- package/lib/chart/map/install.js +58 -0
- package/lib/chart/map/mapDataStatistic.js +104 -0
- package/lib/chart/map/mapSymbolLayout.js +86 -0
- package/lib/chart/map.js +46 -0
- package/lib/chart/mineLines/LinesPath.js +226 -0
- package/lib/chart/mineLines/MineLinesLayout.js +118 -0
- package/lib/chart/mineLines/MineLinesSeries.js +128 -0
- package/lib/chart/mineLines/MineLinesView.js +140 -0
- package/lib/chart/mineLines/install.js +51 -0
- package/lib/chart/mineLines.js +46 -0
- package/lib/chart/minePolyLines/MinePolyLinesLayout.js +102 -0
- package/lib/chart/minePolyLines/MinePolyLinesSeries.js +129 -0
- package/lib/chart/minePolyLines/MinePolyLinesView.js +143 -0
- package/lib/chart/minePolyLines/PolyLinesPath.js +169 -0
- package/lib/chart/minePolyLines/install.js +51 -0
- package/lib/chart/parallel/ParallelSeries.js +127 -0
- package/lib/chart/parallel/ParallelView.js +221 -0
- package/lib/chart/parallel/install.js +54 -0
- package/lib/chart/parallel.js +46 -0
- package/lib/chart/pictorialBar.js +46 -0
- package/lib/chart/pie/PieSeries.js +216 -0
- package/lib/chart/pie/PieView.js +283 -0
- package/lib/chart/pie/install.js +58 -0
- package/lib/chart/pie/labelLayout.js +474 -0
- package/lib/chart/pie/pieLayout.js +238 -0
- package/lib/chart/pie.js +46 -0
- package/lib/chart/playbackOrder/PlaybackHtmlContent.js +179 -0
- package/lib/chart/playbackOrder/PlaybackOrderLayout.js +108 -0
- package/lib/chart/playbackOrder/PlaybackOrderSeries.js +103 -0
- package/lib/chart/playbackOrder/PlaybackOrderView.js +311 -0
- package/lib/chart/playbackOrder/SymbolPath.js +87 -0
- package/lib/chart/playbackOrder/install.js +52 -0
- package/lib/chart/radar/RadarSeries.js +134 -0
- package/lib/chart/radar/RadarView.js +225 -0
- package/lib/chart/radar/backwardCompat.js +75 -0
- package/lib/chart/radar/install.js +58 -0
- package/lib/chart/radar/radarLayout.js +82 -0
- package/lib/chart/radar.js +46 -0
- package/lib/chart/sankey/SankeySeries.js +215 -0
- package/lib/chart/sankey/SankeyView.js +324 -0
- package/lib/chart/sankey/install.js +67 -0
- package/lib/chart/sankey/sankeyLayout.js +489 -0
- package/lib/chart/sankey/sankeyVisual.js +92 -0
- package/lib/chart/sankey.js +46 -0
- package/lib/chart/scatter/ScatterSeries.js +118 -0
- package/lib/chart/scatter/ScatterView.js +134 -0
- package/lib/chart/scatter/install.js +55 -0
- package/lib/chart/scatter.js +46 -0
- package/lib/chart/strategy/StrategyLayout.js +159 -0
- package/lib/chart/strategy/StrategySeries.js +102 -0
- package/lib/chart/strategy/StrategyView.js +274 -0
- package/lib/chart/strategy/SymbolPath.js +85 -0
- package/lib/chart/strategy/install.js +52 -0
- package/lib/chart/sunburst/SunburstPiece.js +230 -0
- package/lib/chart/sunburst/SunburstSeries.js +206 -0
- package/lib/chart/sunburst/SunburstView.js +206 -0
- package/lib/chart/sunburst/install.js +58 -0
- package/lib/chart/sunburst/sunburstAction.js +108 -0
- package/lib/chart/sunburst/sunburstLayout.js +216 -0
- package/lib/chart/sunburst/sunburstVisual.js +75 -0
- package/lib/chart/sunburst.js +46 -0
- package/lib/chart/themeRiver/ThemeRiverSeries.js +260 -0
- package/lib/chart/themeRiver/ThemeRiverView.js +186 -0
- package/lib/chart/themeRiver/install.js +35 -0
- package/lib/chart/themeRiver/themeRiverLayout.js +157 -0
- package/lib/chart/themeRiver.js +46 -0
- package/lib/chart/tree/TreeSeries.js +187 -0
- package/lib/chart/tree/TreeView.js +622 -0
- package/lib/chart/tree/install.js +55 -0
- package/lib/chart/tree/layoutHelper.js +288 -0
- package/lib/chart/tree/treeAction.js +82 -0
- package/lib/chart/tree/treeLayout.js +139 -0
- package/lib/chart/tree/treeVisual.js +57 -0
- package/lib/chart/tree.js +46 -0
- package/lib/chart/treemap/Breadcrumb.js +187 -0
- package/lib/chart/treemap/TreemapSeries.js +367 -0
- package/lib/chart/treemap/TreemapView.js +852 -0
- package/lib/chart/treemap/install.js +55 -0
- package/lib/chart/treemap/treemapAction.js +75 -0
- package/lib/chart/treemap/treemapLayout.js +499 -0
- package/lib/chart/treemap/treemapVisual.js +194 -0
- package/lib/chart/treemap.js +46 -0
- package/lib/component/alarm/AlarmModel.js +116 -0
- package/lib/component/alarm/AlarmView.js +457 -0
- package/lib/component/alarm/install.js +61 -0
- package/lib/component/aria/install.js +49 -0
- package/lib/component/aria/preprocessor.js +61 -0
- package/lib/component/aria.js +46 -0
- package/lib/component/axis/AngleAxisView.js +323 -0
- package/lib/component/axis/AxisBuilder.js +626 -0
- package/lib/component/axis/AxisView.js +181 -0
- package/lib/component/axis/CartesianAxisView.js +247 -0
- package/lib/component/axis/ParallelAxisView.js +174 -0
- package/lib/component/axis/RadiusAxisView.js +206 -0
- package/lib/component/axis/SingleAxisView.js +146 -0
- package/lib/component/axis/axisSplitHelper.js +124 -0
- package/lib/component/axis/globalListener.js +81 -0
- package/lib/component/axisPointer/AxisPointerModel.js +123 -0
- package/lib/component/axisPointer/AxisPointerView.js +124 -0
- package/lib/component/axisPointer/BaseAxisPointer.js +513 -0
- package/lib/component/axisPointer/CartesianAxisPointer.js +148 -0
- package/lib/component/axisPointer/PolarAxisPointer.js +144 -0
- package/lib/component/axisPointer/SingleAxisPointer.js +145 -0
- package/lib/component/axisPointer/axisTrigger.js +460 -0
- package/lib/component/axisPointer/findPointFromSeries.js +98 -0
- package/lib/component/axisPointer/globalListener.js +142 -0
- package/lib/component/axisPointer/install.js +89 -0
- package/lib/component/axisPointer/modelHelper.js +298 -0
- package/lib/component/axisPointer/viewHelper.js +201 -0
- package/lib/component/axisPointer.js +46 -0
- package/lib/component/bgRect/install.js +128 -0
- package/lib/component/brush/BrushModel.js +136 -0
- package/lib/component/brush/BrushView.js +111 -0
- package/lib/component/brush/install.js +101 -0
- package/lib/component/brush/preprocessor.js +87 -0
- package/lib/component/brush/selector.js +115 -0
- package/lib/component/brush/visualEncoding.js +257 -0
- package/lib/component/brush.js +46 -0
- package/lib/component/calendar/CalendarView.js +390 -0
- package/lib/component/calendar/install.js +51 -0
- package/lib/component/calendar.js +46 -0
- package/lib/component/cursorPointer/install.js +130 -0
- package/lib/component/dataZoom/AxisProxy.js +526 -0
- package/lib/component/dataZoom/DataZoomModel.js +520 -0
- package/lib/component/dataZoom/DataZoomView.js +61 -0
- package/lib/component/dataZoom/InsideZoomModel.js +66 -0
- package/lib/component/dataZoom/InsideZoomView.js +304 -0
- package/lib/component/dataZoom/SelectZoomModel.js +56 -0
- package/lib/component/dataZoom/SelectZoomView.js +56 -0
- package/lib/component/dataZoom/SliderZoomModel.js +126 -0
- package/lib/component/dataZoom/SliderZoomView.js +817 -0
- package/lib/component/dataZoom/dataZoomAction.js +84 -0
- package/lib/component/dataZoom/dataZoomProcessor.js +152 -0
- package/lib/component/dataZoom/helper.js +220 -0
- package/lib/component/dataZoom/history.js +116 -0
- package/lib/component/dataZoom/install.js +52 -0
- package/lib/component/dataZoom/installCommon.js +58 -0
- package/lib/component/dataZoom/installDataZoomInside.js +53 -0
- package/lib/component/dataZoom/installDataZoomSelect.js +51 -0
- package/lib/component/dataZoom/installDataZoomSlider.js +51 -0
- package/lib/component/dataZoom/roams.js +319 -0
- package/lib/component/dataZoom.js +46 -0
- package/lib/component/dataZoomInside.js +46 -0
- package/lib/component/dataZoomSelect.js +50 -0
- package/lib/component/dataZoomSlider.js +46 -0
- package/lib/component/dataset/install.js +99 -0
- package/lib/component/dataset.js +46 -0
- package/lib/component/geo/GeoView.js +110 -0
- package/lib/component/geo/install.js +141 -0
- package/lib/component/geo.js +46 -0
- package/lib/component/graphic/GraphicModel.js +273 -0
- package/lib/component/graphic/GraphicView.js +531 -0
- package/lib/component/graphic/install.js +78 -0
- package/lib/component/graphic.js +46 -0
- package/lib/component/grid/install.js +50 -0
- package/lib/component/grid/installSimple.js +96 -0
- package/lib/component/grid.js +46 -0
- package/lib/component/gridSimple.js +46 -0
- package/lib/component/helper/BrushController.js +751 -0
- package/lib/component/helper/BrushTargetManager.js +343 -0
- package/lib/component/helper/MapDraw.js +673 -0
- package/lib/component/helper/RoamController.js +310 -0
- package/lib/component/helper/brushHelper.js +71 -0
- package/lib/component/helper/interactionMutex.js +77 -0
- package/lib/component/helper/listComponent.js +87 -0
- package/lib/component/legend/LegendModel.js +318 -0
- package/lib/component/legend/LegendView.js +524 -0
- package/lib/component/legend/ScrollableLegendModel.js +105 -0
- package/lib/component/legend/ScrollableLegendView.js +401 -0
- package/lib/component/legend/install.js +50 -0
- package/lib/component/legend/installLegendPlain.js +56 -0
- package/lib/component/legend/installLegendScroll.js +54 -0
- package/lib/component/legend/legendAction.js +113 -0
- package/lib/component/legend.js +47 -0
- package/lib/component/legendPlain.js +47 -0
- package/lib/component/legendScroll.js +49 -0
- package/lib/component/limitTip/install.js +115 -0
- package/lib/component/logo/install.js +117 -0
- package/lib/component/markArea.js +46 -0
- package/lib/component/markLabel.js +46 -0
- package/lib/component/markLine.js +46 -0
- package/lib/component/markPoint.js +47 -0
- package/lib/component/marker/MarkAreaModel.js +85 -0
- package/lib/component/marker/MarkAreaView.js +362 -0
- package/lib/component/marker/MarkLabelModal.js +139 -0
- package/lib/component/marker/MarkLabelView.js +918 -0
- package/lib/component/marker/MarkLineModel.js +88 -0
- package/lib/component/marker/MarkLineView.js +363 -0
- package/lib/component/marker/MarkPointModel.js +82 -0
- package/lib/component/marker/MarkPointView.js +191 -0
- package/lib/component/marker/MarkerModel.js +166 -0
- package/lib/component/marker/MarkerView.js +95 -0
- package/lib/component/marker/checkMarkerInSeries.js +56 -0
- package/lib/component/marker/installMarkArea.js +56 -0
- package/lib/component/marker/installMarkLabel.js +38 -0
- package/lib/component/marker/installMarkLine.js +38 -0
- package/lib/component/marker/installMarkPoint.js +38 -0
- package/lib/component/marker/markerHelper.js +188 -0
- package/lib/component/parallel/ParallelView.js +137 -0
- package/lib/component/parallel/install.js +73 -0
- package/lib/component/parallel.js +46 -0
- package/lib/component/playback/PlaybackOrderModel.js +51 -0
- package/lib/component/playback/PlaybackOrderView.js +1309 -0
- package/lib/component/playback/PlaybackSelectModel.js +55 -0
- package/lib/component/playback/PlaybackSelectView.js +246 -0
- package/lib/component/playback/install.js +46 -0
- package/lib/component/polar/install.js +91 -0
- package/lib/component/polar.js +46 -0
- package/lib/component/radar/RadarView.js +203 -0
- package/lib/component/radar/install.js +63 -0
- package/lib/component/radar.js +46 -0
- package/lib/component/singleAxis/install.js +73 -0
- package/lib/component/singleAxis.js +46 -0
- package/lib/component/table/TableModel.js +95 -0
- package/lib/component/table/TableView.js +462 -0
- package/lib/component/table/install.js +49 -0
- package/lib/component/table.js +46 -0
- package/lib/component/timeline/SliderTimelineModel.js +159 -0
- package/lib/component/timeline/SliderTimelineView.js +653 -0
- package/lib/component/timeline/TimelineAxis.js +71 -0
- package/lib/component/timeline/TimelineModel.js +188 -0
- package/lib/component/timeline/TimelineView.js +56 -0
- package/lib/component/timeline/install.js +39 -0
- package/lib/component/timeline/preprocessor.js +113 -0
- package/lib/component/timeline/timelineAction.js +82 -0
- package/lib/component/timeline.js +49 -0
- package/lib/component/title/install.js +229 -0
- package/lib/component/title.js +46 -0
- package/lib/component/toolbox/ToolboxModel.js +108 -0
- package/lib/component/toolbox/ToolboxView.js +298 -0
- package/lib/component/toolbox/feature/Brush.js +134 -0
- package/lib/component/toolbox/feature/DataView.js +448 -0
- package/lib/component/toolbox/feature/DataZoom.js +251 -0
- package/lib/component/toolbox/feature/MagicType.js +210 -0
- package/lib/component/toolbox/feature/Restore.js +79 -0
- package/lib/component/toolbox/feature/SaveAsImage.js +145 -0
- package/lib/component/toolbox/install.js +64 -0
- package/lib/component/toolbox.js +46 -0
- package/lib/component/tooltip/TooltipHTMLContent.js +398 -0
- package/lib/component/tooltip/TooltipModel.js +130 -0
- package/lib/component/tooltip/TooltipRichContent.js +209 -0
- package/lib/component/tooltip/TooltipView.js +907 -0
- package/lib/component/tooltip/helper.js +78 -0
- package/lib/component/tooltip/install.js +81 -0
- package/lib/component/tooltip/seriesFormatTooltip.js +142 -0
- package/lib/component/tooltip/tooltipMarkup.js +324 -0
- package/lib/component/tooltip.js +46 -0
- package/lib/component/transform/filterTransform.js +96 -0
- package/lib/component/transform/install.js +49 -0
- package/lib/component/transform/sortTransform.js +155 -0
- package/lib/component/transform.js +46 -0
- package/lib/component/visualMap/ContinuousModel.js +256 -0
- package/lib/component/visualMap/ContinuousView.js +688 -0
- package/lib/component/visualMap/PiecewiseModel.js +439 -0
- package/lib/component/visualMap/PiecewiseView.js +213 -0
- package/lib/component/visualMap/VisualMapModel.js +413 -0
- package/lib/component/visualMap/VisualMapView.js +154 -0
- package/lib/component/visualMap/helper.js +90 -0
- package/lib/component/visualMap/install.js +52 -0
- package/lib/component/visualMap/installCommon.js +63 -0
- package/lib/component/visualMap/installVisualMapContinuous.js +51 -0
- package/lib/component/visualMap/installVisualMapPiecewise.js +51 -0
- package/lib/component/visualMap/preprocessor.js +78 -0
- package/lib/component/visualMap/typeDefaulter.js +48 -0
- package/lib/component/visualMap/visualEncoding.js +108 -0
- package/lib/component/visualMap.js +46 -0
- package/lib/component/visualMapContinuous.js +46 -0
- package/lib/component/visualMapPiecewise.js +46 -0
- package/lib/coord/Axis.js +301 -0
- package/lib/coord/View.js +251 -0
- package/lib/coord/axisAlignTicks.js +140 -0
- package/lib/coord/axisDefault.js +211 -0
- package/lib/coord/axisHelper.js +374 -0
- package/lib/coord/axisModelCreator.js +110 -0
- package/lib/coord/axisTickLabelBuilder.js +435 -0
- package/lib/coord/calendar/Calendar.js +374 -0
- package/lib/coord/calendar/CalendarModel.js +160 -0
- package/lib/coord/cartesian/Axis2D.js +94 -0
- package/lib/coord/cartesian/AxisModel.js +62 -0
- package/lib/coord/cartesian/Cartesian.js +74 -0
- package/lib/coord/cartesian/Cartesian2D.js +185 -0
- package/lib/coord/cartesian/Grid.js +508 -0
- package/lib/coord/cartesian/GridModel.js +72 -0
- package/lib/coord/cartesian/cartesianAxisHelper.js +119 -0
- package/lib/coord/cartesian/defaultAxisExtentFromData.js +223 -0
- package/lib/coord/cartesian/prepareCustom.js +74 -0
- package/lib/coord/geo/Geo.js +209 -0
- package/lib/coord/geo/GeoJSONResource.js +144 -0
- package/lib/coord/geo/GeoModel.js +212 -0
- package/lib/coord/geo/GeoSVGResource.js +333 -0
- package/lib/coord/geo/Region.js +286 -0
- package/lib/coord/geo/fix/diaoyuIsland.js +56 -0
- package/lib/coord/geo/fix/nanhai.js +73 -0
- package/lib/coord/geo/geoCreator.js +236 -0
- package/lib/coord/geo/geoSourceManager.js +121 -0
- package/lib/coord/geo/parseGeoJson.js +146 -0
- package/lib/coord/geo/prepareCustom.js +79 -0
- package/lib/coord/parallel/AxisModel.js +114 -0
- package/lib/coord/parallel/Parallel.js +410 -0
- package/lib/coord/parallel/ParallelAxis.js +59 -0
- package/lib/coord/parallel/ParallelModel.js +122 -0
- package/lib/coord/parallel/parallelCreator.js +71 -0
- package/lib/coord/parallel/parallelPreprocessor.js +84 -0
- package/lib/coord/polar/AngleAxis.js +111 -0
- package/lib/coord/polar/AxisModel.js +83 -0
- package/lib/coord/polar/Polar.js +216 -0
- package/lib/coord/polar/PolarModel.js +73 -0
- package/lib/coord/polar/RadiusAxis.js +58 -0
- package/lib/coord/polar/polarCreator.js +158 -0
- package/lib/coord/polar/prepareCustom.js +86 -0
- package/lib/coord/radar/IndicatorAxis.js +57 -0
- package/lib/coord/radar/Radar.js +194 -0
- package/lib/coord/radar/RadarModel.js +159 -0
- package/lib/coord/scaleRawExtentInfo.js +254 -0
- package/lib/coord/single/AxisModel.js +103 -0
- package/lib/coord/single/Single.js +210 -0
- package/lib/coord/single/SingleAxis.js +66 -0
- package/lib/coord/single/prepareCustom.js +70 -0
- package/lib/coord/single/singleAxisHelper.js +88 -0
- package/lib/coord/single/singleCreator.js +73 -0
- package/lib/core/CoordinateSystem.js +74 -0
- package/lib/core/ExtensionAPI.js +59 -0
- package/lib/core/Scheduler.js +491 -0
- package/lib/core/echarts.js +3068 -0
- package/lib/core/impl.js +65 -0
- package/lib/core/lifecycle.js +47 -0
- package/lib/core/locale.js +88 -0
- package/lib/core/task.js +345 -0
- package/lib/data/DataStore.js +1099 -0
- package/lib/data/Graph.js +459 -0
- package/lib/data/OrdinalMeta.js +313 -0
- package/lib/data/SeriesData.js +1027 -0
- package/lib/data/SeriesDimensionDefine.js +91 -0
- package/lib/data/Source.js +302 -0
- package/lib/data/Tree.js +353 -0
- package/lib/data/helper/SeriesDataSchema.js +224 -0
- package/lib/data/helper/createDimensions.js +322 -0
- package/lib/data/helper/dataProvider.js +385 -0
- package/lib/data/helper/dataStackHelper.js +179 -0
- package/lib/data/helper/dataValueHelper.js +246 -0
- package/lib/data/helper/dimensionHelper.js +172 -0
- package/lib/data/helper/linkList.js +46 -0
- package/lib/data/helper/linkSeriesData.js +150 -0
- package/lib/data/helper/sourceHelper.js +354 -0
- package/lib/data/helper/sourceManager.js +417 -0
- package/lib/data/helper/transform.js +417 -0
- package/lib/echarts.js +66 -0
- package/lib/export/all.js +46 -0
- package/lib/export/api/format.js +44 -0
- package/lib/export/api/graphic.js +44 -0
- package/lib/export/api/helper.js +128 -0
- package/lib/export/api/number.js +44 -0
- package/lib/export/api/time.js +45 -0
- package/lib/export/api/util.js +44 -0
- package/lib/export/api.js +114 -0
- package/lib/export/charts.js +85 -0
- package/lib/export/components.js +81 -0
- package/lib/export/core.js +51 -0
- package/lib/export/features.js +46 -0
- package/lib/export/renderers.js +45 -0
- package/lib/extension.js +110 -0
- package/lib/label/LabelManager.js +435 -0
- package/lib/label/installLabelLayout.js +65 -0
- package/lib/label/labelGuideHelper.js +541 -0
- package/lib/label/labelLayoutHelper.js +301 -0
- package/lib/label/labelStyle.js +484 -0
- package/lib/label/sectorLabel.js +201 -0
- package/lib/layout/barGrid.js +477 -0
- package/lib/layout/barPolar.js +254 -0
- package/lib/layout/points.js +105 -0
- package/lib/legacy/dataSelectAction.js +116 -0
- package/lib/legacy/getTextRect.js +59 -0
- package/lib/loading/default.js +161 -0
- package/lib/model/Component.js +233 -0
- package/lib/model/Global.js +793 -0
- package/lib/model/Model.js +179 -0
- package/lib/model/OptionManager.js +459 -0
- package/lib/model/Series.js +588 -0
- package/lib/model/globalDefault.js +132 -0
- package/lib/model/internalComponentCreator.js +66 -0
- package/lib/model/mixin/areaStyle.js +59 -0
- package/lib/model/mixin/dataFormat.js +202 -0
- package/lib/model/mixin/itemStyle.js +58 -0
- package/lib/model/mixin/lineStyle.js +59 -0
- package/lib/model/mixin/makeStyleMapper.js +70 -0
- package/lib/model/mixin/palette.js +105 -0
- package/lib/model/mixin/textStyle.js +87 -0
- package/lib/model/referHelper.js +175 -0
- package/lib/preprocessor/backwardCompat.js +255 -0
- package/lib/preprocessor/helper/compatStyle.js +331 -0
- package/lib/processor/dataSample.js +141 -0
- package/lib/processor/dataStack.js +133 -0
- package/lib/processor/negativeDataFilter.js +61 -0
- package/lib/renderer/installCanvasRenderer.js +47 -0
- package/lib/renderer/installSVGRenderer.js +47 -0
- package/lib/scale/Interval.js +267 -0
- package/lib/scale/Log.js +218 -0
- package/lib/scale/Ordinal.js +217 -0
- package/lib/scale/Percentage.js +230 -0
- package/lib/scale/Scale.js +122 -0
- package/lib/scale/Time.js +510 -0
- package/lib/scale/helper.js +169 -0
- package/lib/util/ECEventProcessor.js +144 -0
- package/lib/util/KDTree.js +255 -0
- package/lib/util/axisLabel.js +62 -0
- package/lib/util/clazz.js +305 -0
- package/lib/util/color.js +202 -0
- package/lib/util/component.js +186 -0
- package/lib/util/conditionalExpression.js +257 -0
- package/lib/util/decal.js +392 -0
- package/lib/util/format.js +254 -0
- package/lib/util/graphic.js +525 -0
- package/lib/util/innerStore.js +66 -0
- package/lib/util/layout.js +449 -0
- package/lib/util/log.js +134 -0
- package/lib/util/model.js +696 -0
- package/lib/util/number.js +563 -0
- package/lib/util/shape/circulateLine.js +92 -0
- package/lib/util/shape/diagonal.js +78 -0
- package/lib/util/shape/sausage.js +107 -0
- package/lib/util/states.js +848 -0
- package/lib/util/styleCompat.js +226 -0
- package/lib/util/symbol.js +1266 -0
- package/lib/util/time.js +271 -0
- package/lib/util/types.js +60 -0
- package/lib/util/vendor.js +55 -0
- package/lib/view/Chart.js +201 -0
- package/lib/view/Component.js +88 -0
- package/lib/visual/VisualMapping.js +479 -0
- package/lib/visual/aria.js +229 -0
- package/lib/visual/decal.js +66 -0
- package/lib/visual/style.js +216 -0
- package/lib/visual/symbol.js +124 -0
- package/lib/visual/visualDefault.js +91 -0
- package/lib/visual/visualSolution.js +202 -0
- package/package.json +1 -1
- package/types/dist/charts.d.ts +1 -0
- package/types/dist/components.d.ts +1 -0
- package/types/dist/core.d.ts +1 -0
- package/types/dist/echarts.d.ts +11455 -0
- package/types/dist/features.d.ts +1 -0
- package/types/dist/option.d.ts +1 -0
- package/types/dist/renderers.d.ts +1 -0
- package/types/dist/shared.d.ts +11611 -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/pre-publish-tmp/src/animation/basicTransition.js +0 -243
- package/pre-publish-tmp/src/animation/customGraphicKeyframeAnimation.js +0 -143
- package/pre-publish-tmp/src/animation/customGraphicTransition.js +0 -481
- package/pre-publish-tmp/src/animation/morphTransitionHelper.js +0 -203
- package/pre-publish-tmp/src/animation/universalTransition.js +0 -650
- package/pre-publish-tmp/src/chart/arrowsPlot/ArrowPlotView.js +0 -132
- package/pre-publish-tmp/src/chart/arrowsPlot/ArrowSymbolPath.js +0 -70
- package/pre-publish-tmp/src/chart/arrowsPlot/ArrowsPlotLayout.js +0 -123
- package/pre-publish-tmp/src/chart/arrowsPlot/ArrowsPlotSeries.js +0 -88
- package/pre-publish-tmp/src/chart/arrowsPlot/install.js +0 -53
- package/pre-publish-tmp/src/chart/bar/BarSeries.js +0 -112
- package/pre-publish-tmp/src/chart/bar/BarView.js +0 -892
- package/pre-publish-tmp/src/chart/bar/BaseBarSeries.js +0 -159
- package/pre-publish-tmp/src/chart/bar/PictorialBarSeries.js +0 -95
- package/pre-publish-tmp/src/chart/bar/PictorialBarView.js +0 -630
- package/pre-publish-tmp/src/chart/bar/install.js +0 -81
- package/pre-publish-tmp/src/chart/bar/installPictorialBar.js +0 -54
- package/pre-publish-tmp/src/chart/bar.js +0 -46
- package/pre-publish-tmp/src/chart/barPlot/BarPath.js +0 -68
- package/pre-publish-tmp/src/chart/barPlot/BarPlotSeries.js +0 -139
- package/pre-publish-tmp/src/chart/barPlot/BarPlotView.js +0 -116
- package/pre-publish-tmp/src/chart/barPlot/barPlotLayout.js +0 -149
- package/pre-publish-tmp/src/chart/barPlot/install.js +0 -51
- package/pre-publish-tmp/src/chart/bgColor/BgColorLayout.js +0 -122
- package/pre-publish-tmp/src/chart/bgColor/BgColorPath.js +0 -106
- package/pre-publish-tmp/src/chart/bgColor/BgColorSeries.js +0 -98
- package/pre-publish-tmp/src/chart/bgColor/BgColorView.js +0 -119
- package/pre-publish-tmp/src/chart/bgColor/install.js +0 -73
- package/pre-publish-tmp/src/chart/bgColor.js +0 -46
- package/pre-publish-tmp/src/chart/boxes/BoxesLayout.js +0 -206
- package/pre-publish-tmp/src/chart/boxes/BoxesPath.js +0 -78
- package/pre-publish-tmp/src/chart/boxes/BoxesSeries.js +0 -131
- package/pre-publish-tmp/src/chart/boxes/BoxesView.js +0 -174
- package/pre-publish-tmp/src/chart/boxes/install.js +0 -51
- package/pre-publish-tmp/src/chart/boxes/util.js +0 -77
- package/pre-publish-tmp/src/chart/boxes.js +0 -46
- package/pre-publish-tmp/src/chart/boxplot/BoxplotSeries.js +0 -108
- package/pre-publish-tmp/src/chart/boxplot/BoxplotView.js +0 -172
- package/pre-publish-tmp/src/chart/boxplot/boxplotLayout.js +0 -181
- package/pre-publish-tmp/src/chart/boxplot/boxplotTransform.js +0 -66
- package/pre-publish-tmp/src/chart/boxplot/install.js +0 -53
- package/pre-publish-tmp/src/chart/boxplot/prepareBoxplotData.js +0 -96
- package/pre-publish-tmp/src/chart/boxplot.js +0 -46
- package/pre-publish-tmp/src/chart/candlePlot/CandlePlotSeries.js +0 -149
- package/pre-publish-tmp/src/chart/candlePlot/CandlePlotView.js +0 -133
- package/pre-publish-tmp/src/chart/candlePlot/NormalBoxPath.js +0 -66
- package/pre-publish-tmp/src/chart/candlePlot/WickPath.js +0 -57
- package/pre-publish-tmp/src/chart/candlePlot/candlePlotLayout.js +0 -244
- package/pre-publish-tmp/src/chart/candlePlot/install.js +0 -51
- package/pre-publish-tmp/src/chart/candlestick/CandlestickSeries.js +0 -138
- package/pre-publish-tmp/src/chart/candlestick/CandlestickView.js +0 -335
- package/pre-publish-tmp/src/chart/candlestick/candlestickLayout.js +0 -234
- package/pre-publish-tmp/src/chart/candlestick/candlestickVisual.js +0 -86
- package/pre-publish-tmp/src/chart/candlestick/install.js +0 -55
- package/pre-publish-tmp/src/chart/candlestick/preprocessor.js +0 -55
- package/pre-publish-tmp/src/chart/candlestick.js +0 -46
- package/pre-publish-tmp/src/chart/charPlot/CharPlotLayout.js +0 -140
- package/pre-publish-tmp/src/chart/charPlot/CharPlotSeries.js +0 -106
- package/pre-publish-tmp/src/chart/charPlot/CharPlotView.js +0 -135
- package/pre-publish-tmp/src/chart/charPlot/install.js +0 -53
- package/pre-publish-tmp/src/chart/custom/CustomSeries.js +0 -106
- package/pre-publish-tmp/src/chart/custom/CustomView.js +0 -925
- package/pre-publish-tmp/src/chart/custom/install.js +0 -49
- package/pre-publish-tmp/src/chart/custom.js +0 -46
- package/pre-publish-tmp/src/chart/effectScatter/EffectScatterSeries.js +0 -105
- package/pre-publish-tmp/src/chart/effectScatter/EffectScatterView.js +0 -99
- package/pre-publish-tmp/src/chart/effectScatter/install.js +0 -51
- package/pre-publish-tmp/src/chart/effectScatter.js +0 -46
- package/pre-publish-tmp/src/chart/fills/FillPolyPath.js +0 -106
- package/pre-publish-tmp/src/chart/fills/FillsSeries.js +0 -113
- package/pre-publish-tmp/src/chart/fills/FillsView.js +0 -148
- package/pre-publish-tmp/src/chart/fills/LargeFillPolyPath.js +0 -107
- package/pre-publish-tmp/src/chart/fills/fillsLayout.js +0 -175
- package/pre-publish-tmp/src/chart/fills/install.js +0 -73
- package/pre-publish-tmp/src/chart/fills.js +0 -46
- package/pre-publish-tmp/src/chart/funnel/FunnelSeries.js +0 -145
- package/pre-publish-tmp/src/chart/funnel/FunnelView.js +0 -198
- package/pre-publish-tmp/src/chart/funnel/funnelLayout.js +0 -344
- package/pre-publish-tmp/src/chart/funnel/install.js +0 -53
- package/pre-publish-tmp/src/chart/funnel.js +0 -46
- package/pre-publish-tmp/src/chart/gauge/GaugeSeries.js +0 -185
- package/pre-publish-tmp/src/chart/gauge/GaugeView.js +0 -560
- package/pre-publish-tmp/src/chart/gauge/PointerPath.js +0 -83
- package/pre-publish-tmp/src/chart/gauge/install.js +0 -49
- package/pre-publish-tmp/src/chart/gauge.js +0 -46
- package/pre-publish-tmp/src/chart/graph/GraphSeries.js +0 -275
- package/pre-publish-tmp/src/chart/graph/GraphView.js +0 -266
- package/pre-publish-tmp/src/chart/graph/adjustEdge.js +0 -173
- package/pre-publish-tmp/src/chart/graph/categoryFilter.js +0 -74
- package/pre-publish-tmp/src/chart/graph/categoryVisual.js +0 -90
- package/pre-publish-tmp/src/chart/graph/circularLayout.js +0 -51
- package/pre-publish-tmp/src/chart/graph/circularLayoutHelper.js +0 -191
- package/pre-publish-tmp/src/chart/graph/createView.js +0 -103
- package/pre-publish-tmp/src/chart/graph/edgeVisual.js +0 -93
- package/pre-publish-tmp/src/chart/graph/forceHelper.js +0 -185
- package/pre-publish-tmp/src/chart/graph/forceLayout.js +0 -160
- package/pre-publish-tmp/src/chart/graph/install.js +0 -97
- package/pre-publish-tmp/src/chart/graph/simpleLayout.js +0 -78
- package/pre-publish-tmp/src/chart/graph/simpleLayoutHelper.js +0 -70
- package/pre-publish-tmp/src/chart/graph.js +0 -46
- package/pre-publish-tmp/src/chart/heatmap/HeatmapLayer.js +0 -166
- package/pre-publish-tmp/src/chart/heatmap/HeatmapSeries.js +0 -89
- package/pre-publish-tmp/src/chart/heatmap/HeatmapView.js +0 -310
- package/pre-publish-tmp/src/chart/heatmap/install.js +0 -49
- package/pre-publish-tmp/src/chart/heatmap.js +0 -46
- package/pre-publish-tmp/src/chart/helper/EffectLine.js +0 -207
- package/pre-publish-tmp/src/chart/helper/EffectPolyline.js +0 -134
- package/pre-publish-tmp/src/chart/helper/EffectSymbol.js +0 -207
- package/pre-publish-tmp/src/chart/helper/LargeLineDraw.js +0 -302
- package/pre-publish-tmp/src/chart/helper/LargeSymbolDraw.js +0 -309
- package/pre-publish-tmp/src/chart/helper/Line.js +0 -420
- package/pre-publish-tmp/src/chart/helper/LineDraw.js +0 -167
- package/pre-publish-tmp/src/chart/helper/LinePath.js +0 -111
- package/pre-publish-tmp/src/chart/helper/Polyline.js +0 -107
- package/pre-publish-tmp/src/chart/helper/Symbol.js +0 -380
- package/pre-publish-tmp/src/chart/helper/SymbolDraw.js +0 -217
- package/pre-publish-tmp/src/chart/helper/createClipPathFromCoordSys.js +0 -145
- package/pre-publish-tmp/src/chart/helper/createGraphFromNodeEdge.js +0 -114
- package/pre-publish-tmp/src/chart/helper/createRenderPlanner.js +0 -62
- package/pre-publish-tmp/src/chart/helper/createSeriesData.js +0 -162
- package/pre-publish-tmp/src/chart/helper/createSeriesDataSimply.js +0 -68
- package/pre-publish-tmp/src/chart/helper/enableAriaDecalForTree.js +0 -58
- package/pre-publish-tmp/src/chart/helper/labelHelper.js +0 -77
- package/pre-publish-tmp/src/chart/helper/multipleGraphEdgeHelper.js +0 -226
- package/pre-publish-tmp/src/chart/helper/sectorHelper.js +0 -62
- package/pre-publish-tmp/src/chart/helper/treeHelper.js +0 -92
- package/pre-publish-tmp/src/chart/helper/whiskerBoxCommon.js +0 -138
- package/pre-publish-tmp/src/chart/hlines/HLinesSeries.js +0 -140
- package/pre-publish-tmp/src/chart/hlines/HLinesView.js +0 -100
- package/pre-publish-tmp/src/chart/hlines/hLinesLayout.js +0 -90
- package/pre-publish-tmp/src/chart/hlines/install.js +0 -73
- package/pre-publish-tmp/src/chart/hlines.js +0 -46
- package/pre-publish-tmp/src/chart/labels/LabelsSeries.js +0 -146
- package/pre-publish-tmp/src/chart/labels/LabelsView.js +0 -186
- package/pre-publish-tmp/src/chart/labels/SymbolPath.js +0 -114
- package/pre-publish-tmp/src/chart/labels/install.js +0 -55
- package/pre-publish-tmp/src/chart/labels/labelsLayout.js +0 -301
- package/pre-publish-tmp/src/chart/labels/labelsVisual.js +0 -185
- package/pre-publish-tmp/src/chart/labels.js +0 -46
- package/pre-publish-tmp/src/chart/line/LineSeries.js +0 -155
- package/pre-publish-tmp/src/chart/line/LineView.js +0 -1121
- package/pre-publish-tmp/src/chart/line/helper.js +0 -123
- package/pre-publish-tmp/src/chart/line/install.js +0 -69
- package/pre-publish-tmp/src/chart/line/lineAnimationDiff.js +0 -165
- package/pre-publish-tmp/src/chart/line/poly.js +0 -353
- package/pre-publish-tmp/src/chart/line.js +0 -46
- package/pre-publish-tmp/src/chart/lineFills/LineFillsLayout.js +0 -125
- package/pre-publish-tmp/src/chart/lineFills/LineFillsPath.js +0 -82
- package/pre-publish-tmp/src/chart/lineFills/LineFillsSeries.js +0 -126
- package/pre-publish-tmp/src/chart/lineFills/LineFillsView.js +0 -120
- package/pre-publish-tmp/src/chart/lineFills/install.js +0 -51
- package/pre-publish-tmp/src/chart/lineFills.js +0 -46
- package/pre-publish-tmp/src/chart/lines/LinesSeries.js +0 -310
- package/pre-publish-tmp/src/chart/lines/LinesView.js +0 -184
- package/pre-publish-tmp/src/chart/lines/install.js +0 -53
- package/pre-publish-tmp/src/chart/lines/linesLayout.js +0 -113
- package/pre-publish-tmp/src/chart/lines.js +0 -46
- package/pre-publish-tmp/src/chart/linesPlot/BarPath.js +0 -108
- package/pre-publish-tmp/src/chart/linesPlot/GradientBarPath.js +0 -119
- package/pre-publish-tmp/src/chart/linesPlot/GradientHistogramPlotPath.js +0 -106
- package/pre-publish-tmp/src/chart/linesPlot/GradientLinePath.js +0 -117
- package/pre-publish-tmp/src/chart/linesPlot/HistogramPlotPath.js +0 -97
- package/pre-publish-tmp/src/chart/linesPlot/LinePlotPath.js +0 -137
- package/pre-publish-tmp/src/chart/linesPlot/LinesPlotSeries.js +0 -137
- package/pre-publish-tmp/src/chart/linesPlot/LinesPlotView.js +0 -641
- package/pre-publish-tmp/src/chart/linesPlot/PolyPlotPath.js +0 -120
- package/pre-publish-tmp/src/chart/linesPlot/SymbolPath.js +0 -100
- package/pre-publish-tmp/src/chart/linesPlot/install.js +0 -52
- package/pre-publish-tmp/src/chart/linesPlot/linesPlotLayout.js +0 -278
- package/pre-publish-tmp/src/chart/linesPlot.js +0 -46
- package/pre-publish-tmp/src/chart/map/MapSeries.js +0 -247
- package/pre-publish-tmp/src/chart/map/MapView.js +0 -177
- package/pre-publish-tmp/src/chart/map/install.js +0 -58
- package/pre-publish-tmp/src/chart/map/mapDataStatistic.js +0 -104
- package/pre-publish-tmp/src/chart/map/mapSymbolLayout.js +0 -86
- package/pre-publish-tmp/src/chart/map.js +0 -46
- package/pre-publish-tmp/src/chart/mineLines/LinesPath.js +0 -226
- package/pre-publish-tmp/src/chart/mineLines/MineLinesLayout.js +0 -118
- package/pre-publish-tmp/src/chart/mineLines/MineLinesSeries.js +0 -128
- package/pre-publish-tmp/src/chart/mineLines/MineLinesView.js +0 -140
- package/pre-publish-tmp/src/chart/mineLines/install.js +0 -51
- package/pre-publish-tmp/src/chart/mineLines.js +0 -46
- package/pre-publish-tmp/src/chart/minePolyLines/MinePolyLinesLayout.js +0 -102
- package/pre-publish-tmp/src/chart/minePolyLines/MinePolyLinesSeries.js +0 -129
- package/pre-publish-tmp/src/chart/minePolyLines/MinePolyLinesView.js +0 -143
- package/pre-publish-tmp/src/chart/minePolyLines/PolyLinesPath.js +0 -169
- package/pre-publish-tmp/src/chart/minePolyLines/install.js +0 -51
- package/pre-publish-tmp/src/chart/parallel/ParallelSeries.js +0 -127
- package/pre-publish-tmp/src/chart/parallel/ParallelView.js +0 -221
- package/pre-publish-tmp/src/chart/parallel/install.js +0 -54
- package/pre-publish-tmp/src/chart/parallel.js +0 -46
- package/pre-publish-tmp/src/chart/pictorialBar.js +0 -46
- package/pre-publish-tmp/src/chart/pie/PieSeries.js +0 -216
- package/pre-publish-tmp/src/chart/pie/PieView.js +0 -283
- package/pre-publish-tmp/src/chart/pie/install.js +0 -58
- package/pre-publish-tmp/src/chart/pie/labelLayout.js +0 -474
- package/pre-publish-tmp/src/chart/pie/pieLayout.js +0 -238
- package/pre-publish-tmp/src/chart/pie.js +0 -46
- package/pre-publish-tmp/src/chart/playbackOrder/PlaybackHtmlContent.js +0 -179
- package/pre-publish-tmp/src/chart/playbackOrder/PlaybackOrderLayout.js +0 -108
- package/pre-publish-tmp/src/chart/playbackOrder/PlaybackOrderSeries.js +0 -103
- package/pre-publish-tmp/src/chart/playbackOrder/PlaybackOrderView.js +0 -311
- package/pre-publish-tmp/src/chart/playbackOrder/SymbolPath.js +0 -87
- package/pre-publish-tmp/src/chart/playbackOrder/install.js +0 -52
- package/pre-publish-tmp/src/chart/radar/RadarSeries.js +0 -134
- package/pre-publish-tmp/src/chart/radar/RadarView.js +0 -225
- package/pre-publish-tmp/src/chart/radar/backwardCompat.js +0 -75
- package/pre-publish-tmp/src/chart/radar/install.js +0 -58
- package/pre-publish-tmp/src/chart/radar/radarLayout.js +0 -82
- package/pre-publish-tmp/src/chart/radar.js +0 -46
- package/pre-publish-tmp/src/chart/sankey/SankeySeries.js +0 -215
- package/pre-publish-tmp/src/chart/sankey/SankeyView.js +0 -324
- package/pre-publish-tmp/src/chart/sankey/install.js +0 -67
- package/pre-publish-tmp/src/chart/sankey/sankeyLayout.js +0 -489
- package/pre-publish-tmp/src/chart/sankey/sankeyVisual.js +0 -92
- package/pre-publish-tmp/src/chart/sankey.js +0 -46
- package/pre-publish-tmp/src/chart/scatter/ScatterSeries.js +0 -118
- package/pre-publish-tmp/src/chart/scatter/ScatterView.js +0 -134
- package/pre-publish-tmp/src/chart/scatter/install.js +0 -55
- package/pre-publish-tmp/src/chart/scatter.js +0 -46
- package/pre-publish-tmp/src/chart/strategy/StrategyLayout.js +0 -159
- package/pre-publish-tmp/src/chart/strategy/StrategySeries.js +0 -102
- package/pre-publish-tmp/src/chart/strategy/StrategyView.js +0 -274
- package/pre-publish-tmp/src/chart/strategy/SymbolPath.js +0 -85
- package/pre-publish-tmp/src/chart/strategy/install.js +0 -52
- package/pre-publish-tmp/src/chart/sunburst/SunburstPiece.js +0 -230
- package/pre-publish-tmp/src/chart/sunburst/SunburstSeries.js +0 -206
- package/pre-publish-tmp/src/chart/sunburst/SunburstView.js +0 -206
- package/pre-publish-tmp/src/chart/sunburst/install.js +0 -58
- package/pre-publish-tmp/src/chart/sunburst/sunburstAction.js +0 -108
- package/pre-publish-tmp/src/chart/sunburst/sunburstLayout.js +0 -216
- package/pre-publish-tmp/src/chart/sunburst/sunburstVisual.js +0 -75
- package/pre-publish-tmp/src/chart/sunburst.js +0 -46
- package/pre-publish-tmp/src/chart/themeRiver/ThemeRiverSeries.js +0 -260
- package/pre-publish-tmp/src/chart/themeRiver/ThemeRiverView.js +0 -186
- package/pre-publish-tmp/src/chart/themeRiver/install.js +0 -35
- package/pre-publish-tmp/src/chart/themeRiver/themeRiverLayout.js +0 -157
- package/pre-publish-tmp/src/chart/themeRiver.js +0 -46
- package/pre-publish-tmp/src/chart/tree/TreeSeries.js +0 -187
- package/pre-publish-tmp/src/chart/tree/TreeView.js +0 -622
- package/pre-publish-tmp/src/chart/tree/install.js +0 -55
- package/pre-publish-tmp/src/chart/tree/layoutHelper.js +0 -288
- package/pre-publish-tmp/src/chart/tree/treeAction.js +0 -82
- package/pre-publish-tmp/src/chart/tree/treeLayout.js +0 -139
- package/pre-publish-tmp/src/chart/tree/treeVisual.js +0 -57
- package/pre-publish-tmp/src/chart/tree.js +0 -46
- package/pre-publish-tmp/src/chart/treemap/Breadcrumb.js +0 -187
- package/pre-publish-tmp/src/chart/treemap/TreemapSeries.js +0 -367
- package/pre-publish-tmp/src/chart/treemap/TreemapView.js +0 -852
- package/pre-publish-tmp/src/chart/treemap/install.js +0 -55
- package/pre-publish-tmp/src/chart/treemap/treemapAction.js +0 -75
- package/pre-publish-tmp/src/chart/treemap/treemapLayout.js +0 -499
- package/pre-publish-tmp/src/chart/treemap/treemapVisual.js +0 -194
- package/pre-publish-tmp/src/chart/treemap.js +0 -46
- package/pre-publish-tmp/src/component/alarm/AlarmModel.js +0 -116
- package/pre-publish-tmp/src/component/alarm/AlarmView.js +0 -457
- package/pre-publish-tmp/src/component/alarm/install.js +0 -61
- package/pre-publish-tmp/src/component/aria/install.js +0 -49
- package/pre-publish-tmp/src/component/aria/preprocessor.js +0 -61
- package/pre-publish-tmp/src/component/aria.js +0 -46
- package/pre-publish-tmp/src/component/axis/AngleAxisView.js +0 -323
- package/pre-publish-tmp/src/component/axis/AxisBuilder.js +0 -626
- package/pre-publish-tmp/src/component/axis/AxisView.js +0 -181
- package/pre-publish-tmp/src/component/axis/CartesianAxisView.js +0 -247
- package/pre-publish-tmp/src/component/axis/ParallelAxisView.js +0 -174
- package/pre-publish-tmp/src/component/axis/RadiusAxisView.js +0 -206
- package/pre-publish-tmp/src/component/axis/SingleAxisView.js +0 -146
- package/pre-publish-tmp/src/component/axis/axisSplitHelper.js +0 -124
- package/pre-publish-tmp/src/component/axis/globalListener.js +0 -81
- package/pre-publish-tmp/src/component/axisPointer/AxisPointerModel.js +0 -123
- package/pre-publish-tmp/src/component/axisPointer/AxisPointerView.js +0 -124
- package/pre-publish-tmp/src/component/axisPointer/BaseAxisPointer.js +0 -513
- package/pre-publish-tmp/src/component/axisPointer/CartesianAxisPointer.js +0 -148
- package/pre-publish-tmp/src/component/axisPointer/PolarAxisPointer.js +0 -144
- package/pre-publish-tmp/src/component/axisPointer/SingleAxisPointer.js +0 -145
- package/pre-publish-tmp/src/component/axisPointer/axisTrigger.js +0 -460
- package/pre-publish-tmp/src/component/axisPointer/findPointFromSeries.js +0 -98
- package/pre-publish-tmp/src/component/axisPointer/globalListener.js +0 -142
- package/pre-publish-tmp/src/component/axisPointer/install.js +0 -89
- package/pre-publish-tmp/src/component/axisPointer/modelHelper.js +0 -298
- package/pre-publish-tmp/src/component/axisPointer/viewHelper.js +0 -201
- package/pre-publish-tmp/src/component/axisPointer.js +0 -46
- package/pre-publish-tmp/src/component/bgRect/install.js +0 -128
- package/pre-publish-tmp/src/component/brush/BrushModel.js +0 -136
- package/pre-publish-tmp/src/component/brush/BrushView.js +0 -111
- package/pre-publish-tmp/src/component/brush/install.js +0 -101
- package/pre-publish-tmp/src/component/brush/preprocessor.js +0 -87
- package/pre-publish-tmp/src/component/brush/selector.js +0 -115
- package/pre-publish-tmp/src/component/brush/visualEncoding.js +0 -257
- package/pre-publish-tmp/src/component/brush.js +0 -46
- package/pre-publish-tmp/src/component/calendar/CalendarView.js +0 -390
- package/pre-publish-tmp/src/component/calendar/install.js +0 -51
- package/pre-publish-tmp/src/component/calendar.js +0 -46
- package/pre-publish-tmp/src/component/cursorPointer/install.js +0 -130
- package/pre-publish-tmp/src/component/dataZoom/AxisProxy.js +0 -526
- package/pre-publish-tmp/src/component/dataZoom/DataZoomModel.js +0 -520
- package/pre-publish-tmp/src/component/dataZoom/DataZoomView.js +0 -61
- package/pre-publish-tmp/src/component/dataZoom/InsideZoomModel.js +0 -66
- package/pre-publish-tmp/src/component/dataZoom/InsideZoomView.js +0 -304
- package/pre-publish-tmp/src/component/dataZoom/SelectZoomModel.js +0 -56
- package/pre-publish-tmp/src/component/dataZoom/SelectZoomView.js +0 -56
- package/pre-publish-tmp/src/component/dataZoom/SliderZoomModel.js +0 -126
- package/pre-publish-tmp/src/component/dataZoom/SliderZoomView.js +0 -817
- package/pre-publish-tmp/src/component/dataZoom/dataZoomAction.js +0 -84
- package/pre-publish-tmp/src/component/dataZoom/dataZoomProcessor.js +0 -152
- package/pre-publish-tmp/src/component/dataZoom/helper.js +0 -220
- package/pre-publish-tmp/src/component/dataZoom/history.js +0 -116
- package/pre-publish-tmp/src/component/dataZoom/install.js +0 -52
- package/pre-publish-tmp/src/component/dataZoom/installCommon.js +0 -58
- package/pre-publish-tmp/src/component/dataZoom/installDataZoomInside.js +0 -53
- package/pre-publish-tmp/src/component/dataZoom/installDataZoomSelect.js +0 -51
- package/pre-publish-tmp/src/component/dataZoom/installDataZoomSlider.js +0 -51
- package/pre-publish-tmp/src/component/dataZoom/roams.js +0 -319
- package/pre-publish-tmp/src/component/dataZoom.js +0 -46
- package/pre-publish-tmp/src/component/dataZoomInside.js +0 -46
- package/pre-publish-tmp/src/component/dataZoomSelect.js +0 -50
- package/pre-publish-tmp/src/component/dataZoomSlider.js +0 -46
- package/pre-publish-tmp/src/component/dataset/install.js +0 -99
- package/pre-publish-tmp/src/component/dataset.js +0 -46
- package/pre-publish-tmp/src/component/geo/GeoView.js +0 -110
- package/pre-publish-tmp/src/component/geo/install.js +0 -141
- package/pre-publish-tmp/src/component/geo.js +0 -46
- package/pre-publish-tmp/src/component/graphic/GraphicModel.js +0 -273
- package/pre-publish-tmp/src/component/graphic/GraphicView.js +0 -531
- package/pre-publish-tmp/src/component/graphic/install.js +0 -78
- package/pre-publish-tmp/src/component/graphic.js +0 -46
- package/pre-publish-tmp/src/component/grid/install.js +0 -50
- package/pre-publish-tmp/src/component/grid/installSimple.js +0 -96
- package/pre-publish-tmp/src/component/grid.js +0 -46
- package/pre-publish-tmp/src/component/gridSimple.js +0 -46
- package/pre-publish-tmp/src/component/helper/BrushController.js +0 -751
- package/pre-publish-tmp/src/component/helper/BrushTargetManager.js +0 -343
- package/pre-publish-tmp/src/component/helper/MapDraw.js +0 -673
- package/pre-publish-tmp/src/component/helper/RoamController.js +0 -310
- package/pre-publish-tmp/src/component/helper/brushHelper.js +0 -71
- package/pre-publish-tmp/src/component/helper/interactionMutex.js +0 -77
- package/pre-publish-tmp/src/component/helper/listComponent.js +0 -87
- package/pre-publish-tmp/src/component/legend/LegendModel.js +0 -318
- package/pre-publish-tmp/src/component/legend/LegendView.js +0 -524
- package/pre-publish-tmp/src/component/legend/ScrollableLegendModel.js +0 -105
- package/pre-publish-tmp/src/component/legend/ScrollableLegendView.js +0 -401
- package/pre-publish-tmp/src/component/legend/install.js +0 -50
- package/pre-publish-tmp/src/component/legend/installLegendPlain.js +0 -56
- package/pre-publish-tmp/src/component/legend/installLegendScroll.js +0 -54
- package/pre-publish-tmp/src/component/legend/legendAction.js +0 -113
- package/pre-publish-tmp/src/component/legend.js +0 -47
- package/pre-publish-tmp/src/component/legendPlain.js +0 -47
- package/pre-publish-tmp/src/component/legendScroll.js +0 -49
- package/pre-publish-tmp/src/component/limitTip/install.js +0 -115
- package/pre-publish-tmp/src/component/logo/install.js +0 -117
- package/pre-publish-tmp/src/component/markArea.js +0 -46
- package/pre-publish-tmp/src/component/markLabel.js +0 -46
- package/pre-publish-tmp/src/component/markLine.js +0 -46
- package/pre-publish-tmp/src/component/markPoint.js +0 -47
- package/pre-publish-tmp/src/component/marker/MarkAreaModel.js +0 -85
- package/pre-publish-tmp/src/component/marker/MarkAreaView.js +0 -362
- package/pre-publish-tmp/src/component/marker/MarkLabelModal.js +0 -139
- package/pre-publish-tmp/src/component/marker/MarkLabelView.js +0 -918
- package/pre-publish-tmp/src/component/marker/MarkLineModel.js +0 -88
- package/pre-publish-tmp/src/component/marker/MarkLineView.js +0 -363
- package/pre-publish-tmp/src/component/marker/MarkPointModel.js +0 -82
- package/pre-publish-tmp/src/component/marker/MarkPointView.js +0 -191
- package/pre-publish-tmp/src/component/marker/MarkerModel.js +0 -166
- package/pre-publish-tmp/src/component/marker/MarkerView.js +0 -95
- package/pre-publish-tmp/src/component/marker/checkMarkerInSeries.js +0 -56
- package/pre-publish-tmp/src/component/marker/installMarkArea.js +0 -56
- package/pre-publish-tmp/src/component/marker/installMarkLabel.js +0 -38
- package/pre-publish-tmp/src/component/marker/installMarkLine.js +0 -38
- package/pre-publish-tmp/src/component/marker/installMarkPoint.js +0 -38
- package/pre-publish-tmp/src/component/marker/markerHelper.js +0 -188
- package/pre-publish-tmp/src/component/parallel/ParallelView.js +0 -137
- package/pre-publish-tmp/src/component/parallel/install.js +0 -73
- package/pre-publish-tmp/src/component/parallel.js +0 -46
- package/pre-publish-tmp/src/component/playback/PlaybackOrderModel.js +0 -51
- package/pre-publish-tmp/src/component/playback/PlaybackOrderView.js +0 -1309
- package/pre-publish-tmp/src/component/playback/PlaybackSelectModel.js +0 -55
- package/pre-publish-tmp/src/component/playback/PlaybackSelectView.js +0 -244
- package/pre-publish-tmp/src/component/playback/install.js +0 -46
- package/pre-publish-tmp/src/component/polar/install.js +0 -91
- package/pre-publish-tmp/src/component/polar.js +0 -46
- package/pre-publish-tmp/src/component/radar/RadarView.js +0 -203
- package/pre-publish-tmp/src/component/radar/install.js +0 -63
- package/pre-publish-tmp/src/component/radar.js +0 -46
- package/pre-publish-tmp/src/component/singleAxis/install.js +0 -73
- package/pre-publish-tmp/src/component/singleAxis.js +0 -46
- package/pre-publish-tmp/src/component/table/TableModel.js +0 -95
- package/pre-publish-tmp/src/component/table/TableView.js +0 -462
- package/pre-publish-tmp/src/component/table/install.js +0 -49
- package/pre-publish-tmp/src/component/table.js +0 -46
- package/pre-publish-tmp/src/component/timeline/SliderTimelineModel.js +0 -159
- package/pre-publish-tmp/src/component/timeline/SliderTimelineView.js +0 -653
- package/pre-publish-tmp/src/component/timeline/TimelineAxis.js +0 -71
- package/pre-publish-tmp/src/component/timeline/TimelineModel.js +0 -188
- package/pre-publish-tmp/src/component/timeline/TimelineView.js +0 -56
- package/pre-publish-tmp/src/component/timeline/install.js +0 -39
- package/pre-publish-tmp/src/component/timeline/preprocessor.js +0 -113
- package/pre-publish-tmp/src/component/timeline/timelineAction.js +0 -82
- package/pre-publish-tmp/src/component/timeline.js +0 -49
- package/pre-publish-tmp/src/component/title/install.js +0 -229
- package/pre-publish-tmp/src/component/title.js +0 -46
- package/pre-publish-tmp/src/component/toolbox/ToolboxModel.js +0 -108
- package/pre-publish-tmp/src/component/toolbox/ToolboxView.js +0 -298
- package/pre-publish-tmp/src/component/toolbox/feature/Brush.js +0 -134
- package/pre-publish-tmp/src/component/toolbox/feature/DataView.js +0 -448
- package/pre-publish-tmp/src/component/toolbox/feature/DataZoom.js +0 -251
- package/pre-publish-tmp/src/component/toolbox/feature/MagicType.js +0 -210
- package/pre-publish-tmp/src/component/toolbox/feature/Restore.js +0 -79
- package/pre-publish-tmp/src/component/toolbox/feature/SaveAsImage.js +0 -145
- package/pre-publish-tmp/src/component/toolbox/install.js +0 -64
- package/pre-publish-tmp/src/component/toolbox.js +0 -46
- package/pre-publish-tmp/src/component/tooltip/TooltipHTMLContent.js +0 -398
- package/pre-publish-tmp/src/component/tooltip/TooltipModel.js +0 -130
- package/pre-publish-tmp/src/component/tooltip/TooltipRichContent.js +0 -209
- package/pre-publish-tmp/src/component/tooltip/TooltipView.js +0 -907
- package/pre-publish-tmp/src/component/tooltip/helper.js +0 -78
- package/pre-publish-tmp/src/component/tooltip/install.js +0 -81
- package/pre-publish-tmp/src/component/tooltip/seriesFormatTooltip.js +0 -142
- package/pre-publish-tmp/src/component/tooltip/tooltipMarkup.js +0 -324
- package/pre-publish-tmp/src/component/tooltip.js +0 -46
- package/pre-publish-tmp/src/component/transform/filterTransform.js +0 -96
- package/pre-publish-tmp/src/component/transform/install.js +0 -49
- package/pre-publish-tmp/src/component/transform/sortTransform.js +0 -155
- package/pre-publish-tmp/src/component/transform.js +0 -46
- package/pre-publish-tmp/src/component/visualMap/ContinuousModel.js +0 -256
- package/pre-publish-tmp/src/component/visualMap/ContinuousView.js +0 -688
- package/pre-publish-tmp/src/component/visualMap/PiecewiseModel.js +0 -439
- package/pre-publish-tmp/src/component/visualMap/PiecewiseView.js +0 -213
- package/pre-publish-tmp/src/component/visualMap/VisualMapModel.js +0 -413
- package/pre-publish-tmp/src/component/visualMap/VisualMapView.js +0 -154
- package/pre-publish-tmp/src/component/visualMap/helper.js +0 -90
- package/pre-publish-tmp/src/component/visualMap/install.js +0 -52
- package/pre-publish-tmp/src/component/visualMap/installCommon.js +0 -63
- package/pre-publish-tmp/src/component/visualMap/installVisualMapContinuous.js +0 -51
- package/pre-publish-tmp/src/component/visualMap/installVisualMapPiecewise.js +0 -51
- package/pre-publish-tmp/src/component/visualMap/preprocessor.js +0 -78
- package/pre-publish-tmp/src/component/visualMap/typeDefaulter.js +0 -48
- package/pre-publish-tmp/src/component/visualMap/visualEncoding.js +0 -108
- package/pre-publish-tmp/src/component/visualMap.js +0 -46
- package/pre-publish-tmp/src/component/visualMapContinuous.js +0 -46
- package/pre-publish-tmp/src/component/visualMapPiecewise.js +0 -46
- package/pre-publish-tmp/src/coord/Axis.js +0 -301
- package/pre-publish-tmp/src/coord/View.js +0 -251
- package/pre-publish-tmp/src/coord/axisAlignTicks.js +0 -140
- package/pre-publish-tmp/src/coord/axisDefault.js +0 -211
- package/pre-publish-tmp/src/coord/axisHelper.js +0 -374
- package/pre-publish-tmp/src/coord/axisModelCreator.js +0 -110
- package/pre-publish-tmp/src/coord/axisTickLabelBuilder.js +0 -435
- package/pre-publish-tmp/src/coord/calendar/Calendar.js +0 -374
- package/pre-publish-tmp/src/coord/calendar/CalendarModel.js +0 -160
- package/pre-publish-tmp/src/coord/cartesian/Axis2D.js +0 -94
- package/pre-publish-tmp/src/coord/cartesian/AxisModel.js +0 -62
- package/pre-publish-tmp/src/coord/cartesian/Cartesian.js +0 -74
- package/pre-publish-tmp/src/coord/cartesian/Cartesian2D.js +0 -185
- package/pre-publish-tmp/src/coord/cartesian/Grid.js +0 -508
- package/pre-publish-tmp/src/coord/cartesian/GridModel.js +0 -72
- package/pre-publish-tmp/src/coord/cartesian/cartesianAxisHelper.js +0 -119
- package/pre-publish-tmp/src/coord/cartesian/defaultAxisExtentFromData.js +0 -223
- package/pre-publish-tmp/src/coord/cartesian/prepareCustom.js +0 -74
- package/pre-publish-tmp/src/coord/geo/Geo.js +0 -209
- package/pre-publish-tmp/src/coord/geo/GeoJSONResource.js +0 -144
- package/pre-publish-tmp/src/coord/geo/GeoModel.js +0 -212
- package/pre-publish-tmp/src/coord/geo/GeoSVGResource.js +0 -333
- package/pre-publish-tmp/src/coord/geo/Region.js +0 -286
- package/pre-publish-tmp/src/coord/geo/fix/diaoyuIsland.js +0 -56
- package/pre-publish-tmp/src/coord/geo/fix/nanhai.js +0 -73
- package/pre-publish-tmp/src/coord/geo/geoCreator.js +0 -236
- package/pre-publish-tmp/src/coord/geo/geoSourceManager.js +0 -121
- package/pre-publish-tmp/src/coord/geo/parseGeoJson.js +0 -146
- package/pre-publish-tmp/src/coord/geo/prepareCustom.js +0 -79
- package/pre-publish-tmp/src/coord/parallel/AxisModel.js +0 -114
- package/pre-publish-tmp/src/coord/parallel/Parallel.js +0 -410
- package/pre-publish-tmp/src/coord/parallel/ParallelAxis.js +0 -59
- package/pre-publish-tmp/src/coord/parallel/ParallelModel.js +0 -122
- package/pre-publish-tmp/src/coord/parallel/parallelCreator.js +0 -71
- package/pre-publish-tmp/src/coord/parallel/parallelPreprocessor.js +0 -84
- package/pre-publish-tmp/src/coord/polar/AngleAxis.js +0 -111
- package/pre-publish-tmp/src/coord/polar/AxisModel.js +0 -83
- package/pre-publish-tmp/src/coord/polar/Polar.js +0 -216
- package/pre-publish-tmp/src/coord/polar/PolarModel.js +0 -73
- package/pre-publish-tmp/src/coord/polar/RadiusAxis.js +0 -58
- package/pre-publish-tmp/src/coord/polar/polarCreator.js +0 -158
- package/pre-publish-tmp/src/coord/polar/prepareCustom.js +0 -86
- package/pre-publish-tmp/src/coord/radar/IndicatorAxis.js +0 -57
- package/pre-publish-tmp/src/coord/radar/Radar.js +0 -194
- package/pre-publish-tmp/src/coord/radar/RadarModel.js +0 -159
- package/pre-publish-tmp/src/coord/scaleRawExtentInfo.js +0 -254
- package/pre-publish-tmp/src/coord/single/AxisModel.js +0 -103
- package/pre-publish-tmp/src/coord/single/Single.js +0 -210
- package/pre-publish-tmp/src/coord/single/SingleAxis.js +0 -66
- package/pre-publish-tmp/src/coord/single/prepareCustom.js +0 -70
- package/pre-publish-tmp/src/coord/single/singleAxisHelper.js +0 -88
- package/pre-publish-tmp/src/coord/single/singleCreator.js +0 -73
- package/pre-publish-tmp/src/core/CoordinateSystem.js +0 -74
- package/pre-publish-tmp/src/core/ExtensionAPI.js +0 -59
- package/pre-publish-tmp/src/core/Scheduler.js +0 -491
- package/pre-publish-tmp/src/core/echarts.js +0 -3068
- package/pre-publish-tmp/src/core/impl.js +0 -65
- package/pre-publish-tmp/src/core/lifecycle.js +0 -47
- package/pre-publish-tmp/src/core/locale.js +0 -88
- package/pre-publish-tmp/src/core/task.js +0 -345
- package/pre-publish-tmp/src/data/DataStore.js +0 -1099
- package/pre-publish-tmp/src/data/Graph.js +0 -459
- package/pre-publish-tmp/src/data/OrdinalMeta.js +0 -313
- package/pre-publish-tmp/src/data/SeriesData.js +0 -1027
- package/pre-publish-tmp/src/data/SeriesDimensionDefine.js +0 -91
- package/pre-publish-tmp/src/data/Source.js +0 -302
- package/pre-publish-tmp/src/data/Tree.js +0 -353
- package/pre-publish-tmp/src/data/helper/SeriesDataSchema.js +0 -224
- package/pre-publish-tmp/src/data/helper/createDimensions.js +0 -322
- package/pre-publish-tmp/src/data/helper/dataProvider.js +0 -385
- package/pre-publish-tmp/src/data/helper/dataStackHelper.js +0 -179
- package/pre-publish-tmp/src/data/helper/dataValueHelper.js +0 -246
- package/pre-publish-tmp/src/data/helper/dimensionHelper.js +0 -172
- package/pre-publish-tmp/src/data/helper/linkList.js +0 -46
- package/pre-publish-tmp/src/data/helper/linkSeriesData.js +0 -150
- package/pre-publish-tmp/src/data/helper/sourceHelper.js +0 -354
- package/pre-publish-tmp/src/data/helper/sourceManager.js +0 -417
- package/pre-publish-tmp/src/data/helper/transform.js +0 -417
- package/pre-publish-tmp/src/echarts.js +0 -66
- package/pre-publish-tmp/src/export/all.js +0 -46
- package/pre-publish-tmp/src/export/api/format.js +0 -44
- package/pre-publish-tmp/src/export/api/graphic.js +0 -44
- package/pre-publish-tmp/src/export/api/helper.js +0 -128
- package/pre-publish-tmp/src/export/api/number.js +0 -44
- package/pre-publish-tmp/src/export/api/time.js +0 -45
- package/pre-publish-tmp/src/export/api/util.js +0 -44
- package/pre-publish-tmp/src/export/api.js +0 -114
- package/pre-publish-tmp/src/export/charts.js +0 -85
- package/pre-publish-tmp/src/export/components.js +0 -81
- package/pre-publish-tmp/src/export/core.js +0 -51
- package/pre-publish-tmp/src/export/features.js +0 -46
- package/pre-publish-tmp/src/export/renderers.js +0 -45
- package/pre-publish-tmp/src/extension.js +0 -110
- package/pre-publish-tmp/src/label/LabelManager.js +0 -435
- package/pre-publish-tmp/src/label/installLabelLayout.js +0 -65
- package/pre-publish-tmp/src/label/labelGuideHelper.js +0 -541
- package/pre-publish-tmp/src/label/labelLayoutHelper.js +0 -301
- package/pre-publish-tmp/src/label/labelStyle.js +0 -484
- package/pre-publish-tmp/src/label/sectorLabel.js +0 -201
- package/pre-publish-tmp/src/layout/barGrid.js +0 -477
- package/pre-publish-tmp/src/layout/barPolar.js +0 -254
- package/pre-publish-tmp/src/layout/points.js +0 -105
- package/pre-publish-tmp/src/legacy/dataSelectAction.js +0 -116
- package/pre-publish-tmp/src/legacy/getTextRect.js +0 -59
- package/pre-publish-tmp/src/loading/default.js +0 -161
- package/pre-publish-tmp/src/model/Component.js +0 -233
- package/pre-publish-tmp/src/model/Global.js +0 -793
- package/pre-publish-tmp/src/model/Model.js +0 -179
- package/pre-publish-tmp/src/model/OptionManager.js +0 -459
- package/pre-publish-tmp/src/model/Series.js +0 -588
- package/pre-publish-tmp/src/model/globalDefault.js +0 -132
- package/pre-publish-tmp/src/model/internalComponentCreator.js +0 -66
- package/pre-publish-tmp/src/model/mixin/areaStyle.js +0 -59
- package/pre-publish-tmp/src/model/mixin/dataFormat.js +0 -202
- package/pre-publish-tmp/src/model/mixin/itemStyle.js +0 -58
- package/pre-publish-tmp/src/model/mixin/lineStyle.js +0 -59
- package/pre-publish-tmp/src/model/mixin/makeStyleMapper.js +0 -70
- package/pre-publish-tmp/src/model/mixin/palette.js +0 -105
- package/pre-publish-tmp/src/model/mixin/textStyle.js +0 -87
- package/pre-publish-tmp/src/model/referHelper.js +0 -175
- package/pre-publish-tmp/src/preprocessor/backwardCompat.js +0 -255
- package/pre-publish-tmp/src/preprocessor/helper/compatStyle.js +0 -331
- package/pre-publish-tmp/src/processor/dataSample.js +0 -141
- package/pre-publish-tmp/src/processor/dataStack.js +0 -133
- package/pre-publish-tmp/src/processor/negativeDataFilter.js +0 -61
- package/pre-publish-tmp/src/renderer/installCanvasRenderer.js +0 -47
- package/pre-publish-tmp/src/renderer/installSVGRenderer.js +0 -47
- package/pre-publish-tmp/src/scale/Interval.js +0 -267
- package/pre-publish-tmp/src/scale/Log.js +0 -218
- package/pre-publish-tmp/src/scale/Ordinal.js +0 -217
- package/pre-publish-tmp/src/scale/Percentage.js +0 -230
- package/pre-publish-tmp/src/scale/Scale.js +0 -122
- package/pre-publish-tmp/src/scale/Time.js +0 -510
- package/pre-publish-tmp/src/scale/helper.js +0 -169
- package/pre-publish-tmp/src/util/ECEventProcessor.js +0 -144
- package/pre-publish-tmp/src/util/KDTree.js +0 -255
- package/pre-publish-tmp/src/util/axisLabel.js +0 -62
- package/pre-publish-tmp/src/util/clazz.js +0 -305
- package/pre-publish-tmp/src/util/color.js +0 -202
- package/pre-publish-tmp/src/util/component.js +0 -186
- package/pre-publish-tmp/src/util/conditionalExpression.js +0 -257
- package/pre-publish-tmp/src/util/decal.js +0 -392
- package/pre-publish-tmp/src/util/format.js +0 -254
- package/pre-publish-tmp/src/util/graphic.js +0 -525
- package/pre-publish-tmp/src/util/innerStore.js +0 -66
- package/pre-publish-tmp/src/util/layout.js +0 -449
- package/pre-publish-tmp/src/util/log.js +0 -134
- package/pre-publish-tmp/src/util/model.js +0 -696
- package/pre-publish-tmp/src/util/number.js +0 -563
- package/pre-publish-tmp/src/util/shape/circulateLine.js +0 -92
- package/pre-publish-tmp/src/util/shape/diagonal.js +0 -78
- package/pre-publish-tmp/src/util/shape/sausage.js +0 -107
- package/pre-publish-tmp/src/util/states.js +0 -848
- package/pre-publish-tmp/src/util/styleCompat.js +0 -226
- package/pre-publish-tmp/src/util/symbol.js +0 -1266
- package/pre-publish-tmp/src/util/time.js +0 -271
- package/pre-publish-tmp/src/util/types.js +0 -60
- package/pre-publish-tmp/src/util/vendor.js +0 -55
- package/pre-publish-tmp/src/view/Chart.js +0 -201
- package/pre-publish-tmp/src/view/Component.js +0 -88
- package/pre-publish-tmp/src/visual/VisualMapping.js +0 -479
- package/pre-publish-tmp/src/visual/aria.js +0 -229
- package/pre-publish-tmp/src/visual/decal.js +0 -66
- package/pre-publish-tmp/src/visual/style.js +0 -216
- package/pre-publish-tmp/src/visual/symbol.js +0 -124
- package/pre-publish-tmp/src/visual/visualDefault.js +0 -91
- package/pre-publish-tmp/src/visual/visualSolution.js +0 -202
- /package/{pre-publish-tmp/src → lib}/action/roamHelper.js +0 -0
- /package/{pre-publish-tmp/src → lib}/chart/charPlot/util.js +0 -0
- /package/{pre-publish-tmp/src → lib}/chart/graph/graphHelper.js +0 -0
- /package/{pre-publish-tmp/src → lib}/chart/lines/linesVisual.js +0 -0
- /package/{pre-publish-tmp/src → lib}/chart/linesPlot/linesPlotVisual.js +0 -0
- /package/{pre-publish-tmp/src → lib}/chart/mineLines/util.js +0 -0
- /package/{pre-publish-tmp/src → lib}/chart/parallel/parallelVisual.js +0 -0
- /package/{pre-publish-tmp/src → lib}/chart/playbackOrder/constants.js +0 -0
- /package/{pre-publish-tmp/src → lib}/chart/strategy/constants.js +0 -0
- /package/{pre-publish-tmp/src → lib}/chart/tree/traversalHelper.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/axis/parallelAxisAction.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/axisPointer/AxisPointer.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/helper/cursorHelper.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/helper/kineticAnimation.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/helper/roamHelper.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/helper/sliderMove.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/legend/legendFilter.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/legend/scrollableLegendAction.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/toolbox/featureManager.js +0 -0
- /package/{pre-publish-tmp/src → lib}/component/visualMap/visualMapAction.js +0 -0
- /package/{pre-publish-tmp/src → lib}/coord/AxisBaseModel.js +0 -0
- /package/{pre-publish-tmp/src → lib}/coord/CoordinateSystem.js +0 -0
- /package/{pre-publish-tmp/src → lib}/coord/axisCommonTypes.js +0 -0
- /package/{pre-publish-tmp/src → lib}/coord/axisModelCommonMixin.js +0 -0
- /package/{pre-publish-tmp/src → lib}/coord/calendar/prepareCustom.js +0 -0
- /package/{pre-publish-tmp/src → lib}/coord/geo/fix/geoCoord.js +0 -0
- /package/{pre-publish-tmp/src → lib}/coord/geo/fix/textCoord.js +0 -0
- /package/{pre-publish-tmp/src → lib}/coord/geo/geoTypes.js +0 -0
- /package/{pre-publish-tmp/src → lib}/data/Constant.js +0 -0
- /package/{pre-publish-tmp/src → lib}/data/DataDiffer.js +0 -0
- /package/{pre-publish-tmp/src → lib}/data/scale-time/default-tick-mark-formatter.js +0 -0
- /package/{pre-publish-tmp/src → lib}/data/scale-time/find-time-range.js +0 -0
- /package/{pre-publish-tmp/src → lib}/data/scale-time/time-scale-point-weight-generator.js +0 -0
- /package/{pre-publish-tmp/src → lib}/data/scale-time/types.js +0 -0
- /package/{pre-publish-tmp/src → lib}/export/option.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langAR.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langCS.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langDE.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langEN.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langES.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langFI.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langFR.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langHU.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langIT.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langJA.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langKO.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langNL.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langPL.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langPT-br.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langRO.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langRU.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langSI.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langTH.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langTR.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langUK.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langVI.js +0 -0
- /package/{pre-publish-tmp/src → lib}/i18n/langZH.js +0 -0
- /package/{pre-publish-tmp/src → lib}/processor/dataFilter.js +0 -0
- /package/{pre-publish-tmp/src → lib}/theme/dark.js +0 -0
- /package/{pre-publish-tmp/src → lib}/theme/light.js +0 -0
- /package/{pre-publish-tmp/src → lib}/util/animation.js +0 -0
- /package/{pre-publish-tmp/src → lib}/util/event.js +0 -0
- /package/{pre-publish-tmp/src → lib}/util/quickSelect.js +0 -0
- /package/{pre-publish-tmp/src → lib}/util/seriesType.js +0 -0
- /package/{pre-publish-tmp/src → lib}/util/symbolSize.js +0 -0
- /package/{pre-publish-tmp/src → lib}/util/throttle.js +0 -0
- /package/{pre-publish-tmp/src → lib}/visual/LegendVisualProvider.js +0 -0
- /package/{pre-publish-tmp/src → lib}/visual/commonVisualTypes.js +0 -0
- /package/{pre-publish-tmp/src → lib}/visual/helper.js +0 -0
package/index.blank.js
CHANGED
package/index.common.js
CHANGED
|
@@ -41,28 +41,28 @@
|
|
|
41
41
|
* specific language governing permissions and limitations
|
|
42
42
|
* under the License.
|
|
43
43
|
*/
|
|
44
|
-
import { use } from './extension';
|
|
45
|
-
export * from './export/core';
|
|
46
|
-
import { install as SVGRenderer } from './renderer/installSVGRenderer';
|
|
47
|
-
import { install as CanvasRenderer } from './renderer/installCanvasRenderer';
|
|
48
|
-
import { install as LineChart } from './chart/line/install';
|
|
49
|
-
import { install as BarChart } from './chart/bar/install';
|
|
50
|
-
import { install as PieChart } from './chart/pie/install';
|
|
51
|
-
import { install as ScatterChart } from './chart/scatter/install';
|
|
52
|
-
import { install as GridComponent } from './component/grid/install';
|
|
53
|
-
import { install as GraphicComponent } from './component/graphic/install';
|
|
54
|
-
import { install as ToolboxComponent } from './component/toolbox/install';
|
|
55
|
-
import { install as TooltipComponent } from './component/tooltip/install';
|
|
56
|
-
import { install as AxisPointerComponent } from './component/axisPointer/install';
|
|
57
|
-
import { install as TitleComponent } from './component/title/install';
|
|
58
|
-
import { install as MarkPointComponent } from './component/marker/installMarkPoint';
|
|
59
|
-
import { install as MarkLineComponent } from './component/marker/installMarkLine';
|
|
60
|
-
import { install as MarkAreaComponent } from './component/marker/installMarkArea';
|
|
61
|
-
import { install as MarkLabelComponent } from './component/marker/installMarkLabel';
|
|
62
|
-
import { install as LegendComponent } from './component/legend/install';
|
|
63
|
-
import { install as DataZoomComponent } from './component/dataZoom/install';
|
|
64
|
-
import { install as AriaComponent } from './component/aria/install';
|
|
65
|
-
import { install as DatasetComponent } from './component/dataset/install';
|
|
44
|
+
import { use } from './lib/extension.js';
|
|
45
|
+
export * from './lib/export/core.js';
|
|
46
|
+
import { install as SVGRenderer } from './lib/renderer/installSVGRenderer.js';
|
|
47
|
+
import { install as CanvasRenderer } from './lib/renderer/installCanvasRenderer.js';
|
|
48
|
+
import { install as LineChart } from './lib/chart/line/install.js';
|
|
49
|
+
import { install as BarChart } from './lib/chart/bar/install.js';
|
|
50
|
+
import { install as PieChart } from './lib/chart/pie/install.js';
|
|
51
|
+
import { install as ScatterChart } from './lib/chart/scatter/install.js';
|
|
52
|
+
import { install as GridComponent } from './lib/component/grid/install.js';
|
|
53
|
+
import { install as GraphicComponent } from './lib/component/graphic/install.js';
|
|
54
|
+
import { install as ToolboxComponent } from './lib/component/toolbox/install.js';
|
|
55
|
+
import { install as TooltipComponent } from './lib/component/tooltip/install.js';
|
|
56
|
+
import { install as AxisPointerComponent } from './lib/component/axisPointer/install.js';
|
|
57
|
+
import { install as TitleComponent } from './lib/component/title/install.js';
|
|
58
|
+
import { install as MarkPointComponent } from './lib/component/marker/installMarkPoint.js';
|
|
59
|
+
import { install as MarkLineComponent } from './lib/component/marker/installMarkLine.js';
|
|
60
|
+
import { install as MarkAreaComponent } from './lib/component/marker/installMarkArea.js';
|
|
61
|
+
import { install as MarkLabelComponent } from './lib/component/marker/installMarkLabel.js';
|
|
62
|
+
import { install as LegendComponent } from './lib/component/legend/install.js';
|
|
63
|
+
import { install as DataZoomComponent } from './lib/component/dataZoom/install.js';
|
|
64
|
+
import { install as AriaComponent } from './lib/component/aria/install.js';
|
|
65
|
+
import { install as DatasetComponent } from './lib/component/dataset/install.js';
|
|
66
66
|
use([CanvasRenderer]);
|
|
67
67
|
use([SVGRenderer]);
|
|
68
68
|
use([LineChart, BarChart, PieChart, ScatterChart]);
|
package/index.js
CHANGED
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
* specific language governing permissions and limitations
|
|
42
42
|
* under the License.
|
|
43
43
|
*/
|
|
44
|
-
import { use } from './extension';
|
|
45
|
-
export * from './export/core';
|
|
44
|
+
import { use } from './lib/extension.js';
|
|
45
|
+
export * from './lib/export/core.js';
|
|
46
46
|
// ----------------------------------------------
|
|
47
47
|
// All of the modules that are allowed to be
|
|
48
48
|
// imported are listed below.
|
|
@@ -50,10 +50,10 @@ export * from './export/core';
|
|
|
50
50
|
// Users MUST NOT import other modules that are
|
|
51
51
|
// not included in this list.
|
|
52
52
|
// ----------------------------------------------
|
|
53
|
-
import { SVGRenderer, CanvasRenderer } from './export/renderers';
|
|
54
|
-
import { LineChart, BarChart, PieChart, ScatterChart, RadarChart, MapChart, TreeChart, TreemapChart, GraphChart, GaugeChart, FunnelChart, ParallelChart, SankeyChart, BoxplotChart, CandlestickChart, EffectScatterChart, LinesChart, LinesPlotChart, StrategyChart, PlaybackOrderChart, MineLinesChart, MinePolyLinesChart, LineFillsChart, CharPlotChart, BoxesChart, LabelsChart, HLinesChart, ArrowsPlotChart, CandlePlotChart, BarPlotChart, FillsChart, BgColorChart, HeatmapChart, PictorialBarChart, ThemeRiverChart, SunburstChart, CustomChart } from './export/charts';
|
|
55
|
-
import { GridComponent, PolarComponent, GeoComponent, SingleAxisComponent, ParallelComponent, CalendarComponent, GraphicComponent, ToolboxComponent, TooltipComponent, AxisPointerComponent, BrushComponent, TitleComponent, LimitTipComponent, CursorPointerComponent, TableComponent, AlarmComponent, BgRectComponent, PlaybackComponent, LogoComponent, TimelineComponent, MarkPointComponent, MarkLineComponent, MarkAreaComponent, MarkLabelComponent, LegendComponent, DataZoomComponent, DataZoomInsideComponent, DataZoomSliderComponent, VisualMapComponent, VisualMapContinuousComponent, VisualMapPiecewiseComponent, AriaComponent, DatasetComponent, TransformComponent } from './export/components';
|
|
56
|
-
import { UniversalTransition, LabelLayout } from './export/features';
|
|
53
|
+
import { SVGRenderer, CanvasRenderer } from './lib/export/renderers.js';
|
|
54
|
+
import { LineChart, BarChart, PieChart, ScatterChart, RadarChart, MapChart, TreeChart, TreemapChart, GraphChart, GaugeChart, FunnelChart, ParallelChart, SankeyChart, BoxplotChart, CandlestickChart, EffectScatterChart, LinesChart, LinesPlotChart, StrategyChart, PlaybackOrderChart, MineLinesChart, MinePolyLinesChart, LineFillsChart, CharPlotChart, BoxesChart, LabelsChart, HLinesChart, ArrowsPlotChart, CandlePlotChart, BarPlotChart, FillsChart, BgColorChart, HeatmapChart, PictorialBarChart, ThemeRiverChart, SunburstChart, CustomChart } from './lib/export/charts.js';
|
|
55
|
+
import { GridComponent, PolarComponent, GeoComponent, SingleAxisComponent, ParallelComponent, CalendarComponent, GraphicComponent, ToolboxComponent, TooltipComponent, AxisPointerComponent, BrushComponent, TitleComponent, LimitTipComponent, CursorPointerComponent, TableComponent, AlarmComponent, BgRectComponent, PlaybackComponent, LogoComponent, TimelineComponent, MarkPointComponent, MarkLineComponent, MarkAreaComponent, MarkLabelComponent, LegendComponent, DataZoomComponent, DataZoomInsideComponent, DataZoomSliderComponent, VisualMapComponent, VisualMapContinuousComponent, VisualMapPiecewiseComponent, AriaComponent, DatasetComponent, TransformComponent } from './lib/export/components.js';
|
|
56
|
+
import { UniversalTransition, LabelLayout } from './lib/export/features.js';
|
|
57
57
|
// -----------------
|
|
58
58
|
// Render engines
|
|
59
59
|
// -----------------
|
package/index.simple.js
CHANGED
|
@@ -41,15 +41,15 @@
|
|
|
41
41
|
* specific language governing permissions and limitations
|
|
42
42
|
* under the License.
|
|
43
43
|
*/
|
|
44
|
-
import { use } from './extension';
|
|
45
|
-
export * from './export/core';
|
|
46
|
-
import { install as CanvasRenderer } from './renderer/installCanvasRenderer';
|
|
47
|
-
import { install as LineChart } from './chart/line/install';
|
|
48
|
-
import { install as BarChart } from './chart/bar/install';
|
|
49
|
-
import { install as PieChart } from './chart/pie/install';
|
|
50
|
-
import { install as GridSimpleComponent } from './component/grid/installSimple';
|
|
51
|
-
import { install as AriaComponent } from './component/aria/install';
|
|
52
|
-
import { install as DatasetComponent } from './component/dataset/install';
|
|
44
|
+
import { use } from './lib/extension.js';
|
|
45
|
+
export * from './lib/export/core.js';
|
|
46
|
+
import { install as CanvasRenderer } from './lib/renderer/installCanvasRenderer.js';
|
|
47
|
+
import { install as LineChart } from './lib/chart/line/install.js';
|
|
48
|
+
import { install as BarChart } from './lib/chart/bar/install.js';
|
|
49
|
+
import { install as PieChart } from './lib/chart/pie/install.js';
|
|
50
|
+
import { install as GridSimpleComponent } from './lib/component/grid/installSimple.js';
|
|
51
|
+
import { install as AriaComponent } from './lib/component/aria/install.js';
|
|
52
|
+
import { install as DatasetComponent } from './lib/component/dataset/install.js';
|
|
53
53
|
use([CanvasRenderer]);
|
|
54
54
|
use([LineChart, BarChart, PieChart]);
|
|
55
55
|
use([GridSimpleComponent, AriaComponent, DatasetComponent]);
|
|
@@ -0,0 +1,243 @@
|
|
|
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 { isFunction, isObject, retrieve2 } from 'tvrender/lib/core/util.js';
|
|
45
|
+
import { makeInner } from '../util/model.js';
|
|
46
|
+
// Stored properties for further transition.
|
|
47
|
+
export var transitionStore = makeInner();
|
|
48
|
+
/**
|
|
49
|
+
* Return null if animation is disabled.
|
|
50
|
+
*/
|
|
51
|
+
export function getAnimationConfig(animationType, animatableModel, dataIndex,
|
|
52
|
+
// Extra opts can override the option in animatable model.
|
|
53
|
+
extraOpts,
|
|
54
|
+
// TODO It's only for pictorial bar now.
|
|
55
|
+
extraDelayParams) {
|
|
56
|
+
var animationPayload;
|
|
57
|
+
// Check if there is global animation configuration from dataZoom/resize can override the config in option.
|
|
58
|
+
// If animation is enabled. Will use this animation config in payload.
|
|
59
|
+
// If animation is disabled. Just ignore it.
|
|
60
|
+
if (animatableModel && animatableModel.ecModel) {
|
|
61
|
+
var updatePayload = animatableModel.ecModel.getUpdatePayload();
|
|
62
|
+
animationPayload = updatePayload && updatePayload.animation;
|
|
63
|
+
}
|
|
64
|
+
var animationEnabled = animatableModel && animatableModel.isAnimationEnabled();
|
|
65
|
+
var isUpdate = animationType === 'update';
|
|
66
|
+
if (animationEnabled) {
|
|
67
|
+
var duration = void 0;
|
|
68
|
+
var easing = void 0;
|
|
69
|
+
var delay = void 0;
|
|
70
|
+
if (extraOpts) {
|
|
71
|
+
duration = retrieve2(extraOpts.duration, 200);
|
|
72
|
+
easing = retrieve2(extraOpts.easing, 'cubicOut');
|
|
73
|
+
delay = 0;
|
|
74
|
+
} else {
|
|
75
|
+
duration = animatableModel.getShallow(isUpdate ? 'animationDurationUpdate' : 'animationDuration');
|
|
76
|
+
easing = animatableModel.getShallow(isUpdate ? 'animationEasingUpdate' : 'animationEasing');
|
|
77
|
+
delay = animatableModel.getShallow(isUpdate ? 'animationDelayUpdate' : 'animationDelay');
|
|
78
|
+
}
|
|
79
|
+
// animation from payload has highest priority.
|
|
80
|
+
if (animationPayload) {
|
|
81
|
+
animationPayload.duration != null && (duration = animationPayload.duration);
|
|
82
|
+
animationPayload.easing != null && (easing = animationPayload.easing);
|
|
83
|
+
animationPayload.delay != null && (delay = animationPayload.delay);
|
|
84
|
+
}
|
|
85
|
+
if (isFunction(delay)) {
|
|
86
|
+
delay = delay(dataIndex, extraDelayParams);
|
|
87
|
+
}
|
|
88
|
+
if (isFunction(duration)) {
|
|
89
|
+
duration = duration(dataIndex);
|
|
90
|
+
}
|
|
91
|
+
var config = {
|
|
92
|
+
duration: duration || 0,
|
|
93
|
+
delay: delay,
|
|
94
|
+
easing: easing
|
|
95
|
+
};
|
|
96
|
+
return config;
|
|
97
|
+
} else {
|
|
98
|
+
return null;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
function animateOrSetProps(animationType, el, props, animatableModel, dataIndex, cb, during) {
|
|
102
|
+
var isFrom = false;
|
|
103
|
+
var removeOpt;
|
|
104
|
+
if (isFunction(dataIndex)) {
|
|
105
|
+
during = cb;
|
|
106
|
+
cb = dataIndex;
|
|
107
|
+
dataIndex = null;
|
|
108
|
+
} else if (isObject(dataIndex)) {
|
|
109
|
+
cb = dataIndex.cb;
|
|
110
|
+
during = dataIndex.during;
|
|
111
|
+
isFrom = dataIndex.isFrom;
|
|
112
|
+
removeOpt = dataIndex.removeOpt;
|
|
113
|
+
dataIndex = dataIndex.dataIndex;
|
|
114
|
+
}
|
|
115
|
+
var isRemove = animationType === 'leave';
|
|
116
|
+
if (!isRemove) {
|
|
117
|
+
// Must stop the remove animation.
|
|
118
|
+
el.stopAnimation('leave');
|
|
119
|
+
}
|
|
120
|
+
var animationConfig = getAnimationConfig(animationType, animatableModel, dataIndex, isRemove ? removeOpt || {} : null, animatableModel && animatableModel.getAnimationDelayParams ? animatableModel.getAnimationDelayParams(el, dataIndex) : null);
|
|
121
|
+
if (animationConfig && animationConfig.duration > 0) {
|
|
122
|
+
var duration = animationConfig.duration;
|
|
123
|
+
var animationDelay = animationConfig.delay;
|
|
124
|
+
var animationEasing = animationConfig.easing;
|
|
125
|
+
var animateConfig = {
|
|
126
|
+
duration: duration,
|
|
127
|
+
delay: animationDelay || 0,
|
|
128
|
+
easing: animationEasing,
|
|
129
|
+
done: cb,
|
|
130
|
+
force: !!cb || !!during,
|
|
131
|
+
// Set to final state in update/init animation.
|
|
132
|
+
// So the post processing based on the path shape can be done correctly.
|
|
133
|
+
setToFinal: !isRemove,
|
|
134
|
+
scope: animationType,
|
|
135
|
+
during: during
|
|
136
|
+
};
|
|
137
|
+
isFrom ? el.animateFrom(props, animateConfig) : el.animateTo(props, animateConfig);
|
|
138
|
+
} else {
|
|
139
|
+
el.stopAnimation();
|
|
140
|
+
// If `isFrom`, the props is the "from" props.
|
|
141
|
+
!isFrom && el.attr(props);
|
|
142
|
+
// Call during at least once.
|
|
143
|
+
during && during(1);
|
|
144
|
+
cb && cb();
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Update graphic element properties with or without animation according to the
|
|
149
|
+
* configuration in series.
|
|
150
|
+
*
|
|
151
|
+
* Caution: this method will stop previous animation.
|
|
152
|
+
* So do not use this method to one element twice before
|
|
153
|
+
* animation starts, unless you know what you are doing.
|
|
154
|
+
* @example
|
|
155
|
+
* graphic.updateProps(el, {
|
|
156
|
+
* position: [100, 100]
|
|
157
|
+
* }, seriesModel, dataIndex, function () { console.log('Animation done!'); });
|
|
158
|
+
* // Or
|
|
159
|
+
* graphic.updateProps(el, {
|
|
160
|
+
* position: [100, 100]
|
|
161
|
+
* }, seriesModel, function () { console.log('Animation done!'); });
|
|
162
|
+
*/
|
|
163
|
+
function updateProps(el, props,
|
|
164
|
+
// TODO: TYPE AnimatableModel
|
|
165
|
+
animatableModel, dataIndex, cb, during) {
|
|
166
|
+
animateOrSetProps('update', el, props, animatableModel, dataIndex, cb, during);
|
|
167
|
+
}
|
|
168
|
+
export { updateProps };
|
|
169
|
+
/**
|
|
170
|
+
* Init graphic element properties with or without animation according to the
|
|
171
|
+
* configuration in series.
|
|
172
|
+
*
|
|
173
|
+
* Caution: this method will stop previous animation.
|
|
174
|
+
* So do not use this method to one element twice before
|
|
175
|
+
* animation starts, unless you know what you are doing.
|
|
176
|
+
*/
|
|
177
|
+
export function initProps(el, props, animatableModel, dataIndex, cb, during) {
|
|
178
|
+
animateOrSetProps('enter', el, props, animatableModel, dataIndex, cb, during);
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* If element is removed.
|
|
182
|
+
* It can determine if element is having remove animation.
|
|
183
|
+
*/
|
|
184
|
+
export function isElementRemoved(el) {
|
|
185
|
+
if (!el.__zr) {
|
|
186
|
+
return true;
|
|
187
|
+
}
|
|
188
|
+
for (var i = 0; i < el.animators.length; i++) {
|
|
189
|
+
var animator = el.animators[i];
|
|
190
|
+
if (animator.scope === 'leave') {
|
|
191
|
+
return true;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
return false;
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* Remove graphic element
|
|
198
|
+
*/
|
|
199
|
+
export function removeElement(el, props, animatableModel, dataIndex, cb, during) {
|
|
200
|
+
// Don't do remove animation twice.
|
|
201
|
+
if (isElementRemoved(el)) {
|
|
202
|
+
return;
|
|
203
|
+
}
|
|
204
|
+
animateOrSetProps('leave', el, props, animatableModel, dataIndex, cb, during);
|
|
205
|
+
}
|
|
206
|
+
function fadeOutDisplayable(el, animatableModel, dataIndex, done) {
|
|
207
|
+
el.removeTextContent();
|
|
208
|
+
el.removeTextGuideLine();
|
|
209
|
+
removeElement(el, {
|
|
210
|
+
style: {
|
|
211
|
+
opacity: 0
|
|
212
|
+
}
|
|
213
|
+
}, animatableModel, dataIndex, done);
|
|
214
|
+
}
|
|
215
|
+
export function removeElementWithFadeOut(el, animatableModel, dataIndex) {
|
|
216
|
+
function doRemove() {
|
|
217
|
+
el.parent && el.parent.remove(el);
|
|
218
|
+
}
|
|
219
|
+
// Hide label and labelLine first
|
|
220
|
+
// TODO Also use fade out animation?
|
|
221
|
+
if (!el.isGroup) {
|
|
222
|
+
fadeOutDisplayable(el, animatableModel, dataIndex, doRemove);
|
|
223
|
+
} else {
|
|
224
|
+
el.traverse(function (disp) {
|
|
225
|
+
if (!disp.isGroup) {
|
|
226
|
+
// Can invoke doRemove multiple times.
|
|
227
|
+
fadeOutDisplayable(disp, animatableModel, dataIndex, doRemove);
|
|
228
|
+
}
|
|
229
|
+
});
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Save old style for style transition in universalTransition module.
|
|
234
|
+
* It's used when element will be reused in each render.
|
|
235
|
+
* For chart like map, heatmap, which will always create new element.
|
|
236
|
+
* We don't need to save this because universalTransition can get old style from the old element
|
|
237
|
+
*/
|
|
238
|
+
export function saveOldStyle(el) {
|
|
239
|
+
transitionStore(el).oldStyle = el.style;
|
|
240
|
+
}
|
|
241
|
+
export function getOldStyle(el) {
|
|
242
|
+
return transitionStore(el).oldStyle;
|
|
243
|
+
}
|
|
@@ -0,0 +1,143 @@
|
|
|
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 { keys, filter, each, isArray, indexOf } from 'tvrender/lib/core/util.js';
|
|
45
|
+
import { ELEMENT_ANIMATABLE_PROPS } from './customGraphicTransition.js';
|
|
46
|
+
import { getAnimationConfig } from './basicTransition.js';
|
|
47
|
+
import { warn } from '../util/log.js';
|
|
48
|
+
import { makeInner } from '../util/model.js';
|
|
49
|
+
var getStateToRestore = makeInner();
|
|
50
|
+
var KEYFRAME_EXCLUDE_KEYS = ['percent', 'easing', 'shape', 'style', 'extra'];
|
|
51
|
+
/**
|
|
52
|
+
* Stop previous keyframe animation and restore the attributes.
|
|
53
|
+
* Avoid new keyframe animation starts with wrong internal state when the percent: 0 is not set.
|
|
54
|
+
*/
|
|
55
|
+
export function stopPreviousKeyframeAnimationAndRestore(el) {
|
|
56
|
+
// Stop previous keyframe animation.
|
|
57
|
+
el.stopAnimation('keyframe');
|
|
58
|
+
// Restore
|
|
59
|
+
el.attr(getStateToRestore(el));
|
|
60
|
+
}
|
|
61
|
+
export function applyKeyframeAnimation(el, animationOpts, animatableModel) {
|
|
62
|
+
if (!animatableModel.isAnimationEnabled() || !animationOpts) {
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
if (isArray(animationOpts)) {
|
|
66
|
+
each(animationOpts, function (singleAnimationOpts) {
|
|
67
|
+
applyKeyframeAnimation(el, singleAnimationOpts, animatableModel);
|
|
68
|
+
});
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
var keyframes = animationOpts.keyframes;
|
|
72
|
+
var duration = animationOpts.duration;
|
|
73
|
+
if (animatableModel && duration == null) {
|
|
74
|
+
// Default to use duration of config.
|
|
75
|
+
// NOTE: animation config from payload will be ignored because they are mainly for transitions.
|
|
76
|
+
var config = getAnimationConfig('enter', animatableModel, 0);
|
|
77
|
+
duration = config && config.duration;
|
|
78
|
+
}
|
|
79
|
+
if (!keyframes || !duration) {
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
var stateToRestore = getStateToRestore(el);
|
|
83
|
+
each(ELEMENT_ANIMATABLE_PROPS, function (targetPropName) {
|
|
84
|
+
if (targetPropName && !el[targetPropName]) {
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
var animator;
|
|
88
|
+
var endFrameIsSet = false;
|
|
89
|
+
// Sort keyframes by percent.
|
|
90
|
+
keyframes.sort(function (a, b) {
|
|
91
|
+
return a.percent - b.percent;
|
|
92
|
+
});
|
|
93
|
+
each(keyframes, function (kf) {
|
|
94
|
+
// Stop current animation.
|
|
95
|
+
var animators = el.animators;
|
|
96
|
+
var kfValues = targetPropName ? kf[targetPropName] : kf;
|
|
97
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
98
|
+
if (kf.percent >= 1) {
|
|
99
|
+
endFrameIsSet = true;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
if (!kfValues) {
|
|
103
|
+
return;
|
|
104
|
+
}
|
|
105
|
+
var propKeys = keys(kfValues);
|
|
106
|
+
if (!targetPropName) {
|
|
107
|
+
// PENDING performance?
|
|
108
|
+
propKeys = filter(propKeys, function (key) {
|
|
109
|
+
return indexOf(KEYFRAME_EXCLUDE_KEYS, key) < 0;
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
if (!propKeys.length) {
|
|
113
|
+
return;
|
|
114
|
+
}
|
|
115
|
+
if (!animator) {
|
|
116
|
+
animator = el.animate(targetPropName, animationOpts.loop, true);
|
|
117
|
+
animator.scope = 'keyframe';
|
|
118
|
+
}
|
|
119
|
+
for (var i = 0; i < animators.length; i++) {
|
|
120
|
+
// Stop all other animation that is not keyframe.
|
|
121
|
+
if (animators[i] !== animator && animators[i].targetName === animator.targetName) {
|
|
122
|
+
animators[i].stopTracks(propKeys);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
targetPropName && (stateToRestore[targetPropName] = stateToRestore[targetPropName] || {});
|
|
126
|
+
var savedTarget = targetPropName ? stateToRestore[targetPropName] : stateToRestore;
|
|
127
|
+
each(propKeys, function (key) {
|
|
128
|
+
// Save original value.
|
|
129
|
+
savedTarget[key] = ((targetPropName ? el[targetPropName] : el) || {})[key];
|
|
130
|
+
});
|
|
131
|
+
animator.whenWithKeys(duration * kf.percent, kfValues, propKeys, kf.easing);
|
|
132
|
+
});
|
|
133
|
+
if (!animator) {
|
|
134
|
+
return;
|
|
135
|
+
}
|
|
136
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
137
|
+
if (!endFrameIsSet) {
|
|
138
|
+
warn('End frame with percent: 1 is missing in the keyframeAnimation.', true);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
animator.delay(animationOpts.delay || 0).duration(duration).start(animationOpts.easing);
|
|
142
|
+
});
|
|
143
|
+
}
|