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
|
@@ -1,525 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/*
|
|
3
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
4
|
-
* or more contributor license agreements. See the NOTICE file
|
|
5
|
-
* distributed with this work for additional information
|
|
6
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
7
|
-
* to you under the Apache License, Version 2.0 (the
|
|
8
|
-
* "License"); you may not use this file except in compliance
|
|
9
|
-
* with the License. You may obtain a copy of the License at
|
|
10
|
-
*
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*
|
|
13
|
-
* Unless required by applicable law or agreed to in writing,
|
|
14
|
-
* software distributed under the License is distributed on an
|
|
15
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
-
* KIND, either express or implied. See the License for the
|
|
17
|
-
* specific language governing permissions and limitations
|
|
18
|
-
* under the License.
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
/*
|
|
27
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
28
|
-
* or more contributor license agreements. See the NOTICE file
|
|
29
|
-
* distributed with this work for additional information
|
|
30
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
31
|
-
* to you under the Apache License, Version 2.0 (the
|
|
32
|
-
* "License"); you may not use this file except in compliance
|
|
33
|
-
* with the License. You may obtain a copy of the License at
|
|
34
|
-
*
|
|
35
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
36
|
-
*
|
|
37
|
-
* Unless required by applicable law or agreed to in writing,
|
|
38
|
-
* software distributed under the License is distributed on an
|
|
39
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
40
|
-
* KIND, either express or implied. See the License for the
|
|
41
|
-
* specific language governing permissions and limitations
|
|
42
|
-
* under the License.
|
|
43
|
-
*/
|
|
44
|
-
import * as pathTool from 'tvrender/src/tool/path';
|
|
45
|
-
import * as matrix from 'tvrender/src/core/matrix';
|
|
46
|
-
import * as vector from 'tvrender/src/core/vector';
|
|
47
|
-
import Path from 'tvrender/src/graphic/Path';
|
|
48
|
-
import Transformable from 'tvrender/src/core/Transformable';
|
|
49
|
-
import ZRImage from 'tvrender/src/graphic/Image';
|
|
50
|
-
import Group from 'tvrender/src/graphic/Group';
|
|
51
|
-
import ZRText from 'tvrender/src/graphic/Text';
|
|
52
|
-
import Circle from 'tvrender/src/graphic/shape/Circle';
|
|
53
|
-
import Ellipse from 'tvrender/src/graphic/shape/Ellipse';
|
|
54
|
-
import Sector from 'tvrender/src/graphic/shape/Sector';
|
|
55
|
-
import Ring from 'tvrender/src/graphic/shape/Ring';
|
|
56
|
-
import Polygon from 'tvrender/src/graphic/shape/Polygon';
|
|
57
|
-
import Polyline from 'tvrender/src/graphic/shape/Polyline';
|
|
58
|
-
import Rect from 'tvrender/src/graphic/shape/Rect';
|
|
59
|
-
import Line from 'tvrender/src/graphic/shape/Line';
|
|
60
|
-
import BezierCurve from 'tvrender/src/graphic/shape/BezierCurve';
|
|
61
|
-
import Arc from 'tvrender/src/graphic/shape/Arc';
|
|
62
|
-
import CompoundPath from 'tvrender/src/graphic/CompoundPath';
|
|
63
|
-
import LinearGradient from 'tvrender/src/graphic/LinearGradient';
|
|
64
|
-
import RadialGradient from 'tvrender/src/graphic/RadialGradient';
|
|
65
|
-
import BoundingRect from 'tvrender/src/core/BoundingRect';
|
|
66
|
-
import OrientedBoundingRect from 'tvrender/src/core/OrientedBoundingRect';
|
|
67
|
-
import Point from 'tvrender/src/core/Point';
|
|
68
|
-
import IncrementalDisplayable from 'tvrender/src/graphic/IncrementalDisplayable';
|
|
69
|
-
import * as subPixelOptimizeUtil from 'tvrender/src/graphic/helper/subPixelOptimize';
|
|
70
|
-
import CirculateLine from './shape/circulateLine';
|
|
71
|
-
import Diagonal from './shape/diagonal';
|
|
72
|
-
import { extend, isArrayLike, map, defaults, isString, keys, each, hasOwn, isArray } from 'tvrender/src/core/util';
|
|
73
|
-
import { getECData } from './innerStore';
|
|
74
|
-
import { updateProps, initProps, removeElement, removeElementWithFadeOut, isElementRemoved } from '../animation/basicTransition';
|
|
75
|
-
/**
|
|
76
|
-
* @deprecated export for compatitable reason
|
|
77
|
-
*/
|
|
78
|
-
export { updateProps, initProps, removeElement, removeElementWithFadeOut, isElementRemoved };
|
|
79
|
-
var mathMax = Math.max;
|
|
80
|
-
var mathMin = Math.min;
|
|
81
|
-
var _customShapeMap = {};
|
|
82
|
-
/**
|
|
83
|
-
* Extend shape with parameters
|
|
84
|
-
*/
|
|
85
|
-
export function extendShape(opts) {
|
|
86
|
-
return Path.extend(opts);
|
|
87
|
-
}
|
|
88
|
-
var extendPathFromString = pathTool.extendFromString;
|
|
89
|
-
/**
|
|
90
|
-
* Extend path
|
|
91
|
-
*/
|
|
92
|
-
export function extendPath(pathData, opts) {
|
|
93
|
-
return extendPathFromString(pathData, opts);
|
|
94
|
-
}
|
|
95
|
-
/**
|
|
96
|
-
* Register a user defined shape.
|
|
97
|
-
* The shape class can be fetched by `getShapeClass`
|
|
98
|
-
* This method will overwrite the registered shapes, including
|
|
99
|
-
* the registered built-in shapes, if using the same `name`.
|
|
100
|
-
* The shape can be used in `custom series` and
|
|
101
|
-
* `graphic component` by declaring `{type: name}`.
|
|
102
|
-
*
|
|
103
|
-
* @param name
|
|
104
|
-
* @param ShapeClass Can be generated by `extendShape`.
|
|
105
|
-
*/
|
|
106
|
-
export function registerShape(name, ShapeClass) {
|
|
107
|
-
_customShapeMap[name] = ShapeClass;
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* Find shape class registered by `registerShape`. Usually used in
|
|
111
|
-
* fetching user defined shape.
|
|
112
|
-
*
|
|
113
|
-
* [Caution]:
|
|
114
|
-
* (1) This method **MUST NOT be used inside echarts !!!**, unless it is prepared
|
|
115
|
-
* to use user registered shapes.
|
|
116
|
-
* Because the built-in shape (see `getBuiltInShape`) will be registered by
|
|
117
|
-
* `registerShape` by default. That enables users to get both built-in
|
|
118
|
-
* shapes as well as the shapes belonging to themsleves. But users can overwrite
|
|
119
|
-
* the built-in shapes by using names like 'circle', 'rect' via calling
|
|
120
|
-
* `registerShape`. So the echarts inner featrues should not fetch shapes from here
|
|
121
|
-
* in case that it is overwritten by users, except that some features, like
|
|
122
|
-
* `custom series`, `graphic component`, do it deliberately.
|
|
123
|
-
*
|
|
124
|
-
* (2) In the features like `custom series`, `graphic component`, the user input
|
|
125
|
-
* `{tpye: 'xxx'}` does not only specify shapes but also specify other graphic
|
|
126
|
-
* elements like `'group'`, `'text'`, `'image'` or event `'path'`. Those names
|
|
127
|
-
* are reserved names, that is, if some user registers a shape named `'image'`,
|
|
128
|
-
* the shape will not be used. If we intending to add some more reserved names
|
|
129
|
-
* in feature, that might bring break changes (disable some existing user shape
|
|
130
|
-
* names). But that case probably rarely happens. So we don't make more mechanism
|
|
131
|
-
* to resolve this issue here.
|
|
132
|
-
*
|
|
133
|
-
* @param name
|
|
134
|
-
* @return The shape class. If not found, return nothing.
|
|
135
|
-
*/
|
|
136
|
-
export function getShapeClass(name) {
|
|
137
|
-
if (_customShapeMap.hasOwnProperty(name)) {
|
|
138
|
-
return _customShapeMap[name];
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
/**
|
|
142
|
-
* Create a path element from path data string
|
|
143
|
-
* @param pathData
|
|
144
|
-
* @param opts
|
|
145
|
-
* @param rect
|
|
146
|
-
* @param layout 'center' or 'cover' default to be cover
|
|
147
|
-
*/
|
|
148
|
-
export function makePath(pathData, opts, rect, layout) {
|
|
149
|
-
var path = pathTool.createFromString(pathData, opts);
|
|
150
|
-
if (rect) {
|
|
151
|
-
if (layout === 'center') {
|
|
152
|
-
rect = centerGraphic(rect, path.getBoundingRect());
|
|
153
|
-
}
|
|
154
|
-
resizePath(path, rect);
|
|
155
|
-
}
|
|
156
|
-
return path;
|
|
157
|
-
}
|
|
158
|
-
/**
|
|
159
|
-
* Create a image element from image url
|
|
160
|
-
* @param imageUrl image url
|
|
161
|
-
* @param opts options
|
|
162
|
-
* @param rect constrain rect
|
|
163
|
-
* @param layout 'center' or 'cover'. Default to be 'cover'
|
|
164
|
-
*/
|
|
165
|
-
export function makeImage(imageUrl, rect, layout) {
|
|
166
|
-
var zrImg = new ZRImage({
|
|
167
|
-
style: {
|
|
168
|
-
image: imageUrl,
|
|
169
|
-
x: rect.x,
|
|
170
|
-
y: rect.y,
|
|
171
|
-
width: rect.width,
|
|
172
|
-
height: rect.height
|
|
173
|
-
},
|
|
174
|
-
onload: function (img) {
|
|
175
|
-
if (layout === 'center') {
|
|
176
|
-
var boundingRect = {
|
|
177
|
-
width: img.width,
|
|
178
|
-
height: img.height
|
|
179
|
-
};
|
|
180
|
-
zrImg.setStyle(centerGraphic(rect, boundingRect));
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
});
|
|
184
|
-
return zrImg;
|
|
185
|
-
}
|
|
186
|
-
/**
|
|
187
|
-
* Get position of centered element in bounding box.
|
|
188
|
-
*
|
|
189
|
-
* @param rect element local bounding box
|
|
190
|
-
* @param boundingRect constraint bounding box
|
|
191
|
-
* @return element position containing x, y, width, and height
|
|
192
|
-
*/
|
|
193
|
-
function centerGraphic(rect, boundingRect) {
|
|
194
|
-
// Set rect to center, keep width / height ratio.
|
|
195
|
-
var aspect = boundingRect.width / boundingRect.height;
|
|
196
|
-
var width = rect.height * aspect;
|
|
197
|
-
var height;
|
|
198
|
-
if (width <= rect.width) {
|
|
199
|
-
height = rect.height;
|
|
200
|
-
} else {
|
|
201
|
-
width = rect.width;
|
|
202
|
-
height = width / aspect;
|
|
203
|
-
}
|
|
204
|
-
var cx = rect.x + rect.width / 2;
|
|
205
|
-
var cy = rect.y + rect.height / 2;
|
|
206
|
-
return {
|
|
207
|
-
x: cx - width / 2,
|
|
208
|
-
y: cy - height / 2,
|
|
209
|
-
width: width,
|
|
210
|
-
height: height
|
|
211
|
-
};
|
|
212
|
-
}
|
|
213
|
-
export var mergePath = pathTool.mergePath;
|
|
214
|
-
/**
|
|
215
|
-
* Resize a path to fit the rect
|
|
216
|
-
* @param path
|
|
217
|
-
* @param rect
|
|
218
|
-
*/
|
|
219
|
-
export function resizePath(path, rect) {
|
|
220
|
-
if (!path.applyTransform) {
|
|
221
|
-
return;
|
|
222
|
-
}
|
|
223
|
-
var pathRect = path.getBoundingRect();
|
|
224
|
-
var m = pathRect.calculateTransform(rect);
|
|
225
|
-
path.applyTransform(m);
|
|
226
|
-
}
|
|
227
|
-
/**
|
|
228
|
-
* Sub pixel optimize line for canvas
|
|
229
|
-
*/
|
|
230
|
-
export function subPixelOptimizeLine(shape, lineWidth) {
|
|
231
|
-
subPixelOptimizeUtil.subPixelOptimizeLine(shape, shape, {
|
|
232
|
-
lineWidth: lineWidth
|
|
233
|
-
});
|
|
234
|
-
return shape;
|
|
235
|
-
}
|
|
236
|
-
/**
|
|
237
|
-
* Sub pixel optimize rect for canvas
|
|
238
|
-
*/
|
|
239
|
-
export function subPixelOptimizeRect(param) {
|
|
240
|
-
subPixelOptimizeUtil.subPixelOptimizeRect(param.shape, param.shape, param.style);
|
|
241
|
-
return param;
|
|
242
|
-
}
|
|
243
|
-
/**
|
|
244
|
-
* Sub pixel optimize for canvas
|
|
245
|
-
*
|
|
246
|
-
* @param position Coordinate, such as x, y
|
|
247
|
-
* @param lineWidth Should be nonnegative integer.
|
|
248
|
-
* @param positiveOrNegative Default false (negative).
|
|
249
|
-
* @return Optimized position.
|
|
250
|
-
*/
|
|
251
|
-
export var subPixelOptimize = subPixelOptimizeUtil.subPixelOptimize;
|
|
252
|
-
/**
|
|
253
|
-
* Get transform matrix of target (param target),
|
|
254
|
-
* in coordinate of its ancestor (param ancestor)
|
|
255
|
-
*
|
|
256
|
-
* @param target
|
|
257
|
-
* @param [ancestor]
|
|
258
|
-
*/
|
|
259
|
-
export function getTransform(target, ancestor) {
|
|
260
|
-
var mat = matrix.identity([]);
|
|
261
|
-
while (target && target !== ancestor) {
|
|
262
|
-
matrix.mul(mat, target.getLocalTransform(), mat);
|
|
263
|
-
target = target.parent;
|
|
264
|
-
}
|
|
265
|
-
return mat;
|
|
266
|
-
}
|
|
267
|
-
/**
|
|
268
|
-
* Apply transform to an vertex.
|
|
269
|
-
* @param target [x, y]
|
|
270
|
-
* @param transform Can be:
|
|
271
|
-
* + Transform matrix: like [1, 0, 0, 1, 0, 0]
|
|
272
|
-
* + {position, rotation, scale}, the same as `tvrender/Transformable`.
|
|
273
|
-
* @param invert Whether use invert matrix.
|
|
274
|
-
* @return [x, y]
|
|
275
|
-
*/
|
|
276
|
-
export function applyTransform(target, transform, invert) {
|
|
277
|
-
if (transform && !isArrayLike(transform)) {
|
|
278
|
-
transform = Transformable.getLocalTransform(transform);
|
|
279
|
-
}
|
|
280
|
-
if (invert) {
|
|
281
|
-
transform = matrix.invert([], transform);
|
|
282
|
-
}
|
|
283
|
-
return vector.applyTransform([], target, transform);
|
|
284
|
-
}
|
|
285
|
-
/**
|
|
286
|
-
* @param direction 'left' 'right' 'top' 'bottom'
|
|
287
|
-
* @param transform Transform matrix: like [1, 0, 0, 1, 0, 0]
|
|
288
|
-
* @param invert Whether use invert matrix.
|
|
289
|
-
* @return Transformed direction. 'left' 'right' 'top' 'bottom'
|
|
290
|
-
*/
|
|
291
|
-
export function transformDirection(direction, transform, invert) {
|
|
292
|
-
// Pick a base, ensure that transform result will not be (0, 0).
|
|
293
|
-
var hBase = transform[4] === 0 || transform[5] === 0 || transform[0] === 0 ? 1 : Math.abs(2 * transform[4] / transform[0]);
|
|
294
|
-
var vBase = transform[4] === 0 || transform[5] === 0 || transform[2] === 0 ? 1 : Math.abs(2 * transform[4] / transform[2]);
|
|
295
|
-
var vertex = [direction === 'left' ? -hBase : direction === 'right' ? hBase : 0, direction === 'top' ? -vBase : direction === 'bottom' ? vBase : 0];
|
|
296
|
-
vertex = applyTransform(vertex, transform, invert);
|
|
297
|
-
return Math.abs(vertex[0]) > Math.abs(vertex[1]) ? vertex[0] > 0 ? 'right' : 'left' : vertex[1] > 0 ? 'bottom' : 'top';
|
|
298
|
-
}
|
|
299
|
-
function isNotGroup(el) {
|
|
300
|
-
return !el.isGroup;
|
|
301
|
-
}
|
|
302
|
-
function isPath(el) {
|
|
303
|
-
return el.shape != null;
|
|
304
|
-
}
|
|
305
|
-
/**
|
|
306
|
-
* Apply group transition animation from g1 to g2.
|
|
307
|
-
* If no animatableModel, no animation.
|
|
308
|
-
*/
|
|
309
|
-
export function groupTransition(g1, g2, animatableModel) {
|
|
310
|
-
if (!g1 || !g2) {
|
|
311
|
-
return;
|
|
312
|
-
}
|
|
313
|
-
function getElMap(g) {
|
|
314
|
-
var elMap = {};
|
|
315
|
-
g.traverse(function (el) {
|
|
316
|
-
if (isNotGroup(el) && el.anid) {
|
|
317
|
-
elMap[el.anid] = el;
|
|
318
|
-
}
|
|
319
|
-
});
|
|
320
|
-
return elMap;
|
|
321
|
-
}
|
|
322
|
-
function getAnimatableProps(el) {
|
|
323
|
-
var obj = {
|
|
324
|
-
x: el.x,
|
|
325
|
-
y: el.y,
|
|
326
|
-
rotation: el.rotation
|
|
327
|
-
};
|
|
328
|
-
if (isPath(el)) {
|
|
329
|
-
obj.shape = extend({}, el.shape);
|
|
330
|
-
}
|
|
331
|
-
return obj;
|
|
332
|
-
}
|
|
333
|
-
var elMap1 = getElMap(g1);
|
|
334
|
-
g2.traverse(function (el) {
|
|
335
|
-
if (isNotGroup(el) && el.anid) {
|
|
336
|
-
var oldEl = elMap1[el.anid];
|
|
337
|
-
if (oldEl) {
|
|
338
|
-
var newProp = getAnimatableProps(el);
|
|
339
|
-
el.attr(getAnimatableProps(oldEl));
|
|
340
|
-
updateProps(el, newProp, animatableModel, getECData(el).dataIndex);
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
});
|
|
344
|
-
}
|
|
345
|
-
export function clipPointsByRect(points, rect) {
|
|
346
|
-
// FIXME: This way might be incorrect when graphic clipped by a corner
|
|
347
|
-
// and when element has a border.
|
|
348
|
-
return map(points, function (point) {
|
|
349
|
-
var x = point[0];
|
|
350
|
-
x = mathMax(x, rect.x);
|
|
351
|
-
x = mathMin(x, rect.x + rect.width);
|
|
352
|
-
var y = point[1];
|
|
353
|
-
y = mathMax(y, rect.y);
|
|
354
|
-
y = mathMin(y, rect.y + rect.height);
|
|
355
|
-
return [x, y];
|
|
356
|
-
});
|
|
357
|
-
}
|
|
358
|
-
/**
|
|
359
|
-
* Return a new clipped rect. If rect size are negative, return undefined.
|
|
360
|
-
*/
|
|
361
|
-
export function clipRectByRect(targetRect, rect) {
|
|
362
|
-
var x = mathMax(targetRect.x, rect.x);
|
|
363
|
-
var x2 = mathMin(targetRect.x + targetRect.width, rect.x + rect.width);
|
|
364
|
-
var y = mathMax(targetRect.y, rect.y);
|
|
365
|
-
var y2 = mathMin(targetRect.y + targetRect.height, rect.y + rect.height);
|
|
366
|
-
// If the total rect is cliped, nothing, including the border,
|
|
367
|
-
// should be painted. So return undefined.
|
|
368
|
-
if (x2 >= x && y2 >= y) {
|
|
369
|
-
return {
|
|
370
|
-
x: x,
|
|
371
|
-
y: y,
|
|
372
|
-
width: x2 - x,
|
|
373
|
-
height: y2 - y
|
|
374
|
-
};
|
|
375
|
-
}
|
|
376
|
-
}
|
|
377
|
-
export function createIcon(iconStr,
|
|
378
|
-
// Support 'image://' or 'path://' or direct svg path.
|
|
379
|
-
opt, rect) {
|
|
380
|
-
var innerOpts = extend({
|
|
381
|
-
rectHover: true
|
|
382
|
-
}, opt);
|
|
383
|
-
var style = innerOpts.style = {
|
|
384
|
-
strokeNoScale: true
|
|
385
|
-
};
|
|
386
|
-
rect = rect || {
|
|
387
|
-
x: -1,
|
|
388
|
-
y: -1,
|
|
389
|
-
width: 2,
|
|
390
|
-
height: 2
|
|
391
|
-
};
|
|
392
|
-
if (iconStr) {
|
|
393
|
-
return iconStr.indexOf('image://') === 0 ? (style.image = iconStr.slice(8), defaults(style, rect), new ZRImage(innerOpts)) : makePath(iconStr.replace('path://', ''), innerOpts, rect, 'center');
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
/**
|
|
397
|
-
* Return `true` if the given line (line `a`) and the given polygon
|
|
398
|
-
* are intersect.
|
|
399
|
-
* Note that we do not count colinear as intersect here because no
|
|
400
|
-
* requirement for that. We could do that if required in future.
|
|
401
|
-
*/
|
|
402
|
-
export function linePolygonIntersect(a1x, a1y, a2x, a2y, points) {
|
|
403
|
-
for (var i = 0, p2 = points[points.length - 1]; i < points.length; i++) {
|
|
404
|
-
var p = points[i];
|
|
405
|
-
if (lineLineIntersect(a1x, a1y, a2x, a2y, p[0], p[1], p2[0], p2[1])) {
|
|
406
|
-
return true;
|
|
407
|
-
}
|
|
408
|
-
p2 = p;
|
|
409
|
-
}
|
|
410
|
-
}
|
|
411
|
-
/**
|
|
412
|
-
* Return `true` if the given two lines (line `a` and line `b`)
|
|
413
|
-
* are intersect.
|
|
414
|
-
* Note that we do not count colinear as intersect here because no
|
|
415
|
-
* requirement for that. We could do that if required in future.
|
|
416
|
-
*/
|
|
417
|
-
export function lineLineIntersect(a1x, a1y, a2x, a2y, b1x, b1y, b2x, b2y) {
|
|
418
|
-
// let `vec_m` to be `vec_a2 - vec_a1` and `vec_n` to be `vec_b2 - vec_b1`.
|
|
419
|
-
var mx = a2x - a1x;
|
|
420
|
-
var my = a2y - a1y;
|
|
421
|
-
var nx = b2x - b1x;
|
|
422
|
-
var ny = b2y - b1y;
|
|
423
|
-
// `vec_m` and `vec_n` are parallel iff
|
|
424
|
-
// existing `k` such that `vec_m = k · vec_n`, equivalent to `vec_m X vec_n = 0`.
|
|
425
|
-
var nmCrossProduct = crossProduct2d(nx, ny, mx, my);
|
|
426
|
-
if (nearZero(nmCrossProduct)) {
|
|
427
|
-
return false;
|
|
428
|
-
}
|
|
429
|
-
// `vec_m` and `vec_n` are intersect iff
|
|
430
|
-
// existing `p` and `q` in [0, 1] such that `vec_a1 + p * vec_m = vec_b1 + q * vec_n`,
|
|
431
|
-
// such that `q = ((vec_a1 - vec_b1) X vec_m) / (vec_n X vec_m)`
|
|
432
|
-
// and `p = ((vec_a1 - vec_b1) X vec_n) / (vec_n X vec_m)`.
|
|
433
|
-
var b1a1x = a1x - b1x;
|
|
434
|
-
var b1a1y = a1y - b1y;
|
|
435
|
-
var q = crossProduct2d(b1a1x, b1a1y, mx, my) / nmCrossProduct;
|
|
436
|
-
if (q < 0 || q > 1) {
|
|
437
|
-
return false;
|
|
438
|
-
}
|
|
439
|
-
var p = crossProduct2d(b1a1x, b1a1y, nx, ny) / nmCrossProduct;
|
|
440
|
-
if (p < 0 || p > 1) {
|
|
441
|
-
return false;
|
|
442
|
-
}
|
|
443
|
-
return true;
|
|
444
|
-
}
|
|
445
|
-
/**
|
|
446
|
-
* Cross product of 2-dimension vector.
|
|
447
|
-
*/
|
|
448
|
-
function crossProduct2d(x1, y1, x2, y2) {
|
|
449
|
-
return x1 * y2 - x2 * y1;
|
|
450
|
-
}
|
|
451
|
-
function nearZero(val) {
|
|
452
|
-
return val <= 1e-6 && val >= -1e-6;
|
|
453
|
-
}
|
|
454
|
-
export function setTooltipConfig(opt) {
|
|
455
|
-
var itemTooltipOption = opt.itemTooltipOption;
|
|
456
|
-
var componentModel = opt.componentModel;
|
|
457
|
-
var itemName = opt.itemName;
|
|
458
|
-
var itemTooltipOptionObj = isString(itemTooltipOption) ? {
|
|
459
|
-
formatter: itemTooltipOption
|
|
460
|
-
} : itemTooltipOption;
|
|
461
|
-
var mainType = componentModel.mainType;
|
|
462
|
-
var componentIndex = componentModel.componentIndex;
|
|
463
|
-
var formatterParams = {
|
|
464
|
-
componentType: mainType,
|
|
465
|
-
name: itemName,
|
|
466
|
-
$vars: ['name']
|
|
467
|
-
};
|
|
468
|
-
formatterParams[mainType + 'Index'] = componentIndex;
|
|
469
|
-
var formatterParamsExtra = opt.formatterParamsExtra;
|
|
470
|
-
if (formatterParamsExtra) {
|
|
471
|
-
each(keys(formatterParamsExtra), function (key) {
|
|
472
|
-
if (!hasOwn(formatterParams, key)) {
|
|
473
|
-
formatterParams[key] = formatterParamsExtra[key];
|
|
474
|
-
formatterParams.$vars.push(key);
|
|
475
|
-
}
|
|
476
|
-
});
|
|
477
|
-
}
|
|
478
|
-
var ecData = getECData(opt.el);
|
|
479
|
-
ecData.componentMainType = mainType;
|
|
480
|
-
ecData.componentIndex = componentIndex;
|
|
481
|
-
ecData.tooltipConfig = {
|
|
482
|
-
name: itemName,
|
|
483
|
-
option: defaults({
|
|
484
|
-
content: itemName,
|
|
485
|
-
formatterParams: formatterParams
|
|
486
|
-
}, itemTooltipOptionObj)
|
|
487
|
-
};
|
|
488
|
-
}
|
|
489
|
-
function traverseElement(el, cb) {
|
|
490
|
-
var stopped;
|
|
491
|
-
// TODO
|
|
492
|
-
// Polyfill for fixing zrender group traverse don't visit it's root issue.
|
|
493
|
-
if (el.isGroup) {
|
|
494
|
-
stopped = cb(el);
|
|
495
|
-
}
|
|
496
|
-
if (!stopped) {
|
|
497
|
-
el.traverse(cb);
|
|
498
|
-
}
|
|
499
|
-
}
|
|
500
|
-
export function traverseElements(els, cb) {
|
|
501
|
-
if (els) {
|
|
502
|
-
if (isArray(els)) {
|
|
503
|
-
for (var i = 0; i < els.length; i++) {
|
|
504
|
-
traverseElement(els[i], cb);
|
|
505
|
-
}
|
|
506
|
-
} else {
|
|
507
|
-
traverseElement(els, cb);
|
|
508
|
-
}
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
// Register built-in shapes. These shapes might be overwritten
|
|
512
|
-
// by users, although we do not recommend that.
|
|
513
|
-
registerShape('circle', Circle);
|
|
514
|
-
registerShape('ellipse', Ellipse);
|
|
515
|
-
registerShape('sector', Sector);
|
|
516
|
-
registerShape('ring', Ring);
|
|
517
|
-
registerShape('polygon', Polygon);
|
|
518
|
-
registerShape('polyline', Polyline);
|
|
519
|
-
registerShape('rect', Rect);
|
|
520
|
-
registerShape('line', Line);
|
|
521
|
-
registerShape('bezierCurve', BezierCurve);
|
|
522
|
-
registerShape('arc', Arc);
|
|
523
|
-
registerShape('circulateLine', CirculateLine);
|
|
524
|
-
registerShape('diagonal', Diagonal);
|
|
525
|
-
export { Group, ZRImage as Image, ZRText as Text, Circle, Ellipse, Sector, Ring, Polygon, Polyline, Rect, Line, BezierCurve, Arc, IncrementalDisplayable, CompoundPath, LinearGradient, RadialGradient, BoundingRect, OrientedBoundingRect, Point, Path };
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/*
|
|
3
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
4
|
-
* or more contributor license agreements. See the NOTICE file
|
|
5
|
-
* distributed with this work for additional information
|
|
6
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
7
|
-
* to you under the Apache License, Version 2.0 (the
|
|
8
|
-
* "License"); you may not use this file except in compliance
|
|
9
|
-
* with the License. You may obtain a copy of the License at
|
|
10
|
-
*
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*
|
|
13
|
-
* Unless required by applicable law or agreed to in writing,
|
|
14
|
-
* software distributed under the License is distributed on an
|
|
15
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
-
* KIND, either express or implied. See the License for the
|
|
17
|
-
* specific language governing permissions and limitations
|
|
18
|
-
* under the License.
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
/*
|
|
27
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
28
|
-
* or more contributor license agreements. See the NOTICE file
|
|
29
|
-
* distributed with this work for additional information
|
|
30
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
31
|
-
* to you under the Apache License, Version 2.0 (the
|
|
32
|
-
* "License"); you may not use this file except in compliance
|
|
33
|
-
* with the License. You may obtain a copy of the License at
|
|
34
|
-
*
|
|
35
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
36
|
-
*
|
|
37
|
-
* Unless required by applicable law or agreed to in writing,
|
|
38
|
-
* software distributed under the License is distributed on an
|
|
39
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
40
|
-
* KIND, either express or implied. See the License for the
|
|
41
|
-
* specific language governing permissions and limitations
|
|
42
|
-
* under the License.
|
|
43
|
-
*/
|
|
44
|
-
import { makeInner } from './model';
|
|
45
|
-
export var getECData = makeInner();
|
|
46
|
-
export var setCommonECData = function (seriesIndex, dataType, dataIdx, el) {
|
|
47
|
-
if (el) {
|
|
48
|
-
var ecData = getECData(el);
|
|
49
|
-
// Add data index and series index for indexing the data by element
|
|
50
|
-
// Useful in tooltip
|
|
51
|
-
ecData.dataIndex = dataIdx;
|
|
52
|
-
ecData.dataType = dataType;
|
|
53
|
-
ecData.seriesIndex = seriesIndex;
|
|
54
|
-
ecData.ssrType = 'chart';
|
|
55
|
-
// TODO: not store dataIndex on children.
|
|
56
|
-
if (el.type === 'group') {
|
|
57
|
-
el.traverse(function (child) {
|
|
58
|
-
var childECData = getECData(child);
|
|
59
|
-
childECData.seriesIndex = seriesIndex;
|
|
60
|
-
childECData.dataIndex = dataIdx;
|
|
61
|
-
childECData.dataType = dataType;
|
|
62
|
-
childECData.ssrType = 'chart';
|
|
63
|
-
});
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
};
|