highcharts 13.0.0 → 13.0.1
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/bower.json +3 -2
- package/css/highcharts.css +2 -1
- package/es-modules/Accessibility/Accessibility.js +38 -1
- package/es-modules/Accessibility/Components/LegendComponent.js +1 -2
- package/es-modules/Accessibility/Components/NavigatorComponent.js +1 -2
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +8 -4
- package/es-modules/Accessibility/Options/A11yDefaults.js +12 -3
- package/es-modules/Accessibility/ProxyElement.js +1 -0
- package/es-modules/Core/Animation/AnimationUtilities.js +31 -41
- package/es-modules/Core/Animation/Fx.js +16 -19
- package/es-modules/Core/Axis/Axis.js +1 -2
- package/es-modules/Core/Axis/AxisDefaults.js +12 -2
- package/es-modules/Core/Axis/Color/ColorAxis.js +7 -2
- package/es-modules/Core/Axis/Color/ColorAxisComposition.js +1 -1
- package/es-modules/Core/Axis/GridAxis.js +8 -1
- package/es-modules/Core/Axis/OrdinalAxis.js +12 -4
- package/es-modules/Core/Axis/RadialAxis.js +9 -14
- package/es-modules/Core/Axis/Stacking/StackingAxis.js +1 -2
- package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +1 -1
- package/es-modules/Core/Chart/Chart.js +44 -39
- package/es-modules/Core/Chart/ChartDefaults.js +1 -1
- package/es-modules/Core/Chart/MapChart.js +0 -5
- package/es-modules/Core/Defaults.js +9 -2
- package/es-modules/Core/Globals.js +1 -1
- package/es-modules/Core/Legend/Legend.js +4 -5
- package/es-modules/Core/Pointer.js +11 -1
- package/es-modules/Core/Renderer/HTML/AST.js +5 -1
- package/es-modules/Core/Renderer/HTML/HTMLElement.js +23 -16
- package/es-modules/Core/Renderer/SVG/SVGElement.js +1 -2
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +2 -2
- package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +2 -3
- package/es-modules/Core/Series/DataLabel.js +1 -2
- package/es-modules/Core/Series/Point.js +28 -21
- package/es-modules/Core/Series/Series.js +89 -62
- package/es-modules/Core/Series/SeriesDefaults.js +33 -0
- package/es-modules/Core/Templating.js +16 -13
- package/es-modules/Core/Tooltip.js +1 -2
- package/es-modules/Data/DataTableCore.js +1 -1
- package/es-modules/Extensions/Annotations/Annotation.js +1 -2
- package/es-modules/Extensions/Annotations/AnnotationDefaults.js +4 -4
- package/es-modules/Extensions/Annotations/MockPoint.js +7 -9
- package/es-modules/Extensions/Annotations/NavigationBindingsUtilities.js +30 -3
- package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +2 -2
- package/es-modules/Extensions/Annotations/Types/CrookedLine.js +4 -4
- package/es-modules/Extensions/Annotations/Types/Measure.js +25 -7
- package/es-modules/Extensions/Annotations/Types/TimeCycles.js +4 -2
- package/es-modules/Extensions/Annotations/Types/Tunnel.js +3 -1
- package/es-modules/Extensions/Boost/Boost.js +13 -0
- package/es-modules/Extensions/Boost/BoostSeries.js +9 -2
- package/es-modules/Extensions/BorderRadius.js +12 -10
- package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +1 -1
- package/es-modules/Extensions/DraggablePoints/DraggableChart.js +1 -2
- package/es-modules/Extensions/Drilldown/Drilldown.js +1 -2
- package/es-modules/Extensions/Drilldown/DrilldownSeries.js +1 -2
- package/es-modules/Extensions/ExportData/ExportData.js +5 -1
- package/es-modules/Extensions/Exporting/Exporting.js +21 -21
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +32 -0
- package/es-modules/Extensions/MarkerClusters/MarkerClusterScatter.js +1 -2
- package/es-modules/Extensions/MarkerClusters/MarkerClusters.js +1 -2
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +31 -4
- package/es-modules/Extensions/Pane/PaneDefaults.js +1 -1
- package/es-modules/Extensions/ParallelCoordinates/ParallelCoordinates.js +3 -0
- package/es-modules/Extensions/ScrollablePlotArea.js +8 -2
- package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +1 -2
- package/es-modules/Extensions/Sonification/SynthPatch.js +1 -1
- package/es-modules/Maps/GeoJSONComposition.js +14 -1
- package/es-modules/Maps/MapView.js +1 -1
- package/es-modules/Series/AreaRange/AreaRangeSeries.js +87 -147
- package/es-modules/Series/AreaRange/AreaRangeSeriesDefaults.js +42 -4
- package/es-modules/Series/Bellcurve/BellcurveSeries.js +10 -6
- package/es-modules/Series/BoxPlot/BoxPlotSeries.js +27 -28
- package/es-modules/Series/BoxPlot/BoxPlotSeriesDefaults.js +33 -1
- package/es-modules/Series/Bubble/BubbleSeries.js +15 -0
- package/es-modules/Series/Bullet/BulletSeries.js +1 -1
- package/es-modules/Series/Candlestick/CandlestickSeries.js +3 -3
- package/es-modules/Series/CenteredUtilities.js +5 -4
- package/es-modules/Series/ColorMapComposition.js +7 -4
- package/es-modules/Series/Column/ColumnPoint.js +2 -0
- package/es-modules/Series/Column/ColumnSeries.js +12 -12
- package/es-modules/Series/Column/ColumnSeriesDefaults.js +4 -2
- package/es-modules/Series/Column3D/Column3DComposition.js +16 -14
- package/es-modules/Series/ColumnPyramid/ColumnPyramidPoint.js +18 -0
- package/es-modules/Series/ColumnPyramid/ColumnPyramidPointOptions.js +12 -0
- package/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +3 -2
- package/es-modules/Series/ColumnPyramid/ColumnPyramidSeriesOptions.js +12 -0
- package/es-modules/Series/ColumnRange/ColumnRangePoint.js +2 -0
- package/es-modules/Series/ColumnRange/ColumnRangePointOptions.js +12 -0
- package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +9 -142
- package/es-modules/Series/ColumnRange/ColumnRangeSeriesDefaults.js +148 -0
- package/es-modules/Series/ColumnRange/ColumnRangeSeriesOptions.js +12 -0
- package/es-modules/Series/Contour/ContourPoint.js +2 -0
- package/es-modules/Series/Contour/ContourSeries.js +1 -0
- package/es-modules/Series/Contour/ContourSeriesDefaults.js +7 -0
- package/es-modules/Series/Contour/ContourShader.js +9 -1
- package/es-modules/Series/CrossSymbol.js +3 -2
- package/es-modules/Series/Cylinder/CylinderComposition.js +10 -10
- package/es-modules/Series/Cylinder/CylinderPoint.js +2 -0
- package/es-modules/Series/Cylinder/CylinderPointOptions.js +15 -0
- package/es-modules/Series/Cylinder/CylinderSeries.js +2 -1
- package/es-modules/Series/Cylinder/CylinderSeriesOptions.js +15 -0
- package/es-modules/Series/Cylinder/SVGElement3DCylinder.js +2 -0
- package/es-modules/Series/DependencyWheel/DependencyWheelPoint.js +3 -1
- package/es-modules/Series/DependencyWheel/DependencyWheelPointOptions.js +14 -0
- package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +8 -8
- package/es-modules/Series/DependencyWheel/DependencyWheelSeriesOptions.js +14 -0
- package/es-modules/Series/DerivedComposition.js +9 -8
- package/es-modules/Series/DotPlot/DotPlotPoint.js +18 -0
- package/es-modules/Series/DotPlot/DotPlotPointOptions.js +12 -0
- package/es-modules/Series/DotPlot/DotPlotSeries.js +3 -2
- package/es-modules/Series/DotPlot/DotPlotSeriesOptions.js +12 -0
- package/es-modules/Series/DragNodesComposition.js +11 -8
- package/es-modules/Series/DrawPointUtilities.js +3 -1
- package/es-modules/Series/Dumbbell/DumbbellPoint.js +5 -3
- package/es-modules/Series/Dumbbell/DumbbellPointOptions.js +12 -0
- package/es-modules/Series/Dumbbell/DumbbellSeries.js +9 -8
- package/es-modules/Series/Dumbbell/DumbbellSeriesOptions.js +12 -0
- package/es-modules/Series/ErrorBar/ErrorBarPoint.js +18 -0
- package/es-modules/Series/ErrorBar/ErrorBarPointOptions.js +12 -0
- package/es-modules/Series/ErrorBar/ErrorBarSeries.js +6 -9
- package/es-modules/Series/ErrorBar/ErrorBarSeriesDefaults.js +15 -1
- package/es-modules/Series/ErrorBar/ErrorBarSeriesOptions.js +12 -0
- package/es-modules/Series/Flags/FlagsSeries.js +5 -14
- package/es-modules/Series/Flags/FlagsSeriesDefaults.js +2 -1
- package/es-modules/Series/Funnel/FunnelSeries.js +23 -24
- package/es-modules/Series/Funnel/FunnelSeriesDefaults.js +12 -0
- package/es-modules/Series/Gantt/GanttSeries.js +2 -1
- package/es-modules/Series/GeoHeatmap/GeoHeatmapSeries.js +5 -5
- package/es-modules/Series/GraphLayoutComposition.js +3 -3
- package/es-modules/Series/Histogram/HistogramSeries.js +1 -1
- package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +9 -9
- package/es-modules/Series/Map/MapSeries.js +1 -2
- package/es-modules/Series/Map/MapSeriesDefaults.js +11 -1
- package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +10 -7
- package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +12 -0
- package/es-modules/Series/OHLC/OHLCPoint.js +2 -2
- package/es-modules/Series/OHLC/OHLCSeries.js +1 -0
- package/es-modules/Series/Organization/OrganizationSeries.js +29 -7
- package/es-modules/Series/Organization/OrganizationSeriesDefaults.js +11 -4
- package/es-modules/Series/Pie/PiePoint.js +1 -2
- package/es-modules/Series/PolarComposition.js +5 -7
- package/es-modules/Series/Polygon/PolygonSeries.js +2 -2
- package/es-modules/Series/Polygon/PolygonSeriesDefaults.js +20 -0
- package/es-modules/Series/RangeDataLabel.js +128 -0
- package/es-modules/Series/Sankey/SankeySeries.js +2 -2
- package/es-modules/Series/Sankey/SankeySeriesDefaults.js +2 -2
- package/es-modules/Series/Scatter/ScatterSeriesDefaults.js +2 -0
- package/es-modules/Series/SimulationSeriesUtilities.js +1 -2
- package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +2 -2
- package/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +8 -0
- package/es-modules/Series/TiledWebMap/TiledWebMapSeries.js +12 -6
- package/es-modules/Series/Tilemap/TilemapSeriesDefaults.js +2 -1
- package/es-modules/Series/Timeline/TimelineSeries.js +9 -3
- package/es-modules/Series/Treegraph/TreegraphSeries.js +22 -13
- package/es-modules/Series/Treemap/TreemapSeriesDefaults.js +22 -1
- package/es-modules/Series/VariablePie/VariablePieSeriesDefaults.js +3 -2
- package/es-modules/Series/Vector/VectorSeries.js +7 -9
- package/es-modules/Series/Venn/VennSeries.js +3 -4
- package/es-modules/Series/Waterfall/WaterfallSeries.js +1 -1
- package/es-modules/Series/Windbarb/WindbarbSeries.js +6 -8
- package/es-modules/Series/XRange/XRangeSeries.js +8 -8
- package/es-modules/Shared/TimeBase.js +5 -6
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +1 -2
- package/es-modules/Stock/Navigator/NavigatorDefaults.js +9 -2
- package/es-modules/Stock/Navigator/NavigatorSymbols.js +2 -1
- package/es-modules/Stock/Navigator/StandaloneNavigator.js +51 -10
- package/es-modules/Stock/StockTools/StockToolbar.js +1 -1
- package/es-modules/Stock/StockTools/StockToolsBindings.js +7 -7
- package/es-modules/Stock/StockTools/StockToolsGui.js +2 -2
- package/es-modules/masters/highcharts-3d.src.js +1 -1
- package/es-modules/masters/highcharts-autoload.src.js +1 -1
- package/es-modules/masters/highcharts-gantt.src.js +1 -1
- package/es-modules/masters/highcharts-more.src.js +1 -1
- package/es-modules/masters/highcharts.src.js +7 -7
- package/es-modules/masters/highmaps.src.js +1 -1
- package/es-modules/masters/highstock.src.js +1 -1
- package/es-modules/masters/i18n/fr-FR.src.d.ts +1 -1
- package/es-modules/masters/i18n/fr-FR.src.js +1 -1
- package/es-modules/masters/i18n/nb-NO.src.d.ts +1 -1
- package/es-modules/masters/i18n/nb-NO.src.js +1 -1
- package/es-modules/masters/i18n/zh-CN.src.d.ts +1 -1
- package/es-modules/masters/i18n/zh-CN.src.js +1 -1
- package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
- package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
- package/es-modules/masters/indicators/ao.src.js +1 -1
- package/es-modules/masters/indicators/apo.src.js +1 -1
- package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
- package/es-modules/masters/indicators/aroon.src.js +1 -1
- package/es-modules/masters/indicators/atr.src.js +1 -1
- package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
- package/es-modules/masters/indicators/cci.src.js +1 -1
- package/es-modules/masters/indicators/chaikin.src.js +1 -1
- package/es-modules/masters/indicators/cmf.src.js +1 -1
- package/es-modules/masters/indicators/cmo.src.js +1 -1
- package/es-modules/masters/indicators/dema.src.js +1 -1
- package/es-modules/masters/indicators/disparity-index.src.js +1 -1
- package/es-modules/masters/indicators/dmi.src.js +1 -1
- package/es-modules/masters/indicators/dpo.src.js +1 -1
- package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/es-modules/masters/indicators/indicators-all.src.js +1 -1
- package/es-modules/masters/indicators/indicators.src.js +1 -1
- package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
- package/es-modules/masters/indicators/klinger.src.js +1 -1
- package/es-modules/masters/indicators/macd.src.js +1 -1
- package/es-modules/masters/indicators/mfi.src.js +1 -1
- package/es-modules/masters/indicators/momentum.src.js +1 -1
- package/es-modules/masters/indicators/natr.src.js +1 -1
- package/es-modules/masters/indicators/obv.src.js +1 -1
- package/es-modules/masters/indicators/pivot-points.src.js +1 -1
- package/es-modules/masters/indicators/ppo.src.js +1 -1
- package/es-modules/masters/indicators/price-channel.src.js +1 -1
- package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
- package/es-modules/masters/indicators/psar.src.js +1 -1
- package/es-modules/masters/indicators/regressions.src.js +1 -1
- package/es-modules/masters/indicators/roc.src.js +1 -1
- package/es-modules/masters/indicators/rsi.src.js +1 -1
- package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
- package/es-modules/masters/indicators/stochastic.src.js +1 -1
- package/es-modules/masters/indicators/supertrend.src.js +1 -1
- package/es-modules/masters/indicators/tema.src.js +1 -1
- package/es-modules/masters/indicators/trendline.src.js +1 -1
- package/es-modules/masters/indicators/trix.src.js +1 -1
- package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
- package/es-modules/masters/indicators/vwap.src.js +1 -1
- package/es-modules/masters/indicators/williams-r.src.js +1 -1
- package/es-modules/masters/indicators/wma.src.js +1 -1
- package/es-modules/masters/indicators/zigzag.src.js +1 -1
- package/es-modules/masters/modules/accessibility.src.js +1 -1
- package/es-modules/masters/modules/annotations-advanced.src.js +1 -1
- package/es-modules/masters/modules/annotations.src.js +1 -1
- package/es-modules/masters/modules/arc-diagram.src.js +1 -1
- package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
- package/es-modules/masters/modules/boost-canvas.src.js +1 -1
- package/es-modules/masters/modules/boost.src.js +1 -1
- package/es-modules/masters/modules/broken-axis.src.js +1 -1
- package/es-modules/masters/modules/bullet.src.js +1 -1
- package/es-modules/masters/modules/coloraxis.src.js +1 -1
- package/es-modules/masters/modules/contour.src.js +1 -1
- package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
- package/es-modules/masters/modules/cylinder.src.js +1 -1
- package/es-modules/masters/modules/data-sorting.src.js +1 -1
- package/es-modules/masters/modules/data-tools.src.js +1 -1
- package/es-modules/masters/modules/data.src.js +1 -1
- package/es-modules/masters/modules/datagrouping.src.js +1 -1
- package/es-modules/masters/modules/debugger.src.js +1 -1
- package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
- package/es-modules/masters/modules/dotplot.src.js +1 -1
- package/es-modules/masters/modules/drag-panes.src.js +1 -1
- package/es-modules/masters/modules/draggable-points.src.js +1 -1
- package/es-modules/masters/modules/drilldown.src.js +1 -1
- package/es-modules/masters/modules/dumbbell.src.js +1 -1
- package/es-modules/masters/modules/export-data.src.js +1 -1
- package/es-modules/masters/modules/exporting.src.js +1 -1
- package/es-modules/masters/modules/flowmap.src.js +2 -1
- package/es-modules/masters/modules/full-screen.src.js +1 -1
- package/es-modules/masters/modules/funnel.src.js +1 -1
- package/es-modules/masters/modules/funnel3d.src.js +1 -1
- package/es-modules/masters/modules/gantt.src.js +1 -1
- package/es-modules/masters/modules/geoheatmap.src.js +1 -1
- package/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/es-modules/masters/modules/heatmap.src.js +1 -1
- package/es-modules/masters/modules/heikinashi.src.js +1 -1
- package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
- package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
- package/es-modules/masters/modules/item-series.src.js +1 -1
- package/es-modules/masters/modules/lollipop.src.js +1 -1
- package/es-modules/masters/modules/map.src.js +1 -1
- package/es-modules/masters/modules/marker-clusters.src.js +1 -1
- package/es-modules/masters/modules/mouse-wheel-zoom.src.js +1 -1
- package/es-modules/masters/modules/navigator.src.js +1 -1
- package/es-modules/masters/modules/networkgraph.src.js +1 -1
- package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
- package/es-modules/masters/modules/non-cartesian-zoom.src.js +1 -1
- package/es-modules/masters/modules/offline-exporting.src.js +1 -1
- package/es-modules/masters/modules/organization.src.js +1 -1
- package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
- package/es-modules/masters/modules/pareto.src.js +1 -1
- package/es-modules/masters/modules/pathfinder.src.js +1 -1
- package/es-modules/masters/modules/pattern-fill.src.js +1 -1
- package/es-modules/masters/modules/pictorial.src.js +1 -1
- package/es-modules/masters/modules/pointandfigure.src.js +1 -1
- package/es-modules/masters/modules/price-indicator.src.js +1 -1
- package/es-modules/masters/modules/pyramid3d.src.js +1 -1
- package/es-modules/masters/modules/renko.src.js +1 -1
- package/es-modules/masters/modules/sankey.src.js +1 -1
- package/es-modules/masters/modules/series-label.src.js +1 -1
- package/es-modules/masters/modules/series-on-point.src.js +1 -1
- package/es-modules/masters/modules/solid-gauge.src.js +1 -1
- package/es-modules/masters/modules/sonification.src.js +1 -1
- package/es-modules/masters/modules/static-scale.src.js +1 -1
- package/es-modules/masters/modules/stock-tools.src.js +1 -1
- package/es-modules/masters/modules/stock.src.js +1 -1
- package/es-modules/masters/modules/streamgraph.src.js +1 -1
- package/es-modules/masters/modules/sunburst.src.js +3 -2
- package/es-modules/masters/modules/textpath.src.js +1 -1
- package/es-modules/masters/modules/tiledwebmap.src.js +1 -1
- package/es-modules/masters/modules/tilemap.src.js +1 -1
- package/es-modules/masters/modules/timeline.src.js +1 -1
- package/es-modules/masters/modules/treegraph.src.js +1 -1
- package/es-modules/masters/modules/treegrid.src.js +1 -1
- package/es-modules/masters/modules/treemap.src.js +1 -1
- package/es-modules/masters/modules/variable-pie.src.js +1 -1
- package/es-modules/masters/modules/variwide.src.js +1 -1
- package/es-modules/masters/modules/vector.src.js +1 -1
- package/es-modules/masters/modules/venn.src.js +1 -1
- package/es-modules/masters/modules/windbarb.src.js +1 -1
- package/es-modules/masters/modules/wordcloud.src.js +1 -1
- package/es-modules/masters/modules/xrange.src.js +1 -1
- package/es-modules/masters/standalone-navigator.src.js +1 -1
- package/es-modules/masters/themes/adaptive.src.js +1 -1
- package/es-modules/masters/themes/avocado.src.js +1 -1
- package/es-modules/masters/themes/dark-unica.src.js +1 -1
- package/es-modules/masters/themes/grid-light.src.js +1 -1
- package/es-modules/masters/themes/high-contrast.src.js +1 -1
- package/es-modules/masters/themes/sand-signika.src.js +1 -1
- package/es-modules/masters/themes/sunset.src.js +1 -1
- package/es-modules/tsconfig.tsbuildinfo +1 -1
- package/esm/highcharts-3d.js +2 -2
- package/esm/highcharts-3d.src.js +40 -25
- package/esm/highcharts-autoload.js +2 -2
- package/esm/highcharts-autoload.src.js +22 -8
- package/esm/highcharts-gantt.js +2 -2
- package/esm/highcharts-gantt.src.js +1 -24
- package/esm/highcharts-more.js +2 -2
- package/esm/highcharts-more.src.js +1109 -926
- package/esm/highcharts.js +5 -5
- package/esm/highcharts.src.js +396 -314
- package/esm/highmaps.js +2 -2
- package/esm/highmaps.src.js +1 -24
- package/esm/highstock.js +2 -2
- package/esm/highstock.src.js +1 -24
- package/esm/i18n/fr-FR.js +2 -2
- package/esm/i18n/fr-FR.src.js +22 -8
- package/esm/i18n/nb-NO.js +2 -2
- package/esm/i18n/nb-NO.src.js +22 -8
- package/esm/i18n/zh-CN.js +2 -2
- package/esm/i18n/zh-CN.src.js +22 -8
- package/esm/indicators/acceleration-bands.js +2 -2
- package/esm/indicators/acceleration-bands.src.js +22 -8
- package/esm/indicators/accumulation-distribution.js +2 -2
- package/esm/indicators/accumulation-distribution.src.js +22 -8
- package/esm/indicators/ao.js +2 -2
- package/esm/indicators/ao.src.js +22 -8
- package/esm/indicators/apo.js +2 -2
- package/esm/indicators/apo.src.js +22 -8
- package/esm/indicators/aroon-oscillator.js +2 -2
- package/esm/indicators/aroon-oscillator.src.js +22 -8
- package/esm/indicators/aroon.js +2 -2
- package/esm/indicators/aroon.src.js +22 -8
- package/esm/indicators/atr.js +2 -2
- package/esm/indicators/atr.src.js +22 -8
- package/esm/indicators/bollinger-bands.js +2 -2
- package/esm/indicators/bollinger-bands.src.js +22 -8
- package/esm/indicators/cci.js +2 -2
- package/esm/indicators/cci.src.js +22 -8
- package/esm/indicators/chaikin.js +2 -2
- package/esm/indicators/chaikin.src.js +22 -8
- package/esm/indicators/cmf.js +2 -2
- package/esm/indicators/cmf.src.js +22 -8
- package/esm/indicators/cmo.js +2 -2
- package/esm/indicators/cmo.src.js +22 -8
- package/esm/indicators/dema.js +2 -2
- package/esm/indicators/dema.src.js +22 -8
- package/esm/indicators/disparity-index.js +2 -2
- package/esm/indicators/disparity-index.src.js +22 -8
- package/esm/indicators/dmi.js +2 -2
- package/esm/indicators/dmi.src.js +22 -8
- package/esm/indicators/dpo.js +2 -2
- package/esm/indicators/dpo.src.js +22 -8
- package/esm/indicators/ichimoku-kinko-hyo.js +2 -2
- package/esm/indicators/ichimoku-kinko-hyo.src.js +22 -8
- package/esm/indicators/indicators-all.js +2 -2
- package/esm/indicators/indicators-all.src.js +24 -11
- package/esm/indicators/indicators.js +2 -2
- package/esm/indicators/indicators.src.js +23 -9
- package/esm/indicators/keltner-channels.js +2 -2
- package/esm/indicators/keltner-channels.src.js +22 -8
- package/esm/indicators/klinger.js +2 -2
- package/esm/indicators/klinger.src.js +22 -8
- package/esm/indicators/macd.js +2 -2
- package/esm/indicators/macd.src.js +22 -8
- package/esm/indicators/mfi.js +2 -2
- package/esm/indicators/mfi.src.js +22 -8
- package/esm/indicators/momentum.js +2 -2
- package/esm/indicators/momentum.src.js +22 -8
- package/esm/indicators/natr.js +2 -2
- package/esm/indicators/natr.src.js +22 -8
- package/esm/indicators/obv.js +2 -2
- package/esm/indicators/obv.src.js +22 -8
- package/esm/indicators/pivot-points.js +2 -2
- package/esm/indicators/pivot-points.src.js +22 -8
- package/esm/indicators/ppo.js +2 -2
- package/esm/indicators/ppo.src.js +22 -8
- package/esm/indicators/price-channel.js +2 -2
- package/esm/indicators/price-channel.src.js +22 -8
- package/esm/indicators/price-envelopes.js +2 -2
- package/esm/indicators/price-envelopes.src.js +22 -8
- package/esm/indicators/psar.js +2 -2
- package/esm/indicators/psar.src.js +22 -8
- package/esm/indicators/regressions.js +2 -2
- package/esm/indicators/regressions.src.js +22 -8
- package/esm/indicators/roc.js +2 -2
- package/esm/indicators/roc.src.js +22 -8
- package/esm/indicators/rsi.js +2 -2
- package/esm/indicators/rsi.src.js +22 -8
- package/esm/indicators/slow-stochastic.js +2 -2
- package/esm/indicators/slow-stochastic.src.js +22 -8
- package/esm/indicators/stochastic.js +2 -2
- package/esm/indicators/stochastic.src.js +22 -8
- package/esm/indicators/supertrend.js +2 -2
- package/esm/indicators/supertrend.src.js +22 -8
- package/esm/indicators/tema.js +2 -2
- package/esm/indicators/tema.src.js +22 -8
- package/esm/indicators/trendline.js +2 -2
- package/esm/indicators/trendline.src.js +22 -8
- package/esm/indicators/trix.js +2 -2
- package/esm/indicators/trix.src.js +22 -8
- package/esm/indicators/volume-by-price.js +2 -2
- package/esm/indicators/volume-by-price.src.js +23 -10
- package/esm/indicators/vwap.js +2 -2
- package/esm/indicators/vwap.src.js +22 -8
- package/esm/indicators/williams-r.js +2 -2
- package/esm/indicators/williams-r.src.js +22 -8
- package/esm/indicators/wma.js +2 -2
- package/esm/indicators/wma.src.js +22 -8
- package/esm/indicators/zigzag.js +2 -2
- package/esm/indicators/zigzag.src.js +22 -8
- package/esm/modules/accessibility.js +2 -2
- package/esm/modules/accessibility.src.js +498 -32
- package/esm/modules/annotations-advanced.js +11 -11
- package/esm/modules/annotations-advanced.src.js +201 -141
- package/esm/modules/annotations.js +11 -11
- package/esm/modules/annotations.src.js +165 -127
- package/esm/modules/arc-diagram.js +2 -2
- package/esm/modules/arc-diagram.src.js +22 -8
- package/esm/modules/arrow-symbols.js +3 -3
- package/esm/modules/arrow-symbols.src.js +22 -8
- package/esm/modules/boost-canvas.js +2 -2
- package/esm/modules/boost-canvas.src.js +32 -11
- package/esm/modules/boost.js +2 -2
- package/esm/modules/boost.src.js +45 -11
- package/esm/modules/broken-axis.js +2 -2
- package/esm/modules/broken-axis.src.js +22 -8
- package/esm/modules/bullet.js +2 -2
- package/esm/modules/bullet.src.js +23 -9
- package/esm/modules/coloraxis.js +2 -2
- package/esm/modules/coloraxis.src.js +30 -11
- package/esm/modules/contour.js +3 -3
- package/esm/modules/contour.src.js +46 -13
- package/esm/modules/current-date-indicator.js +2 -2
- package/esm/modules/current-date-indicator.src.js +22 -8
- package/esm/modules/cylinder.js +2 -2
- package/esm/modules/cylinder.src.js +38 -19
- package/esm/modules/data-sorting.js +2 -2
- package/esm/modules/data-sorting.src.js +22 -8
- package/esm/modules/data-tools.js +2 -2
- package/esm/modules/data-tools.src.js +25 -11
- package/esm/modules/data.js +4 -4
- package/esm/modules/data.src.js +23 -9
- package/esm/modules/datagrouping.js +2 -2
- package/esm/modules/datagrouping.src.js +23 -9
- package/esm/modules/debugger.js +2 -2
- package/esm/modules/debugger.src.js +22 -8
- package/esm/modules/dependency-wheel.js +2 -2
- package/esm/modules/dependency-wheel.src.js +428 -17
- package/esm/modules/dotplot.js +2 -2
- package/esm/modules/dotplot.src.js +25 -10
- package/esm/modules/drag-panes.js +2 -2
- package/esm/modules/drag-panes.src.js +22 -8
- package/esm/modules/draggable-points.js +2 -2
- package/esm/modules/draggable-points.src.js +23 -10
- package/esm/modules/drilldown.js +2 -2
- package/esm/modules/drilldown.src.js +34 -22
- package/esm/modules/dumbbell.js +2 -2
- package/esm/modules/dumbbell.src.js +36 -19
- package/esm/modules/export-data.js +2 -2
- package/esm/modules/export-data.src.js +27 -9
- package/esm/modules/exporting.js +2 -2
- package/esm/modules/exporting.src.js +77 -31
- package/esm/modules/flowmap.js +3 -2
- package/esm/modules/flowmap.src.js +23 -8
- package/esm/modules/full-screen.js +2 -2
- package/esm/modules/full-screen.src.js +22 -8
- package/esm/modules/funnel.js +2 -2
- package/esm/modules/funnel.src.js +72 -41
- package/esm/modules/funnel3d.js +2 -2
- package/esm/modules/funnel3d.src.js +22 -8
- package/esm/modules/gantt.js +2 -2
- package/esm/modules/gantt.src.js +450 -25
- package/esm/modules/geoheatmap.js +2 -2
- package/esm/modules/geoheatmap.src.js +28 -14
- package/esm/modules/grid-axis.js +2 -2
- package/esm/modules/grid-axis.src.js +30 -9
- package/esm/modules/heatmap.js +2 -2
- package/esm/modules/heatmap.src.js +29 -12
- package/esm/modules/heikinashi.js +2 -2
- package/esm/modules/heikinashi.src.js +22 -8
- package/esm/modules/histogram-bellcurve.js +2 -2
- package/esm/modules/histogram-bellcurve.src.js +42 -23
- package/esm/modules/hollowcandlestick.js +2 -2
- package/esm/modules/hollowcandlestick.src.js +31 -17
- package/esm/modules/item-series.js +2 -2
- package/esm/modules/item-series.src.js +55 -8
- package/esm/modules/lollipop.js +2 -2
- package/esm/modules/lollipop.src.js +22 -8
- package/esm/modules/map.js +2 -2
- package/esm/modules/map.src.js +84 -35
- package/esm/modules/marker-clusters.js +2 -2
- package/esm/modules/marker-clusters.src.js +25 -13
- package/esm/modules/mouse-wheel-zoom.js +2 -2
- package/esm/modules/mouse-wheel-zoom.src.js +52 -11
- package/esm/modules/navigator.js +2 -2
- package/esm/modules/navigator.src.js +488 -30
- package/esm/modules/networkgraph.js +2 -2
- package/esm/modules/networkgraph.src.js +57 -26
- package/esm/modules/no-data-to-display.js +2 -2
- package/esm/modules/no-data-to-display.src.js +22 -8
- package/esm/modules/non-cartesian-zoom.js +2 -2
- package/esm/modules/non-cartesian-zoom.src.js +22 -8
- package/esm/modules/offline-exporting.js +2 -2
- package/esm/modules/offline-exporting.src.js +53 -12
- package/esm/modules/organization.js +4 -2
- package/esm/modules/organization.src.js +61 -18
- package/esm/modules/parallel-coordinates.js +2 -2
- package/esm/modules/parallel-coordinates.src.js +25 -8
- package/esm/modules/pareto.js +2 -2
- package/esm/modules/pareto.src.js +31 -16
- package/esm/modules/pathfinder.js +2 -2
- package/esm/modules/pathfinder.src.js +22 -8
- package/esm/modules/pattern-fill.js +2 -2
- package/esm/modules/pattern-fill.src.js +22 -8
- package/esm/modules/pictorial.js +2 -2
- package/esm/modules/pictorial.src.js +27 -14
- package/esm/modules/pointandfigure.js +2 -2
- package/esm/modules/pointandfigure.src.js +26 -11
- package/esm/modules/price-indicator.js +2 -2
- package/esm/modules/price-indicator.src.js +22 -8
- package/esm/modules/pyramid3d.js +2 -2
- package/esm/modules/pyramid3d.src.js +22 -8
- package/esm/modules/renko.js +2 -2
- package/esm/modules/renko.src.js +22 -8
- package/esm/modules/sankey.js +2 -2
- package/esm/modules/sankey.src.js +26 -12
- package/esm/modules/series-label.js +2 -2
- package/esm/modules/series-label.src.js +25 -12
- package/esm/modules/series-on-point.js +2 -2
- package/esm/modules/series-on-point.src.js +23 -9
- package/esm/modules/solid-gauge.js +2 -2
- package/esm/modules/solid-gauge.src.js +39 -19
- package/esm/modules/sonification.js +2 -2
- package/esm/modules/sonification.src.js +27 -12
- package/esm/modules/static-scale.js +2 -2
- package/esm/modules/static-scale.src.js +22 -8
- package/esm/modules/stock-tools.js +3 -3
- package/esm/modules/stock-tools.src.js +59 -18
- package/esm/modules/stock.js +2 -2
- package/esm/modules/stock.src.js +465 -47
- package/esm/modules/streamgraph.js +2 -2
- package/esm/modules/streamgraph.src.js +22 -8
- package/esm/modules/sunburst.js +2 -2
- package/esm/modules/sunburst.src.js +70 -20
- package/esm/modules/textpath.js +2 -2
- package/esm/modules/textpath.src.js +22 -8
- package/esm/modules/tiledwebmap.js +3 -3
- package/esm/modules/tiledwebmap.src.js +37 -14
- package/esm/modules/tilemap.js +2 -2
- package/esm/modules/tilemap.src.js +25 -10
- package/esm/modules/timeline.js +2 -2
- package/esm/modules/timeline.src.js +31 -11
- package/esm/modules/treegraph.js +2 -2
- package/esm/modules/treegraph.src.js +43 -20
- package/esm/modules/treegrid.js +2 -2
- package/esm/modules/treegrid.src.js +31 -10
- package/esm/modules/treemap.js +2 -2
- package/esm/modules/treemap.src.js +55 -15
- package/esm/modules/variable-pie.js +2 -2
- package/esm/modules/variable-pie.src.js +25 -10
- package/esm/modules/variwide.js +2 -2
- package/esm/modules/variwide.src.js +22 -8
- package/esm/modules/vector.js +2 -2
- package/esm/modules/vector.src.js +28 -16
- package/esm/modules/venn.js +2 -2
- package/esm/modules/venn.src.js +28 -13
- package/esm/modules/windbarb.js +2 -2
- package/esm/modules/windbarb.src.js +28 -16
- package/esm/modules/wordcloud.js +2 -2
- package/esm/modules/wordcloud.src.js +25 -9
- package/esm/modules/xrange.js +2 -2
- package/esm/modules/xrange.src.js +29 -15
- package/esm/standalone-navigator.js +5 -5
- package/esm/standalone-navigator.src.js +461 -329
- package/esm/themes/adaptive.js +3 -3
- package/esm/themes/adaptive.src.js +22 -8
- package/esm/themes/avocado.js +2 -2
- package/esm/themes/avocado.src.js +22 -8
- package/esm/themes/dark-unica.js +2 -2
- package/esm/themes/dark-unica.src.js +22 -8
- package/esm/themes/grid-light.js +2 -2
- package/esm/themes/grid-light.src.js +22 -8
- package/esm/themes/high-contrast.js +2 -2
- package/esm/themes/high-contrast.src.js +22 -8
- package/esm/themes/sand-signika.js +2 -2
- package/esm/themes/sand-signika.src.js +22 -8
- package/esm/themes/sunset.js +2 -2
- package/esm/themes/sunset.src.js +22 -8
- package/highcharts-3d.js +2 -2
- package/highcharts-3d.src.js +78 -62
- package/highcharts-autoload.d.ts +7 -3
- package/highcharts-autoload.js +4 -4
- package/highcharts-autoload.src.d.ts +7 -3
- package/highcharts-autoload.src.js +418 -298
- package/highcharts-gantt.js +4 -4
- package/highcharts-gantt.src.js +458 -318
- package/highcharts-more.d.ts +7 -3
- package/highcharts-more.js +2 -2
- package/highcharts-more.src.d.ts +7 -3
- package/highcharts-more.src.js +1224 -1040
- package/highcharts.d.ts +34734 -25643
- package/highcharts.js +4 -4
- package/highcharts.src.d.ts +34734 -25643
- package/highcharts.src.js +417 -297
- package/highmaps.js +4 -4
- package/highmaps.src.js +482 -320
- package/highstock.js +4 -4
- package/highstock.src.js +497 -337
- package/i18n/fr-FR.js +2 -2
- package/i18n/fr-FR.src.js +32 -16
- package/i18n/nb-NO.js +2 -2
- package/i18n/nb-NO.src.js +32 -16
- package/i18n/zh-CN.js +2 -2
- package/i18n/zh-CN.src.js +32 -16
- package/indicators/acceleration-bands.js +2 -2
- package/indicators/acceleration-bands.src.js +31 -16
- package/indicators/accumulation-distribution.js +2 -2
- package/indicators/accumulation-distribution.src.js +31 -16
- package/indicators/ao.js +2 -2
- package/indicators/ao.src.js +31 -16
- package/indicators/apo.js +2 -2
- package/indicators/apo.src.js +31 -16
- package/indicators/aroon-oscillator.js +2 -2
- package/indicators/aroon-oscillator.src.js +31 -16
- package/indicators/aroon.js +2 -2
- package/indicators/aroon.src.js +31 -16
- package/indicators/atr.js +2 -2
- package/indicators/atr.src.js +31 -16
- package/indicators/bollinger-bands.js +2 -2
- package/indicators/bollinger-bands.src.js +31 -16
- package/indicators/cci.js +2 -2
- package/indicators/cci.src.js +31 -16
- package/indicators/chaikin.js +2 -2
- package/indicators/chaikin.src.js +31 -16
- package/indicators/cmf.js +2 -2
- package/indicators/cmf.src.js +31 -16
- package/indicators/cmo.js +2 -2
- package/indicators/cmo.src.js +31 -16
- package/indicators/dema.js +2 -2
- package/indicators/dema.src.js +31 -16
- package/indicators/disparity-index.js +2 -2
- package/indicators/disparity-index.src.js +31 -16
- package/indicators/dmi.js +2 -2
- package/indicators/dmi.src.js +31 -16
- package/indicators/dpo.js +2 -2
- package/indicators/dpo.src.js +31 -16
- package/indicators/ichimoku-kinko-hyo.js +2 -2
- package/indicators/ichimoku-kinko-hyo.src.js +41 -26
- package/indicators/indicators-all.js +2 -2
- package/indicators/indicators-all.src.js +45 -31
- package/indicators/indicators.js +2 -2
- package/indicators/indicators.src.js +38 -23
- package/indicators/keltner-channels.js +2 -2
- package/indicators/keltner-channels.src.js +31 -16
- package/indicators/klinger.js +2 -2
- package/indicators/klinger.src.js +31 -16
- package/indicators/macd.js +2 -2
- package/indicators/macd.src.js +31 -16
- package/indicators/mfi.js +2 -2
- package/indicators/mfi.src.js +31 -16
- package/indicators/momentum.js +2 -2
- package/indicators/momentum.src.js +31 -16
- package/indicators/natr.js +2 -2
- package/indicators/natr.src.js +31 -16
- package/indicators/obv.js +2 -2
- package/indicators/obv.src.js +31 -16
- package/indicators/pivot-points.js +2 -2
- package/indicators/pivot-points.src.js +31 -16
- package/indicators/ppo.js +2 -2
- package/indicators/ppo.src.js +31 -16
- package/indicators/price-channel.js +2 -2
- package/indicators/price-channel.src.js +31 -16
- package/indicators/price-envelopes.js +2 -2
- package/indicators/price-envelopes.src.js +31 -16
- package/indicators/psar.js +2 -2
- package/indicators/psar.src.js +31 -16
- package/indicators/regressions.js +2 -2
- package/indicators/regressions.src.js +31 -16
- package/indicators/roc.js +2 -2
- package/indicators/roc.src.js +31 -16
- package/indicators/rsi.js +2 -2
- package/indicators/rsi.src.js +31 -16
- package/indicators/slow-stochastic.js +2 -2
- package/indicators/slow-stochastic.src.js +31 -16
- package/indicators/stochastic.js +2 -2
- package/indicators/stochastic.src.js +31 -16
- package/indicators/supertrend.js +2 -2
- package/indicators/supertrend.src.js +31 -16
- package/indicators/tema.js +2 -2
- package/indicators/tema.src.js +31 -16
- package/indicators/trendline.js +2 -2
- package/indicators/trendline.src.js +31 -16
- package/indicators/trix.js +2 -2
- package/indicators/trix.src.js +31 -16
- package/indicators/volume-by-price.js +2 -2
- package/indicators/volume-by-price.src.js +32 -18
- package/indicators/vwap.js +2 -2
- package/indicators/vwap.src.js +31 -16
- package/indicators/williams-r.js +2 -2
- package/indicators/williams-r.src.js +31 -16
- package/indicators/wma.js +2 -2
- package/indicators/wma.src.js +31 -16
- package/indicators/zigzag.js +2 -2
- package/indicators/zigzag.src.js +31 -16
- package/modules/accessibility.d.ts +47 -0
- package/modules/accessibility.js +2 -2
- package/modules/accessibility.src.d.ts +47 -0
- package/modules/accessibility.src.js +537 -70
- package/modules/annotations-advanced.js +11 -11
- package/modules/annotations-advanced.src.js +223 -162
- package/modules/annotations.js +11 -11
- package/modules/annotations.src.js +187 -148
- package/modules/arc-diagram.js +2 -2
- package/modules/arc-diagram.src.js +43 -28
- package/modules/arrow-symbols.js +2 -2
- package/modules/arrow-symbols.src.js +28 -13
- package/modules/boost-canvas.js +2 -2
- package/modules/boost-canvas.src.js +41 -19
- package/modules/boost.js +2 -2
- package/modules/boost.src.js +54 -19
- package/modules/broken-axis.js +2 -2
- package/modules/broken-axis.src.js +31 -16
- package/modules/bullet.js +2 -2
- package/modules/bullet.src.js +35 -20
- package/modules/coloraxis.js +2 -2
- package/modules/coloraxis.src.js +48 -28
- package/modules/contour.js +5 -5
- package/modules/contour.src.js +74 -34
- package/modules/current-date-indicator.js +2 -2
- package/modules/current-date-indicator.src.js +28 -13
- package/modules/cylinder.js +2 -2
- package/modules/cylinder.src.js +59 -39
- package/modules/data-sorting.js +2 -2
- package/modules/data-sorting.src.js +28 -13
- package/modules/data-tools.js +2 -2
- package/modules/data-tools.src.js +31 -16
- package/modules/data.js +2 -2
- package/modules/data.src.js +50 -35
- package/modules/datagrouping.js +2 -2
- package/modules/datagrouping.src.js +37 -22
- package/modules/debugger.js +2 -2
- package/modules/debugger.src.js +28 -13
- package/modules/dependency-wheel.d.ts +7 -1
- package/modules/dependency-wheel.js +2 -2
- package/modules/dependency-wheel.src.d.ts +7 -1
- package/modules/dependency-wheel.src.js +440 -28
- package/modules/dotplot.js +2 -2
- package/modules/dotplot.src.js +34 -18
- package/modules/drag-panes.js +2 -2
- package/modules/drag-panes.src.js +28 -13
- package/modules/draggable-points.js +2 -2
- package/modules/draggable-points.src.js +29 -15
- package/modules/drilldown.js +2 -2
- package/modules/drilldown.src.js +45 -32
- package/modules/dumbbell.js +2 -2
- package/modules/dumbbell.src.js +50 -32
- package/modules/export-data.d.ts +66 -1
- package/modules/export-data.js +2 -2
- package/modules/export-data.src.d.ts +66 -1
- package/modules/export-data.src.js +41 -22
- package/modules/exporting.d.ts +0 -103
- package/modules/exporting.js +2 -2
- package/modules/exporting.src.d.ts +0 -103
- package/modules/exporting.src.js +91 -44
- package/modules/flowmap.js +3 -2
- package/modules/flowmap.src.js +32 -16
- package/modules/full-screen.js +2 -2
- package/modules/full-screen.src.js +31 -16
- package/modules/funnel.d.ts +3 -3
- package/modules/funnel.js +2 -2
- package/modules/funnel.src.d.ts +3 -3
- package/modules/funnel.src.js +81 -49
- package/modules/funnel3d.js +2 -2
- package/modules/funnel3d.src.js +43 -28
- package/modules/gantt.d.ts +47 -0
- package/modules/gantt.js +8 -8
- package/modules/gantt.src.d.ts +47 -0
- package/modules/gantt.src.js +510 -81
- package/modules/geoheatmap.d.ts +13 -0
- package/modules/geoheatmap.js +2 -2
- package/modules/geoheatmap.src.d.ts +13 -0
- package/modules/geoheatmap.src.js +37 -22
- package/modules/grid-axis.js +2 -2
- package/modules/grid-axis.src.js +39 -17
- package/modules/heatmap.js +4 -4
- package/modules/heatmap.src.js +64 -40
- package/modules/heikinashi.js +2 -2
- package/modules/heikinashi.src.js +31 -16
- package/modules/histogram-bellcurve.js +2 -2
- package/modules/histogram-bellcurve.src.js +56 -36
- package/modules/hollowcandlestick.js +2 -2
- package/modules/hollowcandlestick.src.js +45 -30
- package/modules/item-series.js +2 -2
- package/modules/item-series.src.js +64 -16
- package/modules/lollipop.js +2 -2
- package/modules/lollipop.src.js +36 -21
- package/modules/map.d.ts +0 -8
- package/modules/map.js +4 -4
- package/modules/map.src.d.ts +0 -8
- package/modules/map.src.js +131 -74
- package/modules/marker-clusters.js +2 -2
- package/modules/marker-clusters.src.js +31 -18
- package/modules/mouse-wheel-zoom.js +2 -2
- package/modules/mouse-wheel-zoom.src.js +58 -16
- package/modules/navigator.d.ts +47 -0
- package/modules/navigator.js +2 -2
- package/modules/navigator.src.d.ts +47 -0
- package/modules/navigator.src.js +510 -51
- package/modules/networkgraph.js +2 -2
- package/modules/networkgraph.src.js +69 -37
- package/modules/no-data-to-display.js +2 -2
- package/modules/no-data-to-display.src.js +31 -16
- package/modules/non-cartesian-zoom.js +2 -2
- package/modules/non-cartesian-zoom.src.js +28 -13
- package/modules/offline-exporting.js +2 -2
- package/modules/offline-exporting.src.js +67 -25
- package/modules/organization.js +4 -2
- package/modules/organization.src.js +73 -29
- package/modules/parallel-coordinates.js +2 -2
- package/modules/parallel-coordinates.src.js +36 -18
- package/modules/pareto.js +2 -2
- package/modules/pareto.src.js +45 -29
- package/modules/pathfinder.js +2 -2
- package/modules/pathfinder.src.js +31 -16
- package/modules/pattern-fill.js +2 -2
- package/modules/pattern-fill.src.js +28 -13
- package/modules/pictorial.js +2 -2
- package/modules/pictorial.src.js +53 -38
- package/modules/pointandfigure.js +2 -2
- package/modules/pointandfigure.src.js +35 -19
- package/modules/price-indicator.js +2 -2
- package/modules/price-indicator.src.js +28 -13
- package/modules/pyramid3d.js +2 -2
- package/modules/pyramid3d.src.js +31 -16
- package/modules/renko.js +2 -2
- package/modules/renko.src.js +34 -19
- package/modules/sankey.js +2 -2
- package/modules/sankey.src.js +47 -32
- package/modules/series-label.js +2 -2
- package/modules/series-label.src.js +36 -22
- package/modules/series-on-point.js +2 -2
- package/modules/series-on-point.src.js +40 -25
- package/modules/solid-gauge.d.ts +3 -3
- package/modules/solid-gauge.js +2 -2
- package/modules/solid-gauge.src.d.ts +3 -3
- package/modules/solid-gauge.src.js +53 -32
- package/modules/sonification.js +2 -2
- package/modules/sonification.src.js +38 -22
- package/modules/static-scale.js +2 -2
- package/modules/static-scale.src.js +28 -13
- package/modules/stock-tools.js +3 -3
- package/modules/stock-tools.src.js +76 -34
- package/modules/stock.d.ts +47 -0
- package/modules/stock.js +6 -6
- package/modules/stock.src.d.ts +47 -0
- package/modules/stock.src.js +549 -100
- package/modules/streamgraph.js +2 -2
- package/modules/streamgraph.src.js +31 -16
- package/modules/sunburst.js +2 -2
- package/modules/sunburst.src.js +97 -46
- package/modules/textpath.js +2 -2
- package/modules/textpath.src.js +28 -13
- package/modules/tiledwebmap.js +3 -3
- package/modules/tiledwebmap.src.js +58 -27
- package/modules/tilemap.js +2 -2
- package/modules/tilemap.src.js +39 -23
- package/modules/timeline.js +2 -2
- package/modules/timeline.src.js +43 -22
- package/modules/treegraph.js +2 -2
- package/modules/treegraph.src.js +67 -43
- package/modules/treegrid.js +2 -2
- package/modules/treegrid.src.js +49 -27
- package/modules/treemap.js +2 -2
- package/modules/treemap.src.js +82 -41
- package/modules/variable-pie.js +2 -2
- package/modules/variable-pie.src.js +34 -18
- package/modules/variwide.js +2 -2
- package/modules/variwide.src.js +31 -16
- package/modules/vector.js +2 -2
- package/modules/vector.src.js +37 -24
- package/modules/venn.js +2 -2
- package/modules/venn.src.js +42 -26
- package/modules/windbarb.js +2 -2
- package/modules/windbarb.src.js +50 -37
- package/modules/wordcloud.js +2 -2
- package/modules/wordcloud.src.js +34 -17
- package/modules/xrange.js +2 -2
- package/modules/xrange.src.js +43 -28
- package/options/abands.d.ts +722 -83
- package/options/abands.src.d.ts +722 -83
- package/options/ad.d.ts +381 -26
- package/options/ad.src.d.ts +381 -26
- package/options/ao.d.ts +744 -70
- package/options/ao.src.d.ts +744 -70
- package/options/apo.d.ts +381 -26
- package/options/apo.src.d.ts +381 -26
- package/options/arcdiagram.d.ts +80 -534
- package/options/arcdiagram.src.d.ts +80 -534
- package/options/area.d.ts +432 -129
- package/options/area.src.d.ts +432 -129
- package/options/arearange.d.ts +46 -4
- package/options/arearange.src.d.ts +46 -4
- package/options/areaspline.d.ts +141 -866
- package/options/areaspline.src.d.ts +141 -866
- package/options/areasplinerange.d.ts +221 -871
- package/options/areasplinerange.src.d.ts +221 -871
- package/options/aroon.d.ts +432 -124
- package/options/aroon.src.d.ts +432 -124
- package/options/aroonoscillator.d.ts +127 -689
- package/options/aroonoscillator.src.d.ts +127 -689
- package/options/atr.d.ts +381 -71
- package/options/atr.src.d.ts +381 -71
- package/options/bar.d.ts +103 -12
- package/options/bar.src.d.ts +103 -12
- package/options/bb.d.ts +87 -762
- package/options/bb.src.d.ts +87 -762
- package/options/bellcurve.d.ts +87 -364
- package/options/bellcurve.src.d.ts +87 -364
- package/options/boxplot.d.ts +82 -13
- package/options/boxplot.src.d.ts +82 -13
- package/options/bubble.d.ts +83 -874
- package/options/bubble.src.d.ts +83 -874
- package/options/bullet.d.ts +354 -717
- package/options/bullet.src.d.ts +354 -717
- package/options/candlestick.d.ts +99 -1214
- package/options/candlestick.src.d.ts +99 -1214
- package/options/cci.d.ts +381 -26
- package/options/cci.src.d.ts +381 -26
- package/options/chaikin.d.ts +728 -83
- package/options/chaikin.src.d.ts +728 -83
- package/options/cmf.d.ts +381 -26
- package/options/cmf.src.d.ts +381 -26
- package/options/cmo.d.ts +730 -79
- package/options/cmo.src.d.ts +730 -79
- package/options/column.d.ts +1265 -99
- package/options/column.src.d.ts +1265 -99
- package/options/columnpyramid.d.ts +102 -1158
- package/options/columnpyramid.src.d.ts +102 -1158
- package/options/columnrange.d.ts +952 -95
- package/options/columnrange.src.d.ts +952 -95
- package/options/contour.d.ts +31 -443
- package/options/contour.src.d.ts +31 -443
- package/options/cylinder.d.ts +100 -12
- package/options/cylinder.src.d.ts +100 -12
- package/options/dema.d.ts +80 -736
- package/options/dema.src.d.ts +80 -736
- package/options/dependencywheel.d.ts +599 -218
- package/options/dependencywheel.src.d.ts +599 -218
- package/options/disparityindex.d.ts +84 -365
- package/options/disparityindex.src.d.ts +84 -365
- package/options/dmi.d.ts +86 -775
- package/options/dmi.src.d.ts +86 -775
- package/options/dpo.d.ts +83 -365
- package/options/dpo.src.d.ts +83 -365
- package/options/dumbbell.d.ts +27 -4
- package/options/dumbbell.src.d.ts +27 -4
- package/options/ema.d.ts +81 -703
- package/options/ema.src.d.ts +81 -703
- package/options/errorbar.d.ts +91 -1161
- package/options/errorbar.src.d.ts +91 -1161
- package/options/flags.d.ts +98 -1192
- package/options/flags.src.d.ts +98 -1192
- package/options/flowmap.d.ts +48 -373
- package/options/flowmap.src.d.ts +48 -373
- package/options/funnel.d.ts +40 -3
- package/options/funnel.src.d.ts +40 -3
- package/options/gantt.d.ts +37 -40
- package/options/gantt.src.d.ts +37 -40
- package/options/gauge.d.ts +398 -472
- package/options/gauge.src.d.ts +398 -472
- package/options/geoheatmap.d.ts +462 -63
- package/options/geoheatmap.src.d.ts +462 -63
- package/options/heatmap.d.ts +31 -380
- package/options/heatmap.src.d.ts +31 -380
- package/options/heikinashi.d.ts +20 -2
- package/options/heikinashi.src.d.ts +20 -2
- package/options/hlc.d.ts +20 -2
- package/options/hlc.src.d.ts +20 -2
- package/options/ikh.d.ts +750 -103
- package/options/ikh.src.d.ts +750 -103
- package/options/item.d.ts +34 -74
- package/options/item.src.d.ts +34 -74
- package/options/keltnerchannels.d.ts +87 -708
- package/options/keltnerchannels.src.d.ts +87 -708
- package/options/klinger.d.ts +34 -365
- package/options/klinger.src.d.ts +34 -365
- package/options/line.d.ts +151 -851
- package/options/line.src.d.ts +151 -851
- package/options/linearregression.d.ts +960 -85
- package/options/linearregression.src.d.ts +960 -85
- package/options/linearregressionangle.d.ts +96 -699
- package/options/linearregressionangle.src.d.ts +96 -699
- package/options/linearregressionintercept.d.ts +381 -26
- package/options/linearregressionintercept.src.d.ts +381 -26
- package/options/linearregressionslope.d.ts +381 -26
- package/options/linearregressionslope.src.d.ts +381 -26
- package/options/lollipop.d.ts +214 -851
- package/options/lollipop.src.d.ts +214 -851
- package/options/macd.d.ts +386 -83
- package/options/macd.src.d.ts +386 -83
- package/options/map.d.ts +470 -36
- package/options/map.src.d.ts +470 -36
- package/options/mapbubble.d.ts +43 -532
- package/options/mapbubble.src.d.ts +43 -532
- package/options/mapline.d.ts +135 -58
- package/options/mapline.src.d.ts +135 -58
- package/options/mappoint.d.ts +205 -283
- package/options/mappoint.src.d.ts +205 -283
- package/options/mfi.d.ts +772 -82
- package/options/mfi.src.d.ts +772 -82
- package/options/momentum.d.ts +381 -71
- package/options/momentum.src.d.ts +381 -71
- package/options/natr.d.ts +776 -75
- package/options/natr.src.d.ts +776 -75
- package/options/networkgraph.d.ts +184 -207
- package/options/networkgraph.src.d.ts +184 -207
- package/options/obv.d.ts +426 -26
- package/options/obv.src.d.ts +426 -26
- package/options/ohlc.d.ts +77 -14
- package/options/ohlc.src.d.ts +77 -14
- package/options/packedbubble.d.ts +76 -696
- package/options/packedbubble.src.d.ts +76 -696
- package/options/pareto.d.ts +28 -364
- package/options/pareto.src.d.ts +28 -364
- package/options/pc.d.ts +724 -85
- package/options/pc.src.d.ts +724 -85
- package/options/pictorial.d.ts +1093 -58
- package/options/pictorial.src.d.ts +1093 -58
- package/options/pie.d.ts +595 -129
- package/options/pie.src.d.ts +595 -129
- package/options/pivotpoints.d.ts +34 -365
- package/options/pivotpoints.src.d.ts +34 -365
- package/options/pointandfigure.d.ts +10 -50
- package/options/pointandfigure.src.d.ts +10 -50
- package/options/polygon.d.ts +803 -74
- package/options/polygon.src.d.ts +803 -74
- package/options/ppo.d.ts +34 -365
- package/options/ppo.src.d.ts +34 -365
- package/options/priceenvelopes.d.ts +93 -719
- package/options/priceenvelopes.src.d.ts +93 -719
- package/options/psar.d.ts +34 -365
- package/options/psar.src.d.ts +34 -365
- package/options/pyramid.d.ts +35 -3
- package/options/pyramid.src.d.ts +35 -3
- package/options/renko.d.ts +25 -2
- package/options/renko.src.d.ts +25 -2
- package/options/roc.d.ts +78 -712
- package/options/roc.src.d.ts +78 -712
- package/options/rsi.d.ts +34 -365
- package/options/rsi.src.d.ts +34 -365
- package/options/sankey.d.ts +27 -5
- package/options/sankey.src.d.ts +27 -5
- package/options/scatter.d.ts +896 -290
- package/options/scatter.src.d.ts +896 -290
- package/options/series.d.ts +938 -83
- package/options/series.src.d.ts +938 -83
- package/options/slowstochastic.d.ts +381 -26
- package/options/slowstochastic.src.d.ts +381 -26
- package/options/sma.d.ts +729 -79
- package/options/sma.src.d.ts +729 -79
- package/options/solidgauge.d.ts +882 -105
- package/options/solidgauge.src.d.ts +882 -105
- package/options/spline.d.ts +389 -90
- package/options/spline.src.d.ts +389 -90
- package/options/stochastic.d.ts +83 -716
- package/options/stochastic.src.d.ts +83 -716
- package/options/streamgraph.d.ts +97 -364
- package/options/streamgraph.src.d.ts +97 -364
- package/options/sunburst.d.ts +87 -19
- package/options/sunburst.src.d.ts +87 -19
- package/options/supertrend.d.ts +77 -749
- package/options/supertrend.src.d.ts +77 -749
- package/options/tema.d.ts +83 -365
- package/options/tema.src.d.ts +83 -365
- package/options/tiledwebmap.d.ts +13 -72
- package/options/tiledwebmap.src.d.ts +13 -72
- package/options/tilemap.d.ts +372 -533
- package/options/tilemap.src.d.ts +372 -533
- package/options/timeline.d.ts +49 -154
- package/options/timeline.src.d.ts +49 -154
- package/options/treegraph.d.ts +174 -696
- package/options/treegraph.src.d.ts +174 -696
- package/options/treemap.d.ts +468 -1079
- package/options/treemap.src.d.ts +468 -1079
- package/options/trendline.d.ts +381 -26
- package/options/trendline.src.d.ts +381 -26
- package/options/trix.d.ts +712 -82
- package/options/trix.src.d.ts +712 -82
- package/options/variablepie.d.ts +130 -587
- package/options/variablepie.src.d.ts +130 -587
- package/options/variwide.d.ts +1123 -94
- package/options/variwide.src.d.ts +1123 -94
- package/options/vbp.d.ts +57 -383
- package/options/vbp.src.d.ts +57 -383
- package/options/vector.d.ts +22 -58
- package/options/vector.src.d.ts +22 -58
- package/options/venn.d.ts +32 -78
- package/options/venn.src.d.ts +32 -78
- package/options/vwap.d.ts +122 -703
- package/options/vwap.src.d.ts +122 -703
- package/options/waterfall.d.ts +139 -1150
- package/options/waterfall.src.d.ts +139 -1150
- package/options/williamsr.d.ts +381 -76
- package/options/williamsr.src.d.ts +381 -76
- package/options/windbarb.d.ts +39 -2
- package/options/windbarb.src.d.ts +39 -2
- package/options/wma.d.ts +78 -704
- package/options/wma.src.d.ts +78 -704
- package/options/wordcloud.d.ts +98 -595
- package/options/wordcloud.src.d.ts +98 -595
- package/options/xrange.d.ts +166 -1056
- package/options/xrange.src.d.ts +166 -1056
- package/options/zigzag.d.ts +34 -410
- package/options/zigzag.src.d.ts +34 -410
- package/package.json +3 -2
- package/standalone-navigator.js +4 -4
- package/standalone-navigator.src.js +482 -312
- package/themes/adaptive.js +2 -2
- package/themes/adaptive.src.js +33 -18
- package/themes/avocado.js +2 -2
- package/themes/avocado.src.js +28 -13
- package/themes/dark-unica.js +2 -2
- package/themes/dark-unica.src.js +28 -13
- package/themes/grid-light.js +2 -2
- package/themes/grid-light.src.js +28 -13
- package/themes/high-contrast.js +2 -2
- package/themes/high-contrast.src.js +28 -13
- package/themes/sand-signika.js +2 -2
- package/themes/sand-signika.src.js +28 -13
- package/themes/sunset.js +2 -2
- package/themes/sunset.src.js +28 -13
- package/css/.stylelintrc.json +0 -8
package/bower.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "highcharts",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.1",
|
|
4
4
|
"main": "highcharts.js",
|
|
5
5
|
"license": "https://www.highcharts.com/license",
|
|
6
6
|
"types": "highcharts.d.ts",
|
|
@@ -15,5 +15,6 @@
|
|
|
15
15
|
"svg2pdf.js": {
|
|
16
16
|
"optional": true
|
|
17
17
|
}
|
|
18
|
-
}
|
|
18
|
+
},
|
|
19
|
+
"module": "esm/highcharts.js"
|
|
19
20
|
}
|
package/css/highcharts.css
CHANGED
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
}
|
|
322
322
|
|
|
323
323
|
.highcharts-tooltip text,
|
|
324
|
-
.highcharts-tooltip foreignObject div {
|
|
324
|
+
.highcharts-tooltip foreignObject div:not(foreignObject > div) {
|
|
325
325
|
fill: var(--highcharts-neutral-color-80);
|
|
326
326
|
font-size: 0.8em;
|
|
327
327
|
}
|
|
@@ -1283,6 +1283,7 @@ text.highcharts-drilldown-data-label,
|
|
|
1283
1283
|
margin: 0;
|
|
1284
1284
|
display: block;
|
|
1285
1285
|
position: absolute;
|
|
1286
|
+
pointer-events: none;
|
|
1286
1287
|
}
|
|
1287
1288
|
|
|
1288
1289
|
.highcharts-a11y-proxy-group li {
|
|
@@ -17,7 +17,7 @@ const { defaultOptions } = D;
|
|
|
17
17
|
import H from '../Core/Globals.js';
|
|
18
18
|
const { doc } = H;
|
|
19
19
|
import HU from './Utils/HTMLUtilities.js';
|
|
20
|
-
const { removeElement } = HU;
|
|
20
|
+
const { escapeStringForHTML, removeElement, stripHTMLTagsFromString } = HU;
|
|
21
21
|
import A11yI18n from './A11yI18n.js';
|
|
22
22
|
import ContainerComponent from './Components/ContainerComponent.js';
|
|
23
23
|
import FocusBorderComposition from './FocusBorder.js';
|
|
@@ -261,6 +261,42 @@ class Accessibility {
|
|
|
261
261
|
});
|
|
262
262
|
}
|
|
263
263
|
}
|
|
264
|
+
/**
|
|
265
|
+
* Inject the accessibility description into the exported SVG as a
|
|
266
|
+
* Dublin Core RDF metadata block. Runs on the source chart so the
|
|
267
|
+
* `linkedDescription` selector resolves against the live DOM, then
|
|
268
|
+
* mutates the export copy's `<svg>` element before its `innerHTML`
|
|
269
|
+
* is serialized.
|
|
270
|
+
* @private
|
|
271
|
+
*/
|
|
272
|
+
function chartOnGetSVG(e) {
|
|
273
|
+
const a11y = this.accessibility;
|
|
274
|
+
if (!a11y || a11y.zombie) {
|
|
275
|
+
return;
|
|
276
|
+
}
|
|
277
|
+
const infoRegions = a11y.components.infoRegions;
|
|
278
|
+
const text = infoRegions && (infoRegions.getLongdescText() ||
|
|
279
|
+
infoRegions.getTypeDescriptionText());
|
|
280
|
+
if (!text) {
|
|
281
|
+
return;
|
|
282
|
+
}
|
|
283
|
+
const safe = escapeStringForHTML(stripHTMLTagsFromString(text, true));
|
|
284
|
+
if (!safe.trim()) {
|
|
285
|
+
return;
|
|
286
|
+
}
|
|
287
|
+
const box = e.chartCopy.renderer.box;
|
|
288
|
+
box.querySelector(':scope > metadata')?.remove();
|
|
289
|
+
box.insertAdjacentHTML('afterbegin', '<metadata>' +
|
|
290
|
+
'<rdf:RDF ' +
|
|
291
|
+
'xmlns:rdf="http://www.w3.org/' +
|
|
292
|
+
'1999/02/22-rdf-syntax-ns#" ' +
|
|
293
|
+
'xmlns:dc="http://purl.org/dc/elements/1.1/">' +
|
|
294
|
+
'<rdf:Description>' +
|
|
295
|
+
'<dc:description>' + safe + '</dc:description>' +
|
|
296
|
+
'</rdf:Description>' +
|
|
297
|
+
'</rdf:RDF>' +
|
|
298
|
+
'</metadata>');
|
|
299
|
+
}
|
|
264
300
|
/**
|
|
265
301
|
* Update with chart/series/point updates.
|
|
266
302
|
* @private
|
|
@@ -348,6 +384,7 @@ class Accessibility {
|
|
|
348
384
|
addEvent(ChartClass, 'destroy', chartOnDestroy);
|
|
349
385
|
addEvent(ChartClass, 'render', chartOnRender);
|
|
350
386
|
addEvent(ChartClass, 'update', chartOnUpdate);
|
|
387
|
+
addEvent(ChartClass, 'getSVG', chartOnGetSVG);
|
|
351
388
|
// Mark dirty for update
|
|
352
389
|
['addSeries', 'init'].forEach((event) => {
|
|
353
390
|
addEvent(ChartClass, event, function () {
|
|
@@ -12,8 +12,7 @@
|
|
|
12
12
|
*
|
|
13
13
|
* */
|
|
14
14
|
'use strict';
|
|
15
|
-
import
|
|
16
|
-
const { animObject } = A;
|
|
15
|
+
import { animObject } from '../../Core/Animation/AnimationUtilities.js';
|
|
17
16
|
import H from '../../Core/Globals.js';
|
|
18
17
|
const { doc } = H;
|
|
19
18
|
import Legend from '../../Core/Legend/Legend.js';
|
|
@@ -21,8 +21,7 @@ import AccessibilityComponent from '../AccessibilityComponent.js';
|
|
|
21
21
|
import Announcer from '../Utils/Announcer.js';
|
|
22
22
|
import KeyboardNavigationHandler from '../KeyboardNavigationHandler.js';
|
|
23
23
|
import Navigator from '../../Stock/Navigator/Navigator.js';
|
|
24
|
-
import
|
|
25
|
-
const { animObject } = A;
|
|
24
|
+
import { animObject } from '../../Core/Animation/AnimationUtilities.js';
|
|
26
25
|
import T from '../../Core/Templating.js';
|
|
27
26
|
const { format } = T;
|
|
28
27
|
import HU from '../Utils/HTMLUtilities.js';
|
|
@@ -74,15 +74,19 @@ function isSkipSeries(series) {
|
|
|
74
74
|
* @private
|
|
75
75
|
*/
|
|
76
76
|
function isSkipPoint(point) {
|
|
77
|
-
const series = point.series, nullInteraction = series.options.nullInteraction, pointOptions = point.options, pointA11yOptions = pointOptions.accessibility, a11yOptions = series.chart.options.accessibility, pointA11yDisabled = pointA11yOptions?.enabled === false
|
|
78
|
-
|
|
77
|
+
const series = point.series, nullInteraction = series.options.nullInteraction, pointOptions = point.options, pointA11yOptions = pointOptions.accessibility, a11yOptions = series.chart.options.accessibility, pointA11yDisabled = pointA11yOptions?.enabled === false,
|
|
78
|
+
// Whether to skip null points. If the user did not set this
|
|
79
|
+
// option, use the opposite of nullInteraction as the default
|
|
80
|
+
// (#24650).
|
|
81
|
+
skipNullPoints = a11yOptions
|
|
79
82
|
.keyboardNavigation
|
|
80
83
|
.seriesNavigation
|
|
81
|
-
.skipNullPoints ??
|
|
84
|
+
.skipNullPoints ?? !nullInteraction;
|
|
85
|
+
return point.isNull && skipNullPoints ||
|
|
82
86
|
point.visible === false ||
|
|
83
87
|
point.isInside === false ||
|
|
84
88
|
pointA11yDisabled ||
|
|
85
|
-
isSkipSeries(series)
|
|
89
|
+
isSkipSeries(series);
|
|
86
90
|
}
|
|
87
91
|
/**
|
|
88
92
|
* Get the first point that is not a skip point in this series.
|
|
@@ -458,8 +458,11 @@ const Options = {
|
|
|
458
458
|
* Alternatively, the HTML element to link can be passed in directly as
|
|
459
459
|
* an HTML node.
|
|
460
460
|
*
|
|
461
|
-
*
|
|
462
|
-
*
|
|
461
|
+
* When the Exporting module is also loaded, the description
|
|
462
|
+
* is embedded in the exported SVG as a Dublin Core
|
|
463
|
+
* RDF `<metadata>` block, so it is preserved in downloaded images
|
|
464
|
+
* for indexers and machine readers. If you need a visible caption
|
|
465
|
+
* in the exported image, use the [caption](#caption) feature.
|
|
463
466
|
*
|
|
464
467
|
* If you need the description to be hidden visually, use the
|
|
465
468
|
* [accessibility.description](#accessibility.description) option.
|
|
@@ -520,7 +523,13 @@ const Options = {
|
|
|
520
523
|
*
|
|
521
524
|
* If the Accessibility module is loaded, this option is included by
|
|
522
525
|
* default as a long description of the chart in the hidden screen
|
|
523
|
-
* reader information region.
|
|
526
|
+
* reader information region. When the Exporting module is also loaded,
|
|
527
|
+
* it is embedded into exported SVGs as a Dublin Core RDF `<metadata>`
|
|
528
|
+
* block, so the description is preserved in downloaded images
|
|
529
|
+
* for indexers and machine readers. The embedded value falls back
|
|
530
|
+
* through [linkedDescription](#accessibility.linkedDescription),
|
|
531
|
+
* [caption.text](#caption.text), and finally the generated
|
|
532
|
+
* chart-type description.
|
|
524
533
|
*
|
|
525
534
|
* Note: Since Highcharts now supports captions and linked descriptions,
|
|
526
535
|
* it is preferred to define the description using those methods, as a
|
|
@@ -33,7 +33,7 @@ import { defined, getStyle, isArray, isNumber, isObject, merge, objectEach, pick
|
|
|
33
33
|
* This function always relates to a chart, and sets a property on the renderer,
|
|
34
34
|
* so it should be moved to the SVGRenderer.
|
|
35
35
|
*/
|
|
36
|
-
function setAnimation(animation, chart) {
|
|
36
|
+
export function setAnimation(animation, chart) {
|
|
37
37
|
chart.renderer.globalAnimation = pick(animation, chart.options.chart.animation, true);
|
|
38
38
|
}
|
|
39
39
|
/**
|
|
@@ -72,7 +72,7 @@ export function animObject(animation) {
|
|
|
72
72
|
* @return {number}
|
|
73
73
|
* The numeric value.
|
|
74
74
|
*/
|
|
75
|
-
function getDeferredAnimation(chart, animation, series) {
|
|
75
|
+
export function getDeferredAnimation(chart, animation, series) {
|
|
76
76
|
const labelAnimation = animObject(animation), s = series ? [series] : chart.series;
|
|
77
77
|
let defer = 0, duration = 0;
|
|
78
78
|
s.forEach((series) => {
|
|
@@ -95,6 +95,11 @@ function getDeferredAnimation(chart, animation, series) {
|
|
|
95
95
|
/**
|
|
96
96
|
* The global animate method, which uses Fx to create individual animators.
|
|
97
97
|
*
|
|
98
|
+
* @sample highcharts/members/renderer-basic
|
|
99
|
+
* SVG elements with animation
|
|
100
|
+
* @sample highcharts/members/animate
|
|
101
|
+
* Animation without an owner element
|
|
102
|
+
*
|
|
98
103
|
* @function Highcharts.animate
|
|
99
104
|
*
|
|
100
105
|
* @param {Highcharts.HTMLDOMElement|Highcharts.SVGElement} el
|
|
@@ -110,14 +115,12 @@ function getDeferredAnimation(chart, animation, series) {
|
|
|
110
115
|
*
|
|
111
116
|
* @return {void}
|
|
112
117
|
*/
|
|
113
|
-
function animate(el, params, opt) {
|
|
114
|
-
let start, unit = '', end, fx, args;
|
|
118
|
+
export function animate(el, params = { pos: 1 }, opt) {
|
|
115
119
|
if (!isObject(opt)) { // Number or undefined/null
|
|
116
|
-
args = arguments;
|
|
117
120
|
opt = {
|
|
118
|
-
duration:
|
|
119
|
-
easing:
|
|
120
|
-
complete:
|
|
121
|
+
duration: arguments[2],
|
|
122
|
+
easing: arguments[3],
|
|
123
|
+
complete: arguments[4]
|
|
121
124
|
};
|
|
122
125
|
}
|
|
123
126
|
if (!isNumber(opt.duration)) {
|
|
@@ -127,22 +130,23 @@ function animate(el, params, opt) {
|
|
|
127
130
|
opt.easing :
|
|
128
131
|
(Math[opt.easing] || Math.easeInOutSine);
|
|
129
132
|
opt.curAnim = merge(params);
|
|
130
|
-
objectEach(params,
|
|
133
|
+
objectEach(params, (val, prop) => {
|
|
131
134
|
// Stop current running animation of this property
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
135
|
+
if (el) {
|
|
136
|
+
stop(el, prop);
|
|
137
|
+
}
|
|
138
|
+
const fx = new Fx(el, opt, prop), d = params.d;
|
|
139
|
+
let start = 0, end = void 0, unit = '';
|
|
140
|
+
if (prop === 'd' && isArray(d)) {
|
|
141
|
+
fx.paths = fx.initPath(el, el.pathArray, d);
|
|
142
|
+
fx.toD = d;
|
|
139
143
|
end = 1;
|
|
140
144
|
}
|
|
141
|
-
else if (el
|
|
145
|
+
else if (el?.attr) {
|
|
142
146
|
start = el.attr(prop);
|
|
143
147
|
}
|
|
144
|
-
else {
|
|
145
|
-
start =
|
|
148
|
+
else if (el) {
|
|
149
|
+
start = +(getStyle(el, prop) || 0);
|
|
146
150
|
if (prop !== 'opacity') {
|
|
147
151
|
unit = 'px';
|
|
148
152
|
}
|
|
@@ -153,7 +157,10 @@ function animate(el, params, opt) {
|
|
|
153
157
|
if (typeof end === 'string' && end.match('px')) {
|
|
154
158
|
end = end.replace(/px/g, ''); // #4351
|
|
155
159
|
}
|
|
156
|
-
|
|
160
|
+
// Empty dashstyle animation crashes treemap on hover
|
|
161
|
+
if (defined(end)) {
|
|
162
|
+
fx.run(start, end, unit);
|
|
163
|
+
}
|
|
157
164
|
});
|
|
158
165
|
}
|
|
159
166
|
/**
|
|
@@ -177,28 +184,11 @@ function animate(el, params, opt) {
|
|
|
177
184
|
* improvement in all cases where we stop the animation from .attr. Instead of
|
|
178
185
|
* stopping everything, we can just stop the actual attributes we're setting.
|
|
179
186
|
*/
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
while (i--) {
|
|
184
|
-
if (Fx.timers[i].elem === el && (!prop || prop === Fx.timers[i].prop)) {
|
|
185
|
-
Fx.timers[i].stopped = true; // #4667
|
|
186
|
-
}
|
|
187
|
+
export const stop = (el, prop) => Fx.timers.forEach((timer) => {
|
|
188
|
+
if (timer.elem === el && (!prop || prop === timer.prop)) {
|
|
189
|
+
timer.stopped = true; // #4667
|
|
187
190
|
}
|
|
188
|
-
}
|
|
189
|
-
const animationExports = {
|
|
190
|
-
animate,
|
|
191
|
-
animObject,
|
|
192
|
-
getDeferredAnimation,
|
|
193
|
-
setAnimation,
|
|
194
|
-
stop
|
|
195
|
-
};
|
|
196
|
-
/* *
|
|
197
|
-
*
|
|
198
|
-
* Default Export
|
|
199
|
-
*
|
|
200
|
-
* */
|
|
201
|
-
export default animationExports;
|
|
191
|
+
});
|
|
202
192
|
/* *
|
|
203
193
|
*
|
|
204
194
|
* API Options
|
|
@@ -117,24 +117,22 @@ class Fx {
|
|
|
117
117
|
*/
|
|
118
118
|
update() {
|
|
119
119
|
const elem = this.elem, prop = this.prop, // If destroyed, it is null
|
|
120
|
-
now = this.now, step = this.options.step;
|
|
120
|
+
now = this.now ?? 1, step = this.options.step;
|
|
121
121
|
// Animation setter defined from outside
|
|
122
122
|
if (this[prop + 'Setter']) {
|
|
123
123
|
this[prop + 'Setter']();
|
|
124
124
|
// Other animations on SVGElement
|
|
125
125
|
}
|
|
126
|
-
else if (elem.attr) {
|
|
126
|
+
else if (elem && elem.attr) {
|
|
127
127
|
if (elem.element) {
|
|
128
|
-
elem.attr(prop, now,
|
|
128
|
+
elem.attr(prop, now, void 0, true);
|
|
129
129
|
}
|
|
130
130
|
// HTML styles, raw HTML content like container size
|
|
131
131
|
}
|
|
132
|
-
else {
|
|
133
|
-
elem.style[prop] = now + this.unit;
|
|
134
|
-
}
|
|
135
|
-
if (step) {
|
|
136
|
-
step.call(elem, now, this);
|
|
132
|
+
else if (elem) {
|
|
133
|
+
elem.style[prop] = now + (this.unit || '');
|
|
137
134
|
}
|
|
135
|
+
step?.call(elem, now, this);
|
|
138
136
|
}
|
|
139
137
|
/**
|
|
140
138
|
* Run an animation.
|
|
@@ -152,12 +150,10 @@ class Fx {
|
|
|
152
150
|
*
|
|
153
151
|
*/
|
|
154
152
|
run(from, to, unit) {
|
|
155
|
-
const
|
|
156
|
-
return timer.stopped ? false : self.step(gotoEnd);
|
|
157
|
-
}, requestAnimationFrame = win.requestAnimationFrame ||
|
|
153
|
+
const { elem, options } = this, { complete, curAnim = {} } = options, timer = (gotoEnd) => (timer.stopped ? false : this.step(gotoEnd)), requestAnimationFrame = win.requestAnimationFrame ||
|
|
158
154
|
function (step) {
|
|
159
155
|
setTimeout(step, 13);
|
|
160
|
-
}, step =
|
|
156
|
+
}, step = () => {
|
|
161
157
|
for (let i = 0; i < Fx.timers.length; i++) {
|
|
162
158
|
if (!Fx.timers[i]()) {
|
|
163
159
|
Fx.timers.splice(i--, 1);
|
|
@@ -167,11 +163,11 @@ class Fx {
|
|
|
167
163
|
requestAnimationFrame(step);
|
|
168
164
|
}
|
|
169
165
|
};
|
|
170
|
-
if (from === to && !
|
|
171
|
-
delete
|
|
172
|
-
if (
|
|
173
|
-
Object.keys(
|
|
174
|
-
|
|
166
|
+
if (from === to && !elem['forceAnimate:' + this.prop]) {
|
|
167
|
+
delete curAnim[this.prop];
|
|
168
|
+
if (complete &&
|
|
169
|
+
Object.keys(curAnim).length === 0) {
|
|
170
|
+
complete.call(elem);
|
|
175
171
|
}
|
|
176
172
|
}
|
|
177
173
|
else { // #7166
|
|
@@ -181,7 +177,7 @@ class Fx {
|
|
|
181
177
|
this.unit = unit;
|
|
182
178
|
this.now = this.start;
|
|
183
179
|
this.pos = 0;
|
|
184
|
-
timer.elem =
|
|
180
|
+
timer.elem = elem;
|
|
185
181
|
timer.prop = this.prop;
|
|
186
182
|
if (timer() && Fx.timers.push(timer) === 1) {
|
|
187
183
|
requestAnimationFrame(step);
|
|
@@ -202,7 +198,8 @@ class Fx {
|
|
|
202
198
|
step(gotoEnd) {
|
|
203
199
|
const t = +new Date(), options = this.options, elem = this.elem, complete = options.complete, duration = options.duration, curAnim = options.curAnim;
|
|
204
200
|
let ret, done;
|
|
205
|
-
|
|
201
|
+
// #2616, element is destroyed
|
|
202
|
+
if (elem?.attr && !elem.element) {
|
|
206
203
|
ret = false;
|
|
207
204
|
}
|
|
208
205
|
else if (gotoEnd || t >= duration + this.startTime) {
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
*
|
|
11
11
|
* */
|
|
12
12
|
'use strict';
|
|
13
|
-
import
|
|
14
|
-
const { animObject } = A;
|
|
13
|
+
import { animObject } from '../Animation/AnimationUtilities.js';
|
|
15
14
|
import AxisDefaults from './AxisDefaults.js';
|
|
16
15
|
const { xAxis, yAxis } = AxisDefaults;
|
|
17
16
|
import Color from '../Color/Color.js';
|
|
@@ -530,6 +530,7 @@ var AxisDefaults;
|
|
|
530
530
|
*/
|
|
531
531
|
dateTimeLabelFormats: {
|
|
532
532
|
/**
|
|
533
|
+
* @type {Highcharts.AxisDateTimeLabelFormatsOptionsObject|string}
|
|
533
534
|
* @declare Highcharts.AxisDateTimeLabelFormatsOptionsObject
|
|
534
535
|
*/
|
|
535
536
|
millisecond: {
|
|
@@ -555,6 +556,7 @@ var AxisDefaults;
|
|
|
555
556
|
range: false
|
|
556
557
|
},
|
|
557
558
|
/**
|
|
559
|
+
* @type {Highcharts.AxisDateTimeLabelFormatsOptionsObject|string}
|
|
558
560
|
* @declare Highcharts.AxisDateTimeLabelFormatsOptionsObject
|
|
559
561
|
*/
|
|
560
562
|
second: {
|
|
@@ -580,6 +582,7 @@ var AxisDefaults;
|
|
|
580
582
|
range: false
|
|
581
583
|
},
|
|
582
584
|
/**
|
|
585
|
+
* @type {Highcharts.AxisDateTimeLabelFormatsOptionsObject|string}
|
|
583
586
|
* @declare Highcharts.AxisDateTimeLabelFormatsOptionsObject
|
|
584
587
|
*/
|
|
585
588
|
minute: {
|
|
@@ -605,6 +608,7 @@ var AxisDefaults;
|
|
|
605
608
|
range: false
|
|
606
609
|
},
|
|
607
610
|
/**
|
|
611
|
+
* @type {Highcharts.AxisDateTimeLabelFormatsOptionsObject|string}
|
|
608
612
|
* @declare Highcharts.AxisDateTimeLabelFormatsOptionsObject
|
|
609
613
|
*/
|
|
610
614
|
hour: {
|
|
@@ -637,6 +641,7 @@ var AxisDefaults;
|
|
|
637
641
|
range: false
|
|
638
642
|
},
|
|
639
643
|
/**
|
|
644
|
+
* @type {Highcharts.AxisDateTimeLabelFormatsOptionsObject|string}
|
|
640
645
|
* @declare Highcharts.AxisDateTimeLabelFormatsOptionsObject
|
|
641
646
|
*/
|
|
642
647
|
day: {
|
|
@@ -659,6 +664,7 @@ var AxisDefaults;
|
|
|
659
664
|
boundary: '%[eb]'
|
|
660
665
|
},
|
|
661
666
|
/**
|
|
667
|
+
* @type {Highcharts.AxisDateTimeLabelFormatsOptionsObject|string}
|
|
662
668
|
* @declare Highcharts.AxisDateTimeLabelFormatsOptionsObject
|
|
663
669
|
*/
|
|
664
670
|
week: {
|
|
@@ -674,6 +680,7 @@ var AxisDefaults;
|
|
|
674
680
|
main: '%[eb]'
|
|
675
681
|
},
|
|
676
682
|
/**
|
|
683
|
+
* @type {Highcharts.AxisDateTimeLabelFormatsOptionsObject|string}
|
|
677
684
|
* @declare Highcharts.AxisDateTimeLabelFormatsOptionsObject
|
|
678
685
|
*/
|
|
679
686
|
month: {
|
|
@@ -696,6 +703,7 @@ var AxisDefaults;
|
|
|
696
703
|
boundary: void 0
|
|
697
704
|
},
|
|
698
705
|
/**
|
|
706
|
+
* @type {Highcharts.AxisDateTimeLabelFormatsOptionsObject|string}
|
|
699
707
|
* @declare Highcharts.AxisDateTimeLabelFormatsOptionsObject
|
|
700
708
|
*/
|
|
701
709
|
year: {
|
|
@@ -1511,7 +1519,7 @@ var AxisDefaults;
|
|
|
1511
1519
|
* @sample {highstock} stock/xaxis/offset/
|
|
1512
1520
|
* Y axis offset by 70 px
|
|
1513
1521
|
*
|
|
1514
|
-
* @type {number}
|
|
1522
|
+
* @type {number|string}
|
|
1515
1523
|
*/
|
|
1516
1524
|
offset: void 0,
|
|
1517
1525
|
/**
|
|
@@ -3161,7 +3169,9 @@ var AxisDefaults;
|
|
|
3161
3169
|
* @product highcharts
|
|
3162
3170
|
*/
|
|
3163
3171
|
style: {
|
|
3164
|
-
/**
|
|
3172
|
+
/**
|
|
3173
|
+
* @type {Highcharts.ColorType}
|
|
3174
|
+
*/
|
|
3165
3175
|
color: 'var(--highcharts-neutral-color-100)',
|
|
3166
3176
|
/**
|
|
3167
3177
|
* @type {number|string}
|
|
@@ -415,9 +415,14 @@ class ColorAxis extends Axis {
|
|
|
415
415
|
const axis = this, left = axis.left, pos = options.translatedValue, { symbol } = this.options.marker || {}, top = axis.top;
|
|
416
416
|
// Crosshairs only
|
|
417
417
|
if (isNumber(pos)) {
|
|
418
|
-
const x = left, w = axis.width, y = pos - w / 2, h = w;
|
|
419
418
|
if (symbol) {
|
|
420
|
-
|
|
419
|
+
let w = axis.height, x = pos - w / 2, y = top;
|
|
420
|
+
if (!axis.horiz) {
|
|
421
|
+
w = axis.width;
|
|
422
|
+
x = left;
|
|
423
|
+
y = pos - w / 2;
|
|
424
|
+
}
|
|
425
|
+
return this.chart.renderer.symbols[symbol](x, y, w, w);
|
|
421
426
|
}
|
|
422
427
|
// Default to a triangle pointing to the value
|
|
423
428
|
return (axis.horiz ? [
|
|
@@ -241,7 +241,7 @@ export var ColorAxisComposition;
|
|
|
241
241
|
* @internal
|
|
242
242
|
*/
|
|
243
243
|
function wrapFxFillSetter() {
|
|
244
|
-
this.elem.attr('fill', color(this.start).tweenTo(color(this.end), this.pos), void 0, true);
|
|
244
|
+
(this.elem.attr)('fill', color(this.start).tweenTo(color(this.end), this.pos), void 0, true);
|
|
245
245
|
}
|
|
246
246
|
/**
|
|
247
247
|
* Handle animation of the color attributes directly.
|
|
@@ -662,6 +662,11 @@ function onChartAfterSetChartSize() {
|
|
|
662
662
|
/** @internal */
|
|
663
663
|
function onDestroy(e) {
|
|
664
664
|
const { grid } = this;
|
|
665
|
+
// Axes created before the Gantt module was loaded have no grid
|
|
666
|
+
// additions to be destroyed (#24644).
|
|
667
|
+
if (!grid) {
|
|
668
|
+
return;
|
|
669
|
+
}
|
|
665
670
|
(grid.columns || []).forEach((column) => column.destroy(e.keepEvents));
|
|
666
671
|
grid.columns = void 0;
|
|
667
672
|
}
|
|
@@ -681,7 +686,9 @@ function onInit(e) {
|
|
|
681
686
|
}
|
|
682
687
|
axis.hiddenLabels = [];
|
|
683
688
|
axis.hiddenMarks = [];
|
|
684
|
-
|
|
689
|
+
if (gridOptions.enabled) {
|
|
690
|
+
axis.clippable = false;
|
|
691
|
+
}
|
|
685
692
|
}
|
|
686
693
|
/**
|
|
687
694
|
* Center tick labels in cells.
|
|
@@ -379,11 +379,19 @@ var OrdinalAxis;
|
|
|
379
379
|
// Make sure panning to the edges does not decrease the zoomed range
|
|
380
380
|
if ((min <= dataMin && movedUnits <= 0) ||
|
|
381
381
|
(max >= dataMax + overscroll && movedUnits >= 0)) {
|
|
382
|
-
|
|
383
|
-
|
|
382
|
+
// At the x-axis data edge, with vertical panning enabled, fall
|
|
383
|
+
// back to the base pan so the y-axis can still be panned,
|
|
384
|
+
// otherwise block panning past the edge, #24716
|
|
385
|
+
if (panning && /y/.test(panning.type)) {
|
|
386
|
+
runBase = true;
|
|
387
|
+
}
|
|
388
|
+
else {
|
|
389
|
+
e.preventDefault();
|
|
390
|
+
return;
|
|
391
|
+
}
|
|
392
|
+
// We have an ordinal axis, but the data is equally spaced
|
|
384
393
|
}
|
|
385
|
-
|
|
386
|
-
if (!extendedAxis.ordinal.positions) {
|
|
394
|
+
else if (!extendedAxis.ordinal.positions) {
|
|
387
395
|
runBase = true;
|
|
388
396
|
}
|
|
389
397
|
else if (Math.abs(movedUnits) > 1) {
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
* */
|
|
12
12
|
'use strict';
|
|
13
13
|
import RadialAxisDefaults from './RadialAxisDefaults.js';
|
|
14
|
-
import {
|
|
14
|
+
import { borderRadiusObject } from '../../Extensions/BorderRadius.js';
|
|
15
15
|
import D from '../Defaults.js';
|
|
16
16
|
const { defaultOptions } = D;
|
|
17
17
|
import H from '../Globals.js';
|
|
18
18
|
const { composed, noop } = H;
|
|
19
|
-
import { addEvent, correctFloat, defined, extend, fireEvent, isNumber, isObject, merge, pick, pushUnique, relativeLength, splat, wrap } from '../../Shared/Utilities.js';
|
|
19
|
+
import { addEvent, clamp, correctFloat, defined, extend, fireEvent, isNumber, isObject, merge, pick, pushUnique, relativeLength, splat, wrap } from '../../Shared/Utilities.js';
|
|
20
20
|
/* *
|
|
21
21
|
*
|
|
22
22
|
* Composition
|
|
@@ -238,7 +238,7 @@ var RadialAxis;
|
|
|
238
238
|
return r;
|
|
239
239
|
}
|
|
240
240
|
return radius;
|
|
241
|
-
}, center = this.center, { endAngleRad, startAngleRad } = this, borderRadius =
|
|
241
|
+
}, center = this.center, { endAngleRad, startAngleRad } = this, borderRadius = borderRadiusObject(options.borderRadius ??
|
|
242
242
|
this.pane.options.borderRadius), fullRadius = center[2] / 2, offset = Math.min(this.offset || 0, 0), left = this.left || 0, top = this.top || 0, percentRegex = /%$/, isCircular = this.isCircular, // X axis in a polar chart
|
|
243
243
|
trueBands = this.options.plotBands || [], index = trueBands.indexOf(options);
|
|
244
244
|
let start, end, angle, xOnPerimeter, open, path, outerRadius = pick(radiusToPixels(options.outerRadius), fullRadius), innerRadius = radiusToPixels(options.innerRadius), thickness = radiusToPixels(options.thickness), brStart = true, brEnd = true;
|
|
@@ -374,17 +374,12 @@ var RadialAxis;
|
|
|
374
374
|
// Concentric circles
|
|
375
375
|
}
|
|
376
376
|
else {
|
|
377
|
-
// Pick the right values depending if it is grid line or crosshair
|
|
378
|
-
|
|
379
|
-
//
|
|
380
|
-
//
|
|
381
|
-
//
|
|
382
|
-
|
|
383
|
-
if (transValue) {
|
|
384
|
-
if (transValue < 0 || transValue > height) {
|
|
385
|
-
transValue = 0;
|
|
386
|
-
}
|
|
387
|
-
}
|
|
377
|
+
// Pick the right values depending if it is grid line or crosshair.
|
|
378
|
+
// Clamp is required in case when xAxis is non-circular to prevent
|
|
379
|
+
// grid lines (or crosshairs, if enabled) from rendering above the
|
|
380
|
+
// center after they supposed to be displayed below the center
|
|
381
|
+
// point.
|
|
382
|
+
let transValue = clamp(this.translate(value), 0, height);
|
|
388
383
|
if (this.options.gridLineInterpolation === 'circle') {
|
|
389
384
|
// A value of 0 is in the center, so it won't be
|
|
390
385
|
// visible, but draw it anyway for update and animation
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
*
|
|
11
11
|
* */
|
|
12
12
|
'use strict';
|
|
13
|
-
import
|
|
14
|
-
const { getDeferredAnimation } = A;
|
|
13
|
+
import { getDeferredAnimation } from '../../Animation/AnimationUtilities.js';
|
|
15
14
|
import SeriesRegistry from '../../Series/SeriesRegistry.js';
|
|
16
15
|
const { series: { prototype: seriesProto } } = SeriesRegistry;
|
|
17
16
|
import StackItem from './StackItem.js';
|
|
@@ -344,7 +344,7 @@ function wrapInit(proceed, chart, userOptions, coll) {
|
|
|
344
344
|
if (isTreeGrid) {
|
|
345
345
|
// Add event for updating the categories of a treegrid.
|
|
346
346
|
// NOTE Preferably these events should be set on the axis.
|
|
347
|
-
addEvent(chart, 'beforeRender', onBeforeRender);
|
|
347
|
+
addEvent(chart, 'beforeRender', onBeforeRender, { order: 0 });
|
|
348
348
|
addEvent(chart, 'beforeRedraw', onBeforeRender);
|
|
349
349
|
// Add new collapsed nodes on addSeries
|
|
350
350
|
addEvent(chart, 'addSeries', function (e) {
|