highcharts 13.0.0 → 13.0.2
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 +1 -1
- package/css/highcharts.css +2 -1
- package/es-modules/Accessibility/A11yI18n.js +4 -4
- package/es-modules/Accessibility/Accessibility.js +38 -1
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +6 -4
- package/es-modules/Accessibility/Components/LegendComponent.js +3 -4
- package/es-modules/Accessibility/Components/NavigatorComponent.js +3 -4
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +13 -10
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +8 -4
- package/es-modules/Accessibility/Components/ZoomComponent.js +2 -2
- package/es-modules/Accessibility/FocusBorder.js +2 -2
- package/es-modules/Accessibility/Options/A11yDefaults.js +12 -3
- package/es-modules/Accessibility/Options/DeprecatedOptions.js +1 -2
- package/es-modules/Accessibility/ProxyElement.js +1 -0
- package/es-modules/Core/Animation/AnimationUtilities.js +34 -43
- package/es-modules/Core/Animation/Fx.js +16 -19
- package/es-modules/Core/Axis/Axis.js +49 -59
- package/es-modules/Core/Axis/Axis3DComposition.js +8 -6
- package/es-modules/Core/Axis/AxisDefaults.js +12 -2
- package/es-modules/Core/Axis/BrokenAxis.js +6 -5
- package/es-modules/Core/Axis/Color/ColorAxis.js +24 -12
- package/es-modules/Core/Axis/Color/ColorAxisComposition.js +3 -3
- package/es-modules/Core/Axis/GridAxis.js +12 -5
- package/es-modules/Core/Axis/LogarithmicAxis.js +5 -3
- package/es-modules/Core/Axis/NavigatorAxisComposition.js +2 -2
- package/es-modules/Core/Axis/OrdinalAxis.js +21 -11
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +3 -2
- package/es-modules/Core/Axis/RadialAxis.js +23 -22
- package/es-modules/Core/Axis/ScrollbarAxis.js +3 -3
- package/es-modules/Core/Axis/Stacking/StackItem.js +5 -5
- package/es-modules/Core/Axis/Stacking/StackingAxis.js +5 -6
- package/es-modules/Core/Axis/Tick.js +10 -11
- package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +1 -1
- package/es-modules/Core/Axis/TreeGrid/TreeGridTick.js +3 -3
- package/es-modules/Core/Chart/Chart.js +58 -53
- package/es-modules/Core/Chart/Chart3D.js +3 -3
- package/es-modules/Core/Chart/ChartDefaults.js +24 -1
- package/es-modules/Core/Chart/MapChart.js +7 -10
- package/es-modules/Core/Chart/StockChart.js +15 -11
- package/es-modules/Core/Color/Color.js +3 -1
- package/es-modules/Core/Defaults.js +44 -2
- package/es-modules/Core/Globals.js +1 -1
- package/es-modules/Core/Legend/Legend.js +20 -17
- package/es-modules/Core/Legend/LegendSymbol.js +2 -2
- package/es-modules/Core/MSPointer.js +2 -2
- package/es-modules/Core/Math3D.js +6 -7
- package/es-modules/Core/Pointer.js +20 -10
- 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/RendererUtilities.js +2 -2
- package/es-modules/Core/Renderer/SVG/SVGElement.js +12 -11
- package/es-modules/Core/Renderer/SVG/SVGElement3D.js +2 -2
- package/es-modules/Core/Renderer/SVG/SVGLabel.js +5 -5
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +6 -6
- package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +13 -12
- package/es-modules/Core/Renderer/SVG/Symbols.js +6 -5
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +2 -2
- package/es-modules/Core/Responsive.js +7 -5
- package/es-modules/Core/Series/DataLabel.js +9 -8
- package/es-modules/Core/Series/OverlappingDataLabels.js +5 -2
- package/es-modules/Core/Series/Point.js +31 -24
- package/es-modules/Core/Series/Series.js +125 -82
- package/es-modules/Core/Series/Series3D.js +2 -2
- package/es-modules/Core/Series/SeriesDefaults.js +33 -0
- package/es-modules/Core/Templating.js +18 -15
- package/es-modules/Core/Tooltip.js +12 -9
- package/es-modules/Core/Utilities.js +4 -3
- package/es-modules/Data/Connectors/DataConnector.js +2 -2
- package/es-modules/Data/Connectors/GoogleSheetsConnector.js +2 -2
- package/es-modules/Data/DataTable.js +17 -0
- package/es-modules/Data/DataTableCore.js +1 -1
- package/es-modules/Extensions/Annotations/Annotation.js +5 -6
- package/es-modules/Extensions/Annotations/AnnotationChart.js +2 -2
- package/es-modules/Extensions/Annotations/AnnotationDefaults.js +4 -4
- package/es-modules/Extensions/Annotations/ControlPoint.js +2 -2
- package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +2 -2
- package/es-modules/Extensions/Annotations/EventEmitter.js +4 -4
- package/es-modules/Extensions/Annotations/MockPoint.js +7 -9
- package/es-modules/Extensions/Annotations/NavigationBindings.js +6 -3
- package/es-modules/Extensions/Annotations/NavigationBindingsUtilities.js +31 -4
- package/es-modules/Extensions/Annotations/Popup/Popup.js +3 -2
- package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +6 -8
- package/es-modules/Extensions/Annotations/Types/CrookedLine.js +4 -4
- package/es-modules/Extensions/Annotations/Types/Measure.js +28 -10
- package/es-modules/Extensions/Annotations/Types/TimeCycles.js +4 -2
- package/es-modules/Extensions/Annotations/Types/Tunnel.js +3 -1
- package/es-modules/Extensions/Annotations/Types/VerticalLine.js +3 -3
- package/es-modules/Extensions/Boost/Boost.js +13 -0
- package/es-modules/Extensions/Boost/BoostChart.js +11 -4
- package/es-modules/Extensions/Boost/BoostSeries.js +17 -11
- package/es-modules/Extensions/Boost/WGLRenderer.js +9 -6
- package/es-modules/Extensions/Boost/WGLShader.js +3 -3
- package/es-modules/Extensions/BoostCanvas.js +2 -2
- package/es-modules/Extensions/BorderRadius.js +12 -10
- package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +6 -5
- package/es-modules/Extensions/DataGrouping/DataGrouping.js +2 -2
- package/es-modules/Extensions/DataGrouping/DataGroupingAxisComposition.js +4 -3
- package/es-modules/Extensions/DataGrouping/DataGroupingSeriesComposition.js +2 -2
- package/es-modules/Extensions/DraggablePoints/DragDropProps.js +2 -3
- 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 +21 -16
- package/es-modules/Extensions/Exporting/Exporting.js +28 -28
- 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/MouseWheelZoom/MouseWheelZoom.js +2 -2
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +31 -4
- package/es-modules/Extensions/Pane/PaneComposition.js +2 -2
- package/es-modules/Extensions/Pane/PaneDefaults.js +1 -1
- package/es-modules/Extensions/ParallelCoordinates/ParallelAxis.js +2 -2
- package/es-modules/Extensions/ParallelCoordinates/ParallelCoordinates.js +3 -0
- package/es-modules/Extensions/PatternFill.js +7 -5
- package/es-modules/Extensions/PriceIndication.js +5 -4
- package/es-modules/Extensions/ScrollablePlotArea.js +8 -2
- package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +8 -9
- package/es-modules/Extensions/Sonification/MIDI.js +2 -3
- package/es-modules/Extensions/Sonification/Sonification.js +2 -2
- package/es-modules/Extensions/Sonification/SonificationSpeaker.js +3 -2
- package/es-modules/Extensions/Sonification/SynthPatch.js +4 -4
- package/es-modules/Extensions/Sonification/TimelineFromChart.js +11 -11
- package/es-modules/Gantt/Legacy.js +2 -2
- package/es-modules/Gantt/Pathfinder.js +3 -3
- package/es-modules/Gantt/PathfinderAlgorithms.js +4 -3
- package/es-modules/Gantt/Tree.js +1 -1
- package/es-modules/Maps/GeoJSONComposition.js +14 -1
- package/es-modules/Maps/MapNavigation.js +4 -4
- package/es-modules/Maps/MapPointer.js +2 -2
- package/es-modules/Maps/MapView.js +3 -3
- package/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +8 -6
- package/es-modules/Series/Area/AreaSeries.js +4 -5
- 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 +40 -32
- package/es-modules/Series/BoxPlot/BoxPlotSeriesDefaults.js +33 -1
- package/es-modules/Series/Bubble/BubbleLegendItem.js +10 -6
- package/es-modules/Series/Bubble/BubbleSeries.js +25 -9
- package/es-modules/Series/Bullet/BulletSeries.js +17 -10
- package/es-modules/Series/Candlestick/CandlestickSeries.js +3 -3
- package/es-modules/Series/CenteredUtilities.js +12 -9
- package/es-modules/Series/ColorMapComposition.js +7 -4
- package/es-modules/Series/Column/ColumnPoint.js +2 -0
- package/es-modules/Series/Column/ColumnSeries.js +14 -14
- package/es-modules/Series/Column/ColumnSeriesDefaults.js +4 -2
- package/es-modules/Series/Column3D/Column3DComposition.js +22 -19
- 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 +7 -6
- 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 +13 -144
- 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 +12 -12
- 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/DataModifyComposition.js +9 -7
- 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 +6 -4
- 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 +19 -6
- package/es-modules/Series/Dumbbell/DumbbellPointOptions.js +12 -0
- package/es-modules/Series/Dumbbell/DumbbellSeries.js +33 -15
- 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/FlowMap/FlowMapPoint.js +5 -3
- package/es-modules/Series/FlowMap/FlowMapSeries.js +17 -9
- package/es-modules/Series/Funnel/FunnelSeries.js +25 -26
- package/es-modules/Series/Funnel/FunnelSeriesDefaults.js +12 -0
- package/es-modules/Series/Funnel3D/Funnel3DSeries.js +7 -5
- package/es-modules/Series/Gantt/GanttSeries.js +2 -1
- package/es-modules/Series/Gauge/GaugeSeries.js +2 -2
- package/es-modules/Series/GeoHeatmap/GeoHeatmapSeries.js +9 -9
- package/es-modules/Series/GraphLayoutComposition.js +3 -3
- package/es-modules/Series/Heatmap/HeatmapPoint.js +6 -6
- package/es-modules/Series/Heatmap/HeatmapPointOptions.js +12 -0
- package/es-modules/Series/Heatmap/HeatmapSeries.js +13 -13
- package/es-modules/Series/Heatmap/HeatmapSeriesOptions.js +12 -0
- package/es-modules/Series/Histogram/HistogramPoint.js +17 -0
- package/es-modules/Series/Histogram/HistogramPointOptions.js +12 -0
- package/es-modules/Series/Histogram/HistogramSeries.js +15 -3
- package/es-modules/Series/Histogram/HistogramSeriesOptions.js +12 -0
- package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +9 -9
- package/es-modules/Series/InterpolationUtilities.js +5 -5
- package/es-modules/Series/Item/ItemPointOptions.js +14 -0
- package/es-modules/Series/Item/ItemSeries.js +18 -6
- package/es-modules/Series/Item/ItemSeriesOptions.js +14 -0
- package/es-modules/Series/Map/MapPoint.js +5 -3
- package/es-modules/Series/Map/MapSeries.js +6 -10
- package/es-modules/Series/Map/MapSeriesDefaults.js +11 -1
- package/es-modules/Series/Networkgraph/NetworkgraphPoint.js +3 -3
- package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +14 -9
- package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +12 -0
- package/es-modules/Series/Networkgraph/ReingoldFruchtermanLayout.js +18 -9
- package/es-modules/Series/NodesComposition.js +9 -10
- package/es-modules/Series/OHLC/OHLCPoint.js +2 -2
- package/es-modules/Series/OHLC/OHLCSeries.js +1 -0
- package/es-modules/Series/Organization/OrganizationPoint.js +3 -2
- package/es-modules/Series/Organization/OrganizationSeries.js +29 -7
- package/es-modules/Series/Organization/OrganizationSeriesDefaults.js +11 -4
- package/es-modules/Series/PackedBubble/PackedBubbleLayout.js +3 -3
- package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +5 -5
- package/es-modules/Series/Pictorial/PictorialSeries.js +4 -2
- package/es-modules/Series/Pie/PieDataLabel.js +2 -2
- package/es-modules/Series/Pie/PiePoint.js +3 -4
- package/es-modules/Series/Pie/PieSeries.js +3 -2
- package/es-modules/Series/Pie3D/Pie3DSeries.js +8 -4
- package/es-modules/Series/PolarComposition.js +13 -14
- 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 +13 -7
- package/es-modules/Series/Sankey/SankeySeriesDefaults.js +2 -2
- package/es-modules/Series/Scatter/ScatterSeries.js +6 -5
- package/es-modules/Series/Scatter/ScatterSeriesDefaults.js +2 -0
- package/es-modules/Series/SimulationSeriesUtilities.js +1 -2
- package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +4 -4
- package/es-modules/Series/Spline/SplineSeries.js +5 -5
- package/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +8 -0
- package/es-modules/Series/TiledWebMap/TiledWebMapSeries.js +20 -12
- package/es-modules/Series/Tilemap/TilemapSeriesDefaults.js +2 -1
- package/es-modules/Series/Tilemap/TilemapShapes.js +2 -2
- package/es-modules/Series/Timeline/TimelinePoint.js +2 -2
- package/es-modules/Series/Timeline/TimelineSeries.js +13 -6
- package/es-modules/Series/TreeUtilities.js +16 -7
- package/es-modules/Series/Treegraph/TreegraphLink.js +2 -2
- package/es-modules/Series/Treegraph/TreegraphSeries.js +22 -13
- package/es-modules/Series/Treemap/TreemapPoint.js +2 -2
- package/es-modules/Series/Treemap/TreemapSeries.js +14 -11
- package/es-modules/Series/Treemap/TreemapSeriesDefaults.js +22 -1
- package/es-modules/Series/VariablePie/VariablePieSeries.js +6 -4
- package/es-modules/Series/VariablePie/VariablePieSeriesDefaults.js +3 -2
- package/es-modules/Series/Variwide/VariwideSeries.js +2 -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 +3 -3
- package/es-modules/Series/Windbarb/WindbarbSeries.js +8 -10
- package/es-modules/Series/XRange/XRangeSeries.js +8 -8
- package/es-modules/Shared/TimeBase.js +13 -8
- package/es-modules/Shared/Utilities.js +9 -7
- package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +3 -3
- package/es-modules/Stock/Indicators/DPO/DPOIndicator.js +4 -3
- package/es-modules/Stock/Indicators/RSI/RSIIndicator.js +1 -1
- package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +2 -2
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +1 -2
- package/es-modules/Stock/Navigator/ChartNavigatorComposition.js +4 -4
- package/es-modules/Stock/Navigator/Navigator.js +26 -26
- 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 +55 -14
- package/es-modules/Stock/RangeSelector/RangeSelector.js +15 -11
- package/es-modules/Stock/RangeSelector/RangeSelectorComposition.js +3 -3
- package/es-modules/Stock/Scrollbar/Scrollbar.js +8 -7
- package/es-modules/Stock/StockTools/StockToolbar.js +6 -6
- package/es-modules/Stock/StockTools/StockTools.js +2 -2
- package/es-modules/Stock/StockTools/StockToolsBindings.js +7 -7
- package/es-modules/Stock/StockTools/StockToolsGui.js +6 -4
- 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 +13 -8
- 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 +78 -55
- 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 +1198 -981
- package/esm/highcharts.js +5 -5
- package/esm/highcharts.src.js +702 -515
- 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 +24 -10
- 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 +25 -10
- 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 +31 -17
- package/esm/indicators/indicators.js +2 -2
- package/esm/indicators/indicators.src.js +24 -10
- 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 +23 -9
- 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 +564 -92
- package/esm/modules/annotations-advanced.js +11 -11
- package/esm/modules/annotations-advanced.src.js +224 -162
- package/esm/modules/annotations.js +11 -11
- package/esm/modules/annotations.src.js +184 -144
- package/esm/modules/arc-diagram.js +2 -2
- package/esm/modules/arc-diagram.src.js +37 -22
- 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 +60 -30
- package/esm/modules/boost.js +2 -2
- package/esm/modules/boost.src.js +72 -29
- package/esm/modules/broken-axis.js +2 -2
- package/esm/modules/broken-axis.src.js +27 -12
- package/esm/modules/bullet.js +2 -2
- package/esm/modules/bullet.src.js +38 -17
- package/esm/modules/coloraxis.js +2 -2
- package/esm/modules/coloraxis.src.js +47 -21
- 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 +46 -28
- 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 +44 -13
- 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 +28 -13
- 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 +27 -11
- 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 +24 -12
- package/esm/modules/drilldown.js +2 -2
- package/esm/modules/drilldown.src.js +38 -25
- package/esm/modules/dumbbell.js +2 -2
- package/esm/modules/dumbbell.src.js +72 -27
- package/esm/modules/export-data.js +2 -2
- package/esm/modules/export-data.src.js +42 -23
- package/esm/modules/exporting.js +2 -2
- package/esm/modules/exporting.src.js +83 -37
- package/esm/modules/flowmap.js +3 -2
- package/esm/modules/flowmap.src.js +43 -18
- 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 +73 -42
- package/esm/modules/funnel3d.js +2 -2
- package/esm/modules/funnel3d.src.js +35 -20
- package/esm/modules/gantt.js +2 -2
- package/esm/modules/gantt.src.js +542 -100
- package/esm/modules/geoheatmap.js +2 -2
- package/esm/modules/geoheatmap.src.js +35 -21
- package/esm/modules/grid-axis.js +2 -2
- package/esm/modules/grid-axis.src.js +33 -12
- package/esm/modules/heatmap.js +2 -2
- package/esm/modules/heatmap.src.js +50 -33
- 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 +56 -25
- 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 +72 -13
- 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 +148 -91
- 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 +54 -13
- package/esm/modules/navigator.js +2 -2
- package/esm/modules/navigator.src.js +534 -74
- package/esm/modules/networkgraph.js +2 -2
- package/esm/modules/networkgraph.src.js +87 -46
- 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 +63 -19
- package/esm/modules/parallel-coordinates.js +2 -2
- package/esm/modules/parallel-coordinates.src.js +26 -9
- 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 +28 -13
- package/esm/modules/pattern-fill.js +2 -2
- package/esm/modules/pattern-fill.src.js +28 -12
- package/esm/modules/pictorial.js +2 -2
- package/esm/modules/pictorial.src.js +36 -19
- 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 +26 -11
- 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 +59 -31
- package/esm/modules/series-label.js +2 -2
- package/esm/modules/series-label.src.js +31 -18
- 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 +40 -20
- package/esm/modules/sonification.js +2 -2
- package/esm/modules/sonification.src.js +45 -30
- 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 +73 -27
- package/esm/modules/stock.js +2 -2
- package/esm/modules/stock.src.js +554 -122
- 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 +110 -45
- 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 +44 -19
- package/esm/modules/tilemap.js +2 -2
- package/esm/modules/tilemap.src.js +27 -12
- package/esm/modules/timeline.js +2 -2
- package/esm/modules/timeline.src.js +35 -14
- package/esm/modules/treegraph.js +2 -2
- package/esm/modules/treegraph.src.js +59 -27
- package/esm/modules/treegrid.js +2 -2
- package/esm/modules/treegrid.src.js +58 -27
- package/esm/modules/treemap.js +2 -2
- package/esm/modules/treemap.src.js +89 -36
- package/esm/modules/variable-pie.js +2 -2
- package/esm/modules/variable-pie.src.js +30 -13
- package/esm/modules/variwide.js +2 -2
- package/esm/modules/variwide.src.js +23 -9
- 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 +29 -17
- 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 +808 -570
- 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 +116 -92
- package/highcharts-autoload.d.ts +15 -5
- package/highcharts-autoload.js +4 -4
- package/highcharts-autoload.src.d.ts +15 -5
- package/highcharts-autoload.src.js +724 -499
- package/highcharts-gantt.js +4 -4
- package/highcharts-gantt.src.js +851 -590
- 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 +1313 -1095
- package/highcharts.d.ts +34795 -25647
- package/highcharts.js +4 -4
- package/highcharts.src.d.ts +34795 -25647
- package/highcharts.src.js +723 -498
- package/highmaps.js +4 -4
- package/highmaps.src.js +863 -583
- package/highstock.js +4 -4
- package/highstock.src.js +899 -619
- 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 +33 -18
- 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 +34 -18
- 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 +52 -37
- package/indicators/indicators.js +2 -2
- package/indicators/indicators.src.js +39 -24
- 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 +32 -17
- 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 +603 -130
- package/modules/annotations-advanced.js +11 -11
- package/modules/annotations-advanced.src.js +246 -183
- package/modules/annotations.js +11 -11
- package/modules/annotations.src.js +206 -165
- package/modules/arc-diagram.js +2 -2
- package/modules/arc-diagram.src.js +58 -42
- 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 +69 -38
- package/modules/boost.js +2 -2
- package/modules/boost.src.js +81 -37
- package/modules/broken-axis.js +2 -2
- package/modules/broken-axis.src.js +36 -20
- package/modules/bullet.js +2 -2
- package/modules/bullet.src.js +50 -28
- package/modules/coloraxis.js +2 -2
- package/modules/coloraxis.src.js +65 -38
- package/modules/contour.js +5 -5
- package/modules/contour.src.js +91 -44
- 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 +67 -48
- 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 +50 -18
- package/modules/data.js +2 -2
- package/modules/data.src.js +50 -35
- package/modules/datagrouping.js +2 -2
- package/modules/datagrouping.src.js +42 -26
- 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 +36 -19
- 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 +30 -17
- package/modules/drilldown.js +2 -2
- package/modules/drilldown.src.js +49 -35
- package/modules/dumbbell.js +2 -2
- package/modules/dumbbell.src.js +86 -40
- 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 +56 -36
- 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 +97 -50
- package/modules/flowmap.js +3 -2
- package/modules/flowmap.src.js +52 -26
- 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 +82 -50
- package/modules/funnel3d.js +2 -2
- package/modules/funnel3d.src.js +56 -40
- 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 +602 -156
- package/modules/geoheatmap.d.ts +13 -12
- package/modules/geoheatmap.js +2 -2
- package/modules/geoheatmap.src.d.ts +13 -12
- package/modules/geoheatmap.src.js +44 -29
- package/modules/grid-axis.js +2 -2
- package/modules/grid-axis.src.js +42 -20
- package/modules/heatmap.d.ts +0 -12
- package/modules/heatmap.js +4 -4
- package/modules/heatmap.src.d.ts +0 -12
- package/modules/heatmap.src.js +102 -71
- 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 +70 -38
- 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 +81 -21
- package/modules/lollipop.js +2 -2
- package/modules/lollipop.src.js +36 -21
- package/modules/map.d.ts +0 -20
- package/modules/map.js +4 -4
- package/modules/map.src.d.ts +0 -20
- package/modules/map.src.js +212 -140
- 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 +60 -18
- 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 +556 -95
- package/modules/networkgraph.js +2 -2
- package/modules/networkgraph.src.js +99 -57
- 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 +75 -30
- package/modules/parallel-coordinates.js +2 -2
- package/modules/parallel-coordinates.src.js +37 -19
- package/modules/pareto.js +2 -2
- package/modules/pareto.src.js +45 -29
- package/modules/pathfinder.js +2 -2
- package/modules/pathfinder.src.js +37 -21
- package/modules/pattern-fill.js +2 -2
- package/modules/pattern-fill.src.js +34 -17
- package/modules/pictorial.js +2 -2
- package/modules/pictorial.src.js +62 -43
- 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 +32 -16
- 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 +80 -51
- package/modules/series-label.js +2 -2
- package/modules/series-label.src.js +42 -28
- 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 +54 -33
- package/modules/sonification.js +2 -2
- package/modules/sonification.src.js +56 -40
- 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 +90 -43
- 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 +650 -185
- package/modules/streamgraph.js +2 -2
- package/modules/streamgraph.src.js +31 -16
- package/modules/sunburst.js +2 -2
- package/modules/sunburst.src.js +137 -71
- package/modules/textpath.js +2 -2
- package/modules/textpath.src.js +28 -13
- package/modules/tiledwebmap.js +3 -3
- package/modules/tiledwebmap.src.js +65 -32
- package/modules/tilemap.js +2 -2
- package/modules/tilemap.src.js +41 -25
- package/modules/timeline.js +2 -2
- package/modules/timeline.src.js +47 -25
- package/modules/treegraph.js +2 -2
- package/modules/treegraph.src.js +83 -50
- package/modules/treegrid.js +2 -2
- package/modules/treegrid.src.js +76 -44
- package/modules/treemap.js +2 -2
- package/modules/treemap.src.js +116 -62
- package/modules/variable-pie.js +2 -2
- package/modules/variable-pie.src.js +39 -21
- package/modules/variwide.js +2 -2
- package/modules/variwide.src.js +32 -17
- 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 +51 -38
- 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 +1 -1
- package/standalone-navigator.js +4 -4
- package/standalone-navigator.src.js +829 -553
- 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/modules/map.src.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// SPDX-License-Identifier: LicenseRef-Highcharts
|
|
2
2
|
/**
|
|
3
|
-
* @license Highmaps JS v13.0.
|
|
3
|
+
* @license Highmaps JS v13.0.2 (2026-08-27)
|
|
4
4
|
* @module highcharts/modules/map
|
|
5
5
|
* @requires highcharts
|
|
6
6
|
*
|
|
@@ -26,90 +26,90 @@ return /******/ (() => { // webpackBootstrap
|
|
|
26
26
|
/******/ "use strict";
|
|
27
27
|
/******/ var __webpack_modules__ = ({
|
|
28
28
|
|
|
29
|
-
/***/
|
|
30
|
-
|
|
29
|
+
/***/ 532
|
|
30
|
+
(module) {
|
|
31
31
|
|
|
32
|
-
module.exports =
|
|
32
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__532__;
|
|
33
33
|
|
|
34
|
-
/***/ }
|
|
34
|
+
/***/ },
|
|
35
35
|
|
|
36
|
-
/***/
|
|
37
|
-
|
|
36
|
+
/***/ 960
|
|
37
|
+
(module) {
|
|
38
38
|
|
|
39
|
-
module.exports =
|
|
39
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__960__;
|
|
40
40
|
|
|
41
|
-
/***/ }
|
|
41
|
+
/***/ },
|
|
42
42
|
|
|
43
|
-
/***/
|
|
44
|
-
|
|
43
|
+
/***/ 620
|
|
44
|
+
(module) {
|
|
45
45
|
|
|
46
|
-
module.exports =
|
|
46
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__620__;
|
|
47
47
|
|
|
48
|
-
/***/ }
|
|
48
|
+
/***/ },
|
|
49
49
|
|
|
50
|
-
/***/
|
|
51
|
-
|
|
50
|
+
/***/ 260
|
|
51
|
+
(module) {
|
|
52
52
|
|
|
53
|
-
module.exports =
|
|
53
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__260__;
|
|
54
54
|
|
|
55
|
-
/***/ }
|
|
55
|
+
/***/ },
|
|
56
56
|
|
|
57
|
-
/***/
|
|
58
|
-
|
|
57
|
+
/***/ 28
|
|
58
|
+
(module) {
|
|
59
59
|
|
|
60
|
-
module.exports =
|
|
60
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__28__;
|
|
61
61
|
|
|
62
|
-
/***/ }
|
|
62
|
+
/***/ },
|
|
63
63
|
|
|
64
|
-
/***/
|
|
65
|
-
|
|
64
|
+
/***/ 540
|
|
65
|
+
(module) {
|
|
66
66
|
|
|
67
|
-
module.exports =
|
|
67
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__540__;
|
|
68
68
|
|
|
69
|
-
/***/ }
|
|
69
|
+
/***/ },
|
|
70
70
|
|
|
71
|
-
/***/ 632
|
|
72
|
-
|
|
71
|
+
/***/ 632
|
|
72
|
+
(module) {
|
|
73
73
|
|
|
74
74
|
module.exports = __WEBPACK_EXTERNAL_MODULE__632__;
|
|
75
75
|
|
|
76
|
-
/***/ }
|
|
76
|
+
/***/ },
|
|
77
77
|
|
|
78
|
-
/***/
|
|
79
|
-
|
|
78
|
+
/***/ 512
|
|
79
|
+
(module) {
|
|
80
80
|
|
|
81
|
-
module.exports =
|
|
81
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__512__;
|
|
82
82
|
|
|
83
|
-
/***/ }
|
|
83
|
+
/***/ },
|
|
84
84
|
|
|
85
|
-
/***/
|
|
86
|
-
|
|
85
|
+
/***/ 984
|
|
86
|
+
(module) {
|
|
87
87
|
|
|
88
|
-
module.exports =
|
|
88
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__984__;
|
|
89
89
|
|
|
90
|
-
/***/ }
|
|
90
|
+
/***/ },
|
|
91
91
|
|
|
92
|
-
/***/
|
|
93
|
-
|
|
92
|
+
/***/ 944
|
|
93
|
+
(module) {
|
|
94
94
|
|
|
95
|
-
module.exports =
|
|
95
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__944__;
|
|
96
96
|
|
|
97
|
-
/***/ }
|
|
97
|
+
/***/ }
|
|
98
98
|
|
|
99
99
|
/******/ });
|
|
100
100
|
/************************************************************************/
|
|
101
101
|
/******/ // The module cache
|
|
102
|
-
/******/
|
|
102
|
+
/******/ const __webpack_module_cache__ = {};
|
|
103
103
|
/******/
|
|
104
104
|
/******/ // The require function
|
|
105
105
|
/******/ function __webpack_require__(moduleId) {
|
|
106
106
|
/******/ // Check if module is in cache
|
|
107
|
-
/******/
|
|
107
|
+
/******/ const cachedModule = __webpack_module_cache__[moduleId];
|
|
108
108
|
/******/ if (cachedModule !== undefined) {
|
|
109
109
|
/******/ return cachedModule.exports;
|
|
110
110
|
/******/ }
|
|
111
111
|
/******/ // Create a new module (and put it into the cache)
|
|
112
|
-
/******/
|
|
112
|
+
/******/ const module = __webpack_module_cache__[moduleId] = {
|
|
113
113
|
/******/ // no module.id needed
|
|
114
114
|
/******/ // no module.loaded needed
|
|
115
115
|
/******/ exports: {}
|
|
@@ -127,7 +127,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__984__;
|
|
|
127
127
|
/******/ (() => {
|
|
128
128
|
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
129
129
|
/******/ __webpack_require__.n = (module) => {
|
|
130
|
-
/******/
|
|
130
|
+
/******/ const getter = module && module.__esModule ?
|
|
131
131
|
/******/ () => (module['default']) :
|
|
132
132
|
/******/ () => (module);
|
|
133
133
|
/******/ __webpack_require__.d(getter, { a: getter });
|
|
@@ -137,11 +137,26 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__984__;
|
|
|
137
137
|
/******/
|
|
138
138
|
/******/ /* webpack/runtime/define property getters */
|
|
139
139
|
/******/ (() => {
|
|
140
|
-
/******/ // define getter functions for harmony exports
|
|
140
|
+
/******/ // define getter/value functions for harmony exports
|
|
141
141
|
/******/ __webpack_require__.d = (exports, definition) => {
|
|
142
|
-
/******/
|
|
143
|
-
/******/
|
|
144
|
-
/******/
|
|
142
|
+
/******/ if(Array.isArray(definition)) {
|
|
143
|
+
/******/ var i = 0;
|
|
144
|
+
/******/ while(i < definition.length) {
|
|
145
|
+
/******/ var key = definition[i++];
|
|
146
|
+
/******/ var binding = definition[i++];
|
|
147
|
+
/******/ if(!__webpack_require__.o(exports, key)) {
|
|
148
|
+
/******/ if(binding === 0) {
|
|
149
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
|
|
150
|
+
/******/ } else {
|
|
151
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
|
|
152
|
+
/******/ }
|
|
153
|
+
/******/ } else if(binding === 0) { i++; }
|
|
154
|
+
/******/ }
|
|
155
|
+
/******/ } else {
|
|
156
|
+
/******/ for(var key in definition) {
|
|
157
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
158
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
159
|
+
/******/ }
|
|
145
160
|
/******/ }
|
|
146
161
|
/******/ }
|
|
147
162
|
/******/ };
|
|
@@ -153,7 +168,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__984__;
|
|
|
153
168
|
/******/ })();
|
|
154
169
|
/******/
|
|
155
170
|
/************************************************************************/
|
|
156
|
-
|
|
171
|
+
let __webpack_exports__ = {};
|
|
157
172
|
|
|
158
173
|
// EXPORTS
|
|
159
174
|
__webpack_require__.d(__webpack_exports__, {
|
|
@@ -550,7 +565,7 @@ var ColorAxisComposition;
|
|
|
550
565
|
series.bindAxes();
|
|
551
566
|
series.isDirtyData = true;
|
|
552
567
|
});
|
|
553
|
-
if (
|
|
568
|
+
if (options.redraw ?? true) {
|
|
554
569
|
chart.redraw(options.animation);
|
|
555
570
|
}
|
|
556
571
|
return axis;
|
|
@@ -561,7 +576,7 @@ var ColorAxisComposition;
|
|
|
561
576
|
* @internal
|
|
562
577
|
*/
|
|
563
578
|
function wrapFxFillSetter() {
|
|
564
|
-
this.elem.attr('fill', ColorAxisComposition_color(this.start).tweenTo(ColorAxisComposition_color(this.end), this.pos), void 0, true);
|
|
579
|
+
(this.elem.attr)('fill', ColorAxisComposition_color(this.start).tweenTo(ColorAxisComposition_color(this.end), this.pos), void 0, true);
|
|
565
580
|
}
|
|
566
581
|
/**
|
|
567
582
|
* Handle animation of the color attributes directly.
|
|
@@ -1328,10 +1343,8 @@ class ColorAxis extends (highcharts_Axis_commonjs_highcharts_Axis_commonjs2_high
|
|
|
1328
1343
|
* @internal
|
|
1329
1344
|
*/
|
|
1330
1345
|
drawLegendSymbol(legend, item) {
|
|
1331
|
-
const axis = this, legendItem = item.legendItem || {}, padding = legend.padding, legendOptions = legend.options, labelOptions = axis.options.labels, itemDistance = (
|
|
1332
|
-
|
|
1333
|
-
// vertical
|
|
1334
|
-
legendOptions.labelPadding, horiz ? 16 : 30);
|
|
1346
|
+
const axis = this, legendItem = item.legendItem || {}, padding = legend.padding, legendOptions = legend.options, labelOptions = axis.options.labels, itemDistance = (legendOptions.itemDistance ?? 10), horiz = axis.horiz, { width, height } = axis.getSize(), labelPadding = legendOptions.labelPadding ??
|
|
1347
|
+
(horiz ? 16 : 30);
|
|
1335
1348
|
this.setLegendColor();
|
|
1336
1349
|
let titleHeight = 0;
|
|
1337
1350
|
let titleWidth = 0;
|
|
@@ -1433,7 +1446,12 @@ class ColorAxis extends (highcharts_Axis_commonjs_highcharts_Axis_commonjs2_high
|
|
|
1433
1446
|
this.dataMax = -Infinity;
|
|
1434
1447
|
while (i--) { // X, y, value, other
|
|
1435
1448
|
cSeries = series[i];
|
|
1436
|
-
colorKey = cSeries.colorKey =
|
|
1449
|
+
colorKey = cSeries.colorKey =
|
|
1450
|
+
cSeries.options.colorKey ??
|
|
1451
|
+
cSeries.colorKey ??
|
|
1452
|
+
cSeries.pointValKey ??
|
|
1453
|
+
cSeries.zoneAxis ??
|
|
1454
|
+
'y';
|
|
1437
1455
|
calculatedExtremes = cSeries[colorKey + 'Min'] &&
|
|
1438
1456
|
cSeries[colorKey + 'Max'];
|
|
1439
1457
|
// Find the first column that has values
|
|
@@ -1519,9 +1537,14 @@ class ColorAxis extends (highcharts_Axis_commonjs_highcharts_Axis_commonjs2_high
|
|
|
1519
1537
|
const axis = this, left = axis.left, pos = options.translatedValue, { symbol } = this.options.marker || {}, top = axis.top;
|
|
1520
1538
|
// Crosshairs only
|
|
1521
1539
|
if ((0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber)(pos)) {
|
|
1522
|
-
const x = left, w = axis.width, y = pos - w / 2, h = w;
|
|
1523
1540
|
if (symbol) {
|
|
1524
|
-
|
|
1541
|
+
let w = axis.height, x = pos - w / 2, y = top;
|
|
1542
|
+
if (!axis.horiz) {
|
|
1543
|
+
w = axis.width;
|
|
1544
|
+
x = left;
|
|
1545
|
+
y = pos - w / 2;
|
|
1546
|
+
}
|
|
1547
|
+
return this.chart.renderer.symbols[symbol](x, y, w, w);
|
|
1525
1548
|
}
|
|
1526
1549
|
// Default to a triangle pointing to the value
|
|
1527
1550
|
return (axis.horiz ? [
|
|
@@ -1615,7 +1638,7 @@ class ColorAxis extends (highcharts_Axis_commonjs_highcharts_Axis_commonjs2_high
|
|
|
1615
1638
|
getDataClassLegendSymbols() {
|
|
1616
1639
|
const axis = this, chart = axis.chart, legendItems = (axis.legendItem &&
|
|
1617
1640
|
axis.legendItem.labels ||
|
|
1618
|
-
[]), legendOptions = chart.options.legend, valueDecimals = (
|
|
1641
|
+
[]), legendOptions = chart.options.legend, valueDecimals = (legendOptions.valueDecimals ?? -1), valueSuffix = (legendOptions.valueSuffix ?? '');
|
|
1619
1642
|
const getPointsInDataClass = (i) => axis.series.reduce((points, s) => {
|
|
1620
1643
|
points.push(...s.points.filter((point) => point.dataClass === i));
|
|
1621
1644
|
return points;
|
|
@@ -1685,9 +1708,13 @@ class ColorAxis extends (highcharts_Axis_commonjs_highcharts_Axis_commonjs2_high
|
|
|
1685
1708
|
* @internal
|
|
1686
1709
|
*/
|
|
1687
1710
|
getSize() {
|
|
1688
|
-
const axis = this, { chart, horiz } = axis, { height: colorAxisHeight, width: colorAxisWidth } = axis.options, { legend: legendOptions } = chart.options, width = (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.
|
|
1689
|
-
(0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.relativeLength)(colorAxisWidth, chart.chartWidth) :
|
|
1690
|
-
(
|
|
1711
|
+
const axis = this, { chart, horiz } = axis, { height: colorAxisHeight, width: colorAxisWidth } = axis.options, { legend: legendOptions } = chart.options, width = (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.defined)(colorAxisWidth) ?
|
|
1712
|
+
(0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.relativeLength)(colorAxisWidth, chart.chartWidth) :
|
|
1713
|
+
(legendOptions?.symbolWidth ??
|
|
1714
|
+
(horiz ? ColorAxis.defaultLegendLength : 12)), height = (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.defined)(colorAxisHeight) ?
|
|
1715
|
+
(0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.relativeLength)(colorAxisHeight, chart.chartHeight) :
|
|
1716
|
+
(legendOptions?.symbolHeight ??
|
|
1717
|
+
(horiz ? 12 : ColorAxis.defaultLegendLength));
|
|
1691
1718
|
return {
|
|
1692
1719
|
width,
|
|
1693
1720
|
height
|
|
@@ -1732,9 +1759,10 @@ Array.prototype.push.apply((highcharts_Axis_commonjs_highcharts_Axis_commonjs2_h
|
|
|
1732
1759
|
''; // Detach doclet above
|
|
1733
1760
|
|
|
1734
1761
|
;// ./code/es-modules/masters/modules/coloraxis.src.js
|
|
1762
|
+
/* unused harmony import specifier */ var Highcharts;
|
|
1735
1763
|
// SPDX-License-Identifier: LicenseRef-Highcharts
|
|
1736
1764
|
/**
|
|
1737
|
-
* @license Highcharts JS v13.0.
|
|
1765
|
+
* @license Highcharts JS v13.0.2 (2026-08-27)
|
|
1738
1766
|
* @module highcharts/modules/color-axis
|
|
1739
1767
|
* @requires highcharts
|
|
1740
1768
|
*
|
|
@@ -2147,7 +2175,7 @@ var MapPointer;
|
|
|
2147
2175
|
const mapNavigation = this.chart.options.mapNavigation;
|
|
2148
2176
|
// Pinch status
|
|
2149
2177
|
if (mapNavigation &&
|
|
2150
|
-
(
|
|
2178
|
+
(mapNavigation.enableTouchZoom ?? mapNavigation.enabled)) {
|
|
2151
2179
|
this.chart.zooming.pinchType = 'xy';
|
|
2152
2180
|
}
|
|
2153
2181
|
proceed.apply(this, [].slice.call(arguments, 1));
|
|
@@ -2330,7 +2358,7 @@ class MapNavigation {
|
|
|
2330
2358
|
navButtons.pop()?.destroy();
|
|
2331
2359
|
}
|
|
2332
2360
|
if (!chart.renderer.forExport &&
|
|
2333
|
-
(
|
|
2361
|
+
(navOptions.enableButtons ?? navOptions.enabled)) {
|
|
2334
2362
|
if (!mapNav.navButtonsGroup) {
|
|
2335
2363
|
mapNav.navButtonsGroup = chart.renderer.g()
|
|
2336
2364
|
.attr({
|
|
@@ -2461,7 +2489,7 @@ class MapNavigation {
|
|
|
2461
2489
|
updateEvents(options) {
|
|
2462
2490
|
const chart = this.chart;
|
|
2463
2491
|
// Add the double click event
|
|
2464
|
-
if ((
|
|
2492
|
+
if ((options.enableDoubleClickZoom ?? options.enabled) ||
|
|
2465
2493
|
options.enableDoubleClickZoomTo) {
|
|
2466
2494
|
this.unbindDblClick = this.unbindDblClick || (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.addEvent)(chart.container, 'dblclick', function (e) {
|
|
2467
2495
|
chart.pointer.onContainerDblClick(e);
|
|
@@ -2472,7 +2500,7 @@ class MapNavigation {
|
|
|
2472
2500
|
this.unbindDblClick = this.unbindDblClick();
|
|
2473
2501
|
}
|
|
2474
2502
|
// Add the mousewheel event
|
|
2475
|
-
if (
|
|
2503
|
+
if (options.enableMouseWheelZoom ?? options.enabled) {
|
|
2476
2504
|
this.unbindMouseWheel = this.unbindMouseWheel || (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.addEvent)(chart.container, 'wheel', function (e) {
|
|
2477
2505
|
// Prevent scrolling when the pointer is over the element
|
|
2478
2506
|
// with that class, for example annotation popup #12100.
|
|
@@ -2534,11 +2562,13 @@ var ColorMapComposition;
|
|
|
2534
2562
|
* Constants
|
|
2535
2563
|
*
|
|
2536
2564
|
* */
|
|
2565
|
+
/** @internal */
|
|
2537
2566
|
ColorMapComposition.pointMembers = {
|
|
2538
2567
|
dataLabelOnNull: true,
|
|
2539
2568
|
moveToTopOnHover: true,
|
|
2540
2569
|
isValid: pointIsValid
|
|
2541
2570
|
};
|
|
2571
|
+
/** @internal */
|
|
2542
2572
|
ColorMapComposition.seriesMembers = {
|
|
2543
2573
|
colorKey: 'value',
|
|
2544
2574
|
axisTypes: ['xAxis', 'yAxis', 'colorAxis'],
|
|
@@ -2554,7 +2584,7 @@ var ColorMapComposition;
|
|
|
2554
2584
|
*
|
|
2555
2585
|
* */
|
|
2556
2586
|
/**
|
|
2557
|
-
* @
|
|
2587
|
+
* @internal
|
|
2558
2588
|
*/
|
|
2559
2589
|
function compose(SeriesClass) {
|
|
2560
2590
|
const PointClass = SeriesClass.prototype.pointClass;
|
|
@@ -2564,7 +2594,7 @@ var ColorMapComposition;
|
|
|
2564
2594
|
ColorMapComposition.compose = compose;
|
|
2565
2595
|
/**
|
|
2566
2596
|
* Move points to the top of the z-index order when hovered.
|
|
2567
|
-
* @
|
|
2597
|
+
* @internal
|
|
2568
2598
|
*/
|
|
2569
2599
|
function onPointAfterSetState(e) {
|
|
2570
2600
|
const point = this, series = point.series, renderer = series.chart.renderer;
|
|
@@ -2600,7 +2630,7 @@ var ColorMapComposition;
|
|
|
2600
2630
|
/**
|
|
2601
2631
|
* Color points have a value option that determines whether or not it is
|
|
2602
2632
|
* a null point
|
|
2603
|
-
* @
|
|
2633
|
+
* @internal
|
|
2604
2634
|
*/
|
|
2605
2635
|
function pointIsValid() {
|
|
2606
2636
|
return (this.value !== null &&
|
|
@@ -2611,7 +2641,7 @@ var ColorMapComposition;
|
|
|
2611
2641
|
}
|
|
2612
2642
|
/**
|
|
2613
2643
|
* Get the color attributes to apply on the graphic
|
|
2614
|
-
* @
|
|
2644
|
+
* @internal
|
|
2615
2645
|
* @function Highcharts.colorMapSeriesMixin.colorAttribs
|
|
2616
2646
|
* @param {Highcharts.Point} point
|
|
2617
2647
|
* @return {Highcharts.SVGAttributes}
|
|
@@ -2632,6 +2662,7 @@ var ColorMapComposition;
|
|
|
2632
2662
|
* Default Export
|
|
2633
2663
|
*
|
|
2634
2664
|
* */
|
|
2665
|
+
/** @internal */
|
|
2635
2666
|
/* harmony default export */ const Series_ColorMapComposition = (ColorMapComposition);
|
|
2636
2667
|
|
|
2637
2668
|
;// ./code/es-modules/Series/CenteredUtilities.js
|
|
@@ -2651,7 +2682,7 @@ var ColorMapComposition;
|
|
|
2651
2682
|
const { deg2rad } = (highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default());
|
|
2652
2683
|
|
|
2653
2684
|
/**
|
|
2654
|
-
* @
|
|
2685
|
+
* @internal
|
|
2655
2686
|
*/
|
|
2656
2687
|
var CenteredUtilities;
|
|
2657
2688
|
(function (CenteredUtilities) {
|
|
@@ -2669,7 +2700,7 @@ var CenteredUtilities;
|
|
|
2669
2700
|
* Get the center of the pie based on the size and center options relative
|
|
2670
2701
|
* to the plot area. Borrowed by the polar and gauge series types.
|
|
2671
2702
|
*
|
|
2672
|
-
* @
|
|
2703
|
+
* @internal
|
|
2673
2704
|
* @function Highcharts.CenteredSeriesMixin.getCenter
|
|
2674
2705
|
*/
|
|
2675
2706
|
function getCenter() {
|
|
@@ -2682,11 +2713,13 @@ var CenteredUtilities;
|
|
|
2682
2713
|
innerSize = parseFloat(innerSize);
|
|
2683
2714
|
}
|
|
2684
2715
|
const positions = [
|
|
2685
|
-
(
|
|
2686
|
-
(
|
|
2716
|
+
(centerOption?.[0] ?? '50%'),
|
|
2717
|
+
(centerOption?.[1] ?? '50%'),
|
|
2687
2718
|
// Prevent from negative values
|
|
2688
|
-
(
|
|
2689
|
-
(
|
|
2719
|
+
((size && size < 0 ? void 0 : options.size) ?? '100%'),
|
|
2720
|
+
((innerSize && innerSize < 0 ?
|
|
2721
|
+
void 0 :
|
|
2722
|
+
options.innerSize || 0) ?? '0%')
|
|
2690
2723
|
];
|
|
2691
2724
|
for (i = 0; i < 4; ++i) {
|
|
2692
2725
|
value = positions[i];
|
|
@@ -2714,7 +2747,7 @@ var CenteredUtilities;
|
|
|
2714
2747
|
* GetStartAndEndRadians - Calculates start and end angles in radians.
|
|
2715
2748
|
* Used in series types such as pie and sunburst.
|
|
2716
2749
|
*
|
|
2717
|
-
* @
|
|
2750
|
+
* @internal
|
|
2718
2751
|
* @function Highcharts.CenteredSeriesMixin.getStartAndEndRadians
|
|
2719
2752
|
*
|
|
2720
2753
|
* @param {number} [start]
|
|
@@ -2746,6 +2779,7 @@ var CenteredUtilities;
|
|
|
2746
2779
|
* Default Export
|
|
2747
2780
|
*
|
|
2748
2781
|
* */
|
|
2782
|
+
/** @internal */
|
|
2749
2783
|
/* harmony default export */ const Series_CenteredUtilities = (CenteredUtilities);
|
|
2750
2784
|
/* *
|
|
2751
2785
|
*
|
|
@@ -2753,7 +2787,7 @@ var CenteredUtilities;
|
|
|
2753
2787
|
*
|
|
2754
2788
|
* */
|
|
2755
2789
|
/**
|
|
2756
|
-
* @
|
|
2790
|
+
* @internal
|
|
2757
2791
|
* @interface Highcharts.RadianAngles
|
|
2758
2792
|
*/ /**
|
|
2759
2793
|
* @name Highcharts.RadianAngles#end
|
|
@@ -3027,7 +3061,7 @@ class DataTableCore {
|
|
|
3027
3061
|
* Fetches the given column by the canonical column ID. Simplified version
|
|
3028
3062
|
* of the full `DataTable.getRow` method, always returning by reference.
|
|
3029
3063
|
*
|
|
3030
|
-
* @function Highcharts.DataTable#
|
|
3064
|
+
* @function Highcharts.DataTable#getColumn
|
|
3031
3065
|
*
|
|
3032
3066
|
* @param {string} columnId
|
|
3033
3067
|
* ID of the column to get.
|
|
@@ -3340,9 +3374,11 @@ class MapChart extends (highcharts_Chart_commonjs_highcharts_Chart_commonjs2_hig
|
|
|
3340
3374
|
type: 'map'
|
|
3341
3375
|
},
|
|
3342
3376
|
credits: {
|
|
3343
|
-
mapText: (
|
|
3344
|
-
'{geojson.
|
|
3345
|
-
|
|
3377
|
+
mapText: (defaultCreditsOptions.mapText ??
|
|
3378
|
+
' \u00a9 <a href="{geojson.copyrightUrl}">' +
|
|
3379
|
+
'{geojson.copyrightShort}</a>'),
|
|
3380
|
+
mapTextFull: defaultCreditsOptions.mapTextFull ??
|
|
3381
|
+
'{geojson.copyright}'
|
|
3346
3382
|
},
|
|
3347
3383
|
mapView: {}, // Required to enable Chart.mapView
|
|
3348
3384
|
tooltip: {
|
|
@@ -3399,11 +3435,6 @@ class MapChart extends (highcharts_Chart_commonjs_highcharts_Chart_commonjs2_hig
|
|
|
3399
3435
|
/**
|
|
3400
3436
|
* A wrapper for the chart's update function that will additionally run
|
|
3401
3437
|
* recommendMapView on chart.map change.
|
|
3402
|
-
*
|
|
3403
|
-
* @function Highcharts.MapChart#update
|
|
3404
|
-
*
|
|
3405
|
-
* @param {Highcharts.Options} options
|
|
3406
|
-
* The chart options.
|
|
3407
3438
|
*/
|
|
3408
3439
|
update(options) {
|
|
3409
3440
|
// Calculate and set the recommended map view if map option is set
|
|
@@ -3470,7 +3501,7 @@ class MapChart extends (highcharts_Chart_commonjs_highcharts_Chart_commonjs2_hig
|
|
|
3470
3501
|
*/
|
|
3471
3502
|
function mapChart(a, b, c) {
|
|
3472
3503
|
const chart = new MapChart(a, b, c);
|
|
3473
|
-
return chart.promise
|
|
3504
|
+
return chart.promise ?? chart;
|
|
3474
3505
|
}
|
|
3475
3506
|
MapChart.mapChart = mapChart;
|
|
3476
3507
|
/* eslint-enable jsdoc/check-param-names */
|
|
@@ -3660,8 +3691,10 @@ class MapPoint extends ScatterPoint {
|
|
|
3660
3691
|
}
|
|
3661
3692
|
else {
|
|
3662
3693
|
const propMiddleX = properties?.['hc-middle-x'], propMiddleY = properties?.['hc-middle-y'];
|
|
3663
|
-
bounds.midX = (bounds.x1 + (bounds.x2 - bounds.x1) * (
|
|
3664
|
-
|
|
3694
|
+
bounds.midX = (bounds.x1 + (bounds.x2 - bounds.x1) * (this.middleX ??
|
|
3695
|
+
((0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber)(propMiddleX) ? propMiddleX : 0.5)));
|
|
3696
|
+
let middleYFraction = this.middleY ??
|
|
3697
|
+
((0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber)(propMiddleY) ? propMiddleY : 0.5);
|
|
3665
3698
|
// No geographic geometry, only path given => flip
|
|
3666
3699
|
if (!this.geometry) {
|
|
3667
3700
|
middleYFraction = 1 - middleYFraction;
|
|
@@ -4149,6 +4182,16 @@ const MapSeriesDefaults = {
|
|
|
4149
4182
|
* @product highmaps
|
|
4150
4183
|
* @apioption plotOptions.map.colors
|
|
4151
4184
|
*/
|
|
4185
|
+
/**
|
|
4186
|
+
* Whether to apply a drop shadow to the map shapes. The shadow can be an
|
|
4187
|
+
* object configuration containing `color`, `offsetX`, `offsetY`, `opacity`
|
|
4188
|
+
* and `width`.
|
|
4189
|
+
*
|
|
4190
|
+
* @type {boolean|Highcharts.ShadowOptionsObject}
|
|
4191
|
+
* @default false
|
|
4192
|
+
* @product highmaps
|
|
4193
|
+
* @apioption plotOptions.map.shadow
|
|
4194
|
+
*/
|
|
4152
4195
|
/**
|
|
4153
4196
|
* Individual color for the point. By default the color is either used
|
|
4154
4197
|
* to denote the value, or pulled from the global `colors` array.
|
|
@@ -4225,7 +4268,7 @@ const MapSeriesDefaults = {
|
|
|
4225
4268
|
* a two dimensional array of the same. The dimensionality must comply with the
|
|
4226
4269
|
* `type`.
|
|
4227
4270
|
*
|
|
4228
|
-
* @type {Array<LonLatArray>|Array<Array<LonLatArray>>}
|
|
4271
|
+
* @type {Array<Highcharts.LonLatArray>|Array<Array<Highcharts.LonLatArray>>}
|
|
4229
4272
|
* @since 9.3.0
|
|
4230
4273
|
* @product highmaps
|
|
4231
4274
|
* @apioption series.map.data.geometry.coordinates
|
|
@@ -5192,7 +5235,20 @@ var GeoJSONComposition;
|
|
|
5192
5235
|
* Second point's Y of the bounding box.
|
|
5193
5236
|
* @name Highcharts.MapBounds#y2
|
|
5194
5237
|
*/
|
|
5195
|
-
|
|
5238
|
+
/**
|
|
5239
|
+
* A latitude/longitude object.
|
|
5240
|
+
*
|
|
5241
|
+
* @interface Highcharts.MapLonLatObject
|
|
5242
|
+
*/ /**
|
|
5243
|
+
* The latitude.
|
|
5244
|
+
* @name Highcharts.MapLonLatObject#lat
|
|
5245
|
+
* @type {number}
|
|
5246
|
+
*/ /**
|
|
5247
|
+
* The longitude.
|
|
5248
|
+
* @name Highcharts.MapLonLatObject#lon
|
|
5249
|
+
* @type {number}
|
|
5250
|
+
*/
|
|
5251
|
+
''; // Keep doclets above
|
|
5196
5252
|
|
|
5197
5253
|
;// ./code/es-modules/Core/Geometry/GeometryUtilities.js
|
|
5198
5254
|
/* *
|
|
@@ -6715,7 +6771,7 @@ class MapView {
|
|
|
6715
6771
|
* The current center of the view in terms of `[longitude, latitude]`.
|
|
6716
6772
|
* @name Highcharts.MapView#center
|
|
6717
6773
|
* @readonly
|
|
6718
|
-
* @type {LonLatArray}
|
|
6774
|
+
* @type {Highcharts.LonLatArray}
|
|
6719
6775
|
*/
|
|
6720
6776
|
this.center = o.center;
|
|
6721
6777
|
this.options = o;
|
|
@@ -6791,7 +6847,7 @@ class MapView {
|
|
|
6791
6847
|
fitToBounds(bounds, padding, redraw = true, animation) {
|
|
6792
6848
|
const b = bounds || this.getProjectedBounds();
|
|
6793
6849
|
if (b) {
|
|
6794
|
-
const pad =
|
|
6850
|
+
const pad = padding ?? (bounds ? 0 : this.options.padding), fullField = this.getField(false), padArr = (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isArray)(pad) ? pad : [pad, pad, pad, pad];
|
|
6795
6851
|
this.padding = [
|
|
6796
6852
|
(0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.relativeLength)(padArr[0], fullField.height),
|
|
6797
6853
|
(0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.relativeLength)(padArr[1], fullField.width),
|
|
@@ -7664,7 +7720,6 @@ class MapViewInset extends MapView {
|
|
|
7664
7720
|
* */
|
|
7665
7721
|
|
|
7666
7722
|
|
|
7667
|
-
const { animObject, stop } = (highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_default());
|
|
7668
7723
|
|
|
7669
7724
|
|
|
7670
7725
|
|
|
@@ -7713,7 +7768,7 @@ class MapSeries extends ScatterSeries {
|
|
|
7713
7768
|
* @private
|
|
7714
7769
|
*/
|
|
7715
7770
|
animate(init) {
|
|
7716
|
-
const { chart, group } = this, animation = animObject(this.options.animation);
|
|
7771
|
+
const { chart, group } = this, animation = (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.animObject)(this.options.animation);
|
|
7717
7772
|
// Initialize the animation
|
|
7718
7773
|
if (init) {
|
|
7719
7774
|
// Scale down the group and place it in the center
|
|
@@ -7835,8 +7890,8 @@ class MapSeries extends ScatterSeries {
|
|
|
7835
7890
|
!(0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber)(params['stroke-width']));
|
|
7836
7891
|
// When strokeWidth is animating
|
|
7837
7892
|
if (animateIn || animateOut) {
|
|
7838
|
-
const strokeWidth =
|
|
7839
|
-
|
|
7893
|
+
const strokeWidth = series.getStrokeWidth(series.options) ??
|
|
7894
|
+
1, inheritedStrokeWidth = (strokeWidth /
|
|
7840
7895
|
(chart.mapView?.getScale() ||
|
|
7841
7896
|
1));
|
|
7842
7897
|
// For animating from undefined, .attr() reads the
|
|
@@ -7865,8 +7920,7 @@ class MapSeries extends ScatterSeries {
|
|
|
7865
7920
|
}
|
|
7866
7921
|
// Apply the SVG transform
|
|
7867
7922
|
transformGroups.forEach((transformGroup, i) => {
|
|
7868
|
-
const view = i === 0 ? mapView : mapView.insets[i - 1], svgTransform = view.getSVGTransform(), strokeWidth = (
|
|
7869
|
-
);
|
|
7923
|
+
const view = i === 0 ? mapView : mapView.insets[i - 1], svgTransform = view.getSVGTransform(), strokeWidth = (this.getStrokeWidth(this.options) ?? 1);
|
|
7870
7924
|
/*
|
|
7871
7925
|
Animate or move to the new zoom level. In order to prevent
|
|
7872
7926
|
flickering as the different transform components are set out of sync
|
|
@@ -7911,7 +7965,7 @@ class MapSeries extends ScatterSeries {
|
|
|
7911
7965
|
});
|
|
7912
7966
|
animatePoints(scaleStep); // #18166
|
|
7913
7967
|
};
|
|
7914
|
-
const animOptions = (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.merge)(animObject(renderer.globalAnimation)), userStep = animOptions.step;
|
|
7968
|
+
const animOptions = (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.merge)((0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.animObject)(renderer.globalAnimation)), userStep = animOptions.step;
|
|
7915
7969
|
animOptions.step = function () {
|
|
7916
7970
|
if (userStep) {
|
|
7917
7971
|
userStep.apply(this, arguments);
|
|
@@ -7933,7 +7987,7 @@ class MapSeries extends ScatterSeries {
|
|
|
7933
7987
|
// When dragging or first rendering, animation is off
|
|
7934
7988
|
}
|
|
7935
7989
|
else {
|
|
7936
|
-
stop(transformGroup);
|
|
7990
|
+
(0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.stop)(transformGroup);
|
|
7937
7991
|
transformGroup.attr((0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.merge)(svgTransform, { 'stroke-width': strokeWidth / scale }));
|
|
7938
7992
|
animatePoints(scale); // #18166
|
|
7939
7993
|
}
|
|
@@ -7967,9 +8021,7 @@ class MapSeries extends ScatterSeries {
|
|
|
7967
8021
|
if (!point.bounds) {
|
|
7968
8022
|
let bounds = point.getProjectedBounds(projection);
|
|
7969
8023
|
if (bounds) {
|
|
7970
|
-
point.labelrank = (
|
|
7971
|
-
// Bigger shape, higher rank
|
|
7972
|
-
((bounds.x2 - bounds.x1) *
|
|
8024
|
+
point.labelrank = (point.labelrank ?? ((bounds.x2 - bounds.x1) *
|
|
7973
8025
|
(bounds.y2 - bounds.y1)));
|
|
7974
8026
|
const { midX, midY } = bounds;
|
|
7975
8027
|
if (insets && (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber)(midX) && (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber)(midY)) {
|
|
@@ -9334,7 +9386,7 @@ class BubbleLegendItem {
|
|
|
9334
9386
|
* Legend instance
|
|
9335
9387
|
*/
|
|
9336
9388
|
drawLegendSymbol(legend) {
|
|
9337
|
-
const itemDistance = (
|
|
9389
|
+
const itemDistance = (legend.options.itemDistance ?? 20), legendItem = this.legendItem || {}, options = this.options, ranges = options.ranges, connectorDistance = options.connectorDistance;
|
|
9338
9390
|
let connectorSpace;
|
|
9339
9391
|
// Do not create bubbleLegend now if ranges or ranges values are not
|
|
9340
9392
|
// specified or if are empty array.
|
|
@@ -9380,13 +9432,17 @@ class BubbleLegendItem {
|
|
|
9380
9432
|
// Allow to parts of styles be used individually for range
|
|
9381
9433
|
ranges.forEach(function (range, i) {
|
|
9382
9434
|
if (!styledMode) {
|
|
9383
|
-
bubbleAttribs.stroke =
|
|
9435
|
+
bubbleAttribs.stroke =
|
|
9436
|
+
range.borderColor ?? options.borderColor ?? series.color;
|
|
9384
9437
|
bubbleAttribs.fill = range.color || options.color;
|
|
9385
9438
|
if (!bubbleAttribs.fill) {
|
|
9386
9439
|
bubbleAttribs.fill = series.color;
|
|
9387
9440
|
bubbleAttribs['fill-opacity'] = fillOpacity ?? 1;
|
|
9388
9441
|
}
|
|
9389
|
-
connectorAttribs.stroke =
|
|
9442
|
+
connectorAttribs.stroke =
|
|
9443
|
+
range.connectorColor ??
|
|
9444
|
+
options.connectorColor ??
|
|
9445
|
+
series.color;
|
|
9390
9446
|
}
|
|
9391
9447
|
// Set options needed for rendering each range
|
|
9392
9448
|
ranges[i].radius = this.getRangeRadius(range.value);
|
|
@@ -9583,10 +9639,10 @@ class BubbleLegendItem {
|
|
|
9583
9639
|
if (s.isBubble && !s.ignoreSeries) {
|
|
9584
9640
|
zData = s.getColumn('z').filter(highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber);
|
|
9585
9641
|
if (zData.length) {
|
|
9586
|
-
minZ = (
|
|
9642
|
+
minZ = (s.options.zMin ?? Math.min(minZ, Math.max((0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.arrayMin)(zData), s.options.displayNegative === false ?
|
|
9587
9643
|
s.options.zThreshold :
|
|
9588
9644
|
-Number.MAX_VALUE)));
|
|
9589
|
-
maxZ = (
|
|
9645
|
+
maxZ = (s.options.zMax ?? Math.max(maxZ, (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.arrayMax)(zData)));
|
|
9590
9646
|
}
|
|
9591
9647
|
}
|
|
9592
9648
|
});
|
|
@@ -10104,7 +10160,8 @@ function onAxisFoundExtremes() {
|
|
|
10104
10160
|
['min', 'userMin', pxMin],
|
|
10105
10161
|
['max', 'userMax', pxMax]
|
|
10106
10162
|
].forEach((keys) => {
|
|
10107
|
-
if (typeof (
|
|
10163
|
+
if (typeof (this.options[keys[0]] ??
|
|
10164
|
+
this[keys[1]]) === 'undefined') {
|
|
10108
10165
|
this[keys[0]] += keys[2] / transA;
|
|
10109
10166
|
}
|
|
10110
10167
|
});
|
|
@@ -10201,10 +10258,10 @@ class BubbleSeries extends BubbleSeries_ScatterSeries {
|
|
|
10201
10258
|
if (otherSeries.bubblePadding && otherSeries.reserveSpace()) {
|
|
10202
10259
|
const zExtremes = (otherSeries.onPoint || otherSeries).getZExtremes();
|
|
10203
10260
|
if (zExtremes) {
|
|
10204
|
-
//
|
|
10261
|
+
// Use nullish coalescing because min or max can be 0.
|
|
10205
10262
|
// #17280
|
|
10206
|
-
zMin = Math.min((
|
|
10207
|
-
zMax = Math.max((
|
|
10263
|
+
zMin = Math.min((zMin ?? zExtremes.zMin), zExtremes.zMin);
|
|
10264
|
+
zMax = Math.max((zMax ?? zExtremes.zMax), zExtremes.zMax);
|
|
10208
10265
|
valid = true;
|
|
10209
10266
|
}
|
|
10210
10267
|
}
|
|
@@ -10342,19 +10399,19 @@ class BubbleSeries extends BubbleSeries_ScatterSeries {
|
|
|
10342
10399
|
}
|
|
10343
10400
|
return isPercent ? smallestSize * length / 100 : length;
|
|
10344
10401
|
};
|
|
10345
|
-
const minPxSize = getPxSize(
|
|
10402
|
+
const minPxSize = getPxSize(this.options.minSize ?? 8);
|
|
10346
10403
|
// Prioritize min size if conflict to make sure bubbles are
|
|
10347
10404
|
// always visible. #5873
|
|
10348
|
-
const maxPxSize = Math.max(getPxSize(
|
|
10405
|
+
const maxPxSize = Math.max(getPxSize(this.options.maxSize ?? '20%'), minPxSize);
|
|
10349
10406
|
return { minPxSize, maxPxSize };
|
|
10350
10407
|
}
|
|
10351
10408
|
getZExtremes() {
|
|
10352
10409
|
const options = this.options, zData = this.getColumn('z').filter(highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber);
|
|
10353
10410
|
if (zData.length) {
|
|
10354
|
-
const zMin = (
|
|
10411
|
+
const zMin = (options.zMin ?? (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.clamp)((0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.arrayMin)(zData), options.displayNegative === false ?
|
|
10355
10412
|
(options.zThreshold || 0) :
|
|
10356
10413
|
-Number.MAX_VALUE, Number.MAX_VALUE));
|
|
10357
|
-
const zMax = (
|
|
10414
|
+
const zMax = (options.zMax ?? (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.arrayMax)(zData));
|
|
10358
10415
|
if ((0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber)(zMin) && (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.isNumber)(zMax)) {
|
|
10359
10416
|
return { zMin, zMax };
|
|
10360
10417
|
}
|
|
@@ -10426,6 +10483,21 @@ BubbleSeries.defaultOptions = (0,highcharts_commonjs_highcharts_commonjs2_highch
|
|
|
10426
10483
|
* @since 6.1.0
|
|
10427
10484
|
*/
|
|
10428
10485
|
animationLimit: 250,
|
|
10486
|
+
/**
|
|
10487
|
+
* When using automatic point colors pulled from the global
|
|
10488
|
+
* [colors](colors) or series-specific
|
|
10489
|
+
* [plotOptions.bubble.colors](series.colors) collections, this option
|
|
10490
|
+
* determines whether the chart should receive one color per series or
|
|
10491
|
+
* one color per point.
|
|
10492
|
+
*
|
|
10493
|
+
* In styled mode, the `colors` or `series.colors` arrays are not
|
|
10494
|
+
* supported, and instead this option gives the points individual color
|
|
10495
|
+
* class names on the form `highcharts-color-{n}`.
|
|
10496
|
+
*
|
|
10497
|
+
* @type {boolean}
|
|
10498
|
+
* @default false
|
|
10499
|
+
* @apioption plotOptions.bubble.colorByPoint
|
|
10500
|
+
*/
|
|
10429
10501
|
/**
|
|
10430
10502
|
* Whether to display negative sized bubbles. The threshold is given
|
|
10431
10503
|
* by the [zThreshold](#plotOptions.bubble.zThreshold) option, and negative
|
|
@@ -11167,7 +11239,7 @@ class HeatmapPoint extends HeatmapPoint_ScatterPoint {
|
|
|
11167
11239
|
* Functions
|
|
11168
11240
|
*
|
|
11169
11241
|
* */
|
|
11170
|
-
/** @
|
|
11242
|
+
/** @internal */
|
|
11171
11243
|
applyOptions(options, x) {
|
|
11172
11244
|
// #17970, if point is null remove its color, because it may be updated
|
|
11173
11245
|
if (this.isNull || this.value === null) {
|
|
@@ -11178,10 +11250,10 @@ class HeatmapPoint extends HeatmapPoint_ScatterPoint {
|
|
|
11178
11250
|
'null' : 'point';
|
|
11179
11251
|
return this;
|
|
11180
11252
|
}
|
|
11181
|
-
/** @
|
|
11253
|
+
/** @internal */
|
|
11182
11254
|
getCellAttributes() {
|
|
11183
11255
|
const point = this, series = point.series, seriesOptions = series.options, xPad = (seriesOptions.colsize || 1) / 2, yPad = (seriesOptions.rowsize || 1) / 2, xAxis = series.xAxis, yAxis = series.yAxis, markerOptions = point.options.marker || series.options.marker, pointPlacement = series.pointPlacementToXValue(), // #7860
|
|
11184
|
-
pointPadding =
|
|
11256
|
+
pointPadding = point.pointPadding ?? seriesOptions.pointPadding ?? 0, cellAttr = {
|
|
11185
11257
|
x1: (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.clamp)(Math.round(xAxis.len -
|
|
11186
11258
|
xAxis.translate(point.x - xPad, false, true, false, true, -pointPlacement)), -xAxis.len, 2 * xAxis.len),
|
|
11187
11259
|
x2: (0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.clamp)(Math.round(xAxis.len -
|
|
@@ -11216,7 +11288,7 @@ class HeatmapPoint extends HeatmapPoint_ScatterPoint {
|
|
|
11216
11288
|
return cellAttr;
|
|
11217
11289
|
}
|
|
11218
11290
|
/**
|
|
11219
|
-
* @
|
|
11291
|
+
* @internal
|
|
11220
11292
|
*/
|
|
11221
11293
|
haloPath(size) {
|
|
11222
11294
|
if (!size) {
|
|
@@ -11234,7 +11306,7 @@ class HeatmapPoint extends HeatmapPoint_ScatterPoint {
|
|
|
11234
11306
|
/**
|
|
11235
11307
|
* Color points have a value option that determines whether or not it is
|
|
11236
11308
|
* a null point
|
|
11237
|
-
* @
|
|
11309
|
+
* @internal
|
|
11238
11310
|
*/
|
|
11239
11311
|
isValid() {
|
|
11240
11312
|
// Undefined is allowed
|
|
@@ -11921,7 +11993,7 @@ const { doc } = (highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highch
|
|
|
11921
11993
|
/**
|
|
11922
11994
|
* Find color of point based on color axis.
|
|
11923
11995
|
*
|
|
11924
|
-
* @
|
|
11996
|
+
* @internal
|
|
11925
11997
|
*
|
|
11926
11998
|
* @param {number | null} value
|
|
11927
11999
|
* Value to find corresponding color on the color axis.
|
|
@@ -11939,8 +12011,8 @@ function colorFromPoint(value, point) {
|
|
|
11939
12011
|
.split(')')[0]
|
|
11940
12012
|
.split('(')[1]
|
|
11941
12013
|
.split(',')
|
|
11942
|
-
.map((s) => (
|
|
11943
|
-
rgba[3] = (
|
|
12014
|
+
.map((s) => (parseFloat(s) ?? parseInt(s, 10))));
|
|
12015
|
+
rgba[3] = (rgba[3] ?? 1.0) * 255;
|
|
11944
12016
|
if (!(0,highcharts_commonjs_highcharts_commonjs2_highcharts_root_Highcharts_.defined)(value) || !point.visible) {
|
|
11945
12017
|
rgba[3] = 0;
|
|
11946
12018
|
}
|
|
@@ -11950,7 +12022,7 @@ function colorFromPoint(value, point) {
|
|
|
11950
12022
|
}
|
|
11951
12023
|
/**
|
|
11952
12024
|
* Method responsible for creating a canvas for interpolation image.
|
|
11953
|
-
* @
|
|
12025
|
+
* @internal
|
|
11954
12026
|
*/
|
|
11955
12027
|
function getContext(series) {
|
|
11956
12028
|
const { canvas, context } = series;
|
|
@@ -12003,7 +12075,7 @@ const { colorFromPoint: HeatmapSeries_colorFromPoint, getContext: HeatmapSeries_
|
|
|
12003
12075
|
*
|
|
12004
12076
|
* */
|
|
12005
12077
|
/**
|
|
12006
|
-
* @
|
|
12078
|
+
* @internal
|
|
12007
12079
|
* @class
|
|
12008
12080
|
* @name Highcharts.seriesTypes.heatmap
|
|
12009
12081
|
*
|
|
@@ -12027,7 +12099,7 @@ class HeatmapSeries extends HeatmapSeries_ScatterSeries {
|
|
|
12027
12099
|
*
|
|
12028
12100
|
* */
|
|
12029
12101
|
/**
|
|
12030
|
-
* @
|
|
12102
|
+
* @internal
|
|
12031
12103
|
*/
|
|
12032
12104
|
drawPoints() {
|
|
12033
12105
|
const series = this, seriesOptions = series.options, interpolation = seriesOptions.interpolation, seriesMarkerOptions = seriesOptions.marker || {};
|
|
@@ -12086,13 +12158,13 @@ class HeatmapSeries extends HeatmapSeries_ScatterSeries {
|
|
|
12086
12158
|
}
|
|
12087
12159
|
/**
|
|
12088
12160
|
* Override to use rectangle by default
|
|
12089
|
-
* @
|
|
12161
|
+
* @internal
|
|
12090
12162
|
*/
|
|
12091
12163
|
getSymbol() {
|
|
12092
12164
|
this.symbol = this.options.marker?.symbol || 'rect';
|
|
12093
12165
|
}
|
|
12094
12166
|
/**
|
|
12095
|
-
* @
|
|
12167
|
+
* @internal
|
|
12096
12168
|
*/
|
|
12097
12169
|
getExtremes() {
|
|
12098
12170
|
// Get the extremes from the value data
|
|
@@ -12110,7 +12182,7 @@ class HeatmapSeries extends HeatmapSeries_ScatterSeries {
|
|
|
12110
12182
|
/**
|
|
12111
12183
|
* Override to also allow null points, used when building the k-d-tree for
|
|
12112
12184
|
* tooltips in boost mode.
|
|
12113
|
-
* @
|
|
12185
|
+
* @internal
|
|
12114
12186
|
*/
|
|
12115
12187
|
getValidPoints(points, insideOnly) {
|
|
12116
12188
|
return HeatmapSeries_Series.prototype.getValidPoints.call(this, points, insideOnly, true);
|
|
@@ -12118,20 +12190,20 @@ class HeatmapSeries extends HeatmapSeries_ScatterSeries {
|
|
|
12118
12190
|
/**
|
|
12119
12191
|
* Define hasData function for non-cartesian series. Returns true if the
|
|
12120
12192
|
* series has points at all.
|
|
12121
|
-
* @
|
|
12193
|
+
* @internal
|
|
12122
12194
|
*/
|
|
12123
12195
|
hasData() {
|
|
12124
12196
|
return !!this.dataTable.rowCount;
|
|
12125
12197
|
}
|
|
12126
12198
|
/**
|
|
12127
12199
|
* Override the init method to add point ranges on both axes.
|
|
12128
|
-
* @
|
|
12200
|
+
* @internal
|
|
12129
12201
|
*/
|
|
12130
12202
|
init() {
|
|
12131
12203
|
super.init.apply(this, arguments);
|
|
12132
12204
|
const options = this.options;
|
|
12133
12205
|
// #3758, prevent resetting in setData
|
|
12134
|
-
options.pointRange =
|
|
12206
|
+
options.pointRange = options.pointRange ?? (options.colsize || 1);
|
|
12135
12207
|
// General point range
|
|
12136
12208
|
this.yAxis.axisPointRange = options.rowsize || 1;
|
|
12137
12209
|
// Bind new symbol names
|
|
@@ -12154,7 +12226,7 @@ class HeatmapSeries extends HeatmapSeries_ScatterSeries {
|
|
|
12154
12226
|
}
|
|
12155
12227
|
}
|
|
12156
12228
|
/**
|
|
12157
|
-
* @
|
|
12229
|
+
* @internal
|
|
12158
12230
|
*/
|
|
12159
12231
|
markerAttribs(point, state) {
|
|
12160
12232
|
const shapeArgs = point.shapeArgs || {};
|
|
@@ -12188,7 +12260,7 @@ class HeatmapSeries extends HeatmapSeries_ScatterSeries {
|
|
|
12188
12260
|
return shapeArgs;
|
|
12189
12261
|
}
|
|
12190
12262
|
/**
|
|
12191
|
-
* @
|
|
12263
|
+
* @internal
|
|
12192
12264
|
*/
|
|
12193
12265
|
pointAttribs(point, state) {
|
|
12194
12266
|
const series = this, attr = HeatmapSeries_Series.prototype.pointAttribs.call(series, point, state), seriesOptions = series.options || {}, plotOptions = series.chart.options.plotOptions || {}, seriesPlotOptions = plotOptions.series || {}, heatmapPlotOptions = plotOptions.heatmap || {},
|
|
@@ -12218,7 +12290,7 @@ class HeatmapSeries extends HeatmapSeries_ScatterSeries {
|
|
|
12218
12290
|
return attr;
|
|
12219
12291
|
}
|
|
12220
12292
|
/**
|
|
12221
|
-
* @
|
|
12293
|
+
* @internal
|
|
12222
12294
|
*/
|
|
12223
12295
|
translate() {
|
|
12224
12296
|
const series = this, options = series.options, { borderRadius, marker } = options, symbol = marker?.symbol || 'rect', shape = HeatmapSeries_symbols[symbol] ? symbol : 'rect', hasRegularShape = ['circle', 'square'].indexOf(shape) !== -1;
|
|
@@ -12270,7 +12342,7 @@ HeatmapSeries.defaultOptions = (0,highcharts_commonjs_highcharts_commonjs2_highc
|
|
|
12270
12342
|
specialGroup: 'group',
|
|
12271
12343
|
trackerGroups: Series_ColorMapComposition.seriesMembers.trackerGroups,
|
|
12272
12344
|
/**
|
|
12273
|
-
* @
|
|
12345
|
+
* @internal
|
|
12274
12346
|
*/
|
|
12275
12347
|
alignDataLabel: HeatmapSeries_ColumnSeries.prototype.alignDataLabel,
|
|
12276
12348
|
colorAttribs: Series_ColorMapComposition.seriesMembers.colorAttribs
|