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,254 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/*
|
|
3
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
4
|
-
* or more contributor license agreements. See the NOTICE file
|
|
5
|
-
* distributed with this work for additional information
|
|
6
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
7
|
-
* to you under the Apache License, Version 2.0 (the
|
|
8
|
-
* "License"); you may not use this file except in compliance
|
|
9
|
-
* with the License. You may obtain a copy of the License at
|
|
10
|
-
*
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*
|
|
13
|
-
* Unless required by applicable law or agreed to in writing,
|
|
14
|
-
* software distributed under the License is distributed on an
|
|
15
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
-
* KIND, either express or implied. See the License for the
|
|
17
|
-
* specific language governing permissions and limitations
|
|
18
|
-
* under the License.
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
/*
|
|
27
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
28
|
-
* or more contributor license agreements. See the NOTICE file
|
|
29
|
-
* distributed with this work for additional information
|
|
30
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
31
|
-
* to you under the Apache License, Version 2.0 (the
|
|
32
|
-
* "License"); you may not use this file except in compliance
|
|
33
|
-
* with the License. You may obtain a copy of the License at
|
|
34
|
-
*
|
|
35
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
36
|
-
*
|
|
37
|
-
* Unless required by applicable law or agreed to in writing,
|
|
38
|
-
* software distributed under the License is distributed on an
|
|
39
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
40
|
-
* KIND, either express or implied. See the License for the
|
|
41
|
-
* specific language governing permissions and limitations
|
|
42
|
-
* under the License.
|
|
43
|
-
*/
|
|
44
|
-
import { assert, isArray, eqNaN, isFunction } from 'tvrender/src/core/util';
|
|
45
|
-
import { parsePercent } from 'tvrender/src/contain/text';
|
|
46
|
-
var ScaleRawExtentInfo = /** @class */function () {
|
|
47
|
-
function ScaleRawExtentInfo(scale, model,
|
|
48
|
-
// Usually: data extent from all series on this axis.
|
|
49
|
-
originalExtent) {
|
|
50
|
-
this._prepareParams(scale, model, originalExtent);
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* Parameters depending on outside (like model, user callback)
|
|
54
|
-
* are prepared and fixed here.
|
|
55
|
-
*/
|
|
56
|
-
ScaleRawExtentInfo.prototype._prepareParams = function (scale, model,
|
|
57
|
-
// Usually: data extent from all series on this axis.
|
|
58
|
-
dataExtent) {
|
|
59
|
-
if (dataExtent[1] < dataExtent[0]) {
|
|
60
|
-
dataExtent = [NaN, NaN];
|
|
61
|
-
}
|
|
62
|
-
this._dataMin = dataExtent[0];
|
|
63
|
-
this._dataMax = dataExtent[1];
|
|
64
|
-
var isOrdinal = this._isOrdinal = scale.type === 'ordinal';
|
|
65
|
-
this._isLog = scale.type === 'log';
|
|
66
|
-
this._needCrossZero = scale.type === 'interval' && model.getNeedCrossZero && model.getNeedCrossZero();
|
|
67
|
-
var modelMinRaw = this._modelMinRaw = model.get('min', true);
|
|
68
|
-
if (isFunction(modelMinRaw)) {
|
|
69
|
-
// This callback always provides users the full data extent (before data is filtered).
|
|
70
|
-
this._modelMinNum = parseAxisModelMinMax(scale, modelMinRaw({
|
|
71
|
-
min: dataExtent[0],
|
|
72
|
-
max: dataExtent[1]
|
|
73
|
-
}));
|
|
74
|
-
} else if (modelMinRaw !== 'dataMin') {
|
|
75
|
-
this._modelMinNum = parseAxisModelMinMax(scale, modelMinRaw);
|
|
76
|
-
}
|
|
77
|
-
var modelMaxRaw = this._modelMaxRaw = model.get('max', true);
|
|
78
|
-
if (isFunction(modelMaxRaw)) {
|
|
79
|
-
// This callback always provides users the full data extent (before data is filtered).
|
|
80
|
-
this._modelMaxNum = parseAxisModelMinMax(scale, modelMaxRaw({
|
|
81
|
-
min: dataExtent[0],
|
|
82
|
-
max: dataExtent[1]
|
|
83
|
-
}));
|
|
84
|
-
} else if (modelMaxRaw !== 'dataMax') {
|
|
85
|
-
this._modelMaxNum = parseAxisModelMinMax(scale, modelMaxRaw);
|
|
86
|
-
}
|
|
87
|
-
if (isOrdinal) {
|
|
88
|
-
// FIXME: there is a flaw here: if there is no "block" data processor like `dataZoom`,
|
|
89
|
-
// and progressive rendering is using, here the category result might just only contain
|
|
90
|
-
// the processed chunk rather than the entire result.
|
|
91
|
-
this._axisDataLen = model.getCategories().length;
|
|
92
|
-
} else {
|
|
93
|
-
var boundaryGap = model.get('boundaryGap');
|
|
94
|
-
var boundaryGapArr = isArray(boundaryGap) ? boundaryGap : [boundaryGap || 0, boundaryGap || 0];
|
|
95
|
-
if (typeof boundaryGapArr[0] === 'boolean' || typeof boundaryGapArr[1] === 'boolean') {
|
|
96
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
97
|
-
console.warn('Boolean type for boundaryGap is only ' + 'allowed for ordinal axis. Please use string in ' + 'percentage instead, e.g., "20%". Currently, ' + 'boundaryGap is set to be 0.');
|
|
98
|
-
}
|
|
99
|
-
this._boundaryGapInner = [0, 0];
|
|
100
|
-
} else {
|
|
101
|
-
this._boundaryGapInner = [parsePercent(boundaryGapArr[0], 1), parsePercent(boundaryGapArr[1], 1)];
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
};
|
|
105
|
-
/**
|
|
106
|
-
* Calculate extent by prepared parameters.
|
|
107
|
-
* This method has no external dependency and can be called duplicatedly,
|
|
108
|
-
* getting the same result.
|
|
109
|
-
* If parameters changed, should call this method to recalcuate.
|
|
110
|
-
*/
|
|
111
|
-
ScaleRawExtentInfo.prototype.calculate = function () {
|
|
112
|
-
// Notice: When min/max is not set (that is, when there are null/undefined,
|
|
113
|
-
// which is the most common case), these cases should be ensured:
|
|
114
|
-
// (1) For 'ordinal', show all axis.data.
|
|
115
|
-
// (2) For others:
|
|
116
|
-
// + `boundaryGap` is applied (if min/max set, boundaryGap is
|
|
117
|
-
// disabled).
|
|
118
|
-
// + If `needCrossZero`, min/max should be zero, otherwise, min/max should
|
|
119
|
-
// be the result that originalExtent enlarged by boundaryGap.
|
|
120
|
-
// (3) If no data, it should be ensured that `scale.setBlank` is set.
|
|
121
|
-
var isOrdinal = this._isOrdinal;
|
|
122
|
-
var isLog = this._isLog;
|
|
123
|
-
var dataMin = this._dataMin;
|
|
124
|
-
var dataMax = this._dataMax;
|
|
125
|
-
var axisDataLen = this._axisDataLen;
|
|
126
|
-
var boundaryGapInner = this._boundaryGapInner;
|
|
127
|
-
var span = !isOrdinal ? dataMax - dataMin || Math.abs(dataMin) : null;
|
|
128
|
-
// Currently if a `'value'` axis model min is specified as 'dataMin'/'dataMax',
|
|
129
|
-
// `boundaryGap` will not be used. It's the different from specifying as `null`/`undefined`.
|
|
130
|
-
var min = this._modelMinRaw === 'dataMin' ? dataMin : this._modelMinNum;
|
|
131
|
-
var max = this._modelMaxRaw === 'dataMax' ? dataMax : this._modelMaxNum;
|
|
132
|
-
// If `_modelMinNum`/`_modelMaxNum` is `null`/`undefined`, should not be fixed.
|
|
133
|
-
var minFixed = min != null;
|
|
134
|
-
var maxFixed = max != null;
|
|
135
|
-
if (min == null) {
|
|
136
|
-
min = isOrdinal ? axisDataLen ? 0 : NaN : dataMin - boundaryGapInner[0] * span;
|
|
137
|
-
}
|
|
138
|
-
if (max == null) {
|
|
139
|
-
max = isOrdinal ? axisDataLen ? axisDataLen - 1 : NaN : dataMax + boundaryGapInner[1] * span;
|
|
140
|
-
}
|
|
141
|
-
(min == null || !isFinite(min)) && (min = NaN);
|
|
142
|
-
(max == null || !isFinite(max)) && (max = NaN);
|
|
143
|
-
var isBlank = eqNaN(min) || eqNaN(max) || isOrdinal && !axisDataLen;
|
|
144
|
-
// If data extent modified, need to recalculated to ensure cross zero.
|
|
145
|
-
if (this._needCrossZero) {
|
|
146
|
-
// Axis is over zero and min is not set
|
|
147
|
-
if (min > 0 && max > 0 && !minFixed) {
|
|
148
|
-
min = 0;
|
|
149
|
-
// minFixed = true;
|
|
150
|
-
}
|
|
151
|
-
// Axis is under zero and max is not set
|
|
152
|
-
if (min < 0 && max < 0 && !maxFixed) {
|
|
153
|
-
max = 0;
|
|
154
|
-
// maxFixed = true;
|
|
155
|
-
}
|
|
156
|
-
// PENDING:
|
|
157
|
-
// When `needCrossZero` and all data is positive/negative, should it be ensured
|
|
158
|
-
// that the results processed by boundaryGap are positive/negative?
|
|
159
|
-
// If so, here `minFixed`/`maxFixed` need to be set.
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
var determinedMin = this._determinedMin;
|
|
163
|
-
var determinedMax = this._determinedMax;
|
|
164
|
-
if (determinedMin != null) {
|
|
165
|
-
min = determinedMin;
|
|
166
|
-
minFixed = true;
|
|
167
|
-
}
|
|
168
|
-
if (determinedMax != null) {
|
|
169
|
-
max = determinedMax;
|
|
170
|
-
maxFixed = true;
|
|
171
|
-
}
|
|
172
|
-
// if (isLog && min < 0) {
|
|
173
|
-
// min = Math.max(dataMin, 0);
|
|
174
|
-
// }
|
|
175
|
-
// Ensure min/max be finite number or NaN here. (not to be null/undefined)
|
|
176
|
-
// `NaN` means min/max axis is blank.
|
|
177
|
-
return {
|
|
178
|
-
min: min,
|
|
179
|
-
max: max,
|
|
180
|
-
minFixed: minFixed,
|
|
181
|
-
maxFixed: maxFixed,
|
|
182
|
-
isBlank: isBlank
|
|
183
|
-
};
|
|
184
|
-
};
|
|
185
|
-
ScaleRawExtentInfo.prototype.modifyDataMinMax = function (minMaxName, val) {
|
|
186
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
187
|
-
assert(!this.frozen);
|
|
188
|
-
}
|
|
189
|
-
this[DATA_MIN_MAX_ATTR[minMaxName]] = val;
|
|
190
|
-
};
|
|
191
|
-
ScaleRawExtentInfo.prototype.getAxisDataLen = function () {
|
|
192
|
-
return this._axisDataLen;
|
|
193
|
-
};
|
|
194
|
-
ScaleRawExtentInfo.prototype.setDeterminedMinMax = function (minMaxName, val) {
|
|
195
|
-
var attr = DETERMINED_MIN_MAX_ATTR[minMaxName];
|
|
196
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
197
|
-
assert(!this.frozen
|
|
198
|
-
// Earse them usually means logic flaw.
|
|
199
|
-
&& this[attr] == null);
|
|
200
|
-
}
|
|
201
|
-
this[attr] = val;
|
|
202
|
-
};
|
|
203
|
-
ScaleRawExtentInfo.prototype.freeze = function () {
|
|
204
|
-
// @ts-ignore
|
|
205
|
-
this.frozen = true;
|
|
206
|
-
};
|
|
207
|
-
ScaleRawExtentInfo.prototype.getDataRange = function () {
|
|
208
|
-
return [this._dataMin, this._dataMax];
|
|
209
|
-
};
|
|
210
|
-
ScaleRawExtentInfo.prototype.getBoundaryGapInner = function () {
|
|
211
|
-
return this._boundaryGapInner;
|
|
212
|
-
};
|
|
213
|
-
return ScaleRawExtentInfo;
|
|
214
|
-
}();
|
|
215
|
-
export { ScaleRawExtentInfo };
|
|
216
|
-
var DETERMINED_MIN_MAX_ATTR = {
|
|
217
|
-
min: '_determinedMin',
|
|
218
|
-
max: '_determinedMax'
|
|
219
|
-
};
|
|
220
|
-
var DATA_MIN_MAX_ATTR = {
|
|
221
|
-
min: '_dataMin',
|
|
222
|
-
max: '_dataMax'
|
|
223
|
-
};
|
|
224
|
-
/**
|
|
225
|
-
* Get scale min max and related info only depends on model settings.
|
|
226
|
-
* This method can be called after coordinate system created.
|
|
227
|
-
* For example, in data processing stage.
|
|
228
|
-
*
|
|
229
|
-
* Scale extent info probably be required multiple times during a workflow.
|
|
230
|
-
* For example:
|
|
231
|
-
* (1) `dataZoom` depends it to get the axis extent in "100%" state.
|
|
232
|
-
* (2) `processor/extentCalculator` depends it to make sure whether axis extent is specified.
|
|
233
|
-
* (3) `coordSys.update` use it to finally decide the scale extent.
|
|
234
|
-
* But the callback of `min`/`max` should not be called multiple times.
|
|
235
|
-
* The code below should not be implemented repeatedly either.
|
|
236
|
-
* So we cache the result in the scale instance, which will be recreated at the beginning
|
|
237
|
-
* of the workflow (because `scale` instance will be recreated each round of the workflow).
|
|
238
|
-
*/
|
|
239
|
-
export function ensureScaleRawExtentInfo(scale, model,
|
|
240
|
-
// Usually: data extent from all series on this axis.
|
|
241
|
-
originalExtent) {
|
|
242
|
-
// Do not permit to recreate.
|
|
243
|
-
var rawExtentInfo = scale.rawExtentInfo;
|
|
244
|
-
if (rawExtentInfo) {
|
|
245
|
-
return rawExtentInfo;
|
|
246
|
-
}
|
|
247
|
-
rawExtentInfo = new ScaleRawExtentInfo(scale, model, originalExtent);
|
|
248
|
-
// @ts-ignore
|
|
249
|
-
scale.rawExtentInfo = rawExtentInfo;
|
|
250
|
-
return rawExtentInfo;
|
|
251
|
-
}
|
|
252
|
-
export function parseAxisModelMinMax(scale, minMax) {
|
|
253
|
-
return minMax == null ? null : eqNaN(minMax) ? NaN : scale.parse(minMax);
|
|
254
|
-
}
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/*
|
|
3
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
4
|
-
* or more contributor license agreements. See the NOTICE file
|
|
5
|
-
* distributed with this work for additional information
|
|
6
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
7
|
-
* to you under the Apache License, Version 2.0 (the
|
|
8
|
-
* "License"); you may not use this file except in compliance
|
|
9
|
-
* with the License. You may obtain a copy of the License at
|
|
10
|
-
*
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*
|
|
13
|
-
* Unless required by applicable law or agreed to in writing,
|
|
14
|
-
* software distributed under the License is distributed on an
|
|
15
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
-
* KIND, either express or implied. See the License for the
|
|
17
|
-
* specific language governing permissions and limitations
|
|
18
|
-
* under the License.
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
/*
|
|
27
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
28
|
-
* or more contributor license agreements. See the NOTICE file
|
|
29
|
-
* distributed with this work for additional information
|
|
30
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
31
|
-
* to you under the Apache License, Version 2.0 (the
|
|
32
|
-
* "License"); you may not use this file except in compliance
|
|
33
|
-
* with the License. You may obtain a copy of the License at
|
|
34
|
-
*
|
|
35
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
36
|
-
*
|
|
37
|
-
* Unless required by applicable law or agreed to in writing,
|
|
38
|
-
* software distributed under the License is distributed on an
|
|
39
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
40
|
-
* KIND, either express or implied. See the License for the
|
|
41
|
-
* specific language governing permissions and limitations
|
|
42
|
-
* under the License.
|
|
43
|
-
*/
|
|
44
|
-
import { __extends } from "tslib";
|
|
45
|
-
import ComponentModel from '../../model/Component';
|
|
46
|
-
import { AxisModelCommonMixin } from '../axisModelCommonMixin';
|
|
47
|
-
import { mixin } from 'tvrender/src/core/util';
|
|
48
|
-
var SingleAxisModel = /** @class */function (_super) {
|
|
49
|
-
__extends(SingleAxisModel, _super);
|
|
50
|
-
function SingleAxisModel() {
|
|
51
|
-
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
52
|
-
_this.type = SingleAxisModel.type;
|
|
53
|
-
return _this;
|
|
54
|
-
}
|
|
55
|
-
SingleAxisModel.prototype.getCoordSysModel = function () {
|
|
56
|
-
return this;
|
|
57
|
-
};
|
|
58
|
-
SingleAxisModel.type = 'singleAxis';
|
|
59
|
-
SingleAxisModel.layoutMode = 'box';
|
|
60
|
-
SingleAxisModel.defaultOption = {
|
|
61
|
-
left: '5%',
|
|
62
|
-
top: '5%',
|
|
63
|
-
right: '5%',
|
|
64
|
-
bottom: '5%',
|
|
65
|
-
type: 'value',
|
|
66
|
-
position: 'bottom',
|
|
67
|
-
orient: 'horizontal',
|
|
68
|
-
axisLine: {
|
|
69
|
-
show: true,
|
|
70
|
-
lineStyle: {
|
|
71
|
-
width: 1,
|
|
72
|
-
type: 'solid'
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
// Single coordinate system and single axis is the,
|
|
76
|
-
// which is used as the parent tooltip model.
|
|
77
|
-
// same model, so we set default tooltip show as true.
|
|
78
|
-
tooltip: {
|
|
79
|
-
show: true
|
|
80
|
-
},
|
|
81
|
-
axisTick: {
|
|
82
|
-
show: true,
|
|
83
|
-
length: 6,
|
|
84
|
-
lineStyle: {
|
|
85
|
-
width: 1
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
axisLabel: {
|
|
89
|
-
show: true,
|
|
90
|
-
interval: 'auto'
|
|
91
|
-
},
|
|
92
|
-
splitLine: {
|
|
93
|
-
show: true,
|
|
94
|
-
lineStyle: {
|
|
95
|
-
type: 'dashed',
|
|
96
|
-
opacity: 0.2
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
};
|
|
100
|
-
return SingleAxisModel;
|
|
101
|
-
}(ComponentModel);
|
|
102
|
-
mixin(SingleAxisModel, AxisModelCommonMixin.prototype);
|
|
103
|
-
export default SingleAxisModel;
|
|
@@ -1,210 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/*
|
|
3
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
4
|
-
* or more contributor license agreements. See the NOTICE file
|
|
5
|
-
* distributed with this work for additional information
|
|
6
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
7
|
-
* to you under the Apache License, Version 2.0 (the
|
|
8
|
-
* "License"); you may not use this file except in compliance
|
|
9
|
-
* with the License. You may obtain a copy of the License at
|
|
10
|
-
*
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*
|
|
13
|
-
* Unless required by applicable law or agreed to in writing,
|
|
14
|
-
* software distributed under the License is distributed on an
|
|
15
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
-
* KIND, either express or implied. See the License for the
|
|
17
|
-
* specific language governing permissions and limitations
|
|
18
|
-
* under the License.
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
/*
|
|
27
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
28
|
-
* or more contributor license agreements. See the NOTICE file
|
|
29
|
-
* distributed with this work for additional information
|
|
30
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
31
|
-
* to you under the Apache License, Version 2.0 (the
|
|
32
|
-
* "License"); you may not use this file except in compliance
|
|
33
|
-
* with the License. You may obtain a copy of the License at
|
|
34
|
-
*
|
|
35
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
36
|
-
*
|
|
37
|
-
* Unless required by applicable law or agreed to in writing,
|
|
38
|
-
* software distributed under the License is distributed on an
|
|
39
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
40
|
-
* KIND, either express or implied. See the License for the
|
|
41
|
-
* specific language governing permissions and limitations
|
|
42
|
-
* under the License.
|
|
43
|
-
*/
|
|
44
|
-
/**
|
|
45
|
-
* Single coordinates system.
|
|
46
|
-
*/
|
|
47
|
-
import SingleAxis from './SingleAxis';
|
|
48
|
-
import * as axisHelper from '../axisHelper';
|
|
49
|
-
import { getLayoutRect } from '../../util/layout';
|
|
50
|
-
import { each } from 'tvrender/src/core/util';
|
|
51
|
-
export var singleDimensions = ['single'];
|
|
52
|
-
/**
|
|
53
|
-
* Create a single coordinates system.
|
|
54
|
-
*/
|
|
55
|
-
var Single = /** @class */function () {
|
|
56
|
-
function Single(axisModel, ecModel, api) {
|
|
57
|
-
this.type = 'single';
|
|
58
|
-
this.dimension = 'single';
|
|
59
|
-
/**
|
|
60
|
-
* Add it just for draw tooltip.
|
|
61
|
-
*/
|
|
62
|
-
this.dimensions = singleDimensions;
|
|
63
|
-
this.axisPointerEnabled = true;
|
|
64
|
-
this.model = axisModel;
|
|
65
|
-
this._init(axisModel, ecModel, api);
|
|
66
|
-
}
|
|
67
|
-
/**
|
|
68
|
-
* Initialize single coordinate system.
|
|
69
|
-
*/
|
|
70
|
-
Single.prototype._init = function (axisModel, ecModel, api) {
|
|
71
|
-
var dim = this.dimension;
|
|
72
|
-
var axis = new SingleAxis(dim, axisHelper.createScaleByModel(axisModel), [0, 0], axisModel.get('type'), axisModel.get('position'));
|
|
73
|
-
var isCategory = axis.type === 'category';
|
|
74
|
-
axis.onBand = isCategory && axisModel.get('boundaryGap');
|
|
75
|
-
axis.inverse = axisModel.get('inverse');
|
|
76
|
-
axis.orient = axisModel.get('orient');
|
|
77
|
-
axisModel.axis = axis;
|
|
78
|
-
axis.model = axisModel;
|
|
79
|
-
axis.coordinateSystem = this;
|
|
80
|
-
this._axis = axis;
|
|
81
|
-
};
|
|
82
|
-
/**
|
|
83
|
-
* Update axis scale after data processed
|
|
84
|
-
*/
|
|
85
|
-
Single.prototype.update = function (ecModel, api) {
|
|
86
|
-
ecModel.eachSeries(function (seriesModel) {
|
|
87
|
-
if (seriesModel.coordinateSystem === this) {
|
|
88
|
-
var data_1 = seriesModel.getData();
|
|
89
|
-
each(data_1.mapDimensionsAll(this.dimension), function (dim) {
|
|
90
|
-
this._axis.scale.unionExtentFromData(data_1, dim);
|
|
91
|
-
}, this);
|
|
92
|
-
axisHelper.niceScaleExtent(this._axis.scale, this._axis.model);
|
|
93
|
-
}
|
|
94
|
-
}, this);
|
|
95
|
-
};
|
|
96
|
-
/**
|
|
97
|
-
* Resize the single coordinate system.
|
|
98
|
-
*/
|
|
99
|
-
Single.prototype.resize = function (axisModel, api) {
|
|
100
|
-
this._rect = getLayoutRect({
|
|
101
|
-
left: axisModel.get('left'),
|
|
102
|
-
top: axisModel.get('top'),
|
|
103
|
-
right: axisModel.get('right'),
|
|
104
|
-
bottom: axisModel.get('bottom'),
|
|
105
|
-
width: axisModel.get('width'),
|
|
106
|
-
height: axisModel.get('height')
|
|
107
|
-
}, {
|
|
108
|
-
width: api.getWidth(),
|
|
109
|
-
height: api.getHeight()
|
|
110
|
-
});
|
|
111
|
-
this._adjustAxis();
|
|
112
|
-
};
|
|
113
|
-
Single.prototype.getRect = function () {
|
|
114
|
-
return this._rect;
|
|
115
|
-
};
|
|
116
|
-
Single.prototype._adjustAxis = function () {
|
|
117
|
-
var rect = this._rect;
|
|
118
|
-
var axis = this._axis;
|
|
119
|
-
var isHorizontal = axis.isHorizontal();
|
|
120
|
-
var extent = isHorizontal ? [0, rect.width] : [0, rect.height];
|
|
121
|
-
var idx = axis.inverse ? 1 : 0;
|
|
122
|
-
axis.setExtent(extent[idx], extent[1 - idx]);
|
|
123
|
-
this._updateAxisTransform(axis, isHorizontal ? rect.x : rect.y);
|
|
124
|
-
};
|
|
125
|
-
Single.prototype._updateAxisTransform = function (axis, coordBase) {
|
|
126
|
-
var axisExtent = axis.getExtent();
|
|
127
|
-
var extentSum = axisExtent[0] + axisExtent[1];
|
|
128
|
-
var isHorizontal = axis.isHorizontal();
|
|
129
|
-
axis.toGlobalCoord = isHorizontal ? function (coord) {
|
|
130
|
-
return coord + coordBase;
|
|
131
|
-
} : function (coord) {
|
|
132
|
-
return extentSum - coord + coordBase;
|
|
133
|
-
};
|
|
134
|
-
axis.toLocalCoord = isHorizontal ? function (coord) {
|
|
135
|
-
return coord - coordBase;
|
|
136
|
-
} : function (coord) {
|
|
137
|
-
return extentSum - coord + coordBase;
|
|
138
|
-
};
|
|
139
|
-
};
|
|
140
|
-
/**
|
|
141
|
-
* Get axis.
|
|
142
|
-
*/
|
|
143
|
-
Single.prototype.getAxis = function () {
|
|
144
|
-
return this._axis;
|
|
145
|
-
};
|
|
146
|
-
/**
|
|
147
|
-
* Get axis, add it just for draw tooltip.
|
|
148
|
-
*/
|
|
149
|
-
Single.prototype.getBaseAxis = function () {
|
|
150
|
-
return this._axis;
|
|
151
|
-
};
|
|
152
|
-
Single.prototype.getAxes = function () {
|
|
153
|
-
return [this._axis];
|
|
154
|
-
};
|
|
155
|
-
Single.prototype.getTooltipAxes = function () {
|
|
156
|
-
return {
|
|
157
|
-
baseAxes: [this.getAxis()],
|
|
158
|
-
// Empty otherAxes
|
|
159
|
-
otherAxes: []
|
|
160
|
-
};
|
|
161
|
-
};
|
|
162
|
-
/**
|
|
163
|
-
* If contain point.
|
|
164
|
-
*/
|
|
165
|
-
Single.prototype.containPoint = function (point) {
|
|
166
|
-
var rect = this.getRect();
|
|
167
|
-
var axis = this.getAxis();
|
|
168
|
-
var orient = axis.orient;
|
|
169
|
-
if (orient === 'horizontal') {
|
|
170
|
-
return axis.contain(axis.toLocalCoord(point[0])) && point[1] >= rect.y && point[1] <= rect.y + rect.height;
|
|
171
|
-
} else {
|
|
172
|
-
return axis.contain(axis.toLocalCoord(point[1])) && point[0] >= rect.y && point[0] <= rect.y + rect.height;
|
|
173
|
-
}
|
|
174
|
-
};
|
|
175
|
-
Single.prototype.pointToData = function (point) {
|
|
176
|
-
var axis = this.getAxis();
|
|
177
|
-
return [axis.coordToData(axis.toLocalCoord(point[axis.orient === 'horizontal' ? 0 : 1]))];
|
|
178
|
-
};
|
|
179
|
-
/**
|
|
180
|
-
* Convert the series data to concrete point.
|
|
181
|
-
* Can be [val] | val
|
|
182
|
-
*/
|
|
183
|
-
Single.prototype.dataToPoint = function (val) {
|
|
184
|
-
var axis = this.getAxis();
|
|
185
|
-
var rect = this.getRect();
|
|
186
|
-
var pt = [];
|
|
187
|
-
var idx = axis.orient === 'horizontal' ? 0 : 1;
|
|
188
|
-
if (val instanceof Array) {
|
|
189
|
-
val = val[0];
|
|
190
|
-
}
|
|
191
|
-
pt[idx] = axis.toGlobalCoord(axis.dataToCoord(+val));
|
|
192
|
-
pt[1 - idx] = idx === 0 ? rect.y + rect.height / 2 : rect.x + rect.width / 2;
|
|
193
|
-
return pt;
|
|
194
|
-
};
|
|
195
|
-
Single.prototype.convertToPixel = function (ecModel, finder, value) {
|
|
196
|
-
var coordSys = getCoordSys(finder);
|
|
197
|
-
return coordSys === this ? this.dataToPoint(value) : null;
|
|
198
|
-
};
|
|
199
|
-
Single.prototype.convertFromPixel = function (ecModel, finder, pixel) {
|
|
200
|
-
var coordSys = getCoordSys(finder);
|
|
201
|
-
return coordSys === this ? this.pointToData(pixel) : null;
|
|
202
|
-
};
|
|
203
|
-
return Single;
|
|
204
|
-
}();
|
|
205
|
-
function getCoordSys(finder) {
|
|
206
|
-
var seriesModel = finder.seriesModel;
|
|
207
|
-
var singleModel = finder.singleAxisModel;
|
|
208
|
-
return singleModel && singleModel.coordinateSystem || seriesModel && seriesModel.coordinateSystem;
|
|
209
|
-
}
|
|
210
|
-
export default Single;
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/*
|
|
3
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
4
|
-
* or more contributor license agreements. See the NOTICE file
|
|
5
|
-
* distributed with this work for additional information
|
|
6
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
7
|
-
* to you under the Apache License, Version 2.0 (the
|
|
8
|
-
* "License"); you may not use this file except in compliance
|
|
9
|
-
* with the License. You may obtain a copy of the License at
|
|
10
|
-
*
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*
|
|
13
|
-
* Unless required by applicable law or agreed to in writing,
|
|
14
|
-
* software distributed under the License is distributed on an
|
|
15
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
16
|
-
* KIND, either express or implied. See the License for the
|
|
17
|
-
* specific language governing permissions and limitations
|
|
18
|
-
* under the License.
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
/*
|
|
27
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
|
28
|
-
* or more contributor license agreements. See the NOTICE file
|
|
29
|
-
* distributed with this work for additional information
|
|
30
|
-
* regarding copyright ownership. The ASF licenses this file
|
|
31
|
-
* to you under the Apache License, Version 2.0 (the
|
|
32
|
-
* "License"); you may not use this file except in compliance
|
|
33
|
-
* with the License. You may obtain a copy of the License at
|
|
34
|
-
*
|
|
35
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
36
|
-
*
|
|
37
|
-
* Unless required by applicable law or agreed to in writing,
|
|
38
|
-
* software distributed under the License is distributed on an
|
|
39
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
40
|
-
* KIND, either express or implied. See the License for the
|
|
41
|
-
* specific language governing permissions and limitations
|
|
42
|
-
* under the License.
|
|
43
|
-
*/
|
|
44
|
-
import { __extends } from "tslib";
|
|
45
|
-
import Axis from '../Axis';
|
|
46
|
-
var SingleAxis = /** @class */function (_super) {
|
|
47
|
-
__extends(SingleAxis, _super);
|
|
48
|
-
function SingleAxis(dim, scale, coordExtent, axisType, position) {
|
|
49
|
-
var _this = _super.call(this, dim, scale, coordExtent) || this;
|
|
50
|
-
_this.type = axisType || 'value';
|
|
51
|
-
_this.position = position || 'bottom';
|
|
52
|
-
return _this;
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* Judge the orient of the axis.
|
|
56
|
-
*/
|
|
57
|
-
SingleAxis.prototype.isHorizontal = function () {
|
|
58
|
-
var position = this.position;
|
|
59
|
-
return position === 'top' || position === 'bottom';
|
|
60
|
-
};
|
|
61
|
-
SingleAxis.prototype.pointToData = function (point, clamp) {
|
|
62
|
-
return this.coordinateSystem.pointToData(point)[0];
|
|
63
|
-
};
|
|
64
|
-
return SingleAxis;
|
|
65
|
-
}(Axis);
|
|
66
|
-
export default SingleAxis;
|