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/highcharts-more.d.ts
CHANGED
|
@@ -6,10 +6,14 @@
|
|
|
6
6
|
import * as globals from "./globals";
|
|
7
7
|
import * as _Highcharts from "./highcharts";
|
|
8
8
|
declare module "./highcharts" {
|
|
9
|
+
/**
|
|
10
|
+
* The point key used to position a box plot data label.
|
|
11
|
+
*/
|
|
12
|
+
type BoxPlotPointValKey = ("high"|"low"|"median"|"q1"|"q3");
|
|
9
13
|
interface BorderRadiusOptionsObject {
|
|
10
|
-
radius
|
|
11
|
-
scope
|
|
12
|
-
where
|
|
14
|
+
radius?: (number|string);
|
|
15
|
+
scope?: ("individual"|"point"|"stack");
|
|
16
|
+
where?: ("all"|"end");
|
|
13
17
|
}
|
|
14
18
|
interface Point {
|
|
15
19
|
/**
|
package/highcharts-more.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
!/**
|
|
2
|
-
* Highcharts JS v13.0.
|
|
2
|
+
* Highcharts JS v13.0.2 (2026-08-27)
|
|
3
3
|
* @module highcharts/highcharts-more
|
|
4
4
|
* @requires highcharts
|
|
5
5
|
*
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
*
|
|
8
8
|
* A commercial license may be required depending on use,
|
|
9
9
|
* see www.highcharts.com/license
|
|
10
|
-
*/function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.SeriesRegistry,t._Highcharts.Series.types.column,t._Highcharts.Templating,t._Highcharts.Point,t._Highcharts.Color,t._Highcharts.Chart,t._Highcharts.SVGElement,t._Highcharts.Series,t._Highcharts.StackItem):"function"==typeof define&&define.amd?define("highcharts/highcharts-more",["highcharts/highcharts"],function(t){return e(t,t.SeriesRegistry,t.Series,["types"],["column"],t.Templating,t.Point,t.Color,t.Chart,t.SVGElement,t.Series,t.StackItem)}):"object"==typeof exports?exports["highcharts/highcharts-more"]=e(t._Highcharts,t._Highcharts.SeriesRegistry,t._Highcharts.Series.types.column,t._Highcharts.Templating,t._Highcharts.Point,t._Highcharts.Color,t._Highcharts.Chart,t._Highcharts.SVGElement,t._Highcharts.Series,t._Highcharts.StackItem):t.Highcharts=e(t.Highcharts,t.Highcharts.SeriesRegistry,t.Highcharts.Series.types.column,t.Highcharts.Templating,t.Highcharts.Point,t.Highcharts.Color,t.Highcharts.Chart,t.Highcharts.SVGElement,t.Highcharts.Series,t.Highcharts.StackItem)}("u"<typeof window?this:window,(t,e,i,s,a,o,r,n,l,h)=>(()=>{"use strict";var p,d,c,u,g,m={28:t=>{t.exports=n},184:t=>{t.exports=h},260:t=>{t.exports=a},448:t=>{t.exports=i},512:t=>{t.exports=e},620:t=>{t.exports=o},820:t=>{t.exports=l},944:e=>{e.exports=t},960:t=>{t.exports=r},984:t=>{t.exports=s}},f={};function b(t){var e=f[t];if(void 0!==e)return e.exports;var i=f[t]={exports:{}};return m[t](i,i.exports,b),i.exports}b.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return b.d(e,{a:e}),e},b.d=(t,e)=>{for(var i in e)b.o(e,i)&&!b.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},b.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var y={};b.d(y,{default:()=>ie});var x=b(944),v=b.n(x),P=b(512),M=b.n(P);let{deg2rad:k}=v();(p=c||(c={})).getCenter=function(){let t=this.options,e=this.chart,i=2*(t.slicedOffset||0),s=e.plotWidth-2*i,a=e.plotHeight-2*i,o=t.center,r=Math.min(s,a),n=t.thickness,l,h=t.size,p=t.innerSize||0,d,c;"string"==typeof h&&(h=parseFloat(h)),"string"==typeof p&&(p=parseFloat(p));let u=[(0,x.pick)(o?.[0],"50%"),(0,x.pick)(o?.[1],"50%"),(0,x.pick)(h&&h<0?void 0:t.size,"100%"),(0,x.pick)(p&&p<0?void 0:t.innerSize||0,"0%")];for(d=0;d<4;++d)c=u[d],l=d<2||2===d&&/%$/.test(c),u[d]=(0,x.relativeLength)(c,[s,a,r,u[2]][d])+(l?i:0);return u[3]>u[2]&&(u[3]=u[2]),(0,x.isNumber)(n)&&2*n<u[2]&&n>0&&(u[3]=u[2]-2*n),(0,x.fireEvent)(this,"afterGetCenter",{positions:u}),u},p.getStartAndEndRadians=function(t,e){let i=(0,x.isNumber)(t)?t:0,s=(0,x.isNumber)(e)&&e>i&&e-i<360?e:i+360;return{start:k*(i+-90),end:k*(s+-90)}};let L=c;function w(t){let e,i=this;return t&&i.pane.forEach(s=>{S(t.chartX-i.plotLeft,t.chartY-i.plotTop,s.center)&&(e=s)}),e}function S(t,e,i,s,a){let o=!0,r=i[0],n=i[1],l=2*Math.PI,h=Math.sqrt(Math.pow(t-r,2)+Math.pow(e-n,2));if((0,x.defined)(s)&&(0,x.defined)(a)){let i=Math.atan2((0,x.correctFloat)(e-n,8),(0,x.correctFloat)(t-r,8));i=(i+l)%l,s=(s+l)%l,Math.abs((a=(a+l)%l)-s)>1e-6&&(o=s>a?i>=s||i<=a:i>=s&&i<=a)}else o=!0;return h<=Math.ceil(i[2]/2)&&o}function A(t){this.polar&&(t.options.inverted&&([t.x,t.y]=[t.y,t.x]),t.isInsidePlot=this.pane.some(e=>S(t.x,t.y,e.center,e.axis&&e.axis.normalizedStartAngleRad,e.axis&&e.axis.normalizedEndAngleRad)))}function N(t){let e=this.chart;t.hoverPoint&&t.hoverPoint.plotX&&t.hoverPoint.plotY&&e.hoverPane&&!S(t.hoverPoint.plotX,t.hoverPoint.plotY,e.hoverPane.center)&&(t.hoverPoint=void 0)}function T(t){let e=this.chart;e.polar?(e.hoverPane=e.getHoverPane(t),t.filter=function(i){return i.visible&&!(!t.shared&&i.directTouch)&&(0,x.pick)(i.options.enableMouseTracking,!0)&&(!e.hoverPane||i.xAxis.pane===e.hoverPane)}):e.hoverPane=void 0}let{defaultOptions:C}=v(),X={shape:"arc",borderRadius:void 0,borderWidth:0,borderColor:"var(--highcharts-neutral-color-20)",backgroundColor:"var(--highcharts-neutral-color-3)",from:-Number.MAX_VALUE,to:Number.MAX_VALUE,outerRadius:"100%"},Y={borderRadius:3,margin:void 0};C.pane=Y;class E{constructor(t,e){this.coll="pane",this.init(t,e)}init(t,e){this.chart=e,this.background=[],e.pane.push(this),this.setOptions(t)}hasSeriesType(t){return!!(this.chart.options?.chart?.type===t||this.chart.options?.series?.some(e=>e.type===t))}setOptions(t){this.options=(0,x.merge)(Y,this.chart.angular?{background:{},innerSize:"85%"}:{},t)}render(){let t=this.options,e=this.chart.renderer;this.group||(this.group=e.g("pane-group").attr({zIndex:t.zIndex||0}).add()),this.updateCenter();let i=this.options.background;if(i){let t=Math.max((i=(0,x.splat)(i)).length,this.background.length||0);for(let e=0;e<t;e++)i[e]&&this.axis?this.renderBackground((0,x.merge)(X,{borderRadius:this.options.borderRadius},i[e]),e):this.background[e]&&(this.background[e]=this.background[e].destroy(),this.background.splice(e,1))}}renderBackground(t,e){let i={class:"highcharts-pane "+(t.className||"")},s="animate";this.chart.styledMode||(0,x.extend)(i,{fill:t.backgroundColor,stroke:t.borderColor,"stroke-width":t.borderWidth}),this.background[e]||(this.background[e]=this.chart.renderer.path().add(this.group),s="attr"),this.background[e][s]({d:this.axis.getPlotBandPath(t.from,t.to,t)}).attr(i)}updateCenter(){let{axis:t,chart:e,options:i}=this,{plotHeight:s,plotWidth:a}=e,o=i.center?.[1],r=i.margin,n=this.axis?.options.labels,l=i.thickness,h=Array.isArray(r)?r:[r,r,r,r],p=[],d=i.size,c,u=0,g=0,m=Math.min(e.series.reduce((t,e)=>{if(!e.is("gauge")||e.yAxis?.pane!==this)return t;let i=(0,x.splat)(e.options.dataLabels)[0],s=0;return i&&!1!==i.enabled&&(s=(1-(0,x.getAlignFactor)(i.verticalAlign))*30+(i.y||0)),Math.max(t,s)},0),.3*s);if(n?.enabled){let t=String(n.style?.fontSize||""),e=(/px$/.test(t)?parseFloat(t):/em$/.test(t)?12*parseFloat(t):12)*1.2;g=Math.max(n.distance||0,0)+e/2}if(h.forEach((t,e)=>{p[e]=t??Math.max(g||0)}),t&&(void 0===d||void 0===o)){let{endAngleRad:e,startAngleRad:o}=t,r=2*Math.PI/360,n=.5+.5*Math.max(Math.sin((o<Math.PI/2&&e>Math.PI/2||(0,x.splat)(i.background).some(t=>t?.shape==="circle")?Math.PI:Math.max(Math.abs(o+Math.PI/2),Math.abs(e+Math.PI/2)))-Math.PI/2),Math.sin(0*r));if(c=(s-p[0]-p[2])/n,void 0===d){let t=(d=Math.max(Math.min(c,a-p[1]-p[3]),1))+p[0]+p[2]+2*(m-s);t>0&&(d=Math.max(1,d-(u=t)))}}this.center=(t||{}).center=L.getCenter.call(this),(0,x.isNumber)(d)&&d>=0&&(this.center[2]=d,(0,x.isNumber)(l)?this.center[3]=this.center[2]-2*l:this.center[3]=Math.min(d,(0,x.relativeLength)(i.innerSize||0,d))),!(0,x.defined)(o)&&(i.size?this.center[1]=s/2:(0,x.isNumber)(c)&&(this.center[1]=(c+this.center[2]-u)/4+p[0]))}update(t,e){(0,x.merge)(!0,this.options,t),this.setOptions(this.options),this.render(),this.chart.axes.forEach(function(t){t.pane===this&&(t.pane=null,t.update({},e))},this)}}E.compose=function(t,e){let i=t.prototype;i.getHoverPane||(i.collectionsWithUpdate.push("pane"),i.getHoverPane=w,(0,x.addEvent)(t,"afterIsInsidePlot",A),(0,x.addEvent)(e,"afterGetHoverData",N),(0,x.addEvent)(e,"beforeGetHoverData",T))};let{area:{prototype:{pointClass:R,pointClass:{prototype:I}}}}=M().seriesTypes,z=class extends R{setState(){let t=this.state,e=this.series,i=e.chart.polar;(0,x.defined)(this.plotHigh)||(this.plotHigh=e.yAxis.toPixels(this.high,!0)),(0,x.defined)(this.plotLow)||(this.plotLow=this.plotY=e.yAxis.toPixels(this.low,!0)),e.lowerStateMarkerGraphic=e.stateMarkerGraphic,e.stateMarkerGraphic=e.upperStateMarkerGraphic,this.graphic=this.graphics&&this.graphics[1],this.plotY=this.plotHigh,i&&(0,x.isNumber)(this.plotHighX)&&(this.plotX=this.plotHighX),I.setState.apply(this,arguments),this.state=t,this.plotY=this.plotLow,this.graphic=this.graphics&&this.graphics[0],i&&(0,x.isNumber)(this.plotLowX)&&(this.plotX=this.plotLowX),e.upperStateMarkerGraphic=e.stateMarkerGraphic,e.stateMarkerGraphic=e.lowerStateMarkerGraphic,e.lowerStateMarkerGraphic=void 0;let s=e.modifyMarkerSettings();I.setState.apply(this,arguments),e.restoreMarkerSettings(s)}haloPath(){let t=this.series.chart.polar,e=[];return this.plotY=this.plotLow,t&&(0,x.isNumber)(this.plotLowX)&&(this.plotX=this.plotLowX),this.isInside&&(e=I.haloPath.apply(this,arguments)),this.plotY=this.plotHigh,t&&(0,x.isNumber)(this.plotHighX)&&(this.plotX=this.plotHighX),this.isTopInside&&(e=e.concat(I.haloPath.apply(this,arguments))),e}isValid(){return(0,x.isNumber)(this.low)&&(0,x.isNumber)(this.high)}},{noop:D}=v(),{area:O,area:{prototype:H},column:{prototype:B}}=M().seriesTypes;class W extends O{toYData(t){return[t.low,t.high]}highToXY(t){let e=this.chart,i=this.xAxis.postTranslate(t.rectPlotX||0,this.yAxis.len-(t.plotHigh||0));t.plotHighX=i.x-e.plotLeft,t.plotHigh=i.y-e.plotTop,t.plotLowX=t.plotX}getGraphPath(t){let e=[],i=[],s=H.getGraphPath,a=this.options,o=this.chart.polar,r=o&&!1!==a.connectEnds,n=a.connectNulls,l,h,p,d=a.step;for(l=(t=t||this.points).length;l--;){h=t[l];let s=o?{plotX:h.rectPlotX,plotY:h.yBottom,doCurve:!1}:{plotX:h.plotX,plotY:h.plotY,doCurve:!1};h.isNull||r||n||t[l+1]&&!t[l+1].isNull||i.push(s),p={polarPlotY:h.polarPlotY,rectPlotX:h.rectPlotX,yBottom:h.yBottom,plotX:(0,x.pick)(h.plotHighX,h.plotX),plotY:h.plotHigh,isNull:h.isNull},i.push(p),e.push(p),h.isNull||r||n||t[l-1]&&!t[l-1].isNull||i.push(s)}let c=s.call(this,t);d&&(!0===d&&(d="left"),a.step=({left:"right",center:"center",right:"left"})[d]);let u=s.call(this,e),g=s.call(this,i);a.step=d;let m=[].concat(c,u);return!this.chart.polar&&g[0]&&"M"===g[0][0]&&(g[0]=["L",g[0][1],g[0][2]]),this.graphPath=m,this.areaPath=c.concat(g),m.isArea=!0,m.xMap=c.xMap,this.areaPath.xMap=c.xMap,m}drawDataLabels(){let t,e,i,s,a,o=this.points,r=o.length,n=[],l=this.options.dataLabels,h=this.chart.inverted;if(l){if((0,x.isArray)(l)?(s=l[0]||{enabled:!1},a=l[1]||{enabled:!1}):((s=(0,x.extend)({},l)).x=l.xHigh,s.y=l.yHigh,(a=(0,x.extend)({},l)).x=l.xLow,a.y=l.yLow),s.enabled||this.hasDataLabels?.()){for(t=r;t--;)if(e=o[t]){let{plotHigh:a=0,plotLow:o=0}=e;i=s.inside?a<o:a>o,e.y=e.high,e._plotY=e.plotY,e.plotY=a,n[t]=e.dataLabel,e.dataLabel=e.dataLabelUpper,e.below=i,h?s.align||(s.align=i?"right":"left"):s.verticalAlign||(s.verticalAlign=i?"top":"bottom")}for(this.options.dataLabels=s,H.drawDataLabels&&H.drawDataLabels.apply(this,arguments),t=r;t--;)(e=o[t])&&(e.dataLabelUpper=e.dataLabel,e.dataLabel=n[t],delete e.dataLabels,e.y=e.low,e.plotY=e._plotY)}if(a.enabled||this.hasDataLabels?.()){for(t=r;t--;)if(e=o[t]){let{plotHigh:t=0,plotLow:s=0}=e;i=a.inside?t<s:t>s,e.below=!i,h?a.align||(a.align=i?"left":"right"):a.verticalAlign||(a.verticalAlign=i?"bottom":"top")}this.options.dataLabels=a,H.drawDataLabels&&H.drawDataLabels.apply(this,arguments)}if(s.enabled)for(t=r;t--;)(e=o[t])&&(e.dataLabels=[e.dataLabelUpper,e.dataLabel].filter(function(t){return!!t}));this.options.dataLabels=l}}alignDataLabel(){B.alignDataLabel.apply(this,arguments)}modifyMarkerSettings(){let t={marker:this.options.marker,symbol:this.symbol};if(this.options.lowMarker){let{options:{marker:t,lowMarker:e}}=this;this.options.marker=(0,x.merge)(t,e),e.symbol&&(this.symbol=e.symbol)}return t}restoreMarkerSettings(t){this.options.marker=t.marker,this.symbol=t.symbol}drawPoints(){let t,e,i=this.points.length,s=this.modifyMarkerSettings();for(H.drawPoints.apply(this,arguments),this.restoreMarkerSettings(s),t=0;t<i;)(e=this.points[t]).graphics=e.graphics||[],e.origProps={plotY:e.plotY,plotX:e.plotX,isInside:e.isInside,negative:e.negative,zone:e.zone,y:e.y},(e.graphic||e.graphics[0])&&(e.graphics[0]=e.graphic),e.graphic=e.graphics[1],e.plotY=e.plotHigh,(0,x.defined)(e.plotHighX)&&(e.plotX=e.plotHighX),e.y=(0,x.pick)(e.high,e.origProps.y),e.negative=e.y<(this.options.threshold||0),this.zones.length&&(e.zone=e.getZone()),this.chart.polar||(e.isInside=e.isTopInside=void 0!==e.plotY&&e.plotY>=0&&e.plotY<=this.yAxis.len&&e.plotX>=0&&e.plotX<=this.xAxis.len),t++;for(H.drawPoints.apply(this,arguments),t=0;t<i;)(e=this.points[t]).graphics=e.graphics||[],(e.graphic||e.graphics[1])&&(e.graphics[1]=e.graphic),e.graphic=e.graphics[0],e.origProps&&((0,x.extend)(e,e.origProps),delete e.origProps),t++}hasMarkerChanged(t,e){let i=t.lowMarker,s=e.lowMarker||{};return i&&(!1===i.enabled||s.symbol!==i.symbol||s.height!==i.height||s.width!==i.width)||super.hasMarkerChanged(t,e)}}W.defaultOptions=(0,x.merge)(O.defaultOptions,{lineWidth:1,threshold:null,tooltip:{pointFormat:'<span style="color:{series.color}">●</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>'},trackByArea:!0,dataLabels:{align:void 0,verticalAlign:void 0,xLow:0,xHigh:0,yLow:0,yHigh:0}}),(0,x.addEvent)(W,"afterTranslate",function(){"low,high"===this.pointArrayMap.join(",")&&this.points.forEach(t=>{let e=t.high,i=t.plotY;t.isNull?t.plotY=void 0:(t.plotLow=i,t.plotHigh=(0,x.isNumber)(e)?this.yAxis.translate(this.dataModify?this.dataModify.modifyValue(e):e,!1,!0,void 0,!0):void 0,this.dataModify&&(t.yBottom=t.plotHigh))})},{order:0}),(0,x.addEvent)(W,"afterTranslate",function(){this.points.forEach(t=>{if(this.chart.polar)this.highToXY(t),t.plotLow=t.plotY,t.tooltipPos=[((t.plotHighX||0)+(t.plotLowX||0))/2,((t.plotHigh||0)+(t.plotLow||0))/2];else{let e=t.pos(!1,void 0,t.plotLow),i=t.pos(!1,void 0,t.plotHigh);e&&i&&(e[0]=(e[0]+i[0])/2,e[1]=(e[1]+i[1])/2),t.tooltipPos=e}})},{order:3}),(0,x.extend)(W.prototype,{deferTranslatePolar:!0,pointArrayMap:["low","high"],pointClass:z,pointValKey:"low",setStackedPoints:D}),M().registerSeriesType("arearange",W);let F=W,{spline:{prototype:G}}=M().seriesTypes;class q extends F{}q.defaultOptions=(0,x.merge)(F.defaultOptions),(0,x.extend)(q.prototype,{getPointSpline:G.getPointSpline}),M().registerSeriesType("areasplinerange",q);var V=b(448),_=b.n(V);let{noop:U}=v();class K extends _(){pointAttribs(){return{fill:this.color}}getWhiskerPair(t,e,i,s,a){let o=a.whiskers.strokeWidth(),r=(i,s)=>{let a=(0,x.relativeLength)(i,2*t)/2,r=(0,x.crisp)(s,o);return[["M",(0,x.crisp)(e-a),r],["L",(0,x.crisp)(e+a),r]]};return[...r(i,a.highPlot),...r(s,a.lowPlot)]}translate(){let t=this.yAxis,e=this.pointArrayMap;super.translate.apply(this),this.points.forEach(function(i){e.forEach(function(e){null!==i[e]&&(i[e+"Plot"]=t.translate(i[e],0,1,0,1))}),i.plotHigh=i.highPlot})}drawPoints(){let t,e,i,s,a,o,r,n,l,h,p,d=this.points,c=this.options,u=this.chart,g=u.renderer,m=!1!==this.doQuartiles,f=this.options.whiskerLength;for(let b of d){let d=(n=b.graphic)?"animate":"attr",y=b.shapeArgs,v={},P={},M={},k={},L=b.color||this.color,w=b.options.whiskerLength||f;if(void 0!==b.plotY){let S;l=y.width,p=(h=y.x)+l,t=m?b.q1Plot:b.lowPlot,e=m?b.q3Plot:b.lowPlot,i=b.highPlot,s=b.lowPlot,n||(b.graphic=n=g.g("point").add(this.group),b.stem=g.path().addClass("highcharts-boxplot-stem").add(n),f&&(b.whiskers=g.path().addClass("highcharts-boxplot-whisker").add(n)),m&&(b.box=g.path(r).addClass("highcharts-boxplot-box").add(n)),b.medianShape=g.path(o).addClass("highcharts-boxplot-median").add(n)),u.styledMode||(P.stroke=b.stemColor||c.stemColor||L,P["stroke-width"]=(0,x.pick)(b.stemWidth,c.stemWidth,c.lineWidth),P.dashstyle=b.stemDashStyle||c.stemDashStyle||c.dashStyle,b.stem.attr(P),w&&(M.stroke=b.whiskerColor||c.whiskerColor||L,M["stroke-width"]=(0,x.pick)(b.whiskerWidth,c.whiskerWidth,c.lineWidth),M.dashstyle=b.whiskerDashStyle||c.whiskerDashStyle||c.dashStyle,b.whiskers.attr(M)),m&&(v.fill=b.fillColor||c.fillColor||L,v.stroke=c.lineColor||L,v["stroke-width"]=c.lineWidth||0,v.dashstyle=b.boxDashStyle||c.boxDashStyle||c.dashStyle,b.box.attr(v)),k.stroke=b.medianColor||c.medianColor||L,k["stroke-width"]=(0,x.pick)(b.medianWidth,c.medianWidth,c.lineWidth),k.dashstyle=b.medianDashStyle||c.medianDashStyle||c.dashStyle,b.medianShape.attr(k));let A=(0,x.crisp)((b.plotX||0)+(this.pointXOffset||0)+(this.barW||0)/2,b.stem.strokeWidth());if(S=[["M",A,e],["L",A,i],["M",A,t],["L",A,s]],b.stem[d]({d:S}),m){let i=b.box.strokeWidth();t=(0,x.crisp)(t,i),e=(0,x.crisp)(e,i),S=[["M",h=(0,x.crisp)(h,i),e],["L",h,t],["L",p=(0,x.crisp)(p,i),t],["L",p,e],["L",h,e],["Z"]],b.box[d]({d:S})}if(w){let t=l/2,e=this.getWhiskerPair(t,A,b.upperWhiskerLength??c.upperWhiskerLength??w,b.lowerWhiskerLength??c.lowerWhiskerLength??w,b);b.whiskers[d]({d:e})}S=[["M",h,a=(0,x.crisp)(b.medianPlot,b.medianShape.strokeWidth())],["L",p,a]],b.medianShape[d]({d:S})}}}toYData(t){return[t.low,t.q1,t.median,t.q3,t.high]}}K.defaultOptions=(0,x.merge)(_().defaultOptions,{threshold:null,tooltip:{pointFormat:'<span style="color:{point.color}">●</span> <b>{series.name}</b><br/>Maximum: {point.high}<br/>Upper quartile: {point.q3}<br/>Median: {point.median}<br/>Lower quartile: {point.q1}<br/>Minimum: {point.low}<br/>'},whiskerLength:"50%",fillColor:"var(--highcharts-background-color)",lineWidth:1,medianWidth:2,whiskerWidth:2}),(0,x.extend)(K.prototype,{pointArrayMap:["low","q1","median","q3","high"],pointValKey:"high",drawDataLabels:U,setStackedPoints:U}),M().registerSeriesType("boxplot",K);let j=K,Z={borderColor:void 0,borderWidth:2,className:void 0,color:void 0,connectorClassName:void 0,connectorColor:void 0,connectorDistance:60,connectorWidth:1,enabled:!1,labels:{className:void 0,allowOverlap:!1,format:"",formatter:void 0,align:"right",style:{fontSize:"0.9em",color:"var(--highcharts-neutral-color-100)"},x:0,y:0},maxSize:60,minSize:10,legendIndex:0,ranges:{value:void 0,borderColor:void 0,color:void 0,connectorColor:void 0},sizeBy:"area",sizeByAbsoluteValue:!1,zIndex:1,zThreshold:0};var $=b(984),Q=b.n($);let{noop:J}=v(),tt=class{constructor(t,e){this.setState=J,this.init(t,e)}init(t,e){this.options=t,this.visible=!0,this.chart=e.chart,this.legend=e}addToLegend(t){t.splice(this.options.legendIndex,0,this)}drawLegendSymbol(t){let e,i=(0,x.pick)(t.options.itemDistance,20),s=this.legendItem||{},a=this.options,o=a.ranges,r=a.connectorDistance;if(!o||!o.length||!(0,x.isNumber)(o[0].value)){t.options.bubbleLegend.autoRanges=!0;return}(0,x.stableSort)(o,function(t,e){return e.value-t.value}),this.ranges=o,this.setOptions(),this.render();let n=this.getMaxLabelSize(),l=this.ranges[0].radius,h=2*l;e=(e=r-l+n.width)>0?e:0,this.maxLabel=n,this.movementX="left"===a.labels.align?e:0,s.labelWidth=h+e+i,s.labelHeight=h+n.height/2}setOptions(){let t=this.ranges,e=this.options,i=this.chart.series[e.seriesIndex],s=this.legend.baseline,a={zIndex:e.zIndex,"stroke-width":e.borderWidth},o={zIndex:e.zIndex,"stroke-width":e.connectorWidth},r={align:this.legend.options.rtl||"left"===e.labels.align?"right":"left",zIndex:e.zIndex},n=i.options.marker.fillOpacity,l=this.chart.styledMode;t.forEach(function(h,p){l||(a.stroke=(0,x.pick)(h.borderColor,e.borderColor,i.color),a.fill=h.color||e.color,a.fill||(a.fill=i.color,a["fill-opacity"]=n??1),o.stroke=(0,x.pick)(h.connectorColor,e.connectorColor,i.color)),t[p].radius=this.getRangeRadius(h.value),t[p]=(0,x.merge)(t[p],{center:t[0].radius-t[p].radius+s}),l||(0,x.merge)(!0,t[p],{bubbleAttribs:(0,x.merge)(a),connectorAttribs:(0,x.merge)(o),labelAttribs:r})},this)}getRangeRadius(t){let e=this.options,i=this.options.seriesIndex,s=this.chart.series[i],a=e.ranges[0].value,o=e.ranges[e.ranges.length-1].value,r=e.minSize,n=e.maxSize;return s.getRadius.call(this,o,a,r,n,t)}render(){let t=this.legendItem||{},e=this.chart.renderer,i=this.options.zThreshold;for(let s of(this.symbols||(this.symbols={connectors:[],bubbleItems:[],labels:[]}),t.symbol=e.g("bubble-legend"),t.label=e.g("bubble-legend-item").css(this.legend.itemStyle||{}),t.symbol.translateX=0,t.symbol.translateY=0,t.symbol.add(t.label),t.label.add(t.group),this.ranges))s.value>=i&&this.renderRange(s);this.hideOverlappingLabels()}renderRange(t){let e=this.ranges[0],i=this.legend,s=this.options,a=s.labels,o=this.chart,r=o.series[s.seriesIndex],n=o.renderer,l=this.symbols,h=l.labels,p=t.center,d=Math.abs(t.radius),c=s.connectorDistance||0,u=a.align,g=i.options.rtl,m=s.borderWidth,f=s.connectorWidth,b=e.radius||0,y=p-d-m/2+f/2,x=(y%1?1:.5)-(f%2?0:.5),v=n.styledMode,P=g||"left"===u?-c:c;"center"===u&&(P=0,s.connectorDistance=0,t.labelAttribs.align="center"),l.bubbleItems.push(n.circle(b,p+x,d).attr(v?{}:t.bubbleAttribs).addClass((v?"highcharts-color-"+r.colorIndex+" ":"")+"highcharts-bubble-legend-symbol "+(s.className||"")).add(this.legendItem.symbol)),l.connectors.push(n.path(n.crispLine([["M",b,y],["L",b+P,y]],s.connectorWidth)).attr(v?{}:t.connectorAttribs).addClass((v?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-connectors "+(s.connectorClassName||"")).add(this.legendItem.symbol));let M=n.text(this.formatLabel(t)).attr(v?{}:t.labelAttribs).css(v?{}:a.style).addClass("highcharts-bubble-legend-labels "+(s.labels.className||"")).add(this.legendItem.symbol),k={x:b+P+s.labels.x,y:y+s.labels.y+.4*M.getBBox().height};M.attr(k),h.push(M),M.placed=!0,M.alignAttr=k}getMaxLabelSize(){let t,e;return this.symbols.labels.forEach(function(i){e=i.getBBox(!0),t=t?e.width>t.width?e:t:e}),t||{}}formatLabel(t){let e=this.options,i=e.labels.formatter,s=e.labels.format,{numberFormatter:a}=this.chart;return s?Q().format(s,t,this.chart):i?i.call(t,t):a(t.value,1)}hideOverlappingLabels(){let t=this.chart,e=this.options.labels.allowOverlap,i=this.symbols;!e&&i&&(t.hideOverlappingLabels(i.labels),i.labels.forEach(function(t,e){t.newOpacity?t.newOpacity!==t.oldOpacity&&i.connectors[e].show():i.connectors[e].hide()}))}getRanges(){let t=this.legend.bubbleLegend,e=t.chart.series,i=t.options.ranges,s,a,o=Number.MAX_VALUE,r=-Number.MAX_VALUE;return e.forEach(function(t){t.isBubble&&!t.ignoreSeries&&(a=t.getColumn("z").filter(x.isNumber)).length&&(o=(0,x.pick)(t.options.zMin,Math.min(o,Math.max((0,x.arrayMin)(a),!1===t.options.displayNegative?t.options.zThreshold:-Number.MAX_VALUE))),r=(0,x.pick)(t.options.zMax,Math.max(r,(0,x.arrayMax)(a))))}),s=o===r?[{value:r}]:[{value:o},{value:(o+r)/2},{value:r,autoRanges:!0}],i.length&&i[0].radius&&s.reverse(),s.forEach(function(t,e){i&&i[e]&&(s[e]=(0,x.merge)(i[e],t))}),s}predictBubbleSizes(){let t=this.chart,e=t.legend.options,i=e.floating,s="horizontal"===e.layout,a=s?t.legend.lastLineHeight:0,o=t.plotSizeX,r=t.plotSizeY,n=t.series[this.options.seriesIndex],l=n.getPxExtremes(),h=Math.ceil(l.minPxSize),p=Math.ceil(l.maxPxSize),d=Math.min(r,o),c,u=n.options.maxSize;return i||!/%$/.test(u)?c=p:(c=(d+a)*(u=parseFloat(u))/100/(u/100+1),(s&&r-c>=o||!s&&o-c>=r)&&(c=p)),[h,Math.ceil(c)]}updateRanges(t,e){let i=this.legend.options.bubbleLegend;i.minSize=t,i.maxSize=e,i.ranges=this.getRanges()}correctSizes(){let t=this.legend,e=this.chart.series[this.options.seriesIndex].getPxExtremes();Math.abs(Math.ceil(e.maxPxSize)-this.options.maxSize)>1&&(this.updateRanges(this.options.minSize,e.maxPxSize),t.render())}},{setOptions:te}=v(),{composed:ti}=v();function ts(t,e,i){let s,a,o,r=this.legend,n=ta(this)>=0;r&&r.options.enabled&&r.bubbleLegend&&r.options.bubbleLegend.autoRanges&&n?(s=r.bubbleLegend.options,a=r.bubbleLegend.predictBubbleSizes(),r.bubbleLegend.updateRanges(a[0],a[1]),s.placed||(r.group.placed=!1,r.allItems.forEach(t=>{(o=t.legendItem||{}).group&&(o.group.translateY=void 0)})),r.render(),s.placed||(this.getMargins(),this.axes.forEach(t=>{t.setScale(),t.updateNames(),(0,x.objectEach)(t.ticks,function(t){t.isNew=!0,t.isNewLabel=!0})}),this.getMargins()),s.placed=!0,t.call(this,e,i),r.bubbleLegend.correctSizes()):(t.call(this,e,i),r&&r.options.enabled&&r.bubbleLegend&&r.render())}function ta(t){let e=t.series,i=0;for(;i<e.length;){if(e[i]&&e[i].isBubble&&e[i].visible&&e[i].dataTable.rowCount)return i;i++}return -1}function to(t){let e=this.bubbleLegend,i=this.options,s=i.bubbleLegend,a=ta(this.chart);e&&e.ranges&&e.ranges.length&&(s.ranges.length&&(s.autoRanges=!!s.ranges[0].autoRanges),this.destroyItem(e)),a>=0&&i.enabled&&s.enabled&&(s.seriesIndex=a,this.bubbleLegend=new tt(s,this),this.bubbleLegend.addToLegend(t.allItems))}function tr(){if(this.bubbleLegend){let t=this.allItems,e=this.options.rtl,i=function(t){let e=t.allItems,i=[],s=e.length,a,o,r,n=0,l=0;for(n=0;n<s;n++)if(o=e[n].legendItem||{},r=(e[n+1]||{}).legendItem||{},o.labelHeight&&(e[n].itemHeight=o.labelHeight),e[n]===e[s-1]||o.y!==r.y){for(i.push({height:0}),a=i[i.length-1];l<=n;l++)e[l].itemHeight>a.height&&(a.height=e[l].itemHeight);a.step=n}return i}(this),s,a,o,r,n=0;t.forEach((t,l)=>{(r=t.legendItem||{}).group&&(s=r.group.translateX||0,a=r.y||0,((o=t.movementX)||e&&t.ranges)&&(o=e?s-t.options.maxSize/2:s+o,r.group.attr({translateX:o})),l>i[n].step&&n++,r.group.attr({translateY:Math.round(a+i[n].height/2)}),r.y=a+i[n].height/2)})}}function tn(t){let e;if(t.defaultPrevented)return!1;let i=t.legendItem,s=this.chart,a=i.visible;this&&this.bubbleLegend&&(i.visible=!a,i.ignoreSeries=a,e=ta(s)>=0,this.bubbleLegend.visible!==e&&(this.update({bubbleLegend:{enabled:e}}),this.bubbleLegend.visible=e),i.visible=a)}let tl=function(t,e){(0,x.pushUnique)(ti,"Series.BubbleLegend")&&(te({legend:{bubbleLegend:Z}}),(0,x.wrap)(t.prototype,"drawChartBox",ts),(0,x.addEvent)(e,"afterGetAllItems",to),(0,x.addEvent)(e,"afterRender",tr),(0,x.addEvent)(e,"itemClick",tn))};var th=b(260),tp=b.n(th);let{seriesTypes:{scatter:{prototype:{pointClass:td}}}}=M();class tc extends td{haloPath(t){let e=(t&&this.marker&&this.marker.radius||0)+t;if(this.series.chart.inverted){let t=this.pos()||[0,0],{xAxis:i,yAxis:s,chart:a}=this.series,o=2*e;return a.renderer.symbols.circle((i?.len||0)-t[1]-e,(s?.len||0)-t[0]-e,o,o)}return tp().prototype.haloPath.call(this,e)}}(0,x.extend)(tc.prototype,{ttBelow:!1});let{composed:tu,noop:tg}=v(),{series:tm,seriesTypes:{column:{prototype:tf},scatter:tb}}=M();function ty(){let t=this.len,{coll:e,isXAxis:i,min:s}=this,a=(this.max||0)-(s||0),o=0,r=t,n=t/a,l;("xAxis"===e||"yAxis"===e)&&(this.series.forEach(t=>{if(t.bubblePadding&&t.reserveSpace()){this.allowZoomOutside=!0,l=!0;let e=t.getColumn(i?"x":"y");if(i&&((t.onPoint||t).getRadii(0,0,t),t.onPoint&&(t.radii=t.onPoint.radii)),a>0){let i=e.length;for(;i--;)if((0,x.isNumber)(e[i])&&this.dataMin<=e[i]&&e[i]<=this.max){let a=t.radii&&t.radii[i]||0;o=Math.min((e[i]-s)*n-a,o),r=Math.max((e[i]-s)*n+a,r)}}}}),l&&a>0&&!this.logarithmic&&(r-=t,n*=(t+Math.max(0,o)-Math.min(r,t))/t,[["min","userMin",o],["max","userMax",r]].forEach(t=>{void 0===(0,x.pick)(this.options[t[0]],this[t[1]])&&(this[t[0]]+=t[2]/n)})))}function tx(){let{ticks:t,tickPositions:e,dataMin:i=0,dataMax:s=0,categories:a}=this,o=this.options.type;if((a?.length||"category"===o)&&this.series.find(t=>t.bubblePadding)){let a=e.length;for(;a--;){let o=t[e[a]],r=o.pos||0;(r>s||r<i)&&o.label?.hide()}}}class tv extends tb{static compose(t,e,i){tl(e,i),(0,x.pushUnique)(tu,"Series.Bubble")&&((0,x.addEvent)(t,"foundExtremes",ty),(0,x.addEvent)(t,"afterRender",tx))}animate(t){!t&&this.points.length<this.options.animationLimit&&this.points.forEach(function(t){let{graphic:e,plotX:i=0,plotY:s=0}=t;e&&e.width&&(this.hasRendered||e.attr({x:i,y:s,width:1,height:1}),e.animate(this.markerAttribs(t),this.options.animation))},this)}getRadii(){let t=[...this.getColumn("z",!1,!0)],e=this.getColumn("y"),i=[],s,a,o,r=this.chart.bubbleZExtremes,{minPxSize:n,maxPxSize:l}=this.getPxExtremes();if(!r){let t,e=Number.MAX_VALUE,i=-Number.MAX_VALUE;this.chart.series.forEach(s=>{if(s.bubblePadding&&s.reserveSpace()){let a=(s.onPoint||s).getZExtremes();a&&(e=Math.min((0,x.pick)(e,a.zMin),a.zMin),i=Math.max((0,x.pick)(i,a.zMax),a.zMax),t=!0)}}),t?(r={zMin:e,zMax:i},this.chart.bubbleZExtremes=r):r={zMin:0,zMax:0}}for(a=0,s=t.length;a<s;a++)o=t[a],i.push(this.getRadius(r.zMin,r.zMax,n,l,o,e&&e[a]));this.radii=i}getRadius(t,e,i,s,a,o){let r=this.options,n="width"!==r.sizeBy,l=r.zThreshold,h=e-t,p=.5;if(null===o||null===a)return null;if((0,x.isNumber)(a)){if(r.sizeByAbsoluteValue&&(a=Math.abs(a-l),e=h=Math.max(e-l,Math.abs(t-l)),t=0),a<t)return i/2-1;h>0&&(p=(a-t)/h)}return n&&p>=0&&(p=Math.sqrt(p)),Math.ceil(i+p*(s-i))/2}hasData(){return!!this.dataTable.rowCount}markerAttribs(t,e){let i=super.markerAttribs(t,e),{height:s=0,width:a=0}=i;return this.chart.inverted?(0,x.extend)(i,{x:(t.plotX||0)-a/2,y:(t.plotY||0)-s/2}):i}pointAttribs(t,e){let i=this.options.marker,s=i?.fillOpacity,a=tm.prototype.pointAttribs.call(this,t,e);return a["fill-opacity"]=s??1,a}translate(){super.translate.call(this),this.getRadii(),this.translateBubble()}translateBubble(){let{options:t,radii:e}=this,{minPxSize:i}=this.getPxExtremes();this.data.concat(this.condemnedPoints).forEach((s,a)=>{let{plotX:o=0,plotY:r=0}=s,n=s.condemned?s.marker?.radius||0:e?e[a]:0;"z"===this.zoneAxis&&(s.negative=(s.z||0)<(t.zThreshold||0)),(0,x.isNumber)(n)&&(s.marker=(0,x.extend)(s.marker,{radius:n,width:2*n,height:2*n})),(0,x.isNumber)(n)&&n>=i/2?s.dlBox={x:o-n,y:r-n,width:2*n,height:2*n}:(s.shapeArgs=s.plotY=s.dlBox=void 0,s.isInside=!1)})}getPxExtremes(){let t=Math.min(this.chart.plotWidth,this.chart.plotHeight),e=e=>{let i;return"string"==typeof e&&(i=/%$/.test(e),e=parseInt(e,10)),i?t*e/100:e},i=e((0,x.pick)(this.options.minSize,8)),s=Math.max(e((0,x.pick)(this.options.maxSize,"20%")),i);return{minPxSize:i,maxPxSize:s}}getZExtremes(){let t=this.options,e=this.getColumn("z").filter(x.isNumber);if(e.length){let i=(0,x.pick)(t.zMin,(0,x.clamp)((0,x.arrayMin)(e),!1===t.displayNegative?t.zThreshold||0:-Number.MAX_VALUE,Number.MAX_VALUE)),s=(0,x.pick)(t.zMax,(0,x.arrayMax)(e));if((0,x.isNumber)(i)&&(0,x.isNumber)(s))return{zMin:i,zMax:s}}}searchKDTree(t,e,i,s=tg,a=tg){return s=(t,e,i)=>{let s=t[i]||0,a=e[i]||0,o,r=!1;return s===a?o=t.index>e.index?t:e:s<0&&a<0?(o=s-(t.marker?.radius||0)>=a-(e.marker?.radius||0)?t:e,r=!0):o=s<a?t:e,[o,r]},a=(t,e,i)=>!i&&t>e||t<e,super.searchKDTree(t,e,i,s,a)}}tv.defaultOptions=(0,x.merge)(tb.defaultOptions,{dataLabels:{formatter:function(){let{numberFormatter:t}=this.series.chart,{z:e}=this.point;return(0,x.isNumber)(e)?t(e,-1):""},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{lineColor:null,lineWidth:1,fillOpacity:.5,radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},turboThreshold:0,zThreshold:0,zoneAxis:"z"}),(0,x.extend)(tv.prototype,{alignDataLabel:tf.alignDataLabel,applyZones:tg,bubblePadding:!0,isBubble:!0,keysAffectYAxis:["y"],pointArrayMap:["y","z"],pointClass:tc,parallelArrays:["x","y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",zoneAxis:"z"}),(0,x.addEvent)(tv,"updatedData",t=>{delete t.target.chart.bubbleZExtremes}),(0,x.addEvent)(tv,"remove",t=>{delete t.target.chart.bubbleZExtremes}),(0,x.addEvent)(tv,"update",t=>{let e=t.target.options;((0,x.defined)(e.zMin)||(0,x.defined)(e.zMax))&&delete t.target.chart.bubbleZExtremes}),M().registerSeriesType("bubble",tv);let{seriesTypes:{column:{prototype:{pointClass:{prototype:tP}}},arearange:{prototype:{pointClass:tM}}}}=M();class tk extends tM{isValid(){return(0,x.isNumber)(this.low)}}(0,x.extend)(tk.prototype,{setState:tP.setState});let{noop:tL}=v(),{seriesTypes:{arearange:tw,column:tS,column:{prototype:tA}}}=M();class tN extends tw{setOptions(){return(0,x.merge)(!0,arguments[0],{stacking:void 0}),tw.prototype.setOptions.apply(this,arguments)}translate(){return tA.translate.apply(this)}pointAttribs(){return tA.pointAttribs.apply(this,arguments)}translate3dPoints(){return tA.translate3dPoints.apply(this,arguments)}translate3dShapes(){return tA.translate3dShapes.apply(this,arguments)}afterColumnTranslate(){let t,e,i,s,a=this.yAxis,o=this.xAxis,r=o.startAngleRad,n=this.chart,l=this.xAxis.isRadial,h=Math.max(n.chartWidth,n.chartHeight)+999;function p(t){return(0,x.clamp)(t,-h,h)}this.points.forEach(h=>{let d=h.shapeArgs||{},c=this.options.minPointLength,u=h.plotY,g=a.translate(h.high,0,1,0,1);if((0,x.isNumber)(g)&&(0,x.isNumber)(u))if(h.plotHigh=p(g),h.plotLow=p(u),s=h.plotHigh,Math.abs(t=(0,x.pick)(h.rectPlotY,h.plotY)-h.plotHigh)<c?(e=c-t,t+=e,s-=e/2):t<0&&(t*=-1,s-=t),l&&this.polar)i=h.barX+r,h.shapeType="arc",h.shapeArgs=this.polar.arc(s+t,s,i,i+(h.pointWidth||0));else{d.height=t,d.y=s;let{x:e=0,width:i=0}=d;h.shapeArgs=(0,x.merge)(h.shapeArgs,this.crispCol(e,s,i,t)),h.tooltipPos=n.inverted?[a.len+a.pos-n.plotLeft-s-t/2,o.len+o.pos-n.plotTop-e-i/2,t]:[o.left-n.plotLeft+e+i/2,a.pos-n.plotTop+s+t/2,t]}})}}tN.defaultOptions=(0,x.merge)(tS.defaultOptions,tw.defaultOptions,{borderRadius:{where:"all"},pointRange:null,legendSymbol:"rectangle",marker:null,states:{hover:{halo:!1}}}),(0,x.addEvent)(tN,"afterColumnTranslate",function(){tN.prototype.afterColumnTranslate.apply(this)},{order:5}),(0,x.extend)(tN.prototype,{directTouch:!0,pointClass:tk,trackerGroups:["group","dataLabelsGroup"],adjustForMissingColumns:tA.adjustForMissingColumns,animate:tA.animate,crispCol:tA.crispCol,drawGraph:tL,drawPoints:tA.drawPoints,getSymbol:tL,drawTracker:tA.drawTracker,getColumnMetrics:tA.getColumnMetrics}),M().registerSeriesType("columnrange",tN);let{column:tT}=M().seriesTypes;class tC extends tT{translate(){let t=this.chart,e=this.options,i=this.dense=this.closestPointRange*this.xAxis.transA<2,s=this.borderWidth=(0,x.pick)(e.borderWidth,+!i),a=this.yAxis,o=e.threshold,r=(0,x.pick)(e.minPointLength,5),n=this.getColumnMetrics(),l=n.width,h=this.pointXOffset=n.offset,p=this.translatedThreshold=a.getThreshold(o),d=this.barW=Math.max(l,1+2*s);for(let i of(t.inverted&&(p-=.5),e.pointPadding&&(d=Math.ceil(d)),super.translate(),this.points)){let s=(0,x.pick)(i.yBottom,p),c=999+Math.abs(s),u=(0,x.clamp)(i.plotY,-c,a.len+c),g=d/2,m=Math.min(u,s),f=Math.max(u,s)-m,b=i.plotX+h,y,v,P,M,k,L,w,S,A,N,T;e.centerInCategory&&(b=this.adjustForMissingColumns(b,l,i,n)),i.barX=b,i.pointWidth=l,i.tooltipPos=t.inverted?[a.len+a.pos-t.plotLeft-u,this.xAxis.len-b-g,f]:[b+g,u+a.pos-t.plotTop,f],y=o+(i.total||i.y),"percent"===e.stacking&&(y=o+(i.y<0)?-100:100);let C=a.toPixels(y,!0);P=(v=t.plotHeight-C-(t.plotHeight-p))?g*(m-C)/v:0,M=v?g*(m+f-C)/v:0,L=b-P+g,w=b+P+g,S=b+M+g,A=b-M+g,N=m-r,T=m+f,i.y<0&&(N=m,T=m+f+r),t.inverted&&(k=a.width-m,v=C-(a.width-p),P=g*(C-k)/v,M=g*(C-(k-f))/v,w=(L=b+g+P)-2*P,S=b-M+g,A=b+M+g,N=m,T=m+f-r,i.y<0&&(T=m+f+r)),i.shapeType="path",i.shapeArgs={x:L,y:N,width:w-L,height:f,d:[["M",L,N],["L",w,N],["L",S,T],["L",A,T],["Z"]]}}}}tC.defaultOptions=(0,x.merge)(tT.defaultOptions,{}),M().registerSeriesType("columnpyramid",tC);let{arearange:tX}=M().seriesTypes;class tY extends j{getColumnMetrics(){return this.linkedParent&&this.linkedParent.columnMetrics||_().prototype.getColumnMetrics.call(this)}drawDataLabels(){let t=this.pointValKey;if(tX)for(let e of(tX.prototype.drawDataLabels.call(this),this.points))e.y=e[t]}toYData(t){return[t.low,t.high]}}tY.defaultOptions=(0,x.merge)(j.defaultOptions,{color:"var(--highcharts-neutral-color-100)",grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'<span style="color:{point.color}">●</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>'},whiskerWidth:null}),(0,x.addEvent)(tY,"afterTranslate",function(){for(let t of this.points)t.plotLow=t.plotY},{order:0}),(0,x.extend)(tY.prototype,{pointArrayMap:["low","high"],pointValKey:"high",doQuartiles:!1}),M().registerSeriesType("errorbar",tY);let{series:{prototype:{pointClass:tE}}}=M(),{noop:tR}=v(),{series:tI,seriesTypes:{column:tz}}=M();class tD extends tI{translate(){let t=this.yAxis,e=this.options,i=t.center;this.generatePoints(),this.points.forEach(s=>{if(!(0,x.isNumber)(s.y))return;let a=(0,x.merge)(e.dial,s.dial),o=(0,x.relativeLength)(a.radius,i[2]/2),r=(0,x.relativeLength)(a.baseLength,o),n=Math.min((0,x.relativeLength)(a.rearLength,o),o),l=Math.min((0,x.relativeLength)(a.baseWidth,o),o),h=(0,x.relativeLength)(a.topWidth,o),p=(0,x.relativeLength)(a.borderRadius,o),d=Math.min(p,l/2),c=Math.min(p,h/2),u=e.wrap??t.endAngleRad-t.startAngleRad>2*Math.PI-.01,g=e.overshoot,m=t.startAngleRad+t.translate(s.y,void 0,void 0,void 0,!0);((0,x.isNumber)(g)||!u)&&(g=(0,x.isNumber)(g)?g/180*Math.PI:0,m=(0,x.clamp)(m,t.startAngleRad-g,t.endAngleRad+g)),s.tooltipPos=[i[0]+Math.cos(m)*o,i[1]+Math.sin(m)*o],m=180*m/Math.PI,s.shapeType="path",s.shapeArgs={d:a.path||[["M",d-n,-l/2],["L",r,-l/2],["L",o-c,-h/2],["A",c,c,0,0,1,o,-h/2+c],["L",o,h/2-c],["A",c,c,0,0,1,o-c,h/2],["L",r,l/2],["L",d-n,l/2],["A",d,d,0,0,1,-n,l/2-d],["L",-n,d-l/2],["A",d,d,0,0,1,d-n,-l/2],["Z"]],translateX:i[0],translateY:i[1],rotation:m},s.plotX=i[0],s.plotY=i[1],(0,x.defined)(s.y)&&t.max-t.min&&(s.percentage=(s.y-t.min)/(t.max-t.min)*100)})}drawPoints(){let t=this,e=t.chart,i=t.yAxis.center,s=t.pivot,a=t.options,o=a.pivot,r=e.renderer,n=(0,x.relativeLength)(o?.radius||0,i[2]/2);t.points.forEach(i=>{if((0,x.isNumber)(i.y)){let s=i.graphic,o=i.shapeArgs,n=o.d,l=(0,x.merge)(a.dial,i.dial);s?(s.animate(o),o.d=n):i.graphic=r[i.shapeType](o).addClass("highcharts-dial").add(t.group),!e.styledMode&&i.graphic&&i.graphic[s?"animate":"attr"]({stroke:l.borderColor,"stroke-width":l.borderWidth,fill:l.backgroundColor})}}),s?s.animate({translateX:i[0],translateY:i[1],r:n}):o&&(t.pivot=r.circle(0,0,n).attr({zIndex:2}).addClass("highcharts-pivot").translate(i[0],i[1]).add(t.group),e.styledMode||t.pivot.attr({fill:o.backgroundColor,stroke:o.borderColor,"stroke-width":o.borderWidth}))}animate(t){let e=this;t||e.points.forEach(t=>{let i=t.graphic;i&&(i.attr({rotation:180*e.yAxis.startAngleRad/Math.PI}),i.animate({rotation:t.shapeArgs.rotation},e.options.animation))})}setData(t,e){tI.prototype.setData.call(this,t,!1),this.processData(),this.generatePoints(),(0,x.pick)(e,!0)&&this.chart.redraw()}hasData(){return!!this.points.length}}tD.defaultOptions=(0,x.merge)(tI.defaultOptions,{clip:!1,color:"var(--highcharts-neutral-color-20)",dataLabels:{crop:!1,defer:!1,distance:0,enabled:!0,padding:5,verticalAlign:"top",style:{fontSize:"1.4em"},y:25,zIndex:2},dial:{backgroundColor:"var(--highcharts-neutral-color-100)",baseLength:0,baseWidth:"18%",borderColor:"var(--highcharts-neutral-color-20)",borderRadius:"9%",borderWidth:0,radius:"70%",rearLength:"9%",topWidth:"4%"},pivot:{radius:"4%",borderWidth:2,borderColor:"var(--highcharts-neutral-color-100)",backgroundColor:"var(--highcharts-background-color)"},threshold:0,tooltip:{headerFormat:""},showInLegend:!1}),(0,x.extend)(tD.prototype,{angular:!0,directTouch:!0,drawGraph:tR,drawTracker:tz.prototype.drawTracker,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,pointClass:class extends tE{setState(t){this.state=t}},trackerGroups:["group","dataLabelsGroup"]}),M().registerSeriesType("gauge",tD);var tO=b(620),tH=b.n(tO);let{composed:tB}=v();function tW(){let t,e,i,s,a=this;a.container&&(t=(0,x.addEvent)(a.container,"mousedown",t=>{e&&e(),i&&i(),(s=a.hoverPoint)&&s.series&&s.series.hasDraggableNodes&&s.series.options.draggable&&(s.series.onMouseDown(s,t),e=(0,x.addEvent)(a.container,"mousemove",t=>s&&s.series&&s.series.onMouseMove(s,t)),i=(0,x.addEvent)(a.container.ownerDocument,"mouseup",t=>(e(),i(),s&&s.series&&s.series.onMouseUp(s,t))))})),(0,x.addEvent)(a,"destroy",function(){t()})}let tF={compose:function(t){(0,x.pushUnique)(tB,"DragNodes")&&(0,x.addEvent)(t,"load",tW)},onMouseDown:function(t,e){let{panKey:i}=this.chart.options.chart;if(i&&e[`${i}Key`])return;let s=this.chart.pointer?.normalize(e)||e;t.fixedPosition={chartX:s.chartX,chartY:s.chartY,plotX:t.plotX,plotY:t.plotY},t.inDragMode=!0},onMouseMove:function(t,e){if(t.fixedPosition&&t.inDragMode){let i,s,a=this.chart,o=a.pointer?.normalize(e)||e,r=t.fixedPosition.chartX-o.chartX,n=t.fixedPosition.chartY-o.chartY,l=a.graphLayoutsLookup;(Math.abs(r)>5||Math.abs(n)>5)&&(i=t.fixedPosition.plotX-r,s=t.fixedPosition.plotY-n,a.isInsidePlot(i,s)&&(t.plotX=i,t.plotY=s,t.hasDragged=!0,this.redrawHalo(t),l.forEach(t=>{t.restartSimulation()})))}},onMouseUp:function(t){t.fixedPosition&&(t.hasDragged&&(this.layout.enableSimulation?this.layout.start():this.chart.redraw()),t.inDragMode=t.hasDragged=!1,this.options.fixedDraggable||delete t.fixedPosition)},redrawHalo:function(t){t&&this.halo&&this.halo.attr({d:t.haloPath(this.options.states.hover.halo.size)})}},{setAnimation:tG}=v(),{composed:tq}=v();function tV(){this.graphLayoutsLookup&&(this.graphLayoutsLookup.forEach(t=>{t.updateSimulation()}),this.redraw())}function t_(){this.graphLayoutsLookup&&(this.graphLayoutsLookup.forEach(t=>{t.updateSimulation(!1)}),this.redraw())}function tU(){this.graphLayoutsLookup&&this.graphLayoutsLookup.forEach(t=>{t.stop()})}function tK(){let t,e=!1,i=i=>{i.maxIterations--&&isFinite(i.temperature)&&!i.isStable()&&!i.enableSimulation&&(i.beforeStep&&i.beforeStep(),i.step(),t=!1,e=!0)};if(this.graphLayoutsLookup&&!this.pointer?.hasDragged){for(tG(!1,this),this.graphLayoutsLookup.forEach(t=>t.start());!t;)t=!0,this.graphLayoutsLookup.forEach(i);e&&this.series.forEach(t=>{t&&t.layout&&t.render()})}}let tj=function(t){(0,x.pushUnique)(tq,"GraphLayout")&&((0,x.addEvent)(t,"afterPrint",tV),(0,x.addEvent)(t,"beforePrint",t_),(0,x.addEvent)(t,"predraw",tU),(0,x.addEvent)(t,"render",tK))},tZ={},t$={};var tQ=b(960),tJ=b.n(tQ);let{seriesTypes:{bubble:{prototype:{pointClass:t0}}}}=M(),t1=class extends t0{destroy(){return this.series?.layout&&this.series.layout.removeElementFromCollection(this,this.series.layout.nodes),tp().prototype.destroy.apply(this,arguments)}firePointEvent(){let t=this.series.options;if(this.isParentNode&&t.parentNode){let e=t.allowPointSelect;t.allowPointSelect=t.parentNode.allowPointSelect,tp().prototype.firePointEvent.apply(this,arguments),t.allowPointSelect=e}else tp().prototype.firePointEvent.apply(this,arguments)}select(){let t=this.series.chart;this.isParentNode?(t.getSelectedPoints=t.getSelectedParentNodes,tp().prototype.select.apply(this,arguments),t.getSelectedPoints=tJ().prototype.getSelectedPoints):tp().prototype.select.apply(this,arguments)}setState(t,e){this?.graphic?.parentGroup?.element&&super.setState(t,e)}},t2={attractive:function(t,e,i){let s=t.getMass(),a=-i.x*e*this.diffTemperature,o=-i.y*e*this.diffTemperature;t.fromNode.fixedPosition||(t.fromNode.plotX-=a*s.fromNode/t.fromNode.degree,t.fromNode.plotY-=o*s.fromNode/t.fromNode.degree),t.toNode.fixedPosition||(t.toNode.plotX+=a*s.toNode/t.toNode.degree,t.toNode.plotY+=o*s.toNode/t.toNode.degree)},attractiveForceFunction:function(t,e){return(e-t)/t},barycenter:function(){let t=this.options.gravitationalConstant||0,e=(this.barycenter.xFactor-(this.box.left+this.box.width)/2)*t,i=(this.barycenter.yFactor-(this.box.top+this.box.height)/2)*t;this.nodes.forEach(function(t){t.fixedPosition||(t.plotX-=e/t.mass/t.degree,t.plotY-=i/t.mass/t.degree)})},getK:function(t){return Math.pow(t.box.width*t.box.height/t.nodes.length,.5)},integrate:function(t,e){let i=-t.options.friction,s=t.options.maxSpeed,a=e.prevX,o=e.prevY,r=(e.plotX+e.dispX-a)*i,n=(e.plotY+e.dispY-o)*i,l=Math.abs,h=l(r)/(r||1),p=l(n)/(n||1),d=h*Math.min(s,Math.abs(r)),c=p*Math.min(s,Math.abs(n));e.prevX=e.plotX+e.dispX,e.prevY=e.plotY+e.dispY,e.plotX+=d,e.plotY+=c,e.temperature=t.vectorLength({x:d,y:c})},repulsive:function(t,e,i){let s=e*this.diffTemperature/t.mass/t.degree;t.fixedPosition||(t.plotX+=i.x*s,t.plotY+=i.y*s)},repulsiveForceFunction:function(t,e){return(e-t)/t*(e>t)}},{noop:t3}=v(),t5={barycenter:function(){let t,e,i=this.options.gravitationalConstant||0,s=this.box,a=this.nodes,o=Math.sqrt(a.length);for(let r of a)if(!r.fixedPosition){let a=r.mass*o,n=r.plotX||0,l=r.plotY||0,h=r.series,p=h.parentNode;this.resolveSplitSeries(r)&&p&&!r.isParentNode?(t=p.plotX||0,e=p.plotY||0):(t=s.width/2,e=s.height/2),r.plotX=n-(n-t)*i/a,r.plotY=l-(l-e)*i/a,h.chart.hoverPoint===r&&h.redrawHalo&&h.halo&&h.redrawHalo(r)}},getK:t3,integrate:t2.integrate,repulsive:function(t,e,i,s){let a=e*this.diffTemperature/t.mass/t.degree,o=i.x*a,r=i.y*a;t.fixedPosition||(t.plotX+=o,t.plotY+=r),s.fixedPosition||(s.plotX-=o,s.plotY-=r)},repulsiveForceFunction:function(t,e,i,s){return Math.min(t,(i.marker.radius+s.marker.radius)/2)}},t8={attractive:function(t,e,i,s){let a=t.getMass(),o=i.x/s*e,r=i.y/s*e;t.fromNode.fixedPosition||(t.fromNode.dispX-=o*a.fromNode/t.fromNode.degree,t.fromNode.dispY-=r*a.fromNode/t.fromNode.degree),t.toNode.fixedPosition||(t.toNode.dispX+=o*a.toNode/t.toNode.degree,t.toNode.dispY+=r*a.toNode/t.toNode.degree)},attractiveForceFunction:function(t,e){return t*t/e},barycenter:function(){let t=this.options.gravitationalConstant,e=this.barycenter.xFactor,i=this.barycenter.yFactor;this.nodes.forEach(function(s){if(!s.fixedPosition){let a=s.getDegree(),o=a*(1+a/2);s.dispX+=(e-s.plotX)*t*o/s.degree,s.dispY+=(i-s.plotY)*t*o/s.degree}})},getK:function(t){return Math.pow(t.box.width*t.box.height/t.nodes.length,.3)},integrate:function(t,e){e.dispX+=e.dispX*t.options.friction,e.dispY+=e.dispY*t.options.friction;let i=e.temperature=t.vectorLength({x:e.dispX,y:e.dispY});0!==i&&(e.plotX+=e.dispX/i*Math.min(Math.abs(e.dispX),t.temperature),e.plotY+=e.dispY/i*Math.min(Math.abs(e.dispY),t.temperature))},repulsive:function(t,e,i,s){t.dispX+=i.x/s*e/t.degree,t.dispY+=i.y/s*e/t.degree},repulsiveForceFunction:function(t,e){return e*e/t}};class t4{constructor(t){this.body=!1,this.isEmpty=!1,this.isInternal=!1,this.nodes=[],this.box=t,this.boxSize=Math.min(t.width,t.height)}divideBox(){let t=this.box.width/2,e=this.box.height/2;this.nodes[0]=new t4({left:this.box.left,top:this.box.top,width:t,height:e}),this.nodes[1]=new t4({left:this.box.left+t,top:this.box.top,width:t,height:e}),this.nodes[2]=new t4({left:this.box.left+t,top:this.box.top+e,width:t,height:e}),this.nodes[3]=new t4({left:this.box.left,top:this.box.top+e,width:t,height:e})}getBoxPosition(t){let e=t.plotX<this.box.left+this.box.width/2,i=t.plotY<this.box.top+this.box.height/2;return e?3*!i:i?1:2}insert(t,e){let i;this.isInternal?this.nodes[this.getBoxPosition(t)].insert(t,e-1):(this.isEmpty=!1,this.body?e?(this.isInternal=!0,this.divideBox(),!0!==this.body&&(this.nodes[this.getBoxPosition(this.body)].insert(this.body,e-1),this.body=!0),this.nodes[this.getBoxPosition(t)].insert(t,e-1)):((i=new t4({top:t.plotX||NaN,left:t.plotY||NaN,width:.1,height:.1})).body=t,i.isInternal=!1,this.nodes.push(i)):(this.isInternal=!1,this.body=t))}updateMassAndCenter(){let t=0,e=0,i=0;if(this.isInternal){for(let s of this.nodes)s.isEmpty||(t+=s.mass,e+=s.plotX*s.mass,i+=s.plotY*s.mass);e/=t,i/=t}else this.body&&(t=this.body.mass,e=this.body.plotX,i=this.body.plotY);this.mass=t,this.plotX=e,this.plotY=i}}let t9=class{constructor(t,e,i,s){this.box={left:t,top:e,width:i,height:s},this.maxDepth=25,this.root=new t4(this.box),this.root.isInternal=!0,this.root.isRoot=!0,this.root.divideBox()}calculateMassAndCenter(){this.visitNodeRecursive(null,null,function(t){t.updateMassAndCenter()})}insertNodes(t){for(let e of t)this.root.insert(e,this.maxDepth)}visitNodeRecursive(t,e,i){let s;if(t||(t=this.root),t===this.root&&e&&(s=e(t)),!1!==s){for(let a of t.nodes){if(a.isInternal){if(e&&(s=e(a)),!1===s)continue;this.visitNodeRecursive(a,e,i)}else a.body&&e&&e(a.body);i&&i(a)}t===this.root&&i&&i(t)}}},{win:t6}=v();class t7{constructor(){this.box={},this.currentStep=0,this.initialRendering=!0,this.links=[],this.nodes=[],this.series=[],this.simulation=!1}static compose(t){tj(t),tZ.euler=t8,tZ.verlet=t2,t$["reingold-fruchterman"]=t7}init(t){this.options=t,this.nodes=[],this.links=[],this.series=[],this.box={x:0,y:0,width:0,height:0},this.setInitialRendering(!0),this.integration=tZ[t.integration],this.enableSimulation=t.enableSimulation,this.attractiveForce=(0,x.pick)(t.attractiveForce,this.integration.attractiveForceFunction),this.repulsiveForce=(0,x.pick)(t.repulsiveForce,this.integration.repulsiveForceFunction),this.approximation=t.approximation}updateSimulation(t){this.enableSimulation=(0,x.pick)(t,this.options.enableSimulation)}start(){let t=this.series,e=this.options;this.currentStep=0,this.forces=t[0]&&t[0].forces||[],this.chart=t[0]&&t[0].chart,this.initialRendering&&(this.initPositions(),t.forEach(function(t){t.finishedAnimating=!0,t.render()})),this.setK(),this.resetSimulation(e),this.enableSimulation&&this.step()}step(){let t=this.series;for(let t of(this.currentStep++,"barnes-hut"===this.approximation&&(this.createQuadTree(),this.quadTree.calculateMassAndCenter()),this.forces||[]))this[t+"Forces"](this.temperature);if(this.applyLimits(),this.temperature=this.coolDown(this.startTemperature,this.diffTemperature,this.currentStep),this.prevSystemTemperature=this.systemTemperature,this.systemTemperature=this.getSystemTemperature(),this.enableSimulation){for(let e of t)e.chart&&e.render();this.maxIterations--&&isFinite(this.temperature)&&!this.isStable()?(this.simulation&&t6.cancelAnimationFrame(this.simulation),this.simulation=t6.requestAnimationFrame(()=>this.step())):(this.simulation=!1,this.series.forEach(t=>{(0,x.fireEvent)(t,"afterSimulation")}))}}stop(){this.simulation&&t6.cancelAnimationFrame(this.simulation)}setArea(t,e,i,s){this.box={left:t,top:e,width:i,height:s}}setK(){this.k=this.options.linkLength||this.integration.getK(this)}addElementsToCollection(t,e){for(let i of t)-1===e.indexOf(i)&&e.push(i)}removeElementFromCollection(t,e){let i=e.indexOf(t);-1!==i&&e.splice(i,1)}clear(){this.nodes.length=0,this.links.length=0,this.series.length=0,this.resetSimulation()}resetSimulation(){this.forcedStop=!1,this.systemTemperature=0,this.setMaxIterations(),this.setTemperature(),this.setDiffTemperature()}restartSimulation(){this.simulation?this.resetSimulation():(this.setInitialRendering(!1),this.enableSimulation?this.start():this.setMaxIterations(1),this.chart&&this.chart.redraw(),this.setInitialRendering(!0))}setMaxIterations(t){this.maxIterations=(0,x.pick)(t,this.options.maxIterations)}setTemperature(){this.temperature=this.startTemperature=Math.sqrt(this.nodes.length)}setDiffTemperature(){this.diffTemperature=this.startTemperature/(this.options.maxIterations+1)}setInitialRendering(t){this.initialRendering=t}createQuadTree(){this.quadTree=new t9(this.box.left,this.box.top,this.box.width,this.box.height),this.quadTree.insertNodes(this.nodes)}initPositions(){let t=this.options.initialPositions;if((0,x.isFunction)(t))for(let e of(t.call(this),this.nodes))(0,x.defined)(e.prevX)||(e.prevX=e.plotX),(0,x.defined)(e.prevY)||(e.prevY=e.plotY),e.dispX=0,e.dispY=0;else"circle"===t?this.setCircularPositions():this.setRandomPositions()}setCircularPositions(){let t,e=this.box,i=this.nodes,s=2*Math.PI/(i.length+1),a=i.filter(function(t){return 0===t.linksTo.length}),o={},r=this.options.initialPositionRadius,n=t=>{for(let e of t.linksFrom||[])o[e.toNode.id]||(o[e.toNode.id]=!0,l.push(e.toNode),n(e.toNode))},l=[];for(let t of a)l.push(t),n(t);if(l.length)for(let t of i)-1===l.indexOf(t)&&l.push(t);else l=i;for(let i=0,a=l.length;i<a;++i)(t=l[i]).plotX=t.prevX=(0,x.pick)(t.plotX,e.width/2+r*Math.cos(i*s)),t.plotY=t.prevY=(0,x.pick)(t.plotY,e.height/2+r*Math.sin(i*s)),t.dispX=0,t.dispY=0}setRandomPositions(){let t,e=this.box,i=this.nodes,s=i.length+1,a=t=>{let e=t*t/Math.PI;return e-Math.floor(e)};for(let o=0,r=i.length;o<r;++o)(t=i[o]).plotX=t.prevX=(0,x.pick)(t.plotX,e.width*a(o)),t.plotY=t.prevY=(0,x.pick)(t.plotY,e.height*a(s+o)),t.dispX=0,t.dispY=0}force(t,...e){this.integration[t].apply(this,e)}barycenterForces(){this.getBarycenter(),this.force("barycenter")}getBarycenter(){let t=0,e=0,i=0;for(let s of this.nodes)e+=s.plotX*s.mass,i+=s.plotY*s.mass,t+=s.mass;return this.barycenter={x:e,y:i,xFactor:e/t,yFactor:i/t},this.barycenter}barnesHutApproximation(t,e){let i,s,a=this.getDistXY(t,e),o=this.vectorLength(a);return t!==e&&0!==o&&(e.isInternal?e.boxSize/o<this.options.theta&&0!==o?(s=this.repulsiveForce(o,this.k),this.force("repulsive",t,s*e.mass,a,o),i=!1):i=!0:(s=this.repulsiveForce(o,this.k),this.force("repulsive",t,s*e.mass,a,o))),i}repulsiveForces(){if("barnes-hut"===this.approximation)for(let t of this.nodes)this.quadTree.visitNodeRecursive(null,e=>this.barnesHutApproximation(t,e));else{let t,e,i;for(let s of this.nodes)for(let a of this.nodes)s===a||s.fixedPosition||(i=this.getDistXY(s,a),0!==(e=this.vectorLength(i))&&(t=this.repulsiveForce(e,this.k),this.force("repulsive",s,t*a.mass,i,e)))}}attractiveForces(){let t,e,i;for(let s of this.links)s.fromNode&&s.toNode&&(t=this.getDistXY(s.fromNode,s.toNode),0!==(e=this.vectorLength(t))&&(i=this.attractiveForce(e,this.k),this.force("attractive",s,i,t,e)))}applyLimits(){for(let t of this.nodes)t.fixedPosition||(this.integration.integrate(this,t),this.applyLimitBox(t,this.box),t.dispX=0,t.dispY=0)}applyLimitBox(t,e){let i=t.radius;t.plotX=(0,x.clamp)(t.plotX,e.left+i,e.width-i),t.plotY=(0,x.clamp)(t.plotY,e.top+i,e.height-i)}coolDown(t,e,i){return t-e*i}isStable(){return 1e-5>Math.abs(this.systemTemperature-this.prevSystemTemperature)||this.temperature<=0}getSystemTemperature(){let t=0;for(let e of this.nodes)t+=e.temperature;return t}vectorLength(t){return Math.sqrt(t.x*t.x+t.y*t.y)}getDistR(t,e){let i=this.getDistXY(t,e);return this.vectorLength(i)}getDistXY(t,e){let i=t.plotX-e.plotX,s=t.plotY-e.plotY;return{x:i,y:s,absX:Math.abs(i),absY:Math.abs(s)}}}let et=t7;function ee(){let t=this.series,e=[];return t.forEach(t=>{t.parentNode&&t.parentNode.selected&&e.push(t.parentNode)}),e}function ei(){this.allDataPoints&&delete this.allDataPoints}class es extends et{constructor(){super(...arguments),this.index=NaN,this.nodes=[],this.series=[]}static compose(t){et.compose(t),tZ.packedbubble=t5,t$.packedbubble=es;let e=t.prototype;e.getSelectedParentNodes||((0,x.addEvent)(t,"beforeRedraw",ei),e.getSelectedParentNodes=ee),e.allParentNodes||(e.allParentNodes=[])}beforeStep(){this.options.marker&&this.series.forEach(t=>{t&&t.calculateParentRadius()})}isStable(){let t=Math.abs(this.prevSystemTemperature-this.systemTemperature);return 1>Math.abs(10*this.systemTemperature/Math.sqrt(this.nodes.length))&&t<1e-5||this.temperature<=0}setCircularPositions(){let t=this.box,e=[...this.nodes,...this?.chart?.allParentNodes||[]],i=2*Math.PI/(e.length+1),s=this.options.initialPositionRadius,a,o,r=0;for(let n of e)this.resolveSplitSeries(n)&&!n.isParentNode?(a=n.series.parentNode.plotX,o=n.series.parentNode.plotY):(a=t.width/2,o=t.height/2),n.plotX=n.prevX=(0,x.pick)(n.plotX,a+s*Math.cos(n.index||r*i)),n.plotY=n.prevY=(0,x.pick)(n.plotY,o+s*Math.sin(n.index||r*i)),n.dispX=0,n.dispY=0,r++}repulsiveForces(){let{options:t,k:e}=this,{bubblePadding:i=0,seriesInteraction:s}=t,a=[...this.nodes,...this?.chart?.allParentNodes||[]];for(let t of a){let o=t.series,r=t.fixedPosition,n=(t.marker?.radius||0)+i;for(let i of(t.degree=t.mass,t.neighbors=0,a)){let a=i.series;if(t!==i&&!r&&(s||o===a)&&!(o===a&&(i.isParentNode||t.isParentNode))){let s,a=this.getDistXY(t,i),o=this.vectorLength(a)-(n+(i.marker?.radius||0));o<0&&(t.degree+=.01,s=this.repulsiveForce(-o/Math.sqrt(++t.neighbors),e,t,i)*i.mass),this.force("repulsive",t,s||0,a,i,o)}}}}resolveSplitSeries(t){let e=t.series?.options?.layoutAlgorithm?.splitSeries;return!(0,x.defined)(e)&&t.series.chart?.options?.plotOptions?.packedbubble?.layoutAlgorithm?.splitSeries||e||!1}applyLimitBox(t,e){let i,s;this.resolveSplitSeries(t)&&!t.isParentNode&&this.options.parentNodeLimit&&(i=this.getDistXY(t,t.series.parentNode),(s=t.series.parentNodeRadius-t.marker.radius-this.vectorLength(i))<0&&s>-2*t.marker.radius&&(t.plotX-=.01*i.x,t.plotY-=.01*i.y)),super.applyLimitBox(t,e)}}t$.packedbubble=es;let{animObject:ea}=v();var eo=b(28),er=b.n(eo);let{composed:en,deg2rad:el}=v(),{parse:eh}=tH(),{noop:ep}=v(),{series:{prototype:ed},seriesTypes:{bubble:ec}}=M(),{initDataLabels:eu,initDataLabelsDefer:eg}={initDataLabels:function(){let t=this.options.dataLabels;if(!this.dataLabelsGroup){let e=this.initDataLabelsGroup(0,t);return!this.chart.styledMode&&t?.style&&e.css(t.style),e.attr({opacity:0}),this.visible&&(this.options.animation&&t?.animation?e.animate({opacity:1},t.animation):e.attr({opacity:1}),e.show()),e}return this.dataLabelsGroup.attr({opacity:1,...this.getPlotBox("data-labels")}),this.dataLabelsGroup},initDataLabelsDefer:function(){let t=this.options.dataLabels;t?.defer&&this.options.layoutAlgorithm?.enableSimulation?(0,x.syncTimeout)(()=>{this.deferDataLabels=!1},t?ea(t.animation).defer:0):this.deferDataLabels=!1}};d=er(),(0,x.pushUnique)(en,"TextPath")&&((0,x.addEvent)(d,"afterGetBBox",function(t){let e=t.bBox,i=this.element?.querySelector("textPath");if(i){let t=[],{b:s,h:a}=this.renderer.fontMetrics(this.element),o=a-s,r=RegExp('(<tspan>|<tspan(?!\\sclass="highcharts-br")[^>]*>|<\\/tspan>)',"g"),n=i.innerHTML.replace(r,"").split(/<tspan class="highcharts-br"[^>]*>/),l=n.length,h=(t,e)=>{let{x:a,y:r}=e,n=(i.getRotationOfChar(t)-90)*el,l=Math.cos(n),h=Math.sin(n);return[[a-o*l,r-o*h],[a+s*l,r+s*h]]};for(let e=0,s=0;s<l;s++){let a=n[s].length;for(let o=0;o<a;o+=5)try{let a=e+o+s,[r,n]=h(a,i.getStartPositionOfChar(a));0===o?(t.push(n),t.push(r)):(0===s&&t.unshift(n),s===l-1&&t.push(r))}catch{break}e+=a-1;try{let a=e+s,o=i.getEndPositionOfChar(a),[r,n]=h(a,o);t.unshift(n),t.unshift(r)}catch{break}}t.length&&t.push(t[0].slice()),e.polygon=t}return e}),(0,x.addEvent)(d,"beforeAddingDataLabel",function(t){let e=t.labelOptions,i=t.point,s=e[i.formatPrefix+"TextPath"]||e.textPath;s&&!e.useHTML&&(this.setTextPath(i.getDataLabelPath?.(this)||i.graphic,s),i.dataLabelPath&&!s.enabled&&(i.dataLabelPath=i.dataLabelPath.destroy()))}),d.prototype.setTextPath=d.prototype.setTextPath??function(t,e){let i=this.renderer.url,s=this.text||this,a=s.textPath,{attributes:o,enabled:r}=(0,x.merge)({enabled:!0,attributes:{dy:-5,startOffset:"50%",textAnchor:"middle"}},e);if(t=t||a&&a.path,a?.undo(),t&&r){let e=(0,x.addEvent)(s,"afterModifyTree",e=>{if(t&&r){let a=t.attr("id");a||t.attr("id",a=(0,x.uniqueKey)());let r={x:0,y:0};(0,x.defined)(o.dx)&&(r.dx=o.dx,delete o.dx),(0,x.defined)(o.dy)&&(r.dy=o.dy,delete o.dy),s.attr(r),this.attr({transform:""}),this.box&&(this.box=this.box.destroy());let n=e.nodes.slice(0);e.nodes.length=0,e.nodes[0]={tagName:"textPath",attributes:(0,x.extend)(o,{"text-anchor":o.textAnchor,href:`${i}#${a}`}),children:n}}});s.textPath={path:t,undo:e}}else s.attr({dx:0,dy:0}),delete s.textPath;return this.added&&(s.textCache="",this.renderer.buildText(s)),this});class em extends ec{constructor(){super(...arguments),this.parentNodeMass=0,this.deferDataLabels=!0}static compose(t,e,i){ec.compose(t,e,i),tF.compose(e),es.compose(e)}accumulateAllPoints(){let t=this.chart,e=[];for(let i of t.series)if(i.is("packedbubble")&&i.reserveSpace()){let t=i.getColumn("value");for(let s=0;s<t.length;s++)e.push([null,null,t[s],i.index,s,{id:s,marker:{radius:0}}])}return e}addLayout(){let t=this.options.layoutAlgorithm=this.options.layoutAlgorithm||{},e=t.type||"packedbubble",i=this.chart.options.chart,s=this.chart.graphLayoutsStorage,a=this.chart.graphLayoutsLookup,o;s||(this.chart.graphLayoutsStorage=s={},this.chart.graphLayoutsLookup=a=[]),(o=s[e])||(t.enableSimulation=(0,x.defined)(i.forExport)?!i.forExport:t.enableSimulation,s[e]=o=new t$[e],o.init(t),a.splice(o.index,0,o)),this.layout=o,this.points.forEach(t=>{t.mass=2,t.degree=1,t.collisionNmb=1}),o.setArea(0,0,this.chart.plotWidth,this.chart.plotHeight),o.addElementsToCollection([this],o.series),o.addElementsToCollection(this.points,o.nodes)}addSeriesLayout(){let t=this.options.layoutAlgorithm=this.options.layoutAlgorithm||{},e=t.type||"packedbubble",i=this.chart.graphLayoutsStorage,s=this.chart.graphLayoutsLookup,a=(0,x.merge)(t,t.parentNodeOptions,{enableSimulation:this.layout.options.enableSimulation}),o=i[e+"-series"];o||(i[e+"-series"]=o=new t$[e],o.init(a),s.splice(o.index,0,o)),this.parentNodeLayout=o,this.createParentNodes()}calculateParentRadius(){let t=this.seriesBox();this.parentNodeRadius=(0,x.clamp)(Math.sqrt(2*this.parentNodeMass/Math.PI)+20,20,t?Math.max(Math.sqrt(Math.pow(t.width,2)+Math.pow(t.height,2))/2+20,20):Math.sqrt(2*this.parentNodeMass/Math.PI)+20),this.parentNode&&(this.parentNode.marker.radius=this.parentNode.radius=this.parentNodeRadius)}calculateZExtremes(){let t=this.chart.series,e=this.options.zMin,i=this.options.zMax,s=1/0,a=-1/0;return e&&i?[e,i]:(t.forEach(t=>{t.getColumn("value").forEach(t=>{(0,x.defined)(t)&&(t>a&&(a=t),t<s&&(s=t))})}),[e=(0,x.pick)(e,s),i=(0,x.pick)(i,a)])}checkOverlap(t,e){let i=t[0]-e[0],s=t[1]-e[1];return Math.sqrt(i*i+s*s)-Math.abs(t[2]+e[2])<-.001}createParentNodes(){let t=this.pointClass,e=this.chart,i=this.parentNodeLayout,s=this.layout.options,a,o=this.parentNode,r={radius:this.parentNodeRadius,lineColor:this.color,fillColor:eh(this.color).brighten(.4).get()};s.parentNodeOptions&&(r=(0,x.merge)(s.parentNodeOptions.marker||{},r)),this.parentNodeMass=0,this.points.forEach(t=>{this.parentNodeMass+=Math.PI*Math.pow(t.marker.radius,2)}),this.calculateParentRadius(),i.nodes.forEach(t=>{t.seriesIndex===this.index&&(a=!0)}),i.setArea(0,0,e.plotWidth,e.plotHeight),a||(o||(o=new t(this,{mass:this.parentNodeRadius/2,marker:r,dataLabels:{inside:!1},states:{normal:{marker:r},hover:{marker:r}},dataLabelOnNull:!0,degree:this.parentNodeRadius,isParentNode:!0,seriesIndex:this.index}),this.chart.allParentNodes.push(o)),this.parentNode&&(o.plotX=this.parentNode.plotX,o.plotY=this.parentNode.plotY),this.parentNode=o,i.addElementsToCollection([this],i.series),i.addElementsToCollection([o],i.nodes))}deferLayout(){let t=this.options.layoutAlgorithm;this.visible&&(this.addLayout(),t.splitSeries&&this.addSeriesLayout())}destroy(){this.chart.graphLayoutsLookup&&this.chart.graphLayoutsLookup.forEach(t=>{t.removeElementFromCollection(this,t.series)},this),this.parentNode&&this.parentNodeLayout&&(this.parentNodeLayout.removeElementFromCollection(this.parentNode,this.parentNodeLayout.nodes),this.parentNode.dataLabel&&(this.parentNode.dataLabel=this.parentNode.dataLabel.destroy())),ed.destroy.apply(this,arguments)}drawDataLabels(){!this.deferDataLabels&&(ed.drawDataLabels.call(this,this.points),this.parentNode&&(this.parentNode.formatPrefix="parentNode",ed.drawDataLabels.call(this,[this.parentNode])))}drawGraph(){if(!this.layout||!this.layout.options.splitSeries)return;let t=this.chart,e=this.layout.options.parentNodeOptions.marker,i={fill:e.fillColor||eh(this.color).brighten(.4).get(),opacity:e.fillOpacity,stroke:e.lineColor||this.color,"stroke-width":(0,x.pick)(e.lineWidth,this.options.lineWidth)},s={};this.parentNodesGroup=this.plotGroup("parentNodesGroup","parentNode",this.visible?"inherit":"hidden",.1,t.seriesGroup),this.group?.attr({zIndex:2}),this.calculateParentRadius(),this.parentNode&&(0,x.defined)(this.parentNode.plotX)&&(0,x.defined)(this.parentNode.plotY)&&(0,x.defined)(this.parentNodeRadius)&&(s=(0,x.merge)({x:this.parentNode.plotX-this.parentNodeRadius,y:this.parentNode.plotY-this.parentNodeRadius,width:2*this.parentNodeRadius,height:2*this.parentNodeRadius},i),this.parentNode.graphic||(this.graph=this.parentNode.graphic=t.renderer.symbol(i.symbol).add(this.parentNodesGroup)),this.parentNode.graphic.attr(s))}drawTracker(){let t,e=this.parentNode;super.drawTracker(),e&&(t=(0,x.isArray)(e.dataLabels)?e.dataLabels:e.dataLabel?[e.dataLabel]:[],e.graphic&&(e.graphic.element.point=e),t.forEach(t=>{(t.div||t.element).point=e}))}getPointRadius(){let t,e,i,s,a=this.chart,o=a.plotWidth,r=a.plotHeight,n=this.options,l=n.useSimulation,h=Math.min(o,r),p={},d=[],c=a.allDataPoints||[],u=c.length;["minSize","maxSize"].forEach(t=>{let e=parseInt(n[t],10),i=/%$/.test(n[t]);p[t]=i?h*e/100:e*Math.sqrt(u)}),a.minRadius=t=p.minSize/Math.sqrt(u),a.maxRadius=e=p.maxSize/Math.sqrt(u);let g=l?this.calculateZExtremes():[t,e];c.forEach((a,o)=>{i=l?(0,x.clamp)(a[2],g[0],g[1]):a[2],0===(s=this.getRadius(g[0],g[1],t,e,i))&&(s=null),c[o][2]=s,d.push(s)}),this.radii=d}init(){return ed.init.apply(this,arguments),eg.call(this),this.eventsToUnbind.push((0,x.addEvent)(this,"updatedData",function(){this.chart.series.forEach(t=>{t.type===this.type&&(t.isDirty=!0)},this)})),this}onMouseUp(t){if(t.fixedPosition&&!t.removed){let e,i=this.layout,s=this.parentNodeLayout;!t.isParentNode&&s&&i.options.dragBetweenSeries&&s.nodes.forEach(s=>{t&&t.marker&&s!==t.series.parentNode&&(e=i.getDistXY(t,s),i.vectorLength(e)-s.marker.radius-t.marker.radius<0&&(s.series.addPoint((0,x.merge)(t.options,{plotX:t.plotX,plotY:t.plotY}),!1),i.removeElementFromCollection(t,i.nodes),t.remove()))}),tF.onMouseUp.apply(this,arguments)}}placeBubbles(t){let e=this.checkOverlap,i=this.positionBubble,s=[],a=1,o=0,r=0,n,l=[],h,p=t.sort((t,e)=>e[2]-t[2]);if(p.length){if(s.push([[0,0,p[0][2],p[0][3],p[0][4]]]),p.length>1)for(s.push([[0,0-p[1][2]-p[0][2],p[1][2],p[1][3],p[1][4]]]),h=2;h<p.length;h++)p[h][2]=p[h][2]||1,e(n=i(s[a][o],s[a-1][r],p[h]),s[a][0])?(s.push([]),r=0,s[a+1].push(i(s[a][o],s[a][0],p[h])),a++,o=0):a>1&&s[a-1][r+1]&&e(n,s[a-1][r+1])?(r++,s[a].push(i(s[a][o],s[a-1][r],p[h])),o++):(o++,s[a].push(n));this.chart.stages=s,this.chart.rawPositions=[].concat.apply([],s),this.resizeRadius(),l=this.chart.rawPositions}return l}pointAttribs(t,e){let i=this.options,s=t&&t.isParentNode,a=i.marker;s&&i.layoutAlgorithm&&i.layoutAlgorithm.parentNodeOptions&&(a=i.layoutAlgorithm.parentNodeOptions.marker);let o=a.fillOpacity,r=ed.pointAttribs.call(this,t,e);return 1!==o&&(r["fill-opacity"]=o),r}positionBubble(t,e,i){let s=Math.asin,a=Math.acos,o=Math.pow,r=Math.abs,n=(0,Math.sqrt)(o(t[0]-e[0],2)+o(t[1]-e[1],2)),l=a((o(n,2)+o(i[2]+e[2],2)-o(i[2]+t[2],2))/(2*(i[2]+e[2])*n)),h=s(r(t[0]-e[0])/n),p=(t[1]-e[1]<0?0:Math.PI)+l+h*((t[0]-e[0])*(t[1]-e[1])<0?1:-1),d=Math.cos(p),c=Math.sin(p);return[e[0]+(e[2]+i[2])*c,e[1]-(e[2]+i[2])*d,i[2],i[3],i[4]]}render(){let t=[];ed.render.apply(this,arguments),!this.options.dataLabels.allowOverlap&&(this.data.forEach(e=>{(0,x.isArray)(e.dataLabels)&&e.dataLabels.forEach(e=>{t.push(e)})}),this.options.useSimulation&&this.chart.hideOverlappingLabels(t))}resizeRadius(){let t,e,i,s,a,o=this.chart,r=o.rawPositions,n=Math.min,l=Math.max,h=o.plotLeft,p=o.plotTop,d=o.plotHeight,c=o.plotWidth;for(let o of(t=i=1/0,e=s=-1/0,r))a=o[2],t=n(t,o[0]-a),e=l(e,o[0]+a),i=n(i,o[1]-a),s=l(s,o[1]+a);let u=[e-t,s-i],g=[(c-h)/u[0],(d-p)/u[1]],m=n.apply([],g);if(Math.abs(m-1)>1e-10){for(let t of r)t[2]*=m;this.placeBubbles(r)}else o.diffY=d/2+p-i-(s-i)/2,o.diffX=c/2+h-t-(e-t)/2}seriesBox(){let t,e=this.chart,i=this.data,s=Math.max,a=Math.min,o=[e.plotLeft,e.plotLeft+e.plotWidth,e.plotTop,e.plotTop+e.plotHeight];return i.forEach(e=>{(0,x.defined)(e.plotX)&&(0,x.defined)(e.plotY)&&e.marker.radius&&(t=e.marker.radius,o[0]=a(o[0],e.plotX-t),o[1]=s(o[1],e.plotX+t),o[2]=a(o[2],e.plotY-t),o[3]=s(o[3],e.plotY+t))}),(0,x.isNumber)(o.width/o.height)?o:null}setVisible(){let t=this;ed.setVisible.apply(t,arguments),t.parentNodeLayout&&t.graph?t.visible?(t.graph.show(),t.parentNode.dataLabel&&t.parentNode.dataLabel.show()):(t.graph.hide(),t.parentNodeLayout.removeElementFromCollection(t.parentNode,t.parentNodeLayout.nodes),t.parentNode.dataLabel&&t.parentNode.dataLabel.hide()):t.layout&&(t.visible?t.layout.addElementsToCollection(t.points,t.layout.nodes):t.points.forEach(e=>{t.layout.removeElementFromCollection(e,t.layout.nodes)}))}translate(){let t,e,i,s=this.chart,a=this.data,o=this.index,r=this.options.useSimulation;for(let n of(this.generatePoints(),(0,x.defined)(s.allDataPoints)||(s.allDataPoints=this.accumulateAllPoints(),this.getPointRadius()),r?i=s.allDataPoints:(i=this.placeBubbles(s.allDataPoints),this.options.draggable=!1),i))n[3]===o&&(t=a[n[4]],e=(0,x.pick)(n[2],void 0),r||(t.plotX=n[0]-s.plotLeft+s.diffX,t.plotY=n[1]-s.plotTop+s.diffY),(0,x.isNumber)(e)&&(t.marker=(0,x.extend)(t.marker,{radius:e,width:2*e,height:2*e}),t.radius=e));r&&this.deferLayout(),(0,x.fireEvent)(this,"afterTranslate")}}em.defaultOptions=(0,x.merge)(ec.defaultOptions,{minSize:"10%",maxSize:"50%",sizeBy:"area",zoneAxis:"y",crisp:!1,tooltip:{pointFormat:"Value: {point.value}"},draggable:!0,useSimulation:!0,parentNode:{allowPointSelect:!1},dataLabels:{formatter:function(){let{numberFormatter:t}=this.series.chart,{value:e}=this.point;return(0,x.isNumber)(e)?t(e,-1):""},parentNodeFormatter:function(){return this.name||""},parentNodeTextPath:{enabled:!0},padding:0,style:{transition:"opacity 2000ms"}},layoutAlgorithm:{initialPositions:"circle",initialPositionRadius:20,bubblePadding:5,parentNodeLimit:!1,seriesInteraction:!0,dragBetweenSeries:!1,parentNodeOptions:{maxIterations:400,gravitationalConstant:.03,maxSpeed:50,initialPositionRadius:100,seriesInteraction:!0,marker:{fillColor:null,fillOpacity:1,lineWidth:null,lineColor:null,symbol:"circle"}},enableSimulation:!0,type:"packedbubble",integration:"packedbubble",maxIterations:1e3,splitSeries:!1,maxSpeed:5,gravitationalConstant:.01,friction:-.981},stickyTracking:!1}),(0,x.extend)(em.prototype,{pointClass:t1,axisTypes:[],directTouch:!0,forces:["barycenter","repulsive"],hasDraggableNodes:!0,invertible:!1,isCartesian:!1,noSharedTooltip:!0,pointArrayMap:["value"],pointValKey:"value",requireSorting:!1,trackerGroups:["group","dataLabelsGroup","parentNodesGroup"],initDataLabels:eu,alignDataLabel:ed.alignDataLabel,indexateNodes:ep,onMouseDown:tF.onMouseDown,onMouseMove:tF.onMouseMove,redrawHalo:tF.redrawHalo,searchPoint:ep}),M().registerSeriesType("packedbubble",em);let{noop:ef}=v(),{area:eb,line:ey,scatter:ex}=M().seriesTypes;class ev extends ex{getGraphPath(){let t=ey.prototype.getGraphPath.call(this),e=t.length+1;for(;e--;)(e===t.length||"M"===t[e][0])&&e>0&&t.splice(e,0,["Z"]);return this.areaPath=t,t}drawGraph(){this.options.fillColor=this.color,eb.prototype.drawGraph.call(this)}}ev.defaultOptions=(0,x.merge)(ex.defaultOptions,{marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0,legendSymbol:"rectangle"}),(0,x.extend)(ev.prototype,{type:"polygon",drawTracker:ey.prototype.drawTracker,setStackedPoints:ef}),M().registerSeriesType("polygon",ev);let{defaultOptions:eP}=v(),{noop:eM}=v(),ek={radius:0,scope:"stack",where:void 0};function eL(t,e){return(0,x.isObject)(t)||(t={radius:t||0}),(0,x.merge)(ek,e,t)}var ew=b(820),eS=b.n(ew);let eA={circular:{gridLineWidth:1,labels:{align:void 0,x:0,y:void 0},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},radial:{gridLineInterpolation:"circle",gridLineWidth:1,labels:{align:"right",padding:5,x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},radialGauge:{gridLineWidth:0,labels:{align:"center",distance:15,x:0,y:void 0},minorGridLineWidth:0,minorTickLength:5,minorTickPosition:"inside",minorTicksPerMajor:10,minorTickWidth:1,tickLength:void 0,tickWidth:2,tickPixelInterval:100,tickPosition:"inside",title:{rotation:0,text:""},zIndex:2}},{defaultOptions:eN}=v(),{composed:eT,noop:eC}=v();!function(t){function e(){this.autoConnect=this.isCircular&&void 0===(0,x.pick)(this.userMax,this.options.max)&&(0,x.correctFloat)(this.endAngleRad-this.startAngleRad)===(0,x.correctFloat)(2*Math.PI),!this.isCircular&&this.chart.inverted&&this.max++,this.autoConnect&&(0,x.isNumber)(this.max)&&(this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0)}function i(){return()=>{if(this.isRadial&&this.tickPositions&&this.options.labels&&!0!==this.options.labels.allowOverlap)return this.tickPositions.map(t=>this.ticks[t]?.label).filter(t=>!!t)}}function s(){return eC}function a(t,e,i){let s=this.pane.center,a=t.value,o,r,n;return this.isCircular?((0,x.defined)(a)?t.point&&(t.point.shapeArgs||{}).start&&(a=this.chart.inverted?this.translate(t.point.rectPlotY,!0):t.point.x):(r=t.chartX||0,n=t.chartY||0,a=this.translate(Math.atan2(n-i,r-e)-this.startAngleRad,!0)),r=(o=this.getPosition(a)).x,n=o.y):((0,x.defined)(a)||(r=t.chartX,n=t.chartY),(0,x.defined)(r)&&(0,x.defined)(n)&&(i=s[1]+this.chart.plotTop,a=this.translate(Math.min(Math.sqrt(Math.pow(r-e,2)+Math.pow(n-i,2)),s[2]/2)-s[3]/2,!0))),[a,r||0,n||0]}function o(t,e,i){let s=this.pane.center,a=this.chart,o=this.left||0,r=this.top||0,n,l,h=(0,x.pick)(e,s[2]/2-this.offset);return i??(i=this.horiz?0:this.center&&-this.center[3]/2),i&&i>0&&(h+=i),this.isCircular||void 0!==e?((l=this.chart.renderer.symbols.arc(o+s[0],r+s[1],h,h,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0})).xBounds=[o+s[0]],l.yBounds=[r+s[1]-h]):(n=this.postTranslate(this.angleRad,h),l=[["M",this.center[0]+a.plotLeft,this.center[1]+a.plotTop],["L",n.x,n.y]]),l}function r(){this.constructor.prototype.getOffset.call(this);let t=this.options.offset??(this.pane.hasSeriesType("gauge")?"-20%":void 0);(0,x.defined)(t)&&(this.offset=-1*(0,x.relativeLength)(t,this.center[2]/2)),this.chart.axisOffset[this.side]=0}function n(t,e,i){let s=this.chart,a=t=>{if("string"==typeof t){let e=parseInt(t,10);return u.test(t)&&(e=e*h/100),e}return t},o=this.center,{endAngleRad:r,startAngleRad:n}=this,l=eL(i.borderRadius??this.pane.options.borderRadius),h=o[2]/2,p=Math.min(this.offset||0,0),d=this.left||0,c=this.top||0,u=/%$/,g=this.isCircular,m=this.options.plotBands||[],f=m.indexOf(i),b,y,v,P,M,k,L=(0,x.pick)(a(i.outerRadius),h),w=a(i.innerRadius),S=a(i.thickness),A=!0,N=!0;if(l.radius&&"stack"===l.scope&&f>-1&&(m[f-1]&&m[f-1].to===t&&(A=!1),m[f+1]&&m[f+1].from===e&&(N=!1)),"polygon"===this.options.gridLineInterpolation)k=this.getPlotLinePath({value:t}).concat(this.getPlotLinePath({value:e,reverse:!0}));else{(0,x.isNumber)(this.min)&&(t=Math.max(t,this.min)),(0,x.isNumber)(this.max)&&(e=Math.min(e,this.max));let a=this.translate(t),h=this.translate(e);g||(L=a||0,w=h||0),(0,x.isNumber)(this.min)||(0,x.isNumber)(this.max)||i.color||i.className?"circle"!==i.shape&&g?(b=n+(a||0),y=n+(h||0)):(b=-Math.PI/2,y=1.5*Math.PI,M=!0):(b=n,y=r),L-=p,(0,x.isNumber)(S)&&(S-=p),k=s.renderer.symbols.arc(d+o[0],c+o[1],L,L,{start:Math.min(b,y),end:Math.max(b,y),innerR:(0,x.pick)(w,(0,x.isNumber)(S)?L-S:void 0,this.center[3]/2),open:M,borderRadius:l.radius,brStart:A,brEnd:N}),g&&(v=(y+b)/2,P=d+o[0]+o[2]/2*Math.cos(v),k.xBounds=v>-Math.PI/2&&v<Math.PI/2?[P,s.plotWidth]:[0,P],k.yBounds=[c+o[1]+o[2]/2*Math.sin(v)],k.yBounds[0]+=v>-Math.PI&&v<0||v>Math.PI?-10:10)}return k}function l(t){let e=this.pane.center,i=this.chart,s=i.inverted,a=t.reverse,o=this.pane.options.background,r=o?(0,x.splat)(o)[0]:{},n=r.innerRadius||"0%",l=r.outerRadius||"100%",h=e[0]+i.plotLeft,p=e[1]+i.plotTop,d=this.height,c=t.isCrosshair,u=e[3]/2,g=i.time.parse(t.value)||0,m,f,b,y,v,P,M,k,L,w=this.getPosition(g,e[2]/2+(this.isCircular?this.offset:0)),S=w.x,A=w.y;if(c&&(g=(k=this.getCrosshairPosition(t,h,p))[0]||0,S=k[1],A=k[2]),this.isCircular)f=Math.sqrt(Math.pow(S-h,2)+Math.pow(A-p,2)),b="string"==typeof n?(0,x.relativeLength)(n,1):n/f,y="string"==typeof l?(0,x.relativeLength)(l,1):l/f,e&&u&&(b<(m=u/f)&&(b=m),y<m&&(y=m)),L=[["M",h+b*(S-h),p-b*(p-A)],["L",S-(1-y)*(S-h),A+(1-y)*(p-A)]];else{let t=this.translate(g);if(t&&(t<0||t>d)&&(t=0),"circle"===this.options.gridLineInterpolation)L=this.getLinePath(0,t,u);else if(L=[],i[s?"yAxis":"xAxis"].forEach(t=>{t.pane===this.pane&&(v=t)}),v){M=v.tickPositions,v.autoConnect&&(M=M.concat([M[0]])),a&&(M=M.slice().reverse()),t&&(t+=u);for(let e=0;e<M.length;e++)P=v.getPosition(M[e],t),L.push(e?["L",P.x,P.y]:["M",P.x,P.y])}}return L}function h(t,e){let i=this.translate(t);return this.postTranslate(this.isCircular?i:this.angleRad,(0,x.pick)(this.isCircular?e:i<0?0:i,this.center[2]/2)-this.offset)}function p(){let t=this.center,e=this.chart,i=this.options.title;return{x:e.plotLeft+t[0]+(i.x||0),y:e.plotTop+t[1]-({high:.5,middle:.25,low:0})[i.align]*t[2]+(i.y||0)}}function d(t){t.beforeSetTickPositions=e,t.createLabelCollector=i,t.getCrosshairPosition=a,t.getLinePath=o,t.getOffset=r,t.getPlotBandPath=n,t.getPlotLinePath=l,t.getPosition=h,t.getTitlePosition=p,t.postTranslate=k,t.setAxisSize=w,t.setAxisTranslation=S,t.setOptions=A}function c(){let t=this.chart,e=this.options,i=t.angular&&this.isXAxis,s=this.pane,a=s?.options;if(!i&&s&&(t.angular||t.polar)){let i=2*Math.PI,s=a.startAngle??(t.angular?-135:0),o=(s-90)*Math.PI/180,r=((0,x.pick)(a.endAngle,s+(t.angular?270:360))-90)*Math.PI/180;this.angleRad=(e.angle||0)*Math.PI/180,this.startAngleRad=o,this.endAngleRad=r;let n=(o%i+i)%i,l=(r%i+i)%i;n>Math.PI&&(n-=i),l>Math.PI&&(l-=i),this.normalizedStartAngleRad=n,this.normalizedEndAngleRad=l}}function u(t){if(this.chart.angular){let{options:e,pane:i}=this;i.hasSeriesType("gauge")&&(t.tickSize=[e[`${t.prefix}Length`]??10,e[`${t.prefix}Width`]??1],"inside"===e[`${t.prefix}Position`]&&(t.tickSize[0]*=-1))}}function g(t){this.isRadial&&(t.align=void 0,t.preventDefault())}function m(){if(this.chart?.labelCollectors){let t=this.labelCollector?this.chart.labelCollectors.indexOf(this.labelCollector):-1;t>=0&&this.chart.labelCollectors.splice(t,1)}}function f(t){let e,i=this.chart,a=i.angular,o=i.polar,r=this.isXAxis,n=this.coll,l=t.userOptions.pane||0,h=this.pane=i.pane&&i.pane[l];if("colorAxis"===n){this.isRadial=!1;return}if(a){if(a&&r)this.isHidden=!0,this.createLabelCollector=s,this.getOffset=eC,this.redraw=L,this.render=L,this.setCategories=eC,this.setTitle=eC;else d(this);e=!r}else o&&(d(this),e=this.horiz);a||o?(this.isRadial=!0,this.labelCollector||(this.labelCollector=this.createLabelCollector()),this.labelCollector&&i.labelCollectors.push(this.labelCollector)):this.isRadial=!1,h&&e&&(h.axis=this),this.isCircular=e}function b(){this.isRadial&&this.beforeSetTickPositions?.()}function y(t){let e=this.label;if(!e)return;let i=this.axis,s=e.getBBox(),a=i.options.labels,o=(i.translate(this.pos)+i.startAngleRad+Math.PI/2)/Math.PI*180%360,r=Math.round(o),n=(0,x.defined)(a.y)?0:-(.3*s.height),l=a.y,h,p=20,d=a.align,c="end",u=r<0?r+360:r,g=u,m=0,f=0;i.isRadial&&(h=i.getPosition(this.pos,i.center[2]/2+(0,x.relativeLength)(a.distance??-25,i.center[2]/2)+i.offset),"auto"===a.rotation?e.attr({rotation:o}):(0,x.defined)(l)||(l=i.chart.renderer.fontMetrics(e).b-s.height/2),(0,x.defined)(d)||(i.isCircular?(s.width>i.len*i.tickInterval/(i.max-i.min)&&(p=0),d=o>p&&o<180-p?"left":o>180+p&&o<360-p?"right":"center"):d="center",e.attr({align:d})),"auto"===d&&2===i.tickPositions.length&&i.isCircular&&(u>90&&u<180?u=180-u:u>270&&u<=360&&(u=540-u),g>180&&g<=360&&(g=360-g),(i.pane.options.startAngle===r||i.pane.options.startAngle===r+360||i.pane.options.startAngle===r-360)&&(c="start"),d=r>=-90&&r<=90||r>=-360&&r<=-270||r>=270&&r<=360?"start"===c?"right":"left":"start"===c?"left":"right",g>70&&g<110&&(d="center"),u<15||u>=180&&u<195?m=.3*s.height:u>=15&&u<=35?m="start"===c?0:.75*s.height:u>=195&&u<=215?m="start"===c?.75*s.height:0:u>35&&u<=90?m="start"===c?-(.25*s.height):s.height:u>215&&u<=270&&(m="start"===c?s.height:-(.25*s.height)),g<15?f="start"===c?-(.15*s.height):.15*s.height:g>165&&g<=180&&(f="start"===c?.15*s.height:-(.15*s.height)),e.attr({align:d}),e.translate(f,m+n)),t.pos.x=h.x+(a.x||0),t.pos.y=h.y+(l||0))}function P(t){this.axis.getPosition&&(0,x.extend)(t.pos,this.axis.getPosition(this.pos))}function M({options:e}){e.xAxis&&(0,x.merge)(!0,t.radialDefaultOptions.circular,e.xAxis),e.yAxis&&(0,x.merge)(!0,t.radialDefaultOptions.radialGauge,e.yAxis)}function k(t,e){let i=this.chart,s=this.center;return t=this.startAngleRad+t,{x:i.plotLeft+s[0]+Math.cos(t)*e,y:i.plotTop+s[1]+Math.sin(t)*e}}function L(){this.isDirty=!1}function w(){let t,e;this.constructor.prototype.setAxisSize.call(this),this.isRadial&&(this.pane.updateCenter(),t=this.center=this.pane.center.slice(),this.isCircular?(this.sector=this.endAngleRad-this.startAngleRad,this.len=this.width=this.height=t[2]*this.sector/2):(e=this.postTranslate(this.angleRad,t[3]/2),t[0]=e.x-this.chart.plotLeft,t[1]=e.y-this.chart.plotTop,this.len=this.width=this.height=(t[2]-t[3])/2))}function S(){this.constructor.prototype.setAxisTranslation.call(this),this.center&&(this.isCircular?this.transA=(this.endAngleRad-this.startAngleRad)/(this.max-this.min||1):this.transA=(this.center[2]-this.center[3])/2/(this.max-this.min||1),this.isXAxis?this.minPixelPadding=this.transA*this.minPointOffset:this.minPixelPadding=0)}function A(e){let{coll:i}=this,{angular:s,inverted:a,polar:o}=this.chart,r={};s?this.isXAxis||(r=(0,x.merge)(eN.yAxis,t.radialDefaultOptions.radialGauge)):o&&(r=this.horiz?(0,x.merge)(eN.xAxis,t.radialDefaultOptions.circular):(0,x.merge)("xAxis"===i?eN.xAxis:eN.yAxis,t.radialDefaultOptions.radial)),a&&"yAxis"===i&&(r.stackLabels=(0,x.isObject)(eN.yAxis,!0)?eN.yAxis.stackLabels:{},r.reversedStacks=!0);let n=this.options=(0,x.merge)(r,e);n.plotBands||(n.plotBands=[]),(0,x.fireEvent)(this,"afterSetOptions")}function N(t){return!(0,x.defined)(this.options.minorTicks)&&this.pane.hasSeriesType("gauge")?"auto":t.apply(this,Array.prototype.slice.call(arguments,1))}function T(t,e,i,s,a,o,r){let n,l=this.axis;return l.isRadial?["M",e,i,"L",(n=l.getPosition(this.pos,l.center[2]/2+s)).x,n.y]:t.call(this,e,i,s,a,o,r)}t.radialDefaultOptions=(0,x.merge)(eA),t.compose=function(t,e){return(0,x.pushUnique)(eT,"Axis.Radial")&&((0,x.addEvent)(t,"afterInit",c),(0,x.addEvent)(t,"afterTickSize",u),(0,x.addEvent)(t,"autoLabelAlign",g),(0,x.addEvent)(t,"destroy",m),(0,x.addEvent)(t,"init",f),(0,x.addEvent)(t,"initialAxisTranslation",b),(0,x.addEvent)(e,"afterGetLabelPosition",y),(0,x.addEvent)(e,"afterGetPosition",P),(0,x.addEvent)(v(),"setOptions",M),(0,x.wrap)(t.prototype,"getMinorTickInterval",N),(0,x.wrap)(e.prototype,"getMarkPath",T)),t}}(u||(u={}));let eX=u,{animObject:eY}=v(),{defaultOptions:eE}=v(),{composed:eR}=v();function eI(){(this.pane||[]).forEach(t=>{t.render()})}function ez(t){let e=t.args[0].xAxis,i=t.args[0].yAxis,s=t.args[0].chart;e&&i&&("polygon"===i.gridLineInterpolation?(e.startOnTick=!0,e.endOnTick=!0):"polygon"===e.gridLineInterpolation&&s.inverted&&(i.startOnTick=!0,i.endOnTick=!0))}function eD(){this.pane||(this.pane=[]),this.options.pane=(0,x.splat)(this.options.pane||{}),(0,x.splat)(this.userOptions.pane||{}).forEach(t=>{new E(t,this)},this)}function eO(t){let e=t.args.marker,i=this.chart.xAxis[0],s=this.chart.yAxis[0],a=this.chart.inverted,o=a?s:i,r=a?i:s;if(this.chart.polar){t.preventDefault();let i=(e.attr?e.attr("start"):e.start)-o.startAngleRad,s=e.attr?e.attr("r"):e.r,a=(e.attr?e.attr("end"):e.end)-o.startAngleRad,n=e.attr?e.attr("innerR"):e.innerR;t.result.x=i+o.pos,t.result.width=a-i,t.result.y=r.len+r.pos-s,t.result.height=s-n}}function eH(t){let e=this.chart;if(e.polar&&e.hoverPane&&e.hoverPane.axis){t.preventDefault();let i=e.hoverPane.center,s=e.mouseDownX||0,a=e.mouseDownY||0,o=t.args.chartY,r=t.args.chartX,n=2*Math.PI,l=e.hoverPane.axis.startAngleRad,h=e.hoverPane.axis.endAngleRad,p=e.inverted?e.xAxis[0]:e.yAxis[0],d={},c="arc";if(d.x=i[0]+e.plotLeft,d.y=i[1]+e.plotTop,this.zoomHor){let t=l>0?h-l:Math.abs(l)+Math.abs(h),u=Math.atan2(a-e.plotTop-i[1],s-e.plotLeft-i[0])-l,g=Math.atan2(o-e.plotTop-i[1],r-e.plotLeft-i[0])-l;d.r=i[2]/2,d.innerR=i[3]/2,u<=0&&(u+=n),g<=0&&(g+=n),g<u&&(g=[u,u=g][0]),t<n&&l+g>h+(n-t)/2&&(g=u,u=l<=0?l:0);let m=d.start=Math.max(u+l,l),f=d.end=Math.min(g+l,h);if("polygon"===p.options.gridLineInterpolation){let t=e.hoverPane.axis,s=m-t.startAngleRad+t.pos,a=p.getPlotLinePath({value:p.max}),o=t.toValue(s),r=t.toValue(s+(f-m));if(o<t.getExtremes().min){let{min:e,max:i}=t.getExtremes();o=i-(e-o)}if(r<t.getExtremes().min){let{min:e,max:i}=t.getExtremes();r=i-(e-r)}r<o&&(r=[o,o=r][0]),(a=eq(a,o,r,t)).push(["L",i[0]+e.plotLeft,e.plotTop+i[1]]),d.d=a,c="path"}}if(this.zoomVert){let t=e.inverted?e.xAxis[0]:e.yAxis[0],n=Math.sqrt(Math.pow(s-e.plotLeft-i[0],2)+Math.pow(a-e.plotTop-i[1],2)),p=Math.sqrt(Math.pow(r-e.plotLeft-i[0],2)+Math.pow(o-e.plotTop-i[1],2));if(p<n&&(n=[p,p=n][0]),p>i[2]/2&&(p=i[2]/2),n<i[3]/2&&(n=i[3]/2),this.zoomHor||(d.start=l,d.end=h),d.r=p,d.innerR=n,"polygon"===t.options.gridLineInterpolation){let e=t.toValue(t.len+t.pos-n),i=t.toValue(t.len+t.pos-p);d.d=t.getPlotLinePath({value:i}).concat(t.getPlotLinePath({value:e,reverse:!0})),c="path"}}if(this.zoomHor&&this.zoomVert&&"polygon"===p.options.gridLineInterpolation){let t=e.hoverPane.axis,i=d.start||0,s=d.end||0,a=i-t.startAngleRad+t.pos,o=t.toValue(a),r=t.toValue(a+(s-i));if(d.d instanceof Array){let t=d.d.slice(0,d.d.length/2),i=d.d.slice(d.d.length/2,d.d.length);i=[...i].reverse();let s=e.hoverPane.axis;t=eq(t,o,r,s),(i=eq(i,o,r,s))&&(i[0][0]="L"),i=[...i].reverse(),d.d=t.concat(i),c="path"}}t.attrs=d,t.shapeType=c}}function eB(){let t=this.chart;t.polar&&(this.polar=new e0(this),t.inverted&&(this.isRadialSeries=!0,this.is("column")&&(this.isRadialBar=!0)))}function eW(){let{chart:t,options:e,yAxis:i}=this;if(e.borderRadius&&t.polar&&t.inverted){let t=eE.plotOptions?.[this.type]?.borderRadius,{scope:s,where:a="end"}=eL(e.borderRadius,(0,x.isObject)(t)?t:{});for(let t of this.points){let{shapeArgs:o}=t;if("arc"===t.shapeType&&o){let r="all"===a,n=!0;e.stacking&&"stack"===s&&(r=t.stackY===t.y&&"all"===a,n=t.stackY===t.stackTotal),i.reversed&&([r,n]=[n,r]),o.brStart=r,o.brEnd=n}}}}function eF(){if(this.chart.polar&&this.xAxis){let{xAxis:t,yAxis:e}=this,i=this.chart;this.kdByAngle=i.tooltip&&i.tooltip.shared,this.kdByAngle||i.inverted?this.searchPoint=eG:this.options.findNearestPointBy="xy";let s=this.points,a=s.length;for(;a--;)this.is("column")||this.is("columnrange")||this.polar.toXY(s[a]),i.hasParallelCoordinates||this.yAxis.reversed||((0,x.pick)(s[a].y,5e-324)<e.min||s[a].x<t.min||s[a].x>t.max?(s[a].isNull=!0,s[a].plotY=NaN):s[a].isNull=s[a].isValid&&!s[a].isValid());this.hasClipCircleSetter||(this.hasClipCircleSetter=!!this.eventsToUnbind.push((0,x.addEvent)(this,"afterRender",function(){let t;if(i.polar&&!1!==this.options.clip){if(t=this.yAxis.pane.center,this.clipCircle)this.clipCircle.animate({x:t[0],y:t[1],r:t[2]/2,innerR:t[3]/2});else{var e,s,a,o,r;let n,l,h;this.clipCircle=(e=i.renderer,s=t[0],a=t[1],o=t[2]/2,r=t[3]/2,n=(0,x.uniqueKey)(),l=e.createElement("clipPath").attr({id:n}).add(e.defs),(h=r?e.arc(s,a,o,r,0,2*Math.PI).add(l):e.circle(s,a,o).add(l)).id=n,h.clipPath=l,h)}this.group.clip(this.clipCircle),this.setClip=v().noop}})))}}function eG(t){let e=this.chart,i=this.xAxis,s=this.yAxis,a=i.pane&&i.pane.center,o=t.chartX-(a&&a[0]||0)-e.plotLeft,r=t.chartY-(a&&a[1]||0)-e.plotTop,n=e.inverted?{clientX:t.chartX-s.pos,plotY:t.chartY-i.pos}:{clientX:180+-180/Math.PI*Math.atan2(o,r)};return this.searchKDTree(n)}function eq(t,e,i,s){let a=s.tickInterval,o=s.tickPositions,r=(0,x.find)(o,t=>t>=i),n=(0,x.find)([...o].reverse(),t=>t<=e);return(0,x.defined)(r)||(r=o[o.length-1]),(0,x.defined)(n)||(n=o[0],r+=a,t[0][0]="L",t.unshift(t[t.length-3])),(t=t.slice(o.indexOf(n),o.indexOf(r)+1))[0][0]="M",t}function eV(t,e){return(0,x.find)(this.pane||[],t=>t.options.id===e)||t.call(this,e)}function e_(t,e,i,s,a,o){let r,n,l,h=this.chart,p=(0,x.pick)(s.inside,!!this.options.stacking);if(h.polar){if(r=e.rectPlotX/Math.PI*180,h.inverted)this.forceDL=h.isInsidePlot(e.plotX,e.plotY),p&&e.shapeArgs?(n=e.shapeArgs,l=this.yAxis.postTranslate(((n.start||0)+(n.end||0))/2-this.xAxis.startAngleRad,e.barX+(e.pointWidth||0)/2),a=(0,x.merge)(a,{x:l.x-h.plotLeft,y:l.y-h.plotTop})):e.tooltipPos&&(a=(0,x.merge)(a,{x:e.tooltipPos[0],y:e.tooltipPos[1]})),s.align=(0,x.pick)(s.align,"center"),s.verticalAlign=(0,x.pick)(s.verticalAlign,"middle");else{var d;null===(d=s).align&&(d.align=r>20&&r<160?"left":r>200&&r<340?"right":"center"),null===d.verticalAlign&&(d.verticalAlign=r<45||r>315?"bottom":r>135&&r<225?"top":"middle"),s=d}eS().prototype.alignDataLabel.call(this,e,i,s,a,o),this.isRadialBar&&e.shapeArgs&&e.shapeArgs.start===e.shapeArgs.end?i.hide():i.show()}else t.call(this,e,i,s,a,o)}function eU(){let t=this.options,e=t.stacking,i=this.chart,s=this.xAxis,a=this.yAxis,o=a.reversed,r=a.center,n=s.startAngleRad,l=s.endAngleRad-n,h=t.threshold,p=0,d,c,u,g,m,f=0,b=0,y,v,P,M,k,L,w,S;if(s.isRadial)for(u=(d=this.points).length,g=a.translate(a.min),m=a.translate(a.max),h=t.threshold||0,i.inverted&&(0,x.isNumber)(h)&&(p=a.translate(h),(0,x.defined)(p)&&(p<0?p=0:p>l&&(p=l),this.translatedThreshold=p+n));u--;){if(L=(c=d[u]).barX,v=c.x,P=c.y,c.shapeType="arc",i.inverted){c.plotY=a.translate(P),e&&a.stacking?(k=a.stacking.stacks[(P<0?"-":"")+this.stackKey],this.visible&&k&&k[v]&&!c.isNull&&(M=k[v].points[this.getStackIndicator(void 0,v,this.index).key],f=a.translate(M[0]),b=a.translate(M[1]),(0,x.defined)(f)&&(f=(0,x.clamp)(f,0,l)))):(f=p,b=c.plotY),f>b&&(b=[f,f=b][0]),o?b>g?b=g:f<m?f=m:(f>g||b<m)&&(f=b=l):f<g?f=g:b>m?b=m:(b<g||f>m)&&(f=b=0),a.min>a.max&&(f=b=o?l:0),f+=n,b+=n,r&&(c.barX=L+=r[3]/2),w=Math.max(L,0),S=Math.max(L+(c.pointWidth||0),0);let i=t.borderRadius,s="object"==typeof i?i.radius:i,h=(0,x.relativeLength)(s||0,S-w);c.shapeArgs={x:r[0],y:r[1],r:S,innerR:w,start:f,end:b,borderRadius:h},c.opacity=f===b?0:void 0,c.plotY=((0,x.defined)(this.translatedThreshold)&&(f<this.translatedThreshold?f:b))-n}else f=L+n,c.shapeArgs=this.polar.arc(c.yBottom,c.plotY,f,f+(c.pointWidth||0)),c.shapeArgs.borderRadius=0;this.polar.toXY(c),i.inverted?(y=a.postTranslate(c.rectPlotY,L+(c.pointWidth||0)/2),c.tooltipPos=[y.x-i.plotLeft,y.y-i.plotTop]):c.tooltipPos=[c.plotX,c.plotY],r&&(c.ttBelow=c.plotY>r[1])}}function eK(t,e){let i,s,a=this;if(this.chart.polar){e=e||this.points;for(let t=0;t<e.length;t++)if(!e[t].isNull){i=t;break}!1!==this.options.connectEnds&&void 0!==i&&(this.connectEnds=!0,e.splice(e.length,0,e[i]),s=!0),e.forEach(t=>{void 0===t.polarPlotY&&a.polar.toXY(t)})}let o=t.apply(this,[].slice.call(arguments,1));return s&&e.pop(),o}function ej(t,e){let i=this.chart,s={xAxis:[],yAxis:[]};return i.polar?i.axes.forEach(t=>{if("colorAxis"===t.coll)return;let a=t.isXAxis,o=t.center,r=e.chartX-o[0]-i.plotLeft,n=e.chartY-o[1]-i.plotTop;s[a?"xAxis":"yAxis"].push({axis:t,value:t.translate(a?Math.PI-Math.atan2(r,n):Math.sqrt(Math.pow(r,2)+Math.pow(n,2)),!0)})}):s=t.call(this,e),s}function eZ(t,e){this.chart.polar||t.call(this,e)}function e$(t,e){let i=this,s=this.chart,a=this.group,o=this.markerGroup,r=this.xAxis&&this.xAxis.center,n=s.plotLeft,l=s.plotTop,h=this.options.animation,p,d,c,u,g,m;s.polar?i.isRadialBar?e||(i.startAngleRad=(0,x.pick)(i.translatedThreshold,i.xAxis.startAngleRad),v().seriesTypes.pie.prototype.animate.call(i,e)):(h=eY(h),i.is("column")?e||(d=r[3]/2,i.points.forEach(t=>{c=t.graphic,g=(u=t.shapeArgs)&&u.r,m=u&&u.innerR,c&&u&&(c.attr({r:d,innerR:d}),c.animate({r:g,innerR:m},i.options.animation))})):e?(p={translateX:r[0]+n,translateY:r[1]+l,scaleX:.001,scaleY:.001},a.attr(p),o&&o.attr(p)):(p={translateX:n,translateY:l,scaleX:1,scaleY:1},a.animate(p,h),o&&o.animate(p,h))):t.call(this,e)}function eQ(t,e,i,s){let a,o;if(this.chart.polar)if(s){let t=(o=function t(e,i,s,a){let o,r,n,l,h,p,d=+!!a,c=(o=i>=0&&i<=e.length-1?i:i<0?e.length-1+i:0)-1<0?e.length-(1+d):o-1,u=o+1>e.length-1?d:o+1,g=e[c],m=e[u],f=g.plotX,b=g.plotY,y=m.plotX,x=m.plotY,v=e[o].plotX,P=e[o].plotY;r=(1.5*v+f)/2.5,n=(1.5*P+b)/2.5,l=(1.5*v+y)/2.5,h=(1.5*P+x)/2.5;let M=Math.sqrt(Math.pow(r-v,2)+Math.pow(n-P,2)),k=Math.sqrt(Math.pow(l-v,2)+Math.pow(h-P,2)),L=Math.atan2(n-P,r-v);p=Math.PI/2+(L+Math.atan2(h-P,l-v))/2,Math.abs(L-p)>Math.PI/2&&(p-=Math.PI),r=v+Math.cos(p)*M,n=P+Math.sin(p)*M;let w={rightContX:l=v+Math.cos(Math.PI+p)*k,rightContY:h=P+Math.sin(Math.PI+p)*k,leftContX:r,leftContY:n,plotX:v,plotY:P};return s&&(w.prevPointCont=t(e,c,!1,a)),w}(e,s,!0,this.connectEnds)).prevPointCont&&o.prevPointCont.rightContX,i=o.prevPointCont&&o.prevPointCont.rightContY;a=["C",(0,x.isNumber)(t)?t:o.plotX,(0,x.isNumber)(i)?i:o.plotY,(0,x.isNumber)(o.leftContX)?o.leftContX:o.plotX,(0,x.isNumber)(o.leftContY)?o.leftContY:o.plotY,o.plotX,o.plotY]}else a=["M",i.plotX,i.plotY];else a=t.call(this,e,i,s);return a}function eJ(t,e,i=this.plotX,s=this.plotY){let{series:a}=this,{chart:o}=a||{};return o?.polar&&(0,x.isNumber)(i)&&(0,x.isNumber)(s)?[i+(e?o.plotLeft:0),s+(e?o.plotTop:0)]:t.call(this,e,i,s)}class e0{static compose(t,e,i,s,a,o,r,n,l,h){if(E.compose(e,i),eX.compose(t,a),(0,x.pushUnique)(eR,"Polar")){let t=e.prototype,a=o.prototype,p=i.prototype,d=s.prototype;if((0,x.addEvent)(e,"afterDrawChartBox",eI),(0,x.addEvent)(e,"createAxes",eD),(0,x.addEvent)(e,"init",ez),(0,x.wrap)(t,"get",eV),(0,x.wrap)(p,"getCoordinates",ej),(0,x.wrap)(p,"pinch",eZ),(0,x.addEvent)(i,"getSelectionMarkerAttrs",eH),(0,x.addEvent)(i,"getSelectionBox",eO),(0,x.addEvent)(s,"afterInit",eB),(0,x.addEvent)(s,"afterColumnTranslate",eW,{order:9}),(0,x.addEvent)(s,"afterTranslate",eF,{order:2}),(0,x.addEvent)(s,"afterColumnTranslate",eU,{order:4}),(0,x.wrap)(d,"animate",e$),(0,x.wrap)(a,"pos",eJ),n){let t=n.prototype;(0,x.wrap)(t,"alignDataLabel",e_),(0,x.wrap)(t,"animate",e$)}if(l){let t=l.prototype;(0,x.wrap)(t,"getGraphPath",eK)}if(h){let t=h.prototype;(0,x.wrap)(t,"getPointSpline",eQ),r&&(r.prototype.getPointSpline=t.getPointSpline)}}}constructor(t){this.series=t}arc(t,e,i,s){let a=this.series,o=a.xAxis.center,r=a.yAxis.len,n=o[3]/2,l=r-e+n,h=r-(0,x.pick)(t,r)+n;return a.yAxis.reversed&&(l<0&&(l=n),h<0&&(h=n)),{x:o[0],y:o[1],r:l,innerR:h,start:i,end:s}}toXY(t){let e=this.series,i=e.chart,s=e.xAxis,a=e.yAxis,o=t.plotX,r=i.inverted,n=t.y,l=t.plotY,h=r?o:a.len-l,p;if(r&&e&&!e.isRadialBar&&(t.plotY=l=(0,x.isNumber)(n)?a.translate(n):0),t.rectPlotX=o,t.rectPlotY=l,a.center&&(h+=a.center[3]/2),(0,x.isNumber)(l)){let e=r?a.postTranslate(l,h):s.postTranslate(o,h);t.plotX=t.polarPlotX=e.x-i.plotLeft,t.plotY=t.polarPlotY=e.y-i.plotTop}e.kdByAngle?((p=(o/Math.PI*180+(s.pane.options.startAngle||0))%360)<0&&(p+=360),t.clientX=p):t.clientX=t.plotX}}var e1=b(184),e2=b.n(e1);let{composed:e3}=v();!function(t){function e(){let t=this.waterfall?.stacks;t&&(t.changed=!1,delete t.alreadyChanged)}function i(){let t=this.options.stackLabels;t?.enabled&&this.waterfall?.stacks&&this.waterfall.renderStackTotals()}function s(){this.waterfall||(this.waterfall=new o(this))}function a(){let t=this.axes;for(let e of this.series)if(e.options.stacking){for(let e of t)!e.isXAxis&&e.waterfall&&(e.waterfall.stacks.changed=!0);break}}t.compose=function(t,o){(0,x.pushUnique)(e3,"Axis.Waterfall")&&((0,x.addEvent)(t,"init",s),(0,x.addEvent)(t,"afterBuildStacks",e),(0,x.addEvent)(t,"afterRender",i),(0,x.addEvent)(o,"beforeRedraw",a))};class o{constructor(t){this.axis=t,this.stacks={changed:!1}}renderStackTotals(){let t=this.axis,e=t.waterfall?.stacks,i=t.stacking?.stackTotalGroup,s=new(e2())(t,t.options.stackLabels||{},!1,0,void 0);this.dummyStackItem=s,i&&(0,x.objectEach)(e,t=>{(0,x.objectEach)(t,(t,e)=>{s.total=t.stackTotal,s.x=+e,t.label&&(s.label=t.label),e2().prototype.render.call(s,i),t.label=s.label,delete s.label})}),s.total=null}}t.Composition=o}(g||(g={}));let e5=g;class e8 extends _().prototype.pointClass{getClassName(){let t=tp().prototype.getClassName.call(this);return this.isSum?t+=" highcharts-sum":this.isIntermediateSum&&(t+=" highcharts-intermediate-sum"),t}isValid(){return(0,x.isNumber)(this.y)||this.isSum||!!this.isIntermediateSum}}let{column:e4,line:e9}=M().seriesTypes;function e6(t,e){return Object.hasOwnProperty.call(t,e)}class e7 extends e4{generatePoints(){e4.prototype.generatePoints.apply(this);let t=this.getColumn("y",!0);for(let e=0,i=this.points.length;e<i;e++){let i=this.points[e],s=t[e];(0,x.isNumber)(s)&&(i.isIntermediateSum||i.isSum)&&(i.y=(0,x.correctFloat)(s))}}processData(t){let e,i,s,a,o,r=this.options,n=this.getColumn("y"),l=this.getColumn("isSum"),h=this.getColumn("isIntermediateSum"),p=n.length,d=r.threshold||0;i=e=s=a=0;for(let t=0;t<p;t++)"sum"===(o=n[t])||l[t]?n[t]=(0,x.correctFloat)(i):"intermediateSum"===o||h[t]?(n[t]=(0,x.correctFloat)(e),e=0):(i+=o,e+=o),s=Math.min(i,s),a=Math.max(i,a);super.processData.call(this,t),r.stacking||(this.dataMin=s+d,this.dataMax=a)}toYData(t){return t.isSum?"sum":t.isIntermediateSum?"intermediateSum":t.y}pointAttribs(t,e){let i=this.options.upColor;i&&!t.options.color&&(0,x.isNumber)(t.y)&&(t.color=t.y>0?i:void 0);let s=e4.prototype.pointAttribs.call(this,t,e);return delete s.dashstyle,s}getGraphPath(){return this.graph?.pathArray||[["M",0,0]]}getCrispPath(){let t=this.points.filter(t=>(0,x.isNumber)(t.y)),e=this.yAxis,i=t.length,s=this.graph?.strokeWidth()||0,a=this.xAxis.reversed,o=this.yAxis.reversed,r=this.options.stacking,n=[];for(let l=1;l<i;l++){if(!(this.options.connectNulls||(0,x.isNumber)(this.data[t[l].index-1].y)))continue;let i=t[l].box,h=t[l-1],p=h.y||0,d=t[l-1].box;if(!i||!d)continue;let c=e.waterfall?.stacks[this.stackKey],u=p>0?-d.height:0;if(c&&d&&i){let t,p=c[l-1];t=r?(0,x.crisp)(e.translate(p.connectorThreshold||0,!1,!0,!1,!0)+(o?u:0),s):(0,x.crisp)(d.y+(h.minPointLengthOffset||0),s),n.push(["M",(d.x||0)+(a?0:d.width||0),t],["L",(i.x||0)+(a&&i.width||0),t])}if(d&&n.length&&(!r&&p<0&&!o||p>0&&o)){let t=n[n.length-2];t&&"number"==typeof t[2]&&(t[2]+=d.height||0);let e=n[n.length-1];e&&"number"==typeof e[2]&&(e[2]+=d.height||0)}}return n}drawGraph(){e9.prototype.drawGraph.call(this),this.graph?.animate({d:this.getCrispPath()})}setStackedPoints(t){let e=this.options,i=t.waterfall?.stacks,s=e.threshold||0,a=this.stackKey,o=this.getColumn("x"),r=this.getColumn("y"),n=o.length,l=s,h=l,p,d=0,c=0,u=0,g,m,f,b,y,v,P,M,k=(t,e,i,s)=>{if(p){if(g)for(;i<g;i++)p.stackState[i]+=s;else p.stackState[0]=t,g=p.stackState.length;p.stackState.push(p.stackState[g-1]+e)}};if(t.stacking&&i&&this.reserveSpace()){M=i.changed,(P=i.alreadyChanged)&&0>P.indexOf(a)&&(M=!0),i[a]||(i[a]={});let t=i[a];if(t)for(let i=0;i<n;i++)(!t[v=o[i]]||M)&&(t[v]={negTotal:0,posTotal:0,stackTotal:0,threshold:0,stateIndex:0,stackState:[],label:M&&t[v]?t[v].label:void 0}),p=t[v],(y=r[i])>=0?p.posTotal+=y:p.negTotal+=y,b=e.data?.[i],m=p.absolutePos=p.posTotal,f=p.absoluteNeg=p.negTotal,p.stackTotal=m+f,g=p.stackState.length,(0,x.isObject)(b,!0)&&b.isIntermediateSum?(k(u,c,0,u),u=c,c=s,l^=h,h^=l,l^=h):(0,x.isObject)(b,!0)&&b.isSum?(k(s,d,g,0),l=s):(k(l,y,0,d),b&&(d+=y,c+=y)),p.stateIndex++,p.threshold=l,l+=p.stackTotal;i.changed=!1,i.alreadyChanged||(i.alreadyChanged=[]),i.alreadyChanged.push(a)}}getExtremes(){let t,e,i=this.options.stacking,s=this.yAxis,a=s.waterfall?.stacks;return i&&a?(t=this.stackedYNeg=[],e=this.stackedYPos=[],"overlap"===i?(0,x.objectEach)(a[this.stackKey],function(i){t.push((0,x.arrayMin)(i.stackState)),e.push((0,x.arrayMax)(i.stackState))}):(0,x.objectEach)(a[this.stackKey],function(i){t.push(i.negTotal+i.threshold),e.push(i.posTotal+i.threshold)}),{dataMin:(0,x.arrayMin)(t),dataMax:(0,x.arrayMax)(e)}):{dataMin:this.dataMin,dataMax:this.dataMax}}}e7.defaultOptions=(0,x.merge)(e4.defaultOptions,{dataLabels:{inside:!0},lineWidth:1,lineColor:"var(--highcharts-neutral-color-80)",dashStyle:"Dot",borderColor:"var(--highcharts-neutral-color-80)",states:{hover:{lineWidthPlus:0}}}),e7.compose=e5.compose,(0,x.extend)(e7.prototype,{pointValKey:"y",showLine:!0,pointClass:e8}),(0,x.addEvent)(e7,"afterColumnTranslate",function(){let{options:t,points:e,yAxis:i}=this,s=(0,x.pick)(t.minPointLength,5),a=s/2,o=t.threshold||0,r=t.stacking,n=i.waterfall?.stacks[this.stackKey],l=this.getColumn("y",!0),h=o,p=o,d,c,u;for(let t=0;t<e.length;t++){let g=e[t],m=l[t],f=g.shapeArgs,b=(0,x.extend)({x:0,y:0,width:0,height:0},f||{});g.box=b;let y=[0,m],v=g.y||0;if(r){if(n){let e=n[t];"overlap"===r?(c=e.stackState[e.stateIndex--],d=v>=0?c:c-v,e6(e,"absolutePos")&&delete e.absolutePos,e6(e,"absoluteNeg")&&delete e.absoluteNeg):(v>=0?(c=e.threshold+e.posTotal,e.posTotal-=v,d=c):(c=e.threshold+e.negTotal,e.negTotal-=v,d=c-v),!e.posTotal&&(0,x.isNumber)(e.absolutePos)&&e6(e,"absolutePos")&&(e.posTotal=e.absolutePos,delete e.absolutePos),!e.negTotal&&(0,x.isNumber)(e.absoluteNeg)&&e6(e,"absoluteNeg")&&(e.negTotal=e.absoluteNeg,delete e.absoluteNeg)),g.isSum||(e.connectorThreshold=e.threshold+e.stackTotal),u=d-Math.abs(v),i.reversed&&([d,u]=[u,d]),g.below=d<=o,b.y=i.translate(d,!1,!0,!1,!0),b.height=i.translate(u,!1,!0,!1,!0)-b.y;let s=i.waterfall?.dummyStackItem;s&&(s.x=t,s.label=n[t].label,s.setOffset(this.pointXOffset||0,this.barW||0,this.stackedYNeg[t],this.stackedYPos[t],void 0,this.xAxis))}}else d=Math.max(p,p+v)+y[0],b.y=i.translate(d,!1,!0,!1,!0),g.isSum?(b.y=i.translate(y[1],!1,!0,!1,!0),b.height=Math.min(i.translate(y[0],!1,!0,!1,!0),i.len)-b.y,g.below=y[1]<=o):g.isIntermediateSum?(v>=0?(d=y[1]+h,u=h):(d=h,u=y[1]+h),i.reversed&&([d,u]=[u,d]),b.y=i.translate(d,!1,!0,!1,!0),b.height=Math.abs(b.y-Math.min(i.translate(u,!1,!0,!1,!0),i.len)),h+=y[1],g.below=d<=o):(b.height=m>0?i.translate(p,!1,!0,!1,!0)-b.y:i.translate(p+m,!1,!0,!1,!0)-i.translate(p,!1,!0,!1,!0),g.below=(p+=m)<o);b.height<0&&(b.y+=b.height,b.height*=-1),g.plotY=b.y,g.yBottom=b.y+b.height,b.height<=s&&!g.isNull?(b.height=s,b.y-=a,g.yBottom=b.y+b.height,g.plotY=b.y,v<0?g.minPointLengthOffset=-a:g.minPointLengthOffset=a):(g.isNull&&(b.width=0),g.minPointLengthOffset=0);let P=g.plotY+(g.negative?b.height:0);g.below&&(g.plotY+=b.height),g.tooltipPos&&(this.chart.inverted?g.tooltipPos[0]=i.len-P:g.tooltipPos[1]=P),g.isInside=this.isPointInside(g);let M=(0,x.crisp)(g.yBottom,this.borderWidth);b.y=(0,x.crisp)(b.y,this.borderWidth),b.height=M-b.y,(0,x.merge)(!0,g.shapeArgs,b)}},{order:2}),M().registerSeriesType("waterfall",e7);let it=v();it.RadialAxis=eX,tv.compose(it.Axis,it.Chart,it.Legend),em.compose(it.Axis,it.Chart,it.Legend),E.compose(it.Chart,it.Pointer),e0.compose(it.Axis,it.Chart,it.Pointer,it.Series,it.Tick,it.Point,M().seriesTypes.areasplinerange,M().seriesTypes.column,M().seriesTypes.line,M().seriesTypes.spline),e7.compose(it.Axis,it.Chart);let ie=it;return y.default})());
|
|
10
|
+
*/function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.SeriesRegistry,t._Highcharts.Series.types.column,t._Highcharts.Templating,t._Highcharts.Point,t._Highcharts.Color,t._Highcharts.Chart,t._Highcharts.SVGElement,t._Highcharts.Series,t._Highcharts.StackItem):"function"==typeof define&&define.amd?define("highcharts/highcharts-more",["highcharts/highcharts"],function(t){return e(t,t.SeriesRegistry,t.Series,["types"],["column"],t.Templating,t.Point,t.Color,t.Chart,t.SVGElement,t.Series,t.StackItem)}):"object"==typeof exports?exports["highcharts/highcharts-more"]=e(t._Highcharts,t._Highcharts.SeriesRegistry,t._Highcharts.Series.types.column,t._Highcharts.Templating,t._Highcharts.Point,t._Highcharts.Color,t._Highcharts.Chart,t._Highcharts.SVGElement,t._Highcharts.Series,t._Highcharts.StackItem):t.Highcharts=e(t.Highcharts,t.Highcharts.SeriesRegistry,t.Highcharts.Series.types.column,t.Highcharts.Templating,t.Highcharts.Point,t.Highcharts.Color,t.Highcharts.Chart,t.Highcharts.SVGElement,t.Highcharts.Series,t.Highcharts.StackItem)}("u"<typeof window?this:window,(t,e,i,s,a,o,r,n,l,h)=>(()=>{"use strict";var p,d,c,u,g,m,f={960(t){t.exports=r},620(t){t.exports=o},260(t){t.exports=a},28(t){t.exports=n},448(t){t.exports=i},820(t){t.exports=l},512(t){t.exports=e},184(t){t.exports=h},984(t){t.exports=s},944(e){e.exports=t}};let b={};function y(t){let e=b[t];if(void 0!==e)return e.exports;let i=b[t]={exports:{}};return f[t](i,i.exports,y),i.exports}y.n=t=>{let e=t&&t.__esModule?()=>t.default:()=>t;return y.d(e,{a:e}),e},y.d=(t,e)=>{if(Array.isArray(e))for(var i=0;i<e.length;){var s=e[i++],a=e[i++];y.o(t,s)?0===a&&i++:0===a?Object.defineProperty(t,s,{enumerable:!0,value:e[i++]}):Object.defineProperty(t,s,{enumerable:!0,get:a})}else for(var s in e)y.o(e,s)&&!y.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},y.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);let x={};y.d(x,{default:()=>it});var v=y(944),P=y.n(v),M=y(512),L=y.n(M);let{deg2rad:k}=P();(p=c||(c={})).getCenter=function(){let t=this.options,e=this.chart,i=2*(t.slicedOffset||0),s=e.plotWidth-2*i,a=e.plotHeight-2*i,o=t.center,r=Math.min(s,a),n=t.thickness,l,h=t.size,p=t.innerSize||0,d,c;"string"==typeof h&&(h=parseFloat(h)),"string"==typeof p&&(p=parseFloat(p));let u=[o?.[0]??"50%",o?.[1]??"50%",(h&&h<0?void 0:t.size)??"100%",(p&&p<0?void 0:t.innerSize||0)??"0%"];for(d=0;d<4;++d)c=u[d],l=d<2||2===d&&/%$/.test(c),u[d]=(0,v.relativeLength)(c,[s,a,r,u[2]][d])+(l?i:0);return u[3]>u[2]&&(u[3]=u[2]),(0,v.isNumber)(n)&&2*n<u[2]&&n>0&&(u[3]=u[2]-2*n),(0,v.fireEvent)(this,"afterGetCenter",{positions:u}),u},p.getStartAndEndRadians=function(t,e){let i=(0,v.isNumber)(t)?t:0,s=(0,v.isNumber)(e)&&e>i&&e-i<360?e:i+360;return{start:k*(i+-90),end:k*(s+-90)}};let w=c;function A(t){let e,i=this;return t&&i.pane.forEach(s=>{S(t.chartX-i.plotLeft,t.chartY-i.plotTop,s.center)&&(e=s)}),e}function S(t,e,i,s,a){let o=!0,r=i[0],n=i[1],l=2*Math.PI,h=Math.sqrt(Math.pow(t-r,2)+Math.pow(e-n,2));if((0,v.defined)(s)&&(0,v.defined)(a)){let i=Math.atan2((0,v.correctFloat)(e-n,8),(0,v.correctFloat)(t-r,8));i=(i+l)%l,s=(s+l)%l,Math.abs((a=(a+l)%l)-s)>1e-6&&(o=s>a?i>=s||i<=a:i>=s&&i<=a)}else o=!0;return h<=Math.ceil(i[2]/2)&&o}function N(t){this.polar&&(t.options.inverted&&([t.x,t.y]=[t.y,t.x]),t.isInsidePlot=this.pane.some(e=>S(t.x,t.y,e.center,e.axis&&e.axis.normalizedStartAngleRad,e.axis&&e.axis.normalizedEndAngleRad)))}function T(t){let e=this.chart;t.hoverPoint&&t.hoverPoint.plotX&&t.hoverPoint.plotY&&e.hoverPane&&!S(t.hoverPoint.plotX,t.hoverPoint.plotY,e.hoverPane.center)&&(t.hoverPoint=void 0)}function C(t){let e=this.chart;e.polar?(e.hoverPane=e.getHoverPane(t),t.filter=function(i){return i.visible&&!(!t.shared&&i.directTouch)&&(i.options.enableMouseTracking??!0)&&(!e.hoverPane||i.xAxis.pane===e.hoverPane)}):e.hoverPane=void 0}let{defaultOptions:X}=P(),Y={shape:"arc",borderRadius:void 0,borderWidth:0,borderColor:"var(--highcharts-neutral-color-20)",backgroundColor:"var(--highcharts-neutral-color-3)",from:-Number.MAX_VALUE,to:Number.MAX_VALUE,outerRadius:"100%"},E={borderRadius:3,margin:void 0};X.pane=E;class R{constructor(t,e){this.coll="pane",this.init(t,e)}init(t,e){this.chart=e,this.background=[],e.pane.push(this),this.setOptions(t)}hasSeriesType(t){return!!(this.chart.options?.chart?.type===t||this.chart.options?.series?.some(e=>e.type===t))}setOptions(t){this.options=(0,v.merge)(E,this.chart.angular?{background:{},innerSize:"85%"}:{},t)}render(){let t=this.options,e=this.chart.renderer;this.group||(this.group=e.g("pane-group").attr({zIndex:t.zIndex||0}).add()),this.updateCenter();let i=this.options.background;if(i){let t=Math.max((i=(0,v.splat)(i)).length,this.background.length||0);for(let e=0;e<t;e++)i[e]&&this.axis?this.renderBackground((0,v.merge)(Y,{borderRadius:this.options.borderRadius},i[e]),e):this.background[e]&&(this.background[e]=this.background[e].destroy(),this.background.splice(e,1))}}renderBackground(t,e){let i={class:"highcharts-pane "+(t.className||"")},s="animate";this.chart.styledMode||(0,v.extend)(i,{fill:t.backgroundColor,stroke:t.borderColor,"stroke-width":t.borderWidth}),this.background[e]||(this.background[e]=this.chart.renderer.path().add(this.group),s="attr"),this.background[e][s]({d:this.axis.getPlotBandPath(t.from,t.to,t)}).attr(i)}updateCenter(){let{axis:t,chart:e,options:i}=this,{plotHeight:s,plotWidth:a}=e,o=i.center?.[1],r=i.margin,n=this.axis?.options.labels,l=i.thickness,h=Array.isArray(r)?r:[r,r,r,r],p=[],d=i.size,c,u=0,g=0,m=Math.min(e.series.reduce((t,e)=>{if(!e.is("gauge")||e.yAxis?.pane!==this)return t;let i=(0,v.splat)(e.options.dataLabels)[0],s=0;return i&&!1!==i.enabled&&(s=(1-(0,v.getAlignFactor)(i.verticalAlign))*30+(i.y||0)),Math.max(t,s)},0),.3*s);if(n?.enabled){let t=String(n.style?.fontSize||""),e=(/px$/.test(t)?parseFloat(t):/em$/.test(t)?12*parseFloat(t):12)*1.2;g=Math.max(n.distance||0,0)+e/2}if(h.forEach((t,e)=>{p[e]=t??Math.max(g||0)}),t&&(void 0===d||void 0===o)){let{endAngleRad:e,startAngleRad:o}=t,r=2*Math.PI/360,n=.5+.5*Math.max(Math.sin((o<Math.PI/2&&e>Math.PI/2||(0,v.splat)(i.background).some(t=>t?.shape==="circle")?Math.PI:Math.max(Math.abs(o+Math.PI/2),Math.abs(e+Math.PI/2)))-Math.PI/2),Math.sin(0*r));if(c=(s-p[0]-p[2])/n,void 0===d){let t=(d=Math.max(Math.min(c,a-p[1]-p[3]),1))+p[0]+p[2]+2*(m-s);t>0&&(d=Math.max(1,d-(u=t)))}}this.center=(t||{}).center=w.getCenter.call(this),(0,v.isNumber)(d)&&d>=0&&(this.center[2]=d,(0,v.isNumber)(l)?this.center[3]=this.center[2]-2*l:this.center[3]=Math.min(d,(0,v.relativeLength)(i.innerSize||0,d))),!(0,v.defined)(o)&&(i.size?this.center[1]=s/2:(0,v.isNumber)(c)&&(this.center[1]=(c+this.center[2]-u)/4+p[0]))}update(t,e){(0,v.merge)(!0,this.options,t),this.setOptions(this.options),this.render(),this.chart.axes.forEach(function(t){t.pane===this&&(t.pane=null,t.update({},e))},this)}}R.compose=function(t,e){let i=t.prototype;i.getHoverPane||(i.collectionsWithUpdate.push("pane"),i.getHoverPane=A,(0,v.addEvent)(t,"afterIsInsidePlot",N),(0,v.addEvent)(e,"afterGetHoverData",T),(0,v.addEvent)(e,"beforeGetHoverData",C))};let{area:{prototype:{pointClass:I,pointClass:{prototype:z}}}}=L().seriesTypes,O=class extends I{setState(){let t=this.state,e=this.series,i=e.chart.polar;(0,v.defined)(this.plotHigh)||(this.plotHigh=e.yAxis.toPixels(this.high,!0)),(0,v.defined)(this.plotLow)||(this.plotLow=this.plotY=e.yAxis.toPixels(this.low,!0)),e.lowerStateMarkerGraphic=e.stateMarkerGraphic,e.stateMarkerGraphic=e.upperStateMarkerGraphic,this.graphic=this.graphics&&this.graphics[1],this.plotY=this.plotHigh,i&&(0,v.isNumber)(this.plotHighX)&&(this.plotX=this.plotHighX),z.setState.apply(this,arguments),this.state=t,this.plotY=this.plotLow,this.graphic=this.graphics&&this.graphics[0],i&&(0,v.isNumber)(this.plotLowX)&&(this.plotX=this.plotLowX),e.upperStateMarkerGraphic=e.stateMarkerGraphic,e.stateMarkerGraphic=e.lowerStateMarkerGraphic,e.lowerStateMarkerGraphic=void 0;let s=e.modifyMarkerSettings();z.setState.apply(this,arguments),e.restoreMarkerSettings(s)}haloPath(){let t=this.series.chart.polar,e=[];return this.plotY=this.plotLow,t&&(0,v.isNumber)(this.plotLowX)&&(this.plotX=this.plotLowX),this.isInside&&(e=z.haloPath.apply(this,arguments)),this.plotY=this.plotHigh,t&&(0,v.isNumber)(this.plotHighX)&&(this.plotX=this.plotHighX),this.isTopInside&&(e=e.concat(z.haloPath.apply(this,arguments))),e}isValid(){return(0,v.isNumber)(this.low)&&(0,v.isNumber)(this.high)}};var D=y(448),H=y.n(D);!function(t){let e={close:["plotClose"],high:["highPlot","plotHigh"],low:["lowPlot","plotLow"],median:["medianPlot"],open:["plotOpen"],q1:["q1Plot"],q3:["q3Plot"],y:["plotY"]};function i(t,i){for(let s of e[i]??[]){let e=t[s];if((0,v.isNumber)(e))return e}}function s(t,e){return e&&t.pointArrayMap.indexOf(e)>-1?e:t.pointValKey}function a(t,e,a,o,r){let n=i(t,s(this,a.alignToKey)),l=t.shapeArgs,h=t.plotY,p=t.dlBox,d=t.below;if((0,v.isNumber)(n)){let e,s;t.plotY=n,l&&!a.inside&&(t.dlBox={x:l.x??0,y:(0,v.crisp)(n,this.borderWidth,this.chart.inverted),width:l.width??0,height:0});let o=(e=i(t,"high"),s=i(t,"low"),t.below=!!((0,v.isNumber)(e)&&(0,v.isNumber)(s))&&(a.inside?n===Math.min(e,s):n===Math.max(e,s)));this.chart.inverted?a.align??(a.align=o?"right":"left"):a.verticalAlign??(a.verticalAlign=o?"top":"bottom")}H().prototype.alignDataLabel.call(this,t,e,a,o,r),t.plotY=h,t.dlBox=p,t.below=d}t.compose=function(t){return t.prototype.alignDataLabel=a,t},t.formatter=function(t){let e=t.alignToKey?this.getNestedProperty(t.alignToKey):this.y,i=(0,v.isNumber)(e)?e:this.y;return(0,v.isNumber)(i)?this.series.chart.numberFormatter(i,-1):""},t.applyAlignToKeyValue=function(t){let{alignToKey:e,format:i}=t;e&&i&&(t.format=i.replace(/\{(?:point\.)?y([:}])/g,"{point."+e+"$1"))},t.resolveAlignToKey=s,t.alignDataLabel=a}(u||(u={}));let B=u,{noop:W}=P(),{area:F,area:{prototype:G}}=L().seriesTypes,q={lineWidth:1,threshold:null,tooltip:{pointFormat:'<span style="color:{series.color}">●</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>'},trackByArea:!0,dataLabels:{align:void 0,formatter:B.formatter,verticalAlign:void 0,xLow:0,xHigh:0,yLow:0,yHigh:0}};class K extends F{toYData(t){return[t.low,t.high]}highToXY(t){let e=this.chart,i=this.xAxis.postTranslate(t.rectPlotX||0,this.yAxis.len-(t.plotHigh||0));t.plotHighX=i.x-e.plotLeft,t.plotHigh=i.y-e.plotTop,t.plotLowX=t.plotX}getGraphPath(t){let e=[],i=[],s=G.getGraphPath,a=this.options,o=this.chart.polar,r=o&&!1!==a.connectEnds,n=a.connectNulls,l,h,p,d=a.step;for(l=(t=t||this.points).length;l--;){h=t[l];let s=o?{plotX:h.rectPlotX,plotY:h.yBottom,doCurve:!1}:{plotX:h.plotX,plotY:h.plotY,doCurve:!1};h.isNull||r||n||t[l+1]&&!t[l+1].isNull||i.push(s),p={polarPlotY:h.polarPlotY,rectPlotX:h.rectPlotX,yBottom:h.yBottom,plotX:h.plotHighX??h.plotX,plotY:h.plotHigh,isNull:h.isNull},i.push(p),e.push(p),h.isNull||r||n||t[l-1]&&!t[l-1].isNull||i.push(s)}let c=s.call(this,t);d&&(!0===d&&(d="left"),a.step=({left:"right",center:"center",right:"left"})[d]);let u=s.call(this,e),g=s.call(this,i);a.step=d;let m=[].concat(c,u);return!this.chart.polar&&g[0]&&"M"===g[0][0]&&(g[0]=["L",g[0][1],g[0][2]]),this.graphPath=m,this.areaPath=c.concat(g),m.isArea=!0,m.xMap=c.xMap,this.areaPath.xMap=c.xMap,m}drawDataLabels(){let t=this,e=t.options.dataLabels;if(e){let i,s=(i=t.options.dataLabels,(0,v.isArray)(i)?Array.from({length:Math.max(i.length,2)},(e,s)=>{let a=i[s],o=0===s?"high":1===s?"low":t.pointValKey,r=a?.alignToKey??o;return(0,v.merge)(a??{enabled:!1},{alignToKey:r})}):i?.alignToKey?[(0,v.merge)(i,"high"===i.alignToKey?{x:i.xHigh,y:i.yHigh}:"low"===i.alignToKey?{x:i.xLow,y:i.yLow}:{})]:[(0,v.merge)(i,{alignToKey:"high",x:i?.xHigh,y:i?.yHigh}),(0,v.merge)(i,{alignToKey:"low",x:i?.xLow,y:i?.yLow})]);for(let i of(s.forEach(B.applyAlignToKeyValue),t.options.dataLabels=s,G.drawDataLabels&&G.drawDataLabels.call(t),t.options.dataLabels=e,t.points)){let e=i.dataLabels??[];i.dataLabelUpper=e.find(e=>"high"===B.resolveAlignToKey(t,e.options?.alignToKey)),i.dataLabel=e.find(e=>"low"===B.resolveAlignToKey(t,e.options?.alignToKey))}}}modifyMarkerSettings(){let t={marker:this.options.marker,symbol:this.symbol};if(this.options.lowMarker){let{options:{marker:t,lowMarker:e}}=this;this.options.marker=(0,v.merge)(t,e),e.symbol&&(this.symbol=e.symbol)}return t}restoreMarkerSettings(t){this.options.marker=t.marker,this.symbol=t.symbol}drawPoints(){let t,e,i=this.points.length,s=this.modifyMarkerSettings();for(G.drawPoints.apply(this,arguments),this.restoreMarkerSettings(s),t=0;t<i;)(e=this.points[t]).graphics=e.graphics||[],e.origProps={plotY:e.plotY,plotX:e.plotX,isInside:e.isInside,negative:e.negative,zone:e.zone,y:e.y},(e.graphic||e.graphics[0])&&(e.graphics[0]=e.graphic),e.graphic=e.graphics[1],e.plotY=e.plotHigh,(0,v.defined)(e.plotHighX)&&(e.plotX=e.plotHighX),e.y=e.high??e.origProps.y,e.negative=e.y<(this.options.threshold||0),this.zones.length&&(e.zone=e.getZone()),this.chart.polar||(e.isInside=e.isTopInside=void 0!==e.plotY&&e.plotY>=0&&e.plotY<=this.yAxis.len&&e.plotX>=0&&e.plotX<=this.xAxis.len),t++;for(G.drawPoints.apply(this,arguments),t=0;t<i;)(e=this.points[t]).graphics=e.graphics||[],(e.graphic||e.graphics[1])&&(e.graphics[1]=e.graphic),e.graphic=e.graphics[0],e.origProps&&((0,v.extend)(e,e.origProps),delete e.origProps),t++}hasMarkerChanged(t,e){let i=t.lowMarker,s=e.lowMarker||{};return i&&(!1===i.enabled||s.symbol!==i.symbol||s.height!==i.height||s.width!==i.width)||super.hasMarkerChanged(t,e)}}K.defaultOptions=(0,v.merge)(F.defaultOptions,q),(0,v.addEvent)(K,"afterTranslate",function(){"low,high"===this.pointArrayMap.join(",")&&this.points.forEach(t=>{let e=t.high,i=t.plotY;t.isNull?t.plotY=void 0:(t.plotLow=i,t.plotHigh=(0,v.isNumber)(e)?this.yAxis.translate(this.dataModify?this.dataModify.modifyValue(e):e,!1,!0,void 0,!0):void 0,this.dataModify&&(t.yBottom=t.plotHigh))})},{order:0}),(0,v.addEvent)(K,"afterTranslate",function(){this.points.forEach(t=>{if(this.chart.polar)this.highToXY(t),t.plotLow=t.plotY,t.tooltipPos=[((t.plotHighX||0)+(t.plotLowX||0))/2,((t.plotHigh||0)+(t.plotLow||0))/2];else{let e=t.pos(!1,void 0,t.plotLow),i=t.pos(!1,void 0,t.plotHigh);e&&i&&(e[0]=(e[0]+i[0])/2,e[1]=(e[1]+i[1])/2),t.tooltipPos=e}})},{order:3}),(0,v.extend)(K.prototype,{deferTranslatePolar:!0,pointArrayMap:["low","high"],pointClass:O,pointValKey:"low",setStackedPoints:W}),B.compose(K),L().registerSeriesType("arearange",K);let V=K,{spline:{prototype:_}}=L().seriesTypes;class j extends V{}j.defaultOptions=(0,v.merge)(V.defaultOptions),(0,v.extend)(j.prototype,{getPointSpline:_.getPointSpline}),L().registerSeriesType("areasplinerange",j);let{defaultOptions:U}=P(),{noop:Z}=P(),$={radius:0,scope:"stack",where:void 0};function Q(t,e){return(0,v.isObject)(t)||(t={radius:t||0}),(0,v.merge)($,e,t)}let{noop:J}=P();class tt extends H(){pointAttribs(){return{fill:this.color}}getWhiskerPair(t,e,i,s,a){let o=a.whiskers.strokeWidth(),r=(i,s)=>{let a=(0,v.relativeLength)(i,2*t)/2,r=(0,v.crisp)(s,o);return[["M",(0,v.crisp)(e-a),r],["L",(0,v.crisp)(e+a),r]]};return[...r(i,a.highPlot),...r(s,a.lowPlot)]}translate(){let t=this.yAxis,e=this.pointArrayMap;super.translate.apply(this),this.points.forEach(function(i){e.forEach(function(e){let s=i[e];null!==s&&(i[`${e}Plot`]=t.translate(s,!1,!0,!1,!0))}),i.plotHigh=i.highPlot})}drawPoints(){let t,e,i,s,a,o,r,n,l,h,p,d=this.points,c=this.options,u=this.chart,g=u.renderer,m=!1!==this.doQuartiles,f=this.options.whiskerLength;for(let b of d){let d=(n=b.graphic)?"animate":"attr",y=b.shapeArgs,x={},P={},M={},L={},k=b.color||this.color,w=b.options.whiskerLength||f;if(void 0!==b.plotY){l=y.width,p=(h=y.x)+l,t=m?b.q1Plot:b.lowPlot,e=m?b.q3Plot:b.lowPlot,i=b.highPlot,s=b.lowPlot,n||(b.graphic=n=g.g("point").add(this.group),b.stem=g.path().addClass("highcharts-boxplot-stem").add(n),f&&(b.whiskers=g.path().addClass("highcharts-boxplot-whisker").add(n)),m&&(b.box=g.path(r).addClass("highcharts-boxplot-box").add(n)),b.medianShape=g.path(o).addClass("highcharts-boxplot-median").add(n)),u.styledMode||(P.stroke=b.stemColor||c.stemColor||k,P["stroke-width"]=b.stemWidth??c.stemWidth??c.lineWidth,P.dashstyle=b.stemDashStyle||c.stemDashStyle||c.dashStyle,b.stem.attr(P),w&&(M.stroke=b.whiskerColor||c.whiskerColor||k,M["stroke-width"]=b.whiskerWidth??c.whiskerWidth??c.lineWidth,M.dashstyle=b.whiskerDashStyle||c.whiskerDashStyle||c.dashStyle,b.whiskers.attr(M)),m&&(x.fill=b.fillColor||c.fillColor||k,x.stroke=c.lineColor||k,x["stroke-width"]=c.lineWidth||0,x.dashstyle=b.boxDashStyle||c.boxDashStyle||c.dashStyle,b.box.attr(x)),L.stroke=b.medianColor||c.medianColor||k,L["stroke-width"]=b.medianWidth??c.medianWidth??c.lineWidth,L.dashstyle=b.medianDashStyle||c.medianDashStyle||c.dashStyle,b.medianShape.attr(L));let A=(0,v.crisp)((b.plotX||0)+(this.pointXOffset||0)+(this.barW||0)/2,b.stem.strokeWidth());if(b.stem[d]({d:[["M",A,e],["L",A,i],["M",A,t],["L",A,s]]}),m){let i=b.box.strokeWidth();t=(0,v.crisp)(t,i),e=(0,v.crisp)(e,i),h=(0,v.crisp)(h,i),p=(0,v.crisp)(p,i);let s=Math.min((0,v.relativeLength)(Q(c.borderRadius).radius,p-h),(p-h)/2,Math.abs(t-e)/2);b.box[d]({d:g.symbols.roundedRect(h,Math.min(t,e),p-h,Math.abs(t-e),{r:s})})}if(w){let t=l/2,e=this.getWhiskerPair(t,A,b.upperWhiskerLength??c.upperWhiskerLength??w,b.lowerWhiskerLength??c.lowerWhiskerLength??w,b);b.whiskers[d]({d:e})}a=(0,v.crisp)(b.medianPlot,b.medianShape.strokeWidth()),b.medianShape[d]({d:[["M",h,a],["L",p,a]]})}}}toYData(t){return[t.low,t.q1,t.median,t.q3,t.high]}}tt.defaultOptions=(0,v.merge)(H().defaultOptions,{borderRadius:0,threshold:null,tooltip:{pointFormat:'<span style="color:{point.color}">●</span> <b>{series.name}</b><br/>Maximum: {point.high}<br/>Upper quartile: {point.q3}<br/>Median: {point.median}<br/>Lower quartile: {point.q1}<br/>Minimum: {point.low}<br/>'},whiskerLength:"50%",fillColor:"var(--highcharts-background-color)",lineWidth:1,medianWidth:2,whiskerWidth:2}),(0,v.extend)(tt.prototype,{pointArrayMap:["low","q1","median","q3","high"],pointValKey:"high",setStackedPoints:J}),B.compose(tt),L().registerSeriesType("boxplot",tt);let te=tt,ti={borderColor:void 0,borderWidth:2,className:void 0,color:void 0,connectorClassName:void 0,connectorColor:void 0,connectorDistance:60,connectorWidth:1,enabled:!1,labels:{className:void 0,allowOverlap:!1,format:"",formatter:void 0,align:"right",style:{fontSize:"0.9em",color:"var(--highcharts-neutral-color-100)"},x:0,y:0},maxSize:60,minSize:10,legendIndex:0,ranges:{value:void 0,borderColor:void 0,color:void 0,connectorColor:void 0},sizeBy:"area",sizeByAbsoluteValue:!1,zIndex:1,zThreshold:0};var ts=y(984),ta=y.n(ts);let{noop:to}=P(),tr=class{constructor(t,e){this.setState=to,this.init(t,e)}init(t,e){this.options=t,this.visible=!0,this.chart=e.chart,this.legend=e}addToLegend(t){t.splice(this.options.legendIndex,0,this)}drawLegendSymbol(t){let e,i=t.options.itemDistance??20,s=this.legendItem||{},a=this.options,o=a.ranges,r=a.connectorDistance;if(!o||!o.length||!(0,v.isNumber)(o[0].value)){t.options.bubbleLegend.autoRanges=!0;return}(0,v.stableSort)(o,function(t,e){return e.value-t.value}),this.ranges=o,this.setOptions(),this.render();let n=this.getMaxLabelSize(),l=this.ranges[0].radius,h=2*l;e=(e=r-l+n.width)>0?e:0,this.maxLabel=n,this.movementX="left"===a.labels.align?e:0,s.labelWidth=h+e+i,s.labelHeight=h+n.height/2}setOptions(){let t=this.ranges,e=this.options,i=this.chart.series[e.seriesIndex],s=this.legend.baseline,a={zIndex:e.zIndex,"stroke-width":e.borderWidth},o={zIndex:e.zIndex,"stroke-width":e.connectorWidth},r={align:this.legend.options.rtl||"left"===e.labels.align?"right":"left",zIndex:e.zIndex},n=i.options.marker.fillOpacity,l=this.chart.styledMode;t.forEach(function(h,p){l||(a.stroke=h.borderColor??e.borderColor??i.color,a.fill=h.color||e.color,a.fill||(a.fill=i.color,a["fill-opacity"]=n??1),o.stroke=h.connectorColor??e.connectorColor??i.color),t[p].radius=this.getRangeRadius(h.value),t[p]=(0,v.merge)(t[p],{center:t[0].radius-t[p].radius+s}),l||(0,v.merge)(!0,t[p],{bubbleAttribs:(0,v.merge)(a),connectorAttribs:(0,v.merge)(o),labelAttribs:r})},this)}getRangeRadius(t){let e=this.options,i=this.options.seriesIndex,s=this.chart.series[i],a=e.ranges[0].value,o=e.ranges[e.ranges.length-1].value,r=e.minSize,n=e.maxSize;return s.getRadius.call(this,o,a,r,n,t)}render(){let t=this.legendItem||{},e=this.chart.renderer,i=this.options.zThreshold;for(let s of(this.symbols||(this.symbols={connectors:[],bubbleItems:[],labels:[]}),t.symbol=e.g("bubble-legend"),t.label=e.g("bubble-legend-item").css(this.legend.itemStyle||{}),t.symbol.translateX=0,t.symbol.translateY=0,t.symbol.add(t.label),t.label.add(t.group),this.ranges))s.value>=i&&this.renderRange(s);this.hideOverlappingLabels()}renderRange(t){let e=this.ranges[0],i=this.legend,s=this.options,a=s.labels,o=this.chart,r=o.series[s.seriesIndex],n=o.renderer,l=this.symbols,h=l.labels,p=t.center,d=Math.abs(t.radius),c=s.connectorDistance||0,u=a.align,g=i.options.rtl,m=s.borderWidth,f=s.connectorWidth,b=e.radius||0,y=p-d-m/2+f/2,x=(y%1?1:.5)-(f%2?0:.5),v=n.styledMode,P=g||"left"===u?-c:c;"center"===u&&(P=0,s.connectorDistance=0,t.labelAttribs.align="center"),l.bubbleItems.push(n.circle(b,p+x,d).attr(v?{}:t.bubbleAttribs).addClass((v?"highcharts-color-"+r.colorIndex+" ":"")+"highcharts-bubble-legend-symbol "+(s.className||"")).add(this.legendItem.symbol)),l.connectors.push(n.path(n.crispLine([["M",b,y],["L",b+P,y]],s.connectorWidth)).attr(v?{}:t.connectorAttribs).addClass((v?"highcharts-color-"+this.options.seriesIndex+" ":"")+"highcharts-bubble-legend-connectors "+(s.connectorClassName||"")).add(this.legendItem.symbol));let M=n.text(this.formatLabel(t)).attr(v?{}:t.labelAttribs).css(v?{}:a.style).addClass("highcharts-bubble-legend-labels "+(s.labels.className||"")).add(this.legendItem.symbol),L={x:b+P+s.labels.x,y:y+s.labels.y+.4*M.getBBox().height};M.attr(L),h.push(M),M.placed=!0,M.alignAttr=L}getMaxLabelSize(){let t,e;return this.symbols.labels.forEach(function(i){e=i.getBBox(!0),t=t?e.width>t.width?e:t:e}),t||{}}formatLabel(t){let e=this.options,i=e.labels.formatter,s=e.labels.format,{numberFormatter:a}=this.chart;return s?ta().format(s,t,this.chart):i?i.call(t,t):a(t.value,1)}hideOverlappingLabels(){let t=this.chart,e=this.options.labels.allowOverlap,i=this.symbols;!e&&i&&(t.hideOverlappingLabels(i.labels),i.labels.forEach(function(t,e){t.newOpacity?t.newOpacity!==t.oldOpacity&&i.connectors[e].show():i.connectors[e].hide()}))}getRanges(){let t=this.legend.bubbleLegend,e=t.chart.series,i=t.options.ranges,s,a,o=Number.MAX_VALUE,r=-Number.MAX_VALUE;return e.forEach(function(t){t.isBubble&&!t.ignoreSeries&&(a=t.getColumn("z").filter(v.isNumber)).length&&(o=t.options.zMin??Math.min(o,Math.max((0,v.arrayMin)(a),!1===t.options.displayNegative?t.options.zThreshold:-Number.MAX_VALUE)),r=t.options.zMax??Math.max(r,(0,v.arrayMax)(a)))}),s=o===r?[{value:r}]:[{value:o},{value:(o+r)/2},{value:r,autoRanges:!0}],i.length&&i[0].radius&&s.reverse(),s.forEach(function(t,e){i&&i[e]&&(s[e]=(0,v.merge)(i[e],t))}),s}predictBubbleSizes(){let t=this.chart,e=t.legend.options,i=e.floating,s="horizontal"===e.layout,a=s?t.legend.lastLineHeight:0,o=t.plotSizeX,r=t.plotSizeY,n=t.series[this.options.seriesIndex],l=n.getPxExtremes(),h=Math.ceil(l.minPxSize),p=Math.ceil(l.maxPxSize),d=Math.min(r,o),c,u=n.options.maxSize;return i||!/%$/.test(u)?c=p:(c=(d+a)*(u=parseFloat(u))/100/(u/100+1),(s&&r-c>=o||!s&&o-c>=r)&&(c=p)),[h,Math.ceil(c)]}updateRanges(t,e){let i=this.legend.options.bubbleLegend;i.minSize=t,i.maxSize=e,i.ranges=this.getRanges()}correctSizes(){let t=this.legend,e=this.chart.series[this.options.seriesIndex].getPxExtremes();Math.abs(Math.ceil(e.maxPxSize)-this.options.maxSize)>1&&(this.updateRanges(this.options.minSize,e.maxPxSize),t.render())}},{setOptions:tn}=P(),{composed:tl}=P();function th(t,e,i){let s,a,o,r=this.legend,n=tp(this)>=0;r&&r.options.enabled&&r.bubbleLegend&&r.options.bubbleLegend.autoRanges&&n?(s=r.bubbleLegend.options,a=r.bubbleLegend.predictBubbleSizes(),r.bubbleLegend.updateRanges(a[0],a[1]),s.placed||(r.group.placed=!1,r.allItems.forEach(t=>{(o=t.legendItem||{}).group&&(o.group.translateY=void 0)})),r.render(),s.placed||(this.getMargins(),this.axes.forEach(t=>{t.setScale(),t.updateNames(),(0,v.objectEach)(t.ticks,function(t){t.isNew=!0,t.isNewLabel=!0})}),this.getMargins()),s.placed=!0,t.call(this,e,i),r.bubbleLegend.correctSizes()):(t.call(this,e,i),r&&r.options.enabled&&r.bubbleLegend&&r.render())}function tp(t){let e=t.series,i=0;for(;i<e.length;){if(e[i]&&e[i].isBubble&&e[i].visible&&e[i].dataTable.rowCount)return i;i++}return -1}function td(t){let e=this.bubbleLegend,i=this.options,s=i.bubbleLegend,a=tp(this.chart);e&&e.ranges&&e.ranges.length&&(s.ranges.length&&(s.autoRanges=!!s.ranges[0].autoRanges),this.destroyItem(e)),a>=0&&i.enabled&&s.enabled&&(s.seriesIndex=a,this.bubbleLegend=new tr(s,this),this.bubbleLegend.addToLegend(t.allItems))}function tc(){if(this.bubbleLegend){let t=this.allItems,e=this.options.rtl,i=function(t){let e=t.allItems,i=[],s=e.length,a,o,r,n=0,l=0;for(n=0;n<s;n++)if(o=e[n].legendItem||{},r=(e[n+1]||{}).legendItem||{},o.labelHeight&&(e[n].itemHeight=o.labelHeight),e[n]===e[s-1]||o.y!==r.y){for(i.push({height:0}),a=i[i.length-1];l<=n;l++)e[l].itemHeight>a.height&&(a.height=e[l].itemHeight);a.step=n}return i}(this),s,a,o,r,n=0;t.forEach((t,l)=>{(r=t.legendItem||{}).group&&(s=r.group.translateX||0,a=r.y||0,((o=t.movementX)||e&&t.ranges)&&(o=e?s-t.options.maxSize/2:s+o,r.group.attr({translateX:o})),l>i[n].step&&n++,r.group.attr({translateY:Math.round(a+i[n].height/2)}),r.y=a+i[n].height/2)})}}function tu(t){let e;if(t.defaultPrevented)return!1;let i=t.legendItem,s=this.chart,a=i.visible;this&&this.bubbleLegend&&(i.visible=!a,i.ignoreSeries=a,e=tp(s)>=0,this.bubbleLegend.visible!==e&&(this.update({bubbleLegend:{enabled:e}}),this.bubbleLegend.visible=e),i.visible=a)}let tg=function(t,e){(0,v.pushUnique)(tl,"Series.BubbleLegend")&&(tn({legend:{bubbleLegend:ti}}),(0,v.wrap)(t.prototype,"drawChartBox",th),(0,v.addEvent)(e,"afterGetAllItems",td),(0,v.addEvent)(e,"afterRender",tc),(0,v.addEvent)(e,"itemClick",tu))};var tm=y(260),tf=y.n(tm);let{seriesTypes:{scatter:{prototype:{pointClass:tb}}}}=L();class ty extends tb{haloPath(t){let e=(t&&this.marker&&this.marker.radius||0)+t;if(this.series.chart.inverted){let t=this.pos()||[0,0],{xAxis:i,yAxis:s,chart:a}=this.series,o=2*e;return a.renderer.symbols.circle((i?.len||0)-t[1]-e,(s?.len||0)-t[0]-e,o,o)}return tf().prototype.haloPath.call(this,e)}}(0,v.extend)(ty.prototype,{ttBelow:!1});let{composed:tx,noop:tv}=P(),{series:tP,seriesTypes:{column:{prototype:tM},scatter:tL}}=L();function tk(){let t=this.len,{coll:e,isXAxis:i,min:s}=this,a=(this.max||0)-(s||0),o=0,r=t,n=t/a,l;("xAxis"===e||"yAxis"===e)&&(this.series.forEach(t=>{if(t.bubblePadding&&t.reserveSpace()){this.allowZoomOutside=!0,l=!0;let e=t.getColumn(i?"x":"y");if(i&&((t.onPoint||t).getRadii(0,0,t),t.onPoint&&(t.radii=t.onPoint.radii)),a>0){let i=e.length;for(;i--;)if((0,v.isNumber)(e[i])&&this.dataMin<=e[i]&&e[i]<=this.max){let a=t.radii&&t.radii[i]||0;o=Math.min((e[i]-s)*n-a,o),r=Math.max((e[i]-s)*n+a,r)}}}}),l&&a>0&&!this.logarithmic&&(r-=t,n*=(t+Math.max(0,o)-Math.min(r,t))/t,[["min","userMin",o],["max","userMax",r]].forEach(t=>{void 0===(this.options[t[0]]??this[t[1]])&&(this[t[0]]+=t[2]/n)})))}function tw(){let{ticks:t,tickPositions:e,dataMin:i=0,dataMax:s=0,categories:a}=this,o=this.options.type;if((a?.length||"category"===o)&&this.series.find(t=>t.bubblePadding)){let a=e.length;for(;a--;){let o=t[e[a]],r=o.pos||0;(r>s||r<i)&&o.label?.hide()}}}class tA extends tL{static compose(t,e,i){tg(e,i),(0,v.pushUnique)(tx,"Series.Bubble")&&((0,v.addEvent)(t,"foundExtremes",tk),(0,v.addEvent)(t,"afterRender",tw))}animate(t){!t&&this.points.length<this.options.animationLimit&&this.points.forEach(function(t){let{graphic:e,plotX:i=0,plotY:s=0}=t;e&&e.width&&(this.hasRendered||e.attr({x:i,y:s,width:1,height:1}),e.animate(this.markerAttribs(t),this.options.animation))},this)}getRadii(){let t=[...this.getColumn("z",!1,!0)],e=this.getColumn("y"),i=[],s,a,o,r=this.chart.bubbleZExtremes,{minPxSize:n,maxPxSize:l}=this.getPxExtremes();if(!r){let t,e=Number.MAX_VALUE,i=-Number.MAX_VALUE;this.chart.series.forEach(s=>{if(s.bubblePadding&&s.reserveSpace()){let a=(s.onPoint||s).getZExtremes();a&&(e=Math.min(e??a.zMin,a.zMin),i=Math.max(i??a.zMax,a.zMax),t=!0)}}),t?(r={zMin:e,zMax:i},this.chart.bubbleZExtremes=r):r={zMin:0,zMax:0}}for(a=0,s=t.length;a<s;a++)o=t[a],i.push(this.getRadius(r.zMin,r.zMax,n,l,o,e&&e[a]));this.radii=i}getRadius(t,e,i,s,a,o){let r=this.options,n="width"!==r.sizeBy,l=r.zThreshold,h=e-t,p=.5;if(null===o||null===a)return null;if((0,v.isNumber)(a)){if(r.sizeByAbsoluteValue&&(a=Math.abs(a-l),e=h=Math.max(e-l,Math.abs(t-l)),t=0),a<t)return i/2-1;h>0&&(p=(a-t)/h)}return n&&p>=0&&(p=Math.sqrt(p)),Math.ceil(i+p*(s-i))/2}hasData(){return!!this.dataTable.rowCount}markerAttribs(t,e){let i=super.markerAttribs(t,e),{height:s=0,width:a=0}=i;return this.chart.inverted?(0,v.extend)(i,{x:(t.plotX||0)-a/2,y:(t.plotY||0)-s/2}):i}pointAttribs(t,e){let i=this.options.marker,s=i?.fillOpacity,a=tP.prototype.pointAttribs.call(this,t,e);return a["fill-opacity"]=s??1,a}translate(){super.translate.call(this),this.getRadii(),this.translateBubble()}translateBubble(){let{options:t,radii:e}=this,{minPxSize:i}=this.getPxExtremes();this.data.concat(this.condemnedPoints).forEach((s,a)=>{let{plotX:o=0,plotY:r=0}=s,n=s.condemned?s.marker?.radius||0:e?e[a]:0;"z"===this.zoneAxis&&(s.negative=(s.z||0)<(t.zThreshold||0)),(0,v.isNumber)(n)&&(s.marker=(0,v.extend)(s.marker,{radius:n,width:2*n,height:2*n})),(0,v.isNumber)(n)&&n>=i/2?s.dlBox={x:o-n,y:r-n,width:2*n,height:2*n}:(s.shapeArgs=s.plotY=s.dlBox=void 0,s.isInside=!1)})}getPxExtremes(){let t=Math.min(this.chart.plotWidth,this.chart.plotHeight),e=e=>{let i;return"string"==typeof e&&(i=/%$/.test(e),e=parseInt(e,10)),i?t*e/100:e},i=e(this.options.minSize??8),s=Math.max(e(this.options.maxSize??"20%"),i);return{minPxSize:i,maxPxSize:s}}getZExtremes(){let t=this.options,e=this.getColumn("z").filter(v.isNumber);if(e.length){let i=t.zMin??(0,v.clamp)((0,v.arrayMin)(e),!1===t.displayNegative?t.zThreshold||0:-Number.MAX_VALUE,Number.MAX_VALUE),s=t.zMax??(0,v.arrayMax)(e);if((0,v.isNumber)(i)&&(0,v.isNumber)(s))return{zMin:i,zMax:s}}}searchKDTree(t,e,i,s=tv,a=tv){return s=(t,e,i)=>{let s=t[i]||0,a=e[i]||0,o,r=!1;return s===a?o=t.index>e.index?t:e:s<0&&a<0?(o=s-(t.marker?.radius||0)>=a-(e.marker?.radius||0)?t:e,r=!0):o=s<a?t:e,[o,r]},a=(t,e,i)=>!i&&t>e||t<e,super.searchKDTree(t,e,i,s,a)}}tA.defaultOptions=(0,v.merge)(tL.defaultOptions,{dataLabels:{formatter:function(){let{numberFormatter:t}=this.series.chart,{z:e}=this.point;return(0,v.isNumber)(e)?t(e,-1):""},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{lineColor:null,lineWidth:1,fillOpacity:.5,radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},turboThreshold:0,zThreshold:0,zoneAxis:"z"}),(0,v.extend)(tA.prototype,{alignDataLabel:tM.alignDataLabel,applyZones:tv,bubblePadding:!0,isBubble:!0,keysAffectYAxis:["y"],pointArrayMap:["y","z"],pointClass:ty,parallelArrays:["x","y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",zoneAxis:"z"}),(0,v.addEvent)(tA,"updatedData",t=>{delete t.target.chart.bubbleZExtremes}),(0,v.addEvent)(tA,"remove",t=>{delete t.target.chart.bubbleZExtremes}),(0,v.addEvent)(tA,"update",t=>{let e=t.target.options;((0,v.defined)(e.zMin)||(0,v.defined)(e.zMax))&&delete t.target.chart.bubbleZExtremes}),L().registerSeriesType("bubble",tA);let{seriesTypes:{column:{prototype:{pointClass:{prototype:tS}}},arearange:{prototype:{pointClass:tN}}}}=L();class tT extends tN{isValid(){return(0,v.isNumber)(this.low)}}(0,v.extend)(tT.prototype,{setState:tS.setState});let{noop:tC}=P(),{seriesTypes:{arearange:tX,column:tY,column:{prototype:tE}}}=L();class tR extends tX{setOptions(){return(0,v.merge)(!0,arguments[0],{stacking:void 0}),tX.prototype.setOptions.apply(this,arguments)}translate(){return tE.translate.apply(this)}pointAttribs(){return tE.pointAttribs.apply(this,arguments)}translate3dPoints(){return tE.translate3dPoints.apply(this,arguments)}translate3dShapes(){return tE.translate3dShapes.apply(this,arguments)}afterColumnTranslate(){let t,e,i,s,a=this.yAxis,o=this.xAxis,r=o.startAngleRad,n=this.chart,l=this.xAxis.isRadial,h=Math.max(n.chartWidth,n.chartHeight)+999;function p(t){return(0,v.clamp)(t,-h,h)}this.points.forEach(h=>{let d=h.shapeArgs||{},c=this.options.minPointLength,u=h.plotY,g=a.translate(h.high,0,1,0,1);if((0,v.isNumber)(g)&&(0,v.isNumber)(u))if(h.plotHigh=p(g),h.plotLow=p(u),s=h.plotHigh,Math.abs(t=(h.rectPlotY??h.plotY)-h.plotHigh)<c?(e=c-t,t+=e,s-=e/2):t<0&&(t*=-1,s-=t),l&&this.polar)i=h.barX+r,h.shapeType="arc",h.shapeArgs=this.polar.arc(s+t,s,i,i+(h.pointWidth||0));else{d.height=t,d.y=s;let{x:e=0,width:i=0}=d;h.shapeArgs=(0,v.merge)(h.shapeArgs,this.crispCol(e,s,i,t)),h.tooltipPos=n.inverted?[a.len+a.pos-n.plotLeft-s-t/2,o.len+o.pos-n.plotTop-e-i/2,t]:[o.left-n.plotLeft+e+i/2,a.pos-n.plotTop+s+t/2,t]}})}}tR.defaultOptions=(0,v.merge)(tY.defaultOptions,tX.defaultOptions,{borderRadius:{where:"all"},pointRange:null,legendSymbol:"rectangle",marker:null,states:{hover:{halo:!1}}}),(0,v.addEvent)(tR,"afterColumnTranslate",function(){tR.prototype.afterColumnTranslate.apply(this)},{order:5}),(0,v.extend)(tR.prototype,{directTouch:!0,pointClass:tT,trackerGroups:["group","dataLabelsGroup"],adjustForMissingColumns:tE.adjustForMissingColumns,animate:tE.animate,crispCol:tE.crispCol,drawGraph:tC,drawPoints:tE.drawPoints,getSymbol:tC,drawTracker:tE.drawTracker,getColumnMetrics:tE.getColumnMetrics}),L().registerSeriesType("columnrange",tR);let{column:tI}=L().seriesTypes;class tz extends tI{translate(){let t=this.chart,e=this.options,i=this.dense=this.closestPointRange*this.xAxis.transA<2,s=this.borderWidth=e.borderWidth??+!i,a=this.yAxis,o=e.threshold,r=e.minPointLength??5,n=this.getColumnMetrics(),l=n.width,h=this.pointXOffset=n.offset,p=this.translatedThreshold=a.getThreshold(o),d=this.barW=Math.max(l,1+2*s);for(let i of(t.inverted&&(p-=.5),e.pointPadding&&(d=Math.ceil(d)),super.translate(),this.points)){let s=i.yBottom??p,c=999+Math.abs(s),u=(0,v.clamp)(i.plotY,-c,a.len+c),g=d/2,m=Math.min(u,s),f=Math.max(u,s)-m,b=i.plotX+h,y,x,P,M,L,k,w,A,S,N,T;e.centerInCategory&&(b=this.adjustForMissingColumns(b,l,i,n)),i.barX=b,i.pointWidth=l,i.tooltipPos=t.inverted?[a.len+a.pos-t.plotLeft-u,this.xAxis.len-b-g,f]:[b+g,u+a.pos-t.plotTop,f],y=o+(i.total||i.y),"percent"===e.stacking&&(y=o+(i.y<0)?-100:100);let C=a.toPixels(y,!0);P=(x=t.plotHeight-C-(t.plotHeight-p))?g*(m-C)/x:0,M=x?g*(m+f-C)/x:0,k=b-P+g,w=b+P+g,A=b+M+g,S=b-M+g,N=m-r,T=m+f,i.y<0&&(N=m,T=m+f+r),t.inverted&&(L=a.width-m,x=C-(a.width-p),P=g*(C-L)/x,M=g*(C-(L-f))/x,w=(k=b+g+P)-2*P,A=b-M+g,S=b+M+g,N=m,T=m+f-r,i.y<0&&(T=m+f+r)),i.shapeType="path",i.shapeArgs={x:k,y:N,width:w-k,height:f,d:[["M",k,N],["L",w,N],["L",A,T],["L",S,T],["Z"]]}}}}tz.defaultOptions=(0,v.merge)(tI.defaultOptions,{}),L().registerSeriesType("columnpyramid",tz);let{arearange:tO}=L().seriesTypes;class tD extends te{getColumnMetrics(){return this.linkedParent&&this.linkedParent.columnMetrics||H().prototype.getColumnMetrics.call(this)}drawDataLabels(){tO&&tO.prototype.drawDataLabels.call(this)}toYData(t){return[t.low,t.high]}}tD.defaultOptions=(0,v.merge)(te.defaultOptions,{color:"var(--highcharts-neutral-color-100)",dataLabels:{},grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'<span style="color:{point.color}">●</span> {series.name}: <b>{point.low}</b> - <b>{point.high}</b><br/>'},whiskerWidth:null},{dataLabels:{formatter:B.formatter}}),(0,v.addEvent)(tD,"afterTranslate",function(){for(let t of this.points)t.plotLow=t.plotY},{order:0}),(0,v.extend)(tD.prototype,{pointArrayMap:["low","high"],pointValKey:"high",doQuartiles:!1}),L().registerSeriesType("errorbar",tD);let{series:{prototype:{pointClass:tH}}}=L(),{noop:tB}=P(),{series:tW,seriesTypes:{column:tF}}=L();class tG extends tW{translate(){let t=this.yAxis,e=this.options,i=t.center;this.generatePoints(),this.points.forEach(s=>{if(!(0,v.isNumber)(s.y))return;let a=(0,v.merge)(e.dial,s.dial),o=(0,v.relativeLength)(a.radius,i[2]/2),r=(0,v.relativeLength)(a.baseLength,o),n=Math.min((0,v.relativeLength)(a.rearLength,o),o),l=Math.min((0,v.relativeLength)(a.baseWidth,o),o),h=(0,v.relativeLength)(a.topWidth,o),p=(0,v.relativeLength)(a.borderRadius,o),d=Math.min(p,l/2),c=Math.min(p,h/2),u=e.wrap??t.endAngleRad-t.startAngleRad>2*Math.PI-.01,g=e.overshoot,m=t.startAngleRad+t.translate(s.y,void 0,void 0,void 0,!0);((0,v.isNumber)(g)||!u)&&(g=(0,v.isNumber)(g)?g/180*Math.PI:0,m=(0,v.clamp)(m,t.startAngleRad-g,t.endAngleRad+g)),s.tooltipPos=[i[0]+Math.cos(m)*o,i[1]+Math.sin(m)*o],m=180*m/Math.PI,s.shapeType="path",s.shapeArgs={d:a.path||[["M",d-n,-l/2],["L",r,-l/2],["L",o-c,-h/2],["A",c,c,0,0,1,o,-h/2+c],["L",o,h/2-c],["A",c,c,0,0,1,o-c,h/2],["L",r,l/2],["L",d-n,l/2],["A",d,d,0,0,1,-n,l/2-d],["L",-n,d-l/2],["A",d,d,0,0,1,d-n,-l/2],["Z"]],translateX:i[0],translateY:i[1],rotation:m},s.plotX=i[0],s.plotY=i[1],(0,v.defined)(s.y)&&t.max-t.min&&(s.percentage=(s.y-t.min)/(t.max-t.min)*100)})}drawPoints(){let t=this,e=t.chart,i=t.yAxis.center,s=t.pivot,a=t.options,o=a.pivot,r=e.renderer,n=(0,v.relativeLength)(o?.radius||0,i[2]/2);t.points.forEach(i=>{if((0,v.isNumber)(i.y)){let s=i.graphic,o=i.shapeArgs,n=o.d,l=(0,v.merge)(a.dial,i.dial);s?(s.animate(o),o.d=n):i.graphic=r[i.shapeType](o).addClass("highcharts-dial").add(t.group),!e.styledMode&&i.graphic&&i.graphic[s?"animate":"attr"]({stroke:l.borderColor,"stroke-width":l.borderWidth,fill:l.backgroundColor})}}),s?s.animate({translateX:i[0],translateY:i[1],r:n}):o&&(t.pivot=r.circle(0,0,n).attr({zIndex:2}).addClass("highcharts-pivot").translate(i[0],i[1]).add(t.group),e.styledMode||t.pivot.attr({fill:o.backgroundColor,stroke:o.borderColor,"stroke-width":o.borderWidth}))}animate(t){let e=this;t||e.points.forEach(t=>{let i=t.graphic;i&&(i.attr({rotation:180*e.yAxis.startAngleRad/Math.PI}),i.animate({rotation:t.shapeArgs.rotation},e.options.animation))})}setData(t,e){tW.prototype.setData.call(this,t,!1),this.processData(),this.generatePoints(),(e??!0)&&this.chart.redraw()}hasData(){return!!this.points.length}}tG.defaultOptions=(0,v.merge)(tW.defaultOptions,{clip:!1,color:"var(--highcharts-neutral-color-20)",dataLabels:{crop:!1,defer:!1,distance:0,enabled:!0,padding:5,verticalAlign:"top",style:{fontSize:"1.4em"},y:25,zIndex:2},dial:{backgroundColor:"var(--highcharts-neutral-color-100)",baseLength:0,baseWidth:"18%",borderColor:"var(--highcharts-neutral-color-20)",borderRadius:"9%",borderWidth:0,radius:"70%",rearLength:"9%",topWidth:"4%"},pivot:{radius:"4%",borderWidth:2,borderColor:"var(--highcharts-neutral-color-100)",backgroundColor:"var(--highcharts-background-color)"},threshold:0,tooltip:{headerFormat:""},showInLegend:!1}),(0,v.extend)(tG.prototype,{angular:!0,directTouch:!0,drawGraph:tB,drawTracker:tF.prototype.drawTracker,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,pointClass:class extends tH{setState(t){this.state=t}},trackerGroups:["group","dataLabelsGroup"]}),L().registerSeriesType("gauge",tG);var tq=y(620),tK=y.n(tq);let{composed:tV}=P();function t_(){let t,e,i,s,a=this;a.container&&(t=(0,v.addEvent)(a.container,"mousedown",t=>{e&&e(),i&&i(),(s=a.hoverPoint)&&s.series&&s.series.hasDraggableNodes&&s.series.options.draggable&&(s.series.onMouseDown(s,t),e=(0,v.addEvent)(a.container,"mousemove",t=>s&&s.series&&s.series.onMouseMove(s,t)),i=(0,v.addEvent)(a.container.ownerDocument,"mouseup",t=>(e(),i(),s&&s.series&&s.series.onMouseUp(s,t))))})),(0,v.addEvent)(a,"destroy",function(){t()})}let tj={compose:function(t){(0,v.pushUnique)(tV,"DragNodes")&&(0,v.addEvent)(t,"load",t_)},onMouseDown:function(t,e){let{panKey:i}=this.chart.options.chart;if(i&&e[`${i}Key`])return;let s=this.chart.pointer?.normalize(e)||e;t.fixedPosition={chartX:s.chartX,chartY:s.chartY,plotX:t.plotX,plotY:t.plotY},t.inDragMode=!0},onMouseMove:function(t,e){if(t.fixedPosition&&t.inDragMode){let i,s,a=this.chart,o=a.pointer?.normalize(e)||e,r=t.fixedPosition.chartX-o.chartX,n=t.fixedPosition.chartY-o.chartY,l=a.graphLayoutsLookup;(Math.abs(r)>5||Math.abs(n)>5)&&(i=t.fixedPosition.plotX-r,s=t.fixedPosition.plotY-n,a.isInsidePlot(i,s)&&(t.plotX=i,t.plotY=s,t.hasDragged=!0,this.redrawHalo(t),l.forEach(t=>{t.restartSimulation()})))}},onMouseUp:function(t){t.fixedPosition&&(t.hasDragged&&(this.layout.enableSimulation?this.layout.start():this.chart.redraw()),t.inDragMode=t.hasDragged=!1,this.options.fixedDraggable||delete t.fixedPosition)},redrawHalo:function(t){t&&this.halo&&this.halo.attr({d:t.haloPath((0,v.isObject)(this.options.states?.hover?.halo)&&this.options.states?.hover?.halo.size||0)})}},{composed:tU}=P();function tZ(){this.graphLayoutsLookup&&(this.graphLayoutsLookup.forEach(t=>{t.updateSimulation()}),this.redraw())}function t$(){this.graphLayoutsLookup&&(this.graphLayoutsLookup.forEach(t=>{t.updateSimulation(!1)}),this.redraw())}function tQ(){this.graphLayoutsLookup&&this.graphLayoutsLookup.forEach(t=>{t.stop()})}function tJ(){let t,e=!1,i=i=>{i.maxIterations--&&isFinite(i.temperature)&&!i.isStable()&&!i.enableSimulation&&(i.beforeStep&&i.beforeStep(),i.step(),t=!1,e=!0)};if(this.graphLayoutsLookup&&!this.pointer?.hasDragged){for((0,v.setAnimation)(!1,this),this.graphLayoutsLookup.forEach(t=>t.start());!t;)t=!0,this.graphLayoutsLookup.forEach(i);e&&this.series.forEach(t=>{t&&t.layout&&(t.render(),(0,v.fireEvent)(t,"afterSimulation"))})}}let t0=function(t){(0,v.pushUnique)(tU,"GraphLayout")&&((0,v.addEvent)(t,"afterPrint",tZ),(0,v.addEvent)(t,"beforePrint",t$),(0,v.addEvent)(t,"predraw",tQ),(0,v.addEvent)(t,"render",tJ))},t1={},t2={};var t3=y(960),t5=y.n(t3);let{seriesTypes:{bubble:{prototype:{pointClass:t8}}}}=L(),t4=class extends t8{destroy(){return this.series?.layout&&this.series.layout.removeElementFromCollection(this,this.series.layout.nodes),tf().prototype.destroy.apply(this,arguments)}firePointEvent(){let t=this.series.options;if(this.isParentNode&&t.parentNode){let e=t.allowPointSelect;t.allowPointSelect=t.parentNode.allowPointSelect,tf().prototype.firePointEvent.apply(this,arguments),t.allowPointSelect=e}else tf().prototype.firePointEvent.apply(this,arguments)}select(){let t=this.series.chart;this.isParentNode?(t.getSelectedPoints=t.getSelectedParentNodes,tf().prototype.select.apply(this,arguments),t.getSelectedPoints=t5().prototype.getSelectedPoints):tf().prototype.select.apply(this,arguments)}setState(t,e){this?.graphic?.parentGroup?.element&&super.setState(t,e)}},t9={attractive:function(t,e,i){let s=t.getMass(),a=-i.x*e*this.diffTemperature,o=-i.y*e*this.diffTemperature;t.fromNode.fixedPosition||(t.fromNode.plotX-=a*s.fromNode/t.fromNode.degree,t.fromNode.plotY-=o*s.fromNode/t.fromNode.degree),t.toNode.fixedPosition||(t.toNode.plotX+=a*s.toNode/t.toNode.degree,t.toNode.plotY+=o*s.toNode/t.toNode.degree)},attractiveForceFunction:function(t,e){return(e-t)/t},barycenter:function(){let t=this.options.gravitationalConstant||0,e=(this.barycenter.xFactor-(this.box.left+this.box.width)/2)*t,i=(this.barycenter.yFactor-(this.box.top+this.box.height)/2)*t;this.nodes.forEach(function(t){t.fixedPosition||(t.plotX-=e/t.mass/t.degree,t.plotY-=i/t.mass/t.degree)})},getK:function(t){return Math.pow(t.box.width*t.box.height/t.nodes.length,.5)},integrate:function(t,e){let i=-t.options.friction,s=t.options.maxSpeed,a=e.prevX,o=e.prevY,r=(e.plotX+e.dispX-a)*i,n=(e.plotY+e.dispY-o)*i,l=Math.abs,h=l(r)/(r||1),p=l(n)/(n||1),d=h*Math.min(s,Math.abs(r)),c=p*Math.min(s,Math.abs(n));e.prevX=e.plotX+e.dispX,e.prevY=e.plotY+e.dispY,e.plotX+=d,e.plotY+=c,e.temperature=t.vectorLength({x:d,y:c})},repulsive:function(t,e,i){let s=e*this.diffTemperature/t.mass/t.degree;t.fixedPosition||(t.plotX+=i.x*s,t.plotY+=i.y*s)},repulsiveForceFunction:function(t,e){return(e-t)/t*(e>t)}},{noop:t6}=P(),t7={barycenter:function(){let t,e,i=this.options.gravitationalConstant||0,s=this.box,a=this.nodes,o=Math.sqrt(a.length);for(let r of a)if(!r.fixedPosition){let a=r.mass*o,n=r.plotX||0,l=r.plotY||0,h=r.series,p=h.parentNode;this.resolveSplitSeries(r)&&p&&!r.isParentNode?(t=p.plotX||0,e=p.plotY||0):(t=s.width/2,e=s.height/2),r.plotX=n-(n-t)*i/a,r.plotY=l-(l-e)*i/a,h.chart.hoverPoint===r&&h.redrawHalo&&h.halo&&h.redrawHalo(r)}},getK:t6,integrate:t9.integrate,repulsive:function(t,e,i,s){let a=e*this.diffTemperature/t.mass/t.degree,o=i.x*a,r=i.y*a;t.fixedPosition||(t.plotX+=o,t.plotY+=r),s.fixedPosition||(s.plotX-=o,s.plotY-=r)},repulsiveForceFunction:function(t,e,i,s){return Math.min(t,(i.marker.radius+s.marker.radius)/2)}},et={attractive:function(t,e,i,s){let a=t.getMass(),o=i.x/s*e,r=i.y/s*e;t.fromNode.fixedPosition||(t.fromNode.dispX-=o*a.fromNode/t.fromNode.degree,t.fromNode.dispY-=r*a.fromNode/t.fromNode.degree),t.toNode.fixedPosition||(t.toNode.dispX+=o*a.toNode/t.toNode.degree,t.toNode.dispY+=r*a.toNode/t.toNode.degree)},attractiveForceFunction:function(t,e){return t*t/e},barycenter:function(){let t=this.options.gravitationalConstant,e=this.barycenter.xFactor,i=this.barycenter.yFactor;this.nodes.forEach(function(s){if(!s.fixedPosition){let a=s.getDegree(),o=a*(1+a/2);s.dispX+=(e-s.plotX)*t*o/s.degree,s.dispY+=(i-s.plotY)*t*o/s.degree}})},getK:function(t){return Math.pow(t.box.width*t.box.height/t.nodes.length,.3)},integrate:function(t,e){e.dispX+=e.dispX*t.options.friction,e.dispY+=e.dispY*t.options.friction;let i=e.temperature=t.vectorLength({x:e.dispX,y:e.dispY});0!==i&&(e.plotX+=e.dispX/i*Math.min(Math.abs(e.dispX),t.temperature),e.plotY+=e.dispY/i*Math.min(Math.abs(e.dispY),t.temperature))},repulsive:function(t,e,i,s){t.dispX+=i.x/s*e/t.degree,t.dispY+=i.y/s*e/t.degree},repulsiveForceFunction:function(t,e){return e*e/t}};class ee{constructor(t){this.body=!1,this.isEmpty=!1,this.isInternal=!1,this.nodes=[],this.box=t,this.boxSize=Math.min(t.width,t.height)}divideBox(){let t=this.box.width/2,e=this.box.height/2;this.nodes[0]=new ee({left:this.box.left,top:this.box.top,width:t,height:e}),this.nodes[1]=new ee({left:this.box.left+t,top:this.box.top,width:t,height:e}),this.nodes[2]=new ee({left:this.box.left+t,top:this.box.top+e,width:t,height:e}),this.nodes[3]=new ee({left:this.box.left,top:this.box.top+e,width:t,height:e})}getBoxPosition(t){let e=t.plotX<this.box.left+this.box.width/2,i=t.plotY<this.box.top+this.box.height/2;return e?3*!i:i?1:2}insert(t,e){let i;this.isInternal?this.nodes[this.getBoxPosition(t)].insert(t,e-1):(this.isEmpty=!1,this.body?e?(this.isInternal=!0,this.divideBox(),!0!==this.body&&(this.nodes[this.getBoxPosition(this.body)].insert(this.body,e-1),this.body=!0),this.nodes[this.getBoxPosition(t)].insert(t,e-1)):((i=new ee({top:t.plotX||NaN,left:t.plotY||NaN,width:.1,height:.1})).body=t,i.isInternal=!1,this.nodes.push(i)):(this.isInternal=!1,this.body=t))}updateMassAndCenter(){let t=0,e=0,i=0;if(this.isInternal){for(let s of this.nodes)s.isEmpty||(t+=s.mass,e+=s.plotX*s.mass,i+=s.plotY*s.mass);e/=t,i/=t}else this.body&&(t=this.body.mass,e=this.body.plotX,i=this.body.plotY);this.mass=t,this.plotX=e,this.plotY=i}}let ei=class{constructor(t,e,i,s){this.box={left:t,top:e,width:i,height:s},this.maxDepth=25,this.root=new ee(this.box),this.root.isInternal=!0,this.root.isRoot=!0,this.root.divideBox()}calculateMassAndCenter(){this.visitNodeRecursive(null,null,function(t){t.updateMassAndCenter()})}insertNodes(t){for(let e of t)this.root.insert(e,this.maxDepth)}visitNodeRecursive(t,e,i){let s;if(t||(t=this.root),t===this.root&&e&&(s=e(t)),!1!==s){for(let a of t.nodes){if(a.isInternal){if(e&&(s=e(a)),!1===s)continue;this.visitNodeRecursive(a,e,i)}else a.body&&e&&e(a.body);i&&i(a)}t===this.root&&i&&i(t)}}},{win:es}=P();class ea{constructor(){this.box={},this.currentStep=0,this.initialRendering=!0,this.links=[],this.nodes=[],this.series=[],this.simulation=!1}static compose(t){t0(t),t1.euler=et,t1.verlet=t9,t2["reingold-fruchterman"]=ea}init(t){this.options=t,this.nodes=[],this.links=[],this.series=[],this.box={x:0,y:0,width:0,height:0},this.setInitialRendering(!0),this.integration=t1[t.integration],this.enableSimulation=t.enableSimulation,this.attractiveForce=t.attractiveForce??this.integration.attractiveForceFunction,this.repulsiveForce=t.repulsiveForce??this.integration.repulsiveForceFunction,this.approximation=t.approximation}updateSimulation(t){this.enableSimulation=t??this.options.enableSimulation}start(){let t=this.series,e=this.options;this.currentStep=0,this.forces=t[0]&&t[0].forces||[],this.chart=t[0]&&t[0].chart,this.initialRendering&&(this.initPositions(),t.forEach(function(t){t.finishedAnimating=!0,t.render()})),this.setK(),this.resetSimulation(e),this.enableSimulation&&this.step()}step(){let t=this.series;for(let t of(this.currentStep++,"barnes-hut"===this.approximation&&(this.createQuadTree(),this.quadTree.calculateMassAndCenter()),this.forces||[]))this[t+"Forces"](this.temperature);if(this.applyLimits(),this.temperature=this.coolDown(this.startTemperature,this.diffTemperature,this.currentStep),this.prevSystemTemperature=this.systemTemperature,this.systemTemperature=this.getSystemTemperature(),this.enableSimulation){for(let e of t)e.chart&&e.render();this.maxIterations--&&isFinite(this.temperature)&&!this.isStable()?(this.simulation&&es.cancelAnimationFrame(this.simulation),this.simulation=es.requestAnimationFrame(()=>this.step())):(this.simulation=!1,this.series.forEach(t=>{(0,v.fireEvent)(t,"afterSimulation")}))}}stop(){this.simulation&&es.cancelAnimationFrame(this.simulation)}setArea(t,e,i,s){this.box={left:t,top:e,width:i,height:s}}setK(){this.k=this.options.linkLength||this.integration.getK(this)}addElementsToCollection(t,e){for(let i of t)-1===e.indexOf(i)&&e.push(i)}removeElementFromCollection(t,e){let i=e.indexOf(t);-1!==i&&e.splice(i,1)}clear(){this.nodes.length=0,this.links.length=0,this.series.length=0,this.resetSimulation()}resetSimulation(){this.forcedStop=!1,this.systemTemperature=0,this.setMaxIterations(),this.setTemperature(),this.setDiffTemperature()}restartSimulation(){this.simulation?this.resetSimulation():(this.setInitialRendering(!1),this.enableSimulation?this.start():this.setMaxIterations(1),this.chart&&this.chart.redraw(),this.setInitialRendering(!0))}setMaxIterations(t){this.maxIterations=t??this.options.maxIterations}setTemperature(){this.temperature=this.startTemperature=Math.sqrt(this.nodes.length)}setDiffTemperature(){this.diffTemperature=this.startTemperature/(this.options.maxIterations+1)}setInitialRendering(t){this.initialRendering=t}createQuadTree(){this.quadTree=new ei(this.box.left,this.box.top,this.box.width,this.box.height),this.quadTree.insertNodes(this.nodes)}initPositions(){let t=this.options.initialPositions;if((0,v.isFunction)(t))for(let e of(t.call(this),this.nodes))(0,v.defined)(e.prevX)||(e.prevX=e.plotX),(0,v.defined)(e.prevY)||(e.prevY=e.plotY),e.dispX=0,e.dispY=0;else"circle"===t?this.setCircularPositions():this.setRandomPositions()}setCircularPositions(){let t,e=this.box,i=this.nodes,s=2*Math.PI/(i.length+1),a=i.filter(function(t){return 0===t.linksTo.length}),o={},r=this.options.initialPositionRadius,n=t=>{for(let e of t.linksFrom||[])o[e.toNode.id]||(o[e.toNode.id]=!0,l.push(e.toNode),n(e.toNode))},l=[];for(let t of a)l.push(t),n(t);if(l.length)for(let t of i)-1===l.indexOf(t)&&l.push(t);else l=i;for(let i=0,a=l.length;i<a;++i)(t=l[i]).plotX=t.prevX=t.plotX??e.width/2+r*Math.cos(i*s),t.plotY=t.prevY=t.plotY??e.height/2+r*Math.sin(i*s),t.dispX=0,t.dispY=0}setRandomPositions(){let t,e=this.box,i=this.nodes,s=i.length+1,a=t=>{let e=t*t/Math.PI;return e-Math.floor(e)};for(let o=0,r=i.length;o<r;++o)(t=i[o]).plotX=t.prevX=t.plotX??e.width*a(o),t.plotY=t.prevY=t.plotY??e.height*a(s+o),t.dispX=0,t.dispY=0}force(t,...e){this.integration[t].apply(this,e)}barycenterForces(){this.getBarycenter(),this.force("barycenter")}getBarycenter(){let t=0,e=0,i=0;for(let s of this.nodes)e+=s.plotX*s.mass,i+=s.plotY*s.mass,t+=s.mass;return this.barycenter={x:e,y:i,xFactor:e/t,yFactor:i/t},this.barycenter}barnesHutApproximation(t,e){let i,s,a=this.getDistXY(t,e),o=this.vectorLength(a);return t!==e&&0!==o&&(e.isInternal?e.boxSize/o<this.options.theta&&0!==o?(s=this.repulsiveForce(o,this.k),this.force("repulsive",t,s*e.mass,a,o),i=!1):i=!0:(s=this.repulsiveForce(o,this.k),this.force("repulsive",t,s*e.mass,a,o))),i}repulsiveForces(){if("barnes-hut"===this.approximation)for(let t of this.nodes)this.quadTree.visitNodeRecursive(null,e=>this.barnesHutApproximation(t,e));else{let t,e,i;for(let s of this.nodes)for(let a of this.nodes)s===a||s.fixedPosition||(i=this.getDistXY(s,a),0!==(e=this.vectorLength(i))&&(t=this.repulsiveForce(e,this.k),this.force("repulsive",s,t*a.mass,i,e)))}}attractiveForces(){let t,e,i;for(let s of this.links)s.fromNode&&s.toNode&&(t=this.getDistXY(s.fromNode,s.toNode),0!==(e=this.vectorLength(t))&&(i=this.attractiveForce(e,this.k),this.force("attractive",s,i,t,e)))}applyLimits(){for(let t of this.nodes)t.fixedPosition||(this.integration.integrate(this,t),this.applyLimitBox(t,this.box),t.dispX=0,t.dispY=0)}applyLimitBox(t,e){let i=t.radius;t.plotX=(0,v.clamp)(t.plotX,e.left+i,e.width-i),t.plotY=(0,v.clamp)(t.plotY,e.top+i,e.height-i)}coolDown(t,e,i){return t-e*i}isStable(){return 1e-5>Math.abs(this.systemTemperature-this.prevSystemTemperature)||this.temperature<=0}getSystemTemperature(){let t=0;for(let e of this.nodes)t+=e.temperature;return t}vectorLength(t){return Math.sqrt(t.x*t.x+t.y*t.y)}getDistR(t,e){let i=this.getDistXY(t,e);return this.vectorLength(i)}getDistXY(t,e){let i=t.plotX-e.plotX,s=t.plotY-e.plotY;return{x:i,y:s,absX:Math.abs(i),absY:Math.abs(s)}}}let eo=ea;function er(){let t=this.series,e=[];return t.forEach(t=>{t.parentNode&&t.parentNode.selected&&e.push(t.parentNode)}),e}function en(){this.allDataPoints&&delete this.allDataPoints}class el extends eo{constructor(){super(...arguments),this.index=NaN,this.nodes=[],this.series=[]}static compose(t){eo.compose(t),t1.packedbubble=t7,t2.packedbubble=el;let e=t.prototype;e.getSelectedParentNodes||((0,v.addEvent)(t,"beforeRedraw",en),e.getSelectedParentNodes=er),e.allParentNodes||(e.allParentNodes=[])}beforeStep(){this.options.marker&&this.series.forEach(t=>{t&&t.calculateParentRadius()})}isStable(){let t=Math.abs(this.prevSystemTemperature-this.systemTemperature);return 1>Math.abs(10*this.systemTemperature/Math.sqrt(this.nodes.length))&&t<1e-5||this.temperature<=0}setCircularPositions(){let t=this.box,e=[...this.nodes,...this?.chart?.allParentNodes||[]],i=2*Math.PI/(e.length+1),s=this.options.initialPositionRadius,a,o,r=0;for(let n of e)this.resolveSplitSeries(n)&&!n.isParentNode?(a=n.series.parentNode.plotX,o=n.series.parentNode.plotY):(a=t.width/2,o=t.height/2),n.plotX=n.prevX=n.plotX??a+s*Math.cos(n.index||r*i),n.plotY=n.prevY=n.plotY??o+s*Math.sin(n.index||r*i),n.dispX=0,n.dispY=0,r++}repulsiveForces(){let{options:t,k:e}=this,{bubblePadding:i=0,seriesInteraction:s}=t,a=[...this.nodes,...this?.chart?.allParentNodes||[]];for(let t of a){let o=t.series,r=t.fixedPosition,n=(t.marker?.radius||0)+i;for(let i of(t.degree=t.mass,t.neighbors=0,a)){let a=i.series;if(t!==i&&!r&&(s||o===a)&&!(o===a&&(i.isParentNode||t.isParentNode))){let s,a=this.getDistXY(t,i),o=this.vectorLength(a)-(n+(i.marker?.radius||0));o<0&&(t.degree+=.01,s=this.repulsiveForce(-o/Math.sqrt(++t.neighbors),e,t,i)*i.mass),this.force("repulsive",t,s||0,a,i,o)}}}}resolveSplitSeries(t){let e=t.series?.options?.layoutAlgorithm?.splitSeries;return!(0,v.defined)(e)&&t.series.chart?.options?.plotOptions?.packedbubble?.layoutAlgorithm?.splitSeries||e||!1}applyLimitBox(t,e){let i,s;this.resolveSplitSeries(t)&&!t.isParentNode&&this.options.parentNodeLimit&&(i=this.getDistXY(t,t.series.parentNode),(s=t.series.parentNodeRadius-t.marker.radius-this.vectorLength(i))<0&&s>-2*t.marker.radius&&(t.plotX-=.01*i.x,t.plotY-=.01*i.y)),super.applyLimitBox(t,e)}}t2.packedbubble=el;var eh=y(28),ep=y.n(eh);let{composed:ed,deg2rad:ec}=P(),{parse:eu}=tK(),{noop:eg}=P(),{series:{prototype:em},seriesTypes:{bubble:ef}}=L(),{initDataLabels:eb,initDataLabelsDefer:ey}={initDataLabels:function(){let t=this.options.dataLabels;if(!this.dataLabelsGroup){let e=this.initDataLabelsGroup(0,t);return!this.chart.styledMode&&t?.style&&e.css(t.style),e.attr({opacity:0}),this.visible&&(this.options.animation&&t?.animation?e.animate({opacity:1},t.animation):e.attr({opacity:1}),e.show()),e}return this.dataLabelsGroup.attr({opacity:1,...this.getPlotBox("data-labels")}),this.dataLabelsGroup},initDataLabelsDefer:function(){let t=this.options.dataLabels;t?.defer&&this.options.layoutAlgorithm?.enableSimulation?(0,v.syncTimeout)(()=>{this.deferDataLabels=!1},t?(0,v.animObject)(t.animation).defer:0):this.deferDataLabels=!1}};d=ep(),(0,v.pushUnique)(ed,"TextPath")&&((0,v.addEvent)(d,"afterGetBBox",function(t){let e=t.bBox,i=this.element?.querySelector("textPath");if(i){let t=[],{b:s,h:a}=this.renderer.fontMetrics(this.element),o=a-s,r=RegExp('(<tspan>|<tspan(?!\\sclass="highcharts-br")[^>]*>|<\\/tspan>)',"g"),n=i.innerHTML.replace(r,"").split(/<tspan class="highcharts-br"[^>]*>/),l=n.length,h=(t,e)=>{let{x:a,y:r}=e,n=(i.getRotationOfChar(t)-90)*ec,l=Math.cos(n),h=Math.sin(n);return[[a-o*l,r-o*h],[a+s*l,r+s*h]]};for(let e=0,s=0;s<l;s++){let a=n[s].length;for(let o=0;o<a;o+=5)try{let a=e+o+s,[r,n]=h(a,i.getStartPositionOfChar(a));0===o?(t.push(n),t.push(r)):(0===s&&t.unshift(n),s===l-1&&t.push(r))}catch{break}e+=a-1;try{let a=e+s,o=i.getEndPositionOfChar(a),[r,n]=h(a,o);t.unshift(n),t.unshift(r)}catch{break}}t.length&&t.push(t[0].slice()),e.polygon=t}return e}),(0,v.addEvent)(d,"beforeAddingDataLabel",function(t){let e=t.labelOptions,i=t.point,s=e[i.formatPrefix+"TextPath"]||e.textPath;s&&!e.useHTML&&(this.setTextPath(i.getDataLabelPath?.(this)||i.graphic,s),i.dataLabelPath&&!s.enabled&&(i.dataLabelPath=i.dataLabelPath.destroy()))}),d.prototype.setTextPath=d.prototype.setTextPath??function(t,e){let i=this.renderer.url,s=this.text||this,a=s.textPath,{attributes:o,enabled:r}=(0,v.merge)({enabled:!0,attributes:{dy:-5,startOffset:"50%",textAnchor:"middle"}},e);if(t=t||a&&a.path,a?.undo(),t&&r){let e=(0,v.addEvent)(s,"afterModifyTree",e=>{if(t&&r){let a=t.attr("id");a||t.attr("id",a=(0,v.uniqueKey)());let r={x:0,y:0};(0,v.defined)(o.dx)&&(r.dx=o.dx,delete o.dx),(0,v.defined)(o.dy)&&(r.dy=o.dy,delete o.dy),s.attr(r),this.attr({transform:""}),this.box&&(this.box=this.box.destroy());let n=e.nodes.slice(0);e.nodes.length=0,e.nodes[0]={tagName:"textPath",attributes:(0,v.extend)(o,{"text-anchor":o.textAnchor,href:`${i}#${a}`}),children:n}}});s.textPath={path:t,undo:e}}else s.attr({dx:0,dy:0}),delete s.textPath;return this.added&&(s.textCache="",this.renderer.buildText(s)),this});class ex extends ef{constructor(){super(...arguments),this.parentNodeMass=0,this.deferDataLabels=!0}static compose(t,e,i){ef.compose(t,e,i),tj.compose(e),el.compose(e)}accumulateAllPoints(){let t=this.chart,e=[];for(let i of t.series)if(i.is("packedbubble")&&i.reserveSpace()){let t=i.getColumn("value");for(let s=0;s<t.length;s++)e.push([null,null,t[s],i.index,s,{id:s,marker:{radius:0}}])}return e}addLayout(){let t=this.options.layoutAlgorithm=this.options.layoutAlgorithm||{},e=t.type||"packedbubble",i=this.chart.options.chart,s=this.chart.graphLayoutsStorage,a=this.chart.graphLayoutsLookup,o;s||(this.chart.graphLayoutsStorage=s={},this.chart.graphLayoutsLookup=a=[]),(o=s[e])||(t.enableSimulation=(0,v.defined)(i.forExport)?!i.forExport:t.enableSimulation,s[e]=o=new t2[e],o.init(t),a.splice(o.index,0,o)),this.layout=o,this.points.forEach(t=>{t.mass=2,t.degree=1,t.collisionNmb=1}),o.setArea(0,0,this.chart.plotWidth,this.chart.plotHeight),o.addElementsToCollection([this],o.series),o.addElementsToCollection(this.points,o.nodes)}addSeriesLayout(){let t=this.options.layoutAlgorithm=this.options.layoutAlgorithm||{},e=t.type||"packedbubble",i=this.chart.graphLayoutsStorage,s=this.chart.graphLayoutsLookup,a=(0,v.merge)(t,t.parentNodeOptions,{enableSimulation:this.layout.options.enableSimulation}),o=i[e+"-series"];o||(i[e+"-series"]=o=new t2[e],o.init(a),s.splice(o.index,0,o)),this.parentNodeLayout=o,this.createParentNodes()}calculateParentRadius(){let t=this.seriesBox();this.parentNodeRadius=(0,v.clamp)(Math.sqrt(2*this.parentNodeMass/Math.PI)+20,20,t?Math.max(Math.sqrt(Math.pow(t.width,2)+Math.pow(t.height,2))/2+20,20):Math.sqrt(2*this.parentNodeMass/Math.PI)+20),this.parentNode&&(this.parentNode.marker.radius=this.parentNode.radius=this.parentNodeRadius)}calculateZExtremes(){let t=this.chart.series,e=this.options.zMin,i=this.options.zMax,s=1/0,a=-1/0;return e&&i?[e,i]:(t.forEach(t=>{t.getColumn("value").forEach(t=>{(0,v.defined)(t)&&(t>a&&(a=t),t<s&&(s=t))})}),[e=e??s,i=i??a])}checkOverlap(t,e){let i=t[0]-e[0],s=t[1]-e[1];return Math.sqrt(i*i+s*s)-Math.abs(t[2]+e[2])<-.001}createParentNodes(){let t=this.pointClass,e=this.chart,i=this.parentNodeLayout,s=this.layout.options,a,o=this.parentNode,r={radius:this.parentNodeRadius,lineColor:this.color,fillColor:eu(this.color).brighten(.4).get()};s.parentNodeOptions&&(r=(0,v.merge)(s.parentNodeOptions.marker||{},r)),this.parentNodeMass=0,this.points.forEach(t=>{this.parentNodeMass+=Math.PI*Math.pow(t.marker.radius,2)}),this.calculateParentRadius(),i.nodes.forEach(t=>{t.seriesIndex===this.index&&(a=!0)}),i.setArea(0,0,e.plotWidth,e.plotHeight),a||(o||(o=new t(this,{mass:this.parentNodeRadius/2,marker:r,dataLabels:{inside:!1},states:{normal:{marker:r},hover:{marker:r}},dataLabelOnNull:!0,degree:this.parentNodeRadius,isParentNode:!0,seriesIndex:this.index}),this.chart.allParentNodes.push(o)),this.parentNode&&(o.plotX=this.parentNode.plotX,o.plotY=this.parentNode.plotY),this.parentNode=o,i.addElementsToCollection([this],i.series),i.addElementsToCollection([o],i.nodes))}deferLayout(){let t=this.options.layoutAlgorithm;this.visible&&(this.addLayout(),t.splitSeries&&this.addSeriesLayout())}destroy(){this.chart.graphLayoutsLookup&&this.chart.graphLayoutsLookup.forEach(t=>{t.removeElementFromCollection(this,t.series)},this),this.parentNode&&this.parentNodeLayout&&(this.parentNodeLayout.removeElementFromCollection(this.parentNode,this.parentNodeLayout.nodes),this.parentNode.dataLabel&&(this.parentNode.dataLabel=this.parentNode.dataLabel.destroy())),em.destroy.apply(this,arguments)}drawDataLabels(){!this.deferDataLabels&&(em.drawDataLabels.call(this,this.points),this.parentNode&&(this.parentNode.formatPrefix="parentNode",em.drawDataLabels.call(this,[this.parentNode])))}drawGraph(){if(!this.layout||!this.layout.options.splitSeries)return;let t=this.chart,e=this.layout.options.parentNodeOptions.marker,i={fill:e.fillColor||eu(this.color).brighten(.4).get(),opacity:e.fillOpacity,stroke:e.lineColor||this.color,"stroke-width":e.lineWidth??this.options.lineWidth},s={};this.parentNodesGroup=this.plotGroup("parentNodesGroup","parentNode",this.visible?"inherit":"hidden",.1,t.seriesGroup),this.group?.attr({zIndex:2}),this.calculateParentRadius(),this.parentNode&&(0,v.defined)(this.parentNode.plotX)&&(0,v.defined)(this.parentNode.plotY)&&(0,v.defined)(this.parentNodeRadius)&&(s=(0,v.merge)({x:this.parentNode.plotX-this.parentNodeRadius,y:this.parentNode.plotY-this.parentNodeRadius,width:2*this.parentNodeRadius,height:2*this.parentNodeRadius},i),this.parentNode.graphic||(this.graph=this.parentNode.graphic=t.renderer.symbol(i.symbol).add(this.parentNodesGroup)),this.parentNode.graphic.attr(s))}drawTracker(){let t,e=this.parentNode;super.drawTracker(),e&&(t=(0,v.isArray)(e.dataLabels)?e.dataLabels:e.dataLabel?[e.dataLabel]:[],e.graphic&&(e.graphic.element.point=e),t.forEach(t=>{(t.div||t.element).point=e}))}getPointRadius(){let t,e,i,s,a=this.chart,o=a.plotWidth,r=a.plotHeight,n=this.options,l=n.useSimulation,h=Math.min(o,r),p={},d=[],c=a.allDataPoints||[],u=c.length;["minSize","maxSize"].forEach(t=>{let e=parseInt(n[t],10),i=/%$/.test(n[t]);p[t]=i?h*e/100:e*Math.sqrt(u)}),a.minRadius=t=p.minSize/Math.sqrt(u),a.maxRadius=e=p.maxSize/Math.sqrt(u);let g=l?this.calculateZExtremes():[t,e];c.forEach((a,o)=>{i=l?(0,v.clamp)(a[2],g[0],g[1]):a[2],0===(s=this.getRadius(g[0],g[1],t,e,i))&&(s=null),c[o][2]=s,d.push(s)}),this.radii=d}init(){return em.init.apply(this,arguments),ey.call(this),this.eventsToUnbind.push((0,v.addEvent)(this,"updatedData",function(){this.chart.series.forEach(t=>{t.type===this.type&&(t.isDirty=!0)},this)})),this}onMouseUp(t){if(t.fixedPosition&&!t.removed){let e,i=this.layout,s=this.parentNodeLayout;!t.isParentNode&&s&&i.options.dragBetweenSeries&&s.nodes.forEach(s=>{t&&t.marker&&s!==t.series.parentNode&&(e=i.getDistXY(t,s),i.vectorLength(e)-s.marker.radius-t.marker.radius<0&&(s.series.addPoint((0,v.merge)(t.options,{plotX:t.plotX,plotY:t.plotY}),!1),i.removeElementFromCollection(t,i.nodes),t.remove()))}),tj.onMouseUp.apply(this,arguments)}}placeBubbles(t){let e=this.checkOverlap,i=this.positionBubble,s=[],a=1,o=0,r=0,n,l=[],h,p=t.sort((t,e)=>e[2]-t[2]);if(p.length){if(s.push([[0,0,p[0][2],p[0][3],p[0][4]]]),p.length>1)for(s.push([[0,0-p[1][2]-p[0][2],p[1][2],p[1][3],p[1][4]]]),h=2;h<p.length;h++)p[h][2]=p[h][2]||1,e(n=i(s[a][o],s[a-1][r],p[h]),s[a][0])?(s.push([]),r=0,s[a+1].push(i(s[a][o],s[a][0],p[h])),a++,o=0):a>1&&s[a-1][r+1]&&e(n,s[a-1][r+1])?(r++,s[a].push(i(s[a][o],s[a-1][r],p[h])),o++):(o++,s[a].push(n));this.chart.stages=s,this.chart.rawPositions=[].concat.apply([],s),this.resizeRadius(),l=this.chart.rawPositions}return l}pointAttribs(t,e){let i=this.options,s=t&&t.isParentNode,a=i.marker;s&&i.layoutAlgorithm&&i.layoutAlgorithm.parentNodeOptions&&(a=i.layoutAlgorithm.parentNodeOptions.marker);let o=a.fillOpacity,r=em.pointAttribs.call(this,t,e);return 1!==o&&(r["fill-opacity"]=o),r}positionBubble(t,e,i){let s=Math.asin,a=Math.acos,o=Math.pow,r=Math.abs,n=(0,Math.sqrt)(o(t[0]-e[0],2)+o(t[1]-e[1],2)),l=a((o(n,2)+o(i[2]+e[2],2)-o(i[2]+t[2],2))/(2*(i[2]+e[2])*n)),h=s(r(t[0]-e[0])/n),p=(t[1]-e[1]<0?0:Math.PI)+l+h*((t[0]-e[0])*(t[1]-e[1])<0?1:-1),d=Math.cos(p),c=Math.sin(p);return[e[0]+(e[2]+i[2])*c,e[1]-(e[2]+i[2])*d,i[2],i[3],i[4]]}render(){let t=[];em.render.apply(this,arguments),!this.options.dataLabels.allowOverlap&&(this.data.forEach(e=>{(0,v.isArray)(e.dataLabels)&&e.dataLabels.forEach(e=>{t.push(e)})}),this.options.useSimulation&&this.chart.hideOverlappingLabels(t))}resizeRadius(){let t,e,i,s,a,o=this.chart,r=o.rawPositions,n=Math.min,l=Math.max,h=o.plotLeft,p=o.plotTop,d=o.plotHeight,c=o.plotWidth;for(let o of(t=i=1/0,e=s=-1/0,r))a=o[2],t=n(t,o[0]-a),e=l(e,o[0]+a),i=n(i,o[1]-a),s=l(s,o[1]+a);let u=[e-t,s-i],g=[(c-h)/u[0],(d-p)/u[1]],m=n.apply([],g);if(Math.abs(m-1)>1e-10){for(let t of r)t[2]*=m;this.placeBubbles(r)}else o.diffY=d/2+p-i-(s-i)/2,o.diffX=c/2+h-t-(e-t)/2}seriesBox(){let t,e=this.chart,i=this.data,s=Math.max,a=Math.min,o=[e.plotLeft,e.plotLeft+e.plotWidth,e.plotTop,e.plotTop+e.plotHeight];return i.forEach(e=>{(0,v.defined)(e.plotX)&&(0,v.defined)(e.plotY)&&e.marker.radius&&(t=e.marker.radius,o[0]=a(o[0],e.plotX-t),o[1]=s(o[1],e.plotX+t),o[2]=a(o[2],e.plotY-t),o[3]=s(o[3],e.plotY+t))}),(0,v.isNumber)(o.width/o.height)?o:null}setVisible(){let t=this;em.setVisible.apply(t,arguments),t.parentNodeLayout&&t.graph?t.visible?(t.graph.show(),t.parentNode.dataLabel&&t.parentNode.dataLabel.show()):(t.graph.hide(),t.parentNodeLayout.removeElementFromCollection(t.parentNode,t.parentNodeLayout.nodes),t.parentNode.dataLabel&&t.parentNode.dataLabel.hide()):t.layout&&(t.visible?t.layout.addElementsToCollection(t.points,t.layout.nodes):t.points.forEach(e=>{t.layout.removeElementFromCollection(e,t.layout.nodes)}))}translate(){let t,e,i,s=this.chart,a=this.data,o=this.index,r=this.options.useSimulation;for(let n of(this.generatePoints(),(0,v.defined)(s.allDataPoints)||(s.allDataPoints=this.accumulateAllPoints(),this.getPointRadius()),r?i=s.allDataPoints:(i=this.placeBubbles(s.allDataPoints),this.options.draggable=!1),i))n[3]===o&&(t=a[n[4]],e=n[2]??void 0,r||(t.plotX=n[0]-s.plotLeft+s.diffX,t.plotY=n[1]-s.plotTop+s.diffY),(0,v.isNumber)(e)&&(t.marker=(0,v.extend)(t.marker,{radius:e,width:2*e,height:2*e}),t.radius=e));r&&this.deferLayout(),(0,v.fireEvent)(this,"afterTranslate")}}ex.defaultOptions=(0,v.merge)(ef.defaultOptions,{minSize:"10%",maxSize:"50%",sizeBy:"area",zoneAxis:"y",crisp:!1,tooltip:{pointFormat:"Value: {point.value}"},draggable:!0,useSimulation:!0,parentNode:{allowPointSelect:!1},dataLabels:{formatter:function(){let{numberFormatter:t}=this.series.chart,{value:e}=this.point;return(0,v.isNumber)(e)?t(e,-1):""},parentNodeFormatter:function(){return this.name||""},parentNodeTextPath:{enabled:!0},padding:0,style:{transition:"opacity 2000ms"}},layoutAlgorithm:{initialPositions:"circle",initialPositionRadius:20,bubblePadding:5,parentNodeLimit:!1,seriesInteraction:!0,dragBetweenSeries:!1,parentNodeOptions:{maxIterations:400,gravitationalConstant:.03,maxSpeed:50,initialPositionRadius:100,seriesInteraction:!0,marker:{fillColor:null,fillOpacity:1,lineWidth:null,lineColor:null,symbol:"circle"}},enableSimulation:!0,type:"packedbubble",integration:"packedbubble",maxIterations:1e3,splitSeries:!1,maxSpeed:5,gravitationalConstant:.01,friction:-.981},stickyTracking:!1}),(0,v.extend)(ex.prototype,{pointClass:t4,axisTypes:[],directTouch:!0,forces:["barycenter","repulsive"],hasDraggableNodes:!0,invertible:!1,isCartesian:!1,noSharedTooltip:!0,pointArrayMap:["value"],pointValKey:"value",requireSorting:!1,trackerGroups:["group","dataLabelsGroup","parentNodesGroup"],initDataLabels:eb,alignDataLabel:em.alignDataLabel,indexateNodes:eg,onMouseDown:tj.onMouseDown,onMouseMove:tj.onMouseMove,redrawHalo:tj.redrawHalo,searchPoint:eg}),L().registerSeriesType("packedbubble",ex);let{noop:ev}=P(),{area:eP,line:eM,scatter:eL}=L().seriesTypes;class ek extends eL{getGraphPath(){let t=eM.prototype.getGraphPath.call(this),e=t.length+1;for(;e--;)(e===t.length||"M"===t[e][0])&&e>0&&t.splice(e,0,["Z"]);return this.areaPath=t,t}drawGraph(){eP.prototype.drawGraph.call(this)}}ek.defaultOptions=(0,v.merge)(eL.defaultOptions,{fillOpacity:1,marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0,legendSymbol:"rectangle"}),(0,v.extend)(ek.prototype,{type:"polygon",drawTracker:eM.prototype.drawTracker,setStackedPoints:ev}),L().registerSeriesType("polygon",ek);var ew=y(820),eA=y.n(ew);let eS={circular:{gridLineWidth:1,labels:{align:void 0,x:0,y:void 0},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},radial:{gridLineInterpolation:"circle",gridLineWidth:1,labels:{align:"right",padding:5,x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},radialGauge:{gridLineWidth:0,labels:{align:"center",distance:15,x:0,y:void 0},minorGridLineWidth:0,minorTickLength:5,minorTickPosition:"inside",minorTicksPerMajor:10,minorTickWidth:1,tickLength:void 0,tickWidth:2,tickPixelInterval:100,tickPosition:"inside",title:{rotation:0,text:""},zIndex:2}},{defaultOptions:eN}=P(),{composed:eT,noop:eC}=P();!function(t){function e(){this.autoConnect=this.isCircular&&void 0===(this.userMax??this.options.max)&&(0,v.correctFloat)(this.endAngleRad-this.startAngleRad)===(0,v.correctFloat)(2*Math.PI),!this.isCircular&&this.chart.inverted&&this.max++,this.autoConnect&&(0,v.isNumber)(this.max)&&(this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0)}function i(){return()=>{if(this.isRadial&&this.tickPositions&&this.options.labels&&!0!==this.options.labels.allowOverlap)return this.tickPositions.map(t=>this.ticks[t]?.label).filter(t=>!!t)}}function s(){return eC}function a(t,e,i){let s=this.pane.center,a=t.value,o,r,n;return this.isCircular?((0,v.defined)(a)?t.point&&(t.point.shapeArgs||{}).start&&(a=this.chart.inverted?this.translate(t.point.rectPlotY,!0):t.point.x):(r=t.chartX||0,n=t.chartY||0,a=this.translate(Math.atan2(n-i,r-e)-this.startAngleRad,!0)),r=(o=this.getPosition(a)).x,n=o.y):((0,v.defined)(a)||(r=t.chartX,n=t.chartY),(0,v.defined)(r)&&(0,v.defined)(n)&&(i=s[1]+this.chart.plotTop,a=this.translate(Math.min(Math.sqrt(Math.pow(r-e,2)+Math.pow(n-i,2)),s[2]/2)-s[3]/2,!0))),[a,r||0,n||0]}function o(t,e,i){let s=this.pane.center,a=this.chart,o=this.left||0,r=this.top||0,n,l,h=e??s[2]/2-this.offset;return i??(i=this.horiz?0:this.center&&-this.center[3]/2),i&&i>0&&(h+=i),this.isCircular||void 0!==e?((l=this.chart.renderer.symbols.arc(o+s[0],r+s[1],h,h,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0})).xBounds=[o+s[0]],l.yBounds=[r+s[1]-h]):(n=this.postTranslate(this.angleRad,h),l=[["M",this.center[0]+a.plotLeft,this.center[1]+a.plotTop],["L",n.x,n.y]]),l}function r(){this.constructor.prototype.getOffset.call(this);let t=this.options.offset??(this.pane.hasSeriesType("gauge")?"-20%":void 0);(0,v.defined)(t)&&(this.offset=-1*(0,v.relativeLength)(t,this.center[2]/2)),this.chart.axisOffset[this.side]=0}function n(t,e,i){let s=this.chart,a=t=>{if("string"==typeof t){let e=parseInt(t,10);return u.test(t)&&(e=e*h/100),e}return t},o=this.center,{endAngleRad:r,startAngleRad:n}=this,l=Q(i.borderRadius??this.pane.options.borderRadius),h=o[2]/2,p=Math.min(this.offset||0,0),d=this.left||0,c=this.top||0,u=/%$/,g=this.isCircular,m=this.options.plotBands||[],f=m.indexOf(i),b,y,x,P,M,L,k=a(i.outerRadius)??h,w=a(i.innerRadius),A=a(i.thickness),S=!0,N=!0;if(l.radius&&"stack"===l.scope&&f>-1&&(m[f-1]&&m[f-1].to===t&&(S=!1),m[f+1]&&m[f+1].from===e&&(N=!1)),"polygon"===this.options.gridLineInterpolation)L=this.getPlotLinePath({value:t}).concat(this.getPlotLinePath({value:e,reverse:!0}));else{(0,v.isNumber)(this.min)&&(t=Math.max(t,this.min)),(0,v.isNumber)(this.max)&&(e=Math.min(e,this.max));let a=this.translate(t),h=this.translate(e);g||(k=a||0,w=h||0),(0,v.isNumber)(this.min)||(0,v.isNumber)(this.max)||i.color||i.className?"circle"!==i.shape&&g?(b=n+(a||0),y=n+(h||0)):(b=-Math.PI/2,y=1.5*Math.PI,M=!0):(b=n,y=r),k-=p,(0,v.isNumber)(A)&&(A-=p),L=s.renderer.symbols.arc(d+o[0],c+o[1],k,k,{start:Math.min(b,y),end:Math.max(b,y),innerR:w??((0,v.isNumber)(A)?k-A:this.center[3]/2),open:M,borderRadius:l.radius,brStart:S,brEnd:N}),g&&(x=(y+b)/2,P=d+o[0]+o[2]/2*Math.cos(x),L.xBounds=x>-Math.PI/2&&x<Math.PI/2?[P,s.plotWidth]:[0,P],L.yBounds=[c+o[1]+o[2]/2*Math.sin(x)],L.yBounds[0]+=x>-Math.PI&&x<0||x>Math.PI?-10:10)}return L}function l(t){let e=this.pane.center,i=this.chart,s=i.inverted,a=t.reverse,o=this.pane.options.background,r=o?(0,v.splat)(o)[0]:{},n=r.innerRadius||"0%",l=r.outerRadius||"100%",h=e[0]+i.plotLeft,p=e[1]+i.plotTop,d=this.height,c=t.isCrosshair,u=e[3]/2,g=i.time.parse(t.value)||0,m,f,b,y,x,P,M,L,k,w=this.getPosition(g,e[2]/2+(this.isCircular?this.offset:0)),A=w.x,S=w.y;if(c&&(g=(L=this.getCrosshairPosition(t,h,p))[0]||0,A=L[1],S=L[2]),this.isCircular)f=Math.sqrt(Math.pow(A-h,2)+Math.pow(S-p,2)),b="string"==typeof n?(0,v.relativeLength)(n,1):n/f,y="string"==typeof l?(0,v.relativeLength)(l,1):l/f,e&&u&&(b<(m=u/f)&&(b=m),y<m&&(y=m)),k=[["M",h+b*(A-h),p-b*(p-S)],["L",A-(1-y)*(A-h),S+(1-y)*(p-S)]];else{let t=(0,v.clamp)(this.translate(g),0,d);if("circle"===this.options.gridLineInterpolation)k=this.getLinePath(0,t,u);else if(k=[],i[s?"yAxis":"xAxis"].forEach(t=>{t.pane===this.pane&&(x=t)}),x){M=x.tickPositions,x.autoConnect&&(M=M.concat([M[0]])),a&&(M=M.slice().reverse()),t&&(t+=u);for(let e=0;e<M.length;e++)P=x.getPosition(M[e],t),k.push(e?["L",P.x,P.y]:["M",P.x,P.y])}}return k}function h(t,e){let i=this.translate(t),s=(this.center&&this.center[2]||0)/2;return this.postTranslate(this.isCircular?i:this.angleRad,(this.isCircular?e??s:"number"==typeof i&&i<0?0:i??s)-this.offset)}function p(){let t=this.center,e=this.chart,i=this.options.title;return{x:e.plotLeft+t[0]+(i.x||0),y:e.plotTop+t[1]-({high:.5,middle:.25,low:0})[i.align]*t[2]+(i.y||0)}}function d(t){t.beforeSetTickPositions=e,t.createLabelCollector=i,t.getCrosshairPosition=a,t.getLinePath=o,t.getOffset=r,t.getPlotBandPath=n,t.getPlotLinePath=l,t.getPosition=h,t.getTitlePosition=p,t.postTranslate=L,t.setAxisSize=w,t.setAxisTranslation=A,t.setOptions=S}function c(){let t=this.chart,e=this.options,i=t.angular&&this.isXAxis,s=this.pane,a=s?.options;if(!i&&s&&(t.angular||t.polar)){let i=2*Math.PI,s=a.startAngle??(t.angular?-135:0),o=(s-90)*Math.PI/180,r=((a.endAngle??s+(t.angular?270:360))-90)*Math.PI/180;this.angleRad=(e.angle||0)*Math.PI/180,this.startAngleRad=o,this.endAngleRad=r;let n=(o%i+i)%i,l=(r%i+i)%i;n>Math.PI&&(n-=i),l>Math.PI&&(l-=i),this.normalizedStartAngleRad=n,this.normalizedEndAngleRad=l}}function u(t){if(this.chart.angular){let{options:e,pane:i}=this;i.hasSeriesType("gauge")&&(t.tickSize=[e[`${t.prefix}Length`]??10,e[`${t.prefix}Width`]??1],"inside"===e[`${t.prefix}Position`]&&(t.tickSize[0]*=-1))}}function g(t){this.isRadial&&(t.align=void 0,t.preventDefault())}function m(){if(this.chart?.labelCollectors){let t=this.labelCollector?this.chart.labelCollectors.indexOf(this.labelCollector):-1;t>=0&&this.chart.labelCollectors.splice(t,1)}}function f(t){let e,i=this.chart,a=i.angular,o=i.polar,r=this.isXAxis,n=this.coll,l=t.userOptions.pane||0,h=this.pane=i.pane&&i.pane[l];if("colorAxis"===n){this.isRadial=!1;return}if(a){if(a&&r)this.isHidden=!0,this.createLabelCollector=s,this.getOffset=eC,this.redraw=k,this.render=k,this.setCategories=eC,this.setTitle=eC;else d(this);e=!r}else o&&(d(this),e=this.horiz);a||o?(this.isRadial=!0,this.labelCollector||(this.labelCollector=this.createLabelCollector()),this.labelCollector&&i.labelCollectors.push(this.labelCollector)):this.isRadial=!1,h&&e&&(h.axis=this),this.isCircular=e}function b(){this.isRadial&&this.beforeSetTickPositions?.()}function y(t){let e=this.label;if(!e)return;let i=this.axis,s=e.getBBox(),a=i.options.labels,o=(i.translate(this.pos)+i.startAngleRad+Math.PI/2)/Math.PI*180%360,r=Math.round(o),n=(0,v.defined)(a.y)?0:-(.3*s.height),l=a.y,h,p=20,d=a.align,c="end",u=r<0?r+360:r,g=u,m=0,f=0;i.isRadial&&(h=i.getPosition(this.pos,i.center[2]/2+(0,v.relativeLength)(a.distance??-25,i.center[2]/2)+i.offset),"auto"===a.rotation?e.attr({rotation:o}):(0,v.defined)(l)||(l=i.chart.renderer.fontMetrics(e).b-s.height/2),(0,v.defined)(d)||(i.isCircular?(s.width>i.len*i.tickInterval/(i.max-i.min)&&(p=0),d=o>p&&o<180-p?"left":o>180+p&&o<360-p?"right":"center"):d="center",e.attr({align:d})),"auto"===d&&2===i.tickPositions.length&&i.isCircular&&(u>90&&u<180?u=180-u:u>270&&u<=360&&(u=540-u),g>180&&g<=360&&(g=360-g),(i.pane.options.startAngle===r||i.pane.options.startAngle===r+360||i.pane.options.startAngle===r-360)&&(c="start"),d=r>=-90&&r<=90||r>=-360&&r<=-270||r>=270&&r<=360?"start"===c?"right":"left":"start"===c?"left":"right",g>70&&g<110&&(d="center"),u<15||u>=180&&u<195?m=.3*s.height:u>=15&&u<=35?m="start"===c?0:.75*s.height:u>=195&&u<=215?m="start"===c?.75*s.height:0:u>35&&u<=90?m="start"===c?-(.25*s.height):s.height:u>215&&u<=270&&(m="start"===c?s.height:-(.25*s.height)),g<15?f="start"===c?-(.15*s.height):.15*s.height:g>165&&g<=180&&(f="start"===c?.15*s.height:-(.15*s.height)),e.attr({align:d}),e.translate(f,m+n)),t.pos.x=h.x+(a.x||0),t.pos.y=h.y+(l||0))}function x(t){this.axis.getPosition&&(0,v.extend)(t.pos,this.axis.getPosition(this.pos))}function M({options:e}){e.xAxis&&(0,v.merge)(!0,t.radialDefaultOptions.circular,e.xAxis),e.yAxis&&(0,v.merge)(!0,t.radialDefaultOptions.radialGauge,e.yAxis)}function L(t,e){let i=this.chart,s=this.center;return t=this.startAngleRad+t,{x:i.plotLeft+s[0]+Math.cos(t)*e,y:i.plotTop+s[1]+Math.sin(t)*e}}function k(){this.isDirty=!1}function w(){let t,e;this.constructor.prototype.setAxisSize.call(this),this.isRadial&&(this.pane.updateCenter(),t=this.center=this.pane.center.slice(),this.isCircular?(this.sector=this.endAngleRad-this.startAngleRad,this.len=this.width=this.height=t[2]*this.sector/2):(e=this.postTranslate(this.angleRad,t[3]/2),t[0]=e.x-this.chart.plotLeft,t[1]=e.y-this.chart.plotTop,this.len=this.width=this.height=(t[2]-t[3])/2))}function A(){this.constructor.prototype.setAxisTranslation.call(this),this.center&&(this.isCircular?this.transA=(this.endAngleRad-this.startAngleRad)/(this.max-this.min||1):this.transA=(this.center[2]-this.center[3])/2/(this.max-this.min||1),this.isXAxis?this.minPixelPadding=this.transA*this.minPointOffset:this.minPixelPadding=0)}function S(e){let{coll:i}=this,{angular:s,inverted:a,polar:o}=this.chart,r={};s?this.isXAxis||(r=(0,v.merge)(eN.yAxis,t.radialDefaultOptions.radialGauge)):o&&(r=this.horiz?(0,v.merge)(eN.xAxis,t.radialDefaultOptions.circular):(0,v.merge)("xAxis"===i?eN.xAxis:eN.yAxis,t.radialDefaultOptions.radial)),a&&"yAxis"===i&&(r.stackLabels=(0,v.isObject)(eN.yAxis,!0)?eN.yAxis.stackLabels:{},r.reversedStacks=!0);let n=this.options=(0,v.merge)(r,e);n.plotBands||(n.plotBands=[]),(0,v.fireEvent)(this,"afterSetOptions")}function N(t){return!(0,v.defined)(this.options.minorTicks)&&this.pane.hasSeriesType("gauge")?"auto":t.apply(this,Array.prototype.slice.call(arguments,1))}function T(t,e,i,s,a,o,r){let n,l=this.axis;return l.isRadial?["M",e,i,"L",(n=l.getPosition(this.pos,l.center[2]/2+s)).x,n.y]:t.call(this,e,i,s,a,o,r)}t.radialDefaultOptions=(0,v.merge)(eS),t.compose=function(t,e){return(0,v.pushUnique)(eT,"Axis.Radial")&&((0,v.addEvent)(t,"afterInit",c),(0,v.addEvent)(t,"afterTickSize",u),(0,v.addEvent)(t,"autoLabelAlign",g),(0,v.addEvent)(t,"destroy",m),(0,v.addEvent)(t,"init",f),(0,v.addEvent)(t,"initialAxisTranslation",b),(0,v.addEvent)(e,"afterGetLabelPosition",y),(0,v.addEvent)(e,"afterGetPosition",x),(0,v.addEvent)(P(),"setOptions",M),(0,v.wrap)(t.prototype,"getMinorTickInterval",N),(0,v.wrap)(e.prototype,"getMarkPath",T)),t}}(g||(g={}));let eX=g,{defaultOptions:eY}=P(),{composed:eE}=P();function eR(){(this.pane||[]).forEach(t=>{t.render()})}function eI(t){let e=t.args[0].xAxis,i=t.args[0].yAxis,s=t.args[0].chart;e&&i&&("polygon"===i.gridLineInterpolation?(e.startOnTick=!0,e.endOnTick=!0):"polygon"===e.gridLineInterpolation&&s.inverted&&(i.startOnTick=!0,i.endOnTick=!0))}function ez(){this.pane||(this.pane=[]),this.options.pane=(0,v.splat)(this.options.pane||{}),(0,v.splat)(this.userOptions.pane||{}).forEach(t=>{new R(t,this)},this)}function eO(t){let e=t.args.marker,i=this.chart.xAxis[0],s=this.chart.yAxis[0],a=this.chart.inverted,o=a?s:i,r=a?i:s;if(this.chart.polar){t.preventDefault();let i=(e.attr?e.attr("start"):e.start)-o.startAngleRad,s=e.attr?e.attr("r"):e.r,a=(e.attr?e.attr("end"):e.end)-o.startAngleRad,n=e.attr?e.attr("innerR"):e.innerR;t.result.x=i+o.pos,t.result.width=a-i,t.result.y=r.len+r.pos-s,t.result.height=s-n}}function eD(t){let e=this.chart;if(e.polar&&e.hoverPane&&e.hoverPane.axis){t.preventDefault();let i=e.hoverPane.center,s=e.mouseDownX||0,a=e.mouseDownY||0,o=t.args.chartY,r=t.args.chartX,n=2*Math.PI,l=e.hoverPane.axis.startAngleRad,h=e.hoverPane.axis.endAngleRad,p=e.inverted?e.xAxis[0]:e.yAxis[0],d={},c="arc";if(d.x=i[0]+e.plotLeft,d.y=i[1]+e.plotTop,this.zoomHor){let t=l>0?h-l:Math.abs(l)+Math.abs(h),u=Math.atan2(a-e.plotTop-i[1],s-e.plotLeft-i[0])-l,g=Math.atan2(o-e.plotTop-i[1],r-e.plotLeft-i[0])-l;d.r=i[2]/2,d.innerR=i[3]/2,u<=0&&(u+=n),g<=0&&(g+=n),g<u&&(g=[u,u=g][0]),t<n&&l+g>h+(n-t)/2&&(g=u,u=l<=0?l:0);let m=d.start=Math.max(u+l,l),f=d.end=Math.min(g+l,h);if("polygon"===p.options.gridLineInterpolation){let t=e.hoverPane.axis,s=m-t.startAngleRad+t.pos,a=p.getPlotLinePath({value:p.max}),o=t.toValue(s),r=t.toValue(s+(f-m));if(o<t.getExtremes().min){let{min:e,max:i}=t.getExtremes();o=i-(e-o)}if(r<t.getExtremes().min){let{min:e,max:i}=t.getExtremes();r=i-(e-r)}r<o&&(r=[o,o=r][0]),(a=eG(a,o,r,t)).push(["L",i[0]+e.plotLeft,e.plotTop+i[1]]),d.d=a,c="path"}}if(this.zoomVert){let t=e.inverted?e.xAxis[0]:e.yAxis[0],n=Math.sqrt(Math.pow(s-e.plotLeft-i[0],2)+Math.pow(a-e.plotTop-i[1],2)),p=Math.sqrt(Math.pow(r-e.plotLeft-i[0],2)+Math.pow(o-e.plotTop-i[1],2));if(p<n&&(n=[p,p=n][0]),p>i[2]/2&&(p=i[2]/2),n<i[3]/2&&(n=i[3]/2),this.zoomHor||(d.start=l,d.end=h),d.r=p,d.innerR=n,"polygon"===t.options.gridLineInterpolation){let e=t.toValue(t.len+t.pos-n),i=t.toValue(t.len+t.pos-p);d.d=t.getPlotLinePath({value:i}).concat(t.getPlotLinePath({value:e,reverse:!0})),c="path"}}if(this.zoomHor&&this.zoomVert&&"polygon"===p.options.gridLineInterpolation){let t=e.hoverPane.axis,i=d.start||0,s=d.end||0,a=i-t.startAngleRad+t.pos,o=t.toValue(a),r=t.toValue(a+(s-i));if(d.d instanceof Array){let t=d.d.slice(0,d.d.length/2),i=d.d.slice(d.d.length/2,d.d.length);i=[...i].reverse();let s=e.hoverPane.axis;t=eG(t,o,r,s),(i=eG(i,o,r,s))&&(i[0][0]="L"),i=[...i].reverse(),d.d=t.concat(i),c="path"}}t.attrs=d,t.shapeType=c}}function eH(){let t=this.chart;t.polar&&(this.polar=new eJ(this),t.inverted&&(this.isRadialSeries=!0,this.is("column")&&(this.isRadialBar=!0)))}function eB(){let{chart:t,options:e,yAxis:i}=this;if(e.borderRadius&&t.polar&&t.inverted){let t=eY.plotOptions?.[this.type]?.borderRadius,{scope:s,where:a="end"}=Q(e.borderRadius,(0,v.isObject)(t)?t:{});for(let t of this.points){let{shapeArgs:o}=t;if("arc"===t.shapeType&&o){let r="all"===a,n=!0;e.stacking&&"stack"===s&&(r=t.stackY===t.y&&"all"===a,n=t.stackY===t.stackTotal),i.reversed&&([r,n]=[n,r]),o.brStart=r,o.brEnd=n}}}}function eW(){if(this.chart.polar&&this.xAxis){let{xAxis:t,yAxis:e}=this,i=this.chart;this.kdByAngle=i.tooltip&&i.tooltip.shared,this.kdByAngle||i.inverted?this.searchPoint=eF:this.options.findNearestPointBy="xy";let s=this.points,a=s.length;for(;a--;)this.is("column")||this.is("columnrange")||this.polar.toXY(s[a]),i.hasParallelCoordinates||this.yAxis.reversed||((s[a].y??5e-324)<e.min||s[a].x<t.min||s[a].x>t.max?(s[a].isNull=!0,s[a].plotY=NaN):s[a].isNull=s[a].isValid&&!s[a].isValid());this.hasClipCircleSetter||(this.hasClipCircleSetter=!!this.eventsToUnbind.push((0,v.addEvent)(this,"afterRender",function(){let t;if(i.polar&&!1!==this.options.clip){if(t=this.yAxis.pane.center,this.clipCircle)this.clipCircle.animate({x:t[0],y:t[1],r:t[2]/2,innerR:t[3]/2});else{var e,s,a,o,r;let n,l,h;this.clipCircle=(e=i.renderer,s=t[0],a=t[1],o=t[2]/2,r=t[3]/2,n=(0,v.uniqueKey)(),l=e.createElement("clipPath").attr({id:n}).add(e.defs),(h=r?e.arc(s,a,o,r,0,2*Math.PI).add(l):e.circle(s,a,o).add(l)).id=n,h.clipPath=l,h)}this.group.clip(this.clipCircle),this.setClip=P().noop}})))}}function eF(t){let e=this.chart,i=this.xAxis,s=this.yAxis,a=i.pane&&i.pane.center,o=t.chartX-(a&&a[0]||0)-e.plotLeft,r=t.chartY-(a&&a[1]||0)-e.plotTop,n=e.inverted?{clientX:t.chartX-s.pos,plotY:t.chartY-i.pos}:{clientX:180+-180/Math.PI*Math.atan2(o,r)};return this.searchKDTree(n)}function eG(t,e,i,s){let a=s.tickInterval,o=s.tickPositions,r=(0,v.find)(o,t=>t>=i),n=(0,v.find)([...o].reverse(),t=>t<=e);return(0,v.defined)(r)||(r=o[o.length-1]),(0,v.defined)(n)||(n=o[0],r+=a,t[0][0]="L",t.unshift(t[t.length-3])),(t=t.slice(o.indexOf(n),o.indexOf(r)+1))[0][0]="M",t}function eq(t,e){return(0,v.find)(this.pane||[],t=>t.options.id===e)||t.call(this,e)}function eK(t,e,i,s,a,o){let r,n,l,h=this.chart,p=s.inside??!!this.options.stacking;if(h.polar){if(r=e.rectPlotX/Math.PI*180,h.inverted)this.forceDL=h.isInsidePlot(e.plotX,e.plotY),p&&e.shapeArgs?(n=e.shapeArgs,l=this.yAxis.postTranslate(((n.start||0)+(n.end||0))/2-this.xAxis.startAngleRad,e.barX+(e.pointWidth||0)/2),a=(0,v.merge)(a,{x:l.x-h.plotLeft,y:l.y-h.plotTop})):e.tooltipPos&&(a=(0,v.merge)(a,{x:e.tooltipPos[0],y:e.tooltipPos[1]})),s.align=s.align??"center",s.verticalAlign=s.verticalAlign??"middle";else{var d;null===(d=s).align&&(d.align=r>20&&r<160?"left":r>200&&r<340?"right":"center"),null===d.verticalAlign&&(d.verticalAlign=r<45||r>315?"bottom":r>135&&r<225?"top":"middle"),s=d}eA().prototype.alignDataLabel.call(this,e,i,s,a,o),this.isRadialBar&&e.shapeArgs&&e.shapeArgs.start===e.shapeArgs.end?i.hide():i.show()}else t.call(this,e,i,s,a,o)}function eV(){let{chart:t,options:e,xAxis:i,yAxis:s}=this,a=e.stacking,{center:o,reversed:r}=s,{endAngleRad:n,startAngleRad:l}=i,h=n-l,p=e.threshold,d=0,c,u,g,m,f,b=0,y=0,x,P,M,L,k,w,A,S;if(i.isRadial)for(g=(c=this.points).length,m=s.translate(s.min),f=s.translate(s.max),p=e.threshold||0,t.inverted&&(0,v.isNumber)(p)&&(d=s.translate(p),(0,v.defined)(d)&&(d<0?d=0:d>h&&(d=h),this.translatedThreshold=d+l));g--;){if(w=(u=c[g]).barX,P=u.x,M=u.y,u.shapeType="arc",t.inverted){u.plotY=s.translate(M),a&&s.stacking?(k=s.stacking.stacks[(M<0?"-":"")+this.stackKey],this.visible&&k&&k[P]&&!u.isNull&&(L=k[P].points[this.getStackIndicator(void 0,P,this.index).key],b=s.translate(L[0]),y=s.translate(L[1]),(0,v.defined)(b)&&(b=(0,v.clamp)(b,0,h)))):(b=d,y=u.plotY),b>y&&(y=[b,b=y][0]),r?y>m?y=m:b<f?b=f:(b>m||y<f)&&(b=y=h):b<m?b=m:y>f?y=f:(y<m||b>f)&&(b=y=0),s.min>s.max&&(b=y=r?h:0),b+=l,y+=l,o&&(u.barX=w+=o[3]/2),A=Math.max(w,0),S=Math.max(w+(u.pointWidth||0),0);let t=Q(e.borderRadius),i=(0,v.relativeLength)(t.radius,S-A);u.shapeArgs={x:o[0],y:o[1],r:S,innerR:A,start:b,end:y,borderRadius:i},u.opacity=b===y?0:void 0,u.plotY=((0,v.defined)(this.translatedThreshold)&&(b<this.translatedThreshold?b:y))-l}else b=w+l,u.shapeArgs=this.polar.arc(u.yBottom,u.plotY,b,b+(u.pointWidth||0)),u.shapeArgs.borderRadius=0;this.polar.toXY(u),t.inverted?(x=s.postTranslate(u.rectPlotY,w+(u.pointWidth||0)/2),u.tooltipPos=[x.x-t.plotLeft,x.y-t.plotTop]):u.tooltipPos=[u.plotX,u.plotY],o&&(u.ttBelow=u.plotY>o[1])}}function e_(t,e){let i,s,a=this;if(this.chart.polar){e=e||this.points;for(let t=0;t<e.length;t++)if(!e[t].isNull){i=t;break}!1!==this.options.connectEnds&&void 0!==i&&(this.connectEnds=!0,e.splice(e.length,0,e[i]),s=!0),e.forEach(t=>{void 0===t.polarPlotY&&a.polar.toXY(t)})}let o=t.apply(this,[].slice.call(arguments,1));return s&&e.pop(),o}function ej(t,e){let i=this.chart,s={xAxis:[],yAxis:[]};return i.polar?i.axes.forEach(t=>{if("colorAxis"===t.coll)return;let a=t.isXAxis,o=t.center,r=e.chartX-o[0]-i.plotLeft,n=e.chartY-o[1]-i.plotTop;s[a?"xAxis":"yAxis"].push({axis:t,value:t.translate(a?Math.PI-Math.atan2(r,n):Math.sqrt(Math.pow(r,2)+Math.pow(n,2)),!0)})}):s=t.call(this,e),s}function eU(t,e){this.chart.polar||t.call(this,e)}function eZ(t,e){let i=this,s=this.chart,a=this.group,o=this.markerGroup,r=this.xAxis&&this.xAxis.center,n=s.plotLeft,l=s.plotTop,h=this.options.animation,p,d,c,u,g,m;s.polar?i.isRadialBar?e||(i.startAngleRad=i.translatedThreshold??i.xAxis.startAngleRad,P().seriesTypes.pie.prototype.animate.call(i,e)):(h=(0,v.animObject)(h),i.is("column")?e||(d=r[3]/2,i.points.forEach(t=>{c=t.graphic,g=(u=t.shapeArgs)&&u.r,m=u&&u.innerR,c&&u&&(c.attr({r:d,innerR:d}),c.animate({r:g,innerR:m},i.options.animation))})):e?(p={translateX:r[0]+n,translateY:r[1]+l,scaleX:.001,scaleY:.001},a.attr(p),o&&o.attr(p)):(p={translateX:n,translateY:l,scaleX:1,scaleY:1},a.animate(p,h),o&&o.animate(p,h))):t.call(this,e)}function e$(t,e,i,s){let a,o;if(this.chart.polar)if(s){let t=(o=function t(e,i,s,a){let o,r,n,l,h,p,d=+!!a,c=(o=i>=0&&i<=e.length-1?i:i<0?e.length-1+i:0)-1<0?e.length-(1+d):o-1,u=o+1>e.length-1?d:o+1,g=e[c],m=e[u],f=g.plotX,b=g.plotY,y=m.plotX,x=m.plotY,v=e[o].plotX,P=e[o].plotY;r=(1.5*v+f)/2.5,n=(1.5*P+b)/2.5,l=(1.5*v+y)/2.5,h=(1.5*P+x)/2.5;let M=Math.sqrt(Math.pow(r-v,2)+Math.pow(n-P,2)),L=Math.sqrt(Math.pow(l-v,2)+Math.pow(h-P,2)),k=Math.atan2(n-P,r-v);p=Math.PI/2+(k+Math.atan2(h-P,l-v))/2,Math.abs(k-p)>Math.PI/2&&(p-=Math.PI),r=v+Math.cos(p)*M,n=P+Math.sin(p)*M;let w={rightContX:l=v+Math.cos(Math.PI+p)*L,rightContY:h=P+Math.sin(Math.PI+p)*L,leftContX:r,leftContY:n,plotX:v,plotY:P};return s&&(w.prevPointCont=t(e,c,!1,a)),w}(e,s,!0,this.connectEnds)).prevPointCont&&o.prevPointCont.rightContX,i=o.prevPointCont&&o.prevPointCont.rightContY;a=["C",(0,v.isNumber)(t)?t:o.plotX,(0,v.isNumber)(i)?i:o.plotY,(0,v.isNumber)(o.leftContX)?o.leftContX:o.plotX,(0,v.isNumber)(o.leftContY)?o.leftContY:o.plotY,o.plotX,o.plotY]}else a=["M",i.plotX,i.plotY];else a=t.call(this,e,i,s);return a}function eQ(t,e,i=this.plotX,s=this.plotY){let{series:a}=this,{chart:o}=a||{};return o?.polar&&(0,v.isNumber)(i)&&(0,v.isNumber)(s)?[i+(e?o.plotLeft:0),s+(e?o.plotTop:0)]:t.call(this,e,i,s)}class eJ{static compose(t,e,i,s,a,o,r,n,l,h){if(R.compose(e,i),eX.compose(t,a),(0,v.pushUnique)(eE,"Polar")){let t=e.prototype,a=o.prototype,p=i.prototype,d=s.prototype;if((0,v.addEvent)(e,"afterDrawChartBox",eR),(0,v.addEvent)(e,"createAxes",ez),(0,v.addEvent)(e,"init",eI),(0,v.wrap)(t,"get",eq),(0,v.wrap)(p,"getCoordinates",ej),(0,v.wrap)(p,"pinch",eU),(0,v.addEvent)(i,"getSelectionMarkerAttrs",eD),(0,v.addEvent)(i,"getSelectionBox",eO),(0,v.addEvent)(s,"afterInit",eH),(0,v.addEvent)(s,"afterColumnTranslate",eB,{order:9}),(0,v.addEvent)(s,"afterTranslate",eW,{order:2}),(0,v.addEvent)(s,"afterColumnTranslate",eV,{order:4}),(0,v.wrap)(d,"animate",eZ),(0,v.wrap)(a,"pos",eQ),n){let t=n.prototype;(0,v.wrap)(t,"alignDataLabel",eK),(0,v.wrap)(t,"animate",eZ)}if(l){let t=l.prototype;(0,v.wrap)(t,"getGraphPath",e_)}if(h){let t=h.prototype;(0,v.wrap)(t,"getPointSpline",e$),r&&(r.prototype.getPointSpline=t.getPointSpline)}}}constructor(t){this.series=t}arc(t,e,i,s){let a=this.series,o=a.xAxis.center,r=a.yAxis.len,n=o[3]/2,l=r-e+n,h=r-(t??r)+n;return a.yAxis.reversed&&(l<0&&(l=n),h<0&&(h=n)),{x:o[0],y:o[1],r:l,innerR:h,start:i,end:s}}toXY(t){let e=this.series,i=e.chart,s=e.xAxis,a=e.yAxis,o=t.plotX,r=i.inverted,n=t.y,l=t.plotY,h=r?o:a.len-l,p;if(r&&e&&!e.isRadialBar&&(t.plotY=l=(0,v.isNumber)(n)?a.translate(n):0),t.rectPlotX=o,t.rectPlotY=l,a.center&&(h+=a.center[3]/2),(0,v.isNumber)(l)){let e=r?a.postTranslate(l,h):s.postTranslate(o,h);t.plotX=t.polarPlotX=e.x-i.plotLeft,t.plotY=t.polarPlotY=e.y-i.plotTop}e.kdByAngle?((p=(o/Math.PI*180+(s.pane.options.startAngle||0))%360)<0&&(p+=360),t.clientX=p):t.clientX=t.plotX}}var e0=y(184),e1=y.n(e0);let{composed:e2}=P();!function(t){function e(){let t=this.waterfall?.stacks;t&&(t.changed=!1,delete t.alreadyChanged)}function i(){let t=this.options.stackLabels;t?.enabled&&this.waterfall?.stacks&&this.waterfall.renderStackTotals()}function s(){this.waterfall||(this.waterfall=new o(this))}function a(){let t=this.axes;for(let e of this.series)if(e.options.stacking){for(let e of t)!e.isXAxis&&e.waterfall&&(e.waterfall.stacks.changed=!0);break}}t.compose=function(t,o){(0,v.pushUnique)(e2,"Axis.Waterfall")&&((0,v.addEvent)(t,"init",s),(0,v.addEvent)(t,"afterBuildStacks",e),(0,v.addEvent)(t,"afterRender",i),(0,v.addEvent)(o,"beforeRedraw",a))};class o{constructor(t){this.axis=t,this.stacks={changed:!1}}renderStackTotals(){let t=this.axis,e=t.waterfall?.stacks,i=t.stacking?.stackTotalGroup,s=new(e1())(t,t.options.stackLabels||{},!1,0,void 0);this.dummyStackItem=s,i&&(0,v.objectEach)(e,t=>{(0,v.objectEach)(t,(t,e)=>{s.total=t.stackTotal,s.x=+e,t.label&&(s.label=t.label),e1().prototype.render.call(s,i),t.label=s.label,delete s.label})}),s.total=null}}t.Composition=o}(m||(m={}));let e3=m;class e5 extends H().prototype.pointClass{getClassName(){let t=tf().prototype.getClassName.call(this);return this.isSum?t+=" highcharts-sum":this.isIntermediateSum&&(t+=" highcharts-intermediate-sum"),t}isValid(){return(0,v.isNumber)(this.y)||this.isSum||!!this.isIntermediateSum}}let{column:e8,line:e4}=L().seriesTypes;function e9(t,e){return Object.hasOwnProperty.call(t,e)}class e6 extends e8{generatePoints(){e8.prototype.generatePoints.apply(this);let t=this.getColumn("y",!0);for(let e=0,i=this.points.length;e<i;e++){let i=this.points[e],s=t[e];(0,v.isNumber)(s)&&(i.isIntermediateSum||i.isSum)&&(i.y=(0,v.correctFloat)(s))}}processData(t){let e,i,s,a,o,r=this.options,n=this.getColumn("y"),l=this.getColumn("isSum"),h=this.getColumn("isIntermediateSum"),p=n.length,d=r.threshold||0;i=e=s=a=0;for(let t=0;t<p;t++)"sum"===(o=n[t])||l[t]?n[t]=(0,v.correctFloat)(i):"intermediateSum"===o||h[t]?(n[t]=(0,v.correctFloat)(e),e=0):(i+=o,e+=o),s=Math.min(i,s),a=Math.max(i,a);super.processData.call(this,t),r.stacking||(this.dataMin=s+d,this.dataMax=a)}toYData(t){return t.isSum?"sum":t.isIntermediateSum?"intermediateSum":t.y}pointAttribs(t,e){let i=this.options.upColor;i&&t&&!t.options.color&&(0,v.isNumber)(t.y)&&(t.color=t.y>0?i:void 0);let s=e8.prototype.pointAttribs.call(this,t,e);return delete s.dashstyle,s}getGraphPath(){return this.graph?.pathArray||[["M",0,0]]}getCrispPath(){let t=this.points.filter(t=>(0,v.isNumber)(t.y)),e=this.yAxis,i=t.length,s=this.graph?.strokeWidth()||0,a=this.xAxis.reversed,o=this.yAxis.reversed,r=this.options.stacking,n=[];for(let l=1;l<i;l++){if(!(this.options.connectNulls||(0,v.isNumber)(this.data[t[l].index-1].y)))continue;let i=t[l].box,h=t[l-1],p=h.y||0,d=t[l-1].box;if(!i||!d)continue;let c=e.waterfall?.stacks[this.stackKey],u=p>0?-d.height:0;if(c&&d&&i){let t,p=c[l-1];t=r?(0,v.crisp)(e.translate(p.connectorThreshold||0,!1,!0,!1,!0)+(o?u:0),s):(0,v.crisp)(d.y+(h.minPointLengthOffset||0),s),n.push(["M",(d.x||0)+(a?0:d.width||0),t],["L",(i.x||0)+(a&&i.width||0),t])}if(d&&n.length&&(!r&&p<0&&!o||p>0&&o)){let t=n[n.length-2];t&&"number"==typeof t[2]&&(t[2]+=d.height||0);let e=n[n.length-1];e&&"number"==typeof e[2]&&(e[2]+=d.height||0)}}return n}drawGraph(){e4.prototype.drawGraph.call(this),this.graph?.animate({d:this.getCrispPath()})}setStackedPoints(t){let e=this.options,i=t.waterfall?.stacks,s=e.threshold||0,a=this.stackKey,o=this.getColumn("x"),r=this.getColumn("y"),n=o.length,l=s,h=l,p,d=0,c=0,u=0,g,m,f,b,y,x,P,M,L=(t,e,i,s)=>{if(p){if(g)for(;i<g;i++)p.stackState[i]+=s;else p.stackState[0]=t,g=p.stackState.length;p.stackState.push(p.stackState[g-1]+e)}};if(t.stacking&&i&&this.reserveSpace()){M=i.changed,(P=i.alreadyChanged)&&0>P.indexOf(a)&&(M=!0),i[a]||(i[a]={});let t=i[a];if(t)for(let i=0;i<n;i++)(!t[x=o[i]]||M)&&(t[x]={negTotal:0,posTotal:0,stackTotal:0,threshold:0,stateIndex:0,stackState:[],label:M&&t[x]?t[x].label:void 0}),p=t[x],(y=r[i])>=0?p.posTotal+=y:p.negTotal+=y,b=e.data?.[i],m=p.absolutePos=p.posTotal,f=p.absoluteNeg=p.negTotal,p.stackTotal=m+f,g=p.stackState.length,(0,v.isObject)(b,!0)&&b.isIntermediateSum?(L(u,c,0,u),u=c,c=s,l^=h,h^=l,l^=h):(0,v.isObject)(b,!0)&&b.isSum?(L(s,d,g,0),l=s):(L(l,y,0,d),b&&(d+=y,c+=y)),p.stateIndex++,p.threshold=l,l+=p.stackTotal;i.changed=!1,i.alreadyChanged||(i.alreadyChanged=[]),i.alreadyChanged.push(a)}}getExtremes(){let t,e,i=this.options.stacking,s=this.yAxis,a=s.waterfall?.stacks;return i&&a?(t=this.stackedYNeg=[],e=this.stackedYPos=[],"overlap"===i?(0,v.objectEach)(a[this.stackKey],function(i){t.push((0,v.arrayMin)(i.stackState)),e.push((0,v.arrayMax)(i.stackState))}):(0,v.objectEach)(a[this.stackKey],function(i){t.push(i.negTotal+i.threshold),e.push(i.posTotal+i.threshold)}),{dataMin:(0,v.arrayMin)(t),dataMax:(0,v.arrayMax)(e)}):{dataMin:this.dataMin,dataMax:this.dataMax}}}e6.defaultOptions=(0,v.merge)(e8.defaultOptions,{dataLabels:{inside:!0},lineWidth:1,lineColor:"var(--highcharts-neutral-color-80)",dashStyle:"Dot",borderColor:"var(--highcharts-neutral-color-80)",states:{hover:{lineWidthPlus:0}}}),e6.compose=e3.compose,(0,v.extend)(e6.prototype,{pointValKey:"y",showLine:!0,pointClass:e5}),(0,v.addEvent)(e6,"afterColumnTranslate",function(){let{options:t,points:e,yAxis:i}=this,s=t.minPointLength??5,a=s/2,o=t.threshold||0,r=t.stacking,n=i.waterfall?.stacks[this.stackKey],l=this.getColumn("y",!0),h=o,p=o,d,c,u;for(let t=0;t<e.length;t++){let g=e[t],m=l[t],f=g.shapeArgs,b=(0,v.extend)({x:0,y:0,width:0,height:0},f||{});g.box=b;let y=[0,m],x=g.y||0;if(r){if(n){let e=n[t];"overlap"===r?(c=e.stackState[e.stateIndex--],d=x>=0?c:c-x,e9(e,"absolutePos")&&delete e.absolutePos,e9(e,"absoluteNeg")&&delete e.absoluteNeg):(x>=0?(c=e.threshold+e.posTotal,e.posTotal-=x,d=c):(c=e.threshold+e.negTotal,e.negTotal-=x,d=c-x),!e.posTotal&&(0,v.isNumber)(e.absolutePos)&&e9(e,"absolutePos")&&(e.posTotal=e.absolutePos,delete e.absolutePos),!e.negTotal&&(0,v.isNumber)(e.absoluteNeg)&&e9(e,"absoluteNeg")&&(e.negTotal=e.absoluteNeg,delete e.absoluteNeg)),g.isSum||(e.connectorThreshold=e.threshold+e.stackTotal),u=d-Math.abs(x),i.reversed&&([d,u]=[u,d]),g.below=d<=o,b.y=i.translate(d,!1,!0,!1,!0),b.height=i.translate(u,!1,!0,!1,!0)-b.y;let s=i.waterfall?.dummyStackItem;s&&(s.x=t,s.label=n[t].label,s.setOffset(this.pointXOffset||0,this.barW||0,this.stackedYNeg[t],this.stackedYPos[t],void 0,this.xAxis))}}else d=Math.max(p,p+x)+y[0],b.y=i.translate(d,!1,!0,!1,!0),g.isSum?(b.y=i.translate(y[1],!1,!0,!1,!0),b.height=Math.min(i.translate(y[0],!1,!0,!1,!0),i.len)-b.y,g.below=y[1]<=o):g.isIntermediateSum?(x>=0?(d=y[1]+h,u=h):(d=h,u=y[1]+h),i.reversed&&([d,u]=[u,d]),b.y=i.translate(d,!1,!0,!1,!0),b.height=Math.abs(b.y-Math.min(i.translate(u,!1,!0,!1,!0),i.len)),h+=y[1],g.below=d<=o):(b.height=m>0?i.translate(p,!1,!0,!1,!0)-b.y:i.translate(p+m,!1,!0,!1,!0)-i.translate(p,!1,!0,!1,!0),g.below=(p+=m)<o);b.height<0&&(b.y+=b.height,b.height*=-1),g.plotY=b.y,g.yBottom=b.y+b.height,b.height<=s&&!g.isNull?(b.height=s,b.y-=a,g.yBottom=b.y+b.height,g.plotY=b.y,x<0?g.minPointLengthOffset=-a:g.minPointLengthOffset=a):(g.isNull&&(b.width=0),g.minPointLengthOffset=0);let P=g.plotY+(g.negative?b.height:0);g.below&&(g.plotY+=b.height),g.tooltipPos&&(this.chart.inverted?g.tooltipPos[0]=i.len-P:g.tooltipPos[1]=P),g.isInside=this.isPointInside(g);let M=(0,v.crisp)(g.yBottom,this.borderWidth);b.y=(0,v.crisp)(b.y,this.borderWidth),b.height=M-b.y,(0,v.merge)(!0,g.shapeArgs,b)}},{order:2}),L().registerSeriesType("waterfall",e6);let e7=P();e7.RadialAxis=eX,tA.compose(e7.Axis,e7.Chart,e7.Legend),ex.compose(e7.Axis,e7.Chart,e7.Legend),R.compose(e7.Chart,e7.Pointer),eJ.compose(e7.Axis,e7.Chart,e7.Pointer,e7.Series,e7.Tick,e7.Point,L().seriesTypes.areasplinerange,L().seriesTypes.column,L().seriesTypes.line,L().seriesTypes.spline),e6.compose(e7.Axis,e7.Chart);let it=e7;return x.default})());
|
package/highcharts-more.src.d.ts
CHANGED
|
@@ -6,10 +6,14 @@
|
|
|
6
6
|
import * as globals from "./globals.src";
|
|
7
7
|
import * as _Highcharts from "./highcharts.src";
|
|
8
8
|
declare module "./highcharts.src" {
|
|
9
|
+
/**
|
|
10
|
+
* The point key used to position a box plot data label.
|
|
11
|
+
*/
|
|
12
|
+
type BoxPlotPointValKey = ("high"|"low"|"median"|"q1"|"q3");
|
|
9
13
|
interface BorderRadiusOptionsObject {
|
|
10
|
-
radius
|
|
11
|
-
scope
|
|
12
|
-
where
|
|
14
|
+
radius?: (number|string);
|
|
15
|
+
scope?: ("individual"|"point"|"stack");
|
|
16
|
+
where?: ("all"|"end");
|
|
13
17
|
}
|
|
14
18
|
interface Point {
|
|
15
19
|
/**
|