@ntlab/ntjs-assets 2.0.21 → 2.0.22
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/assets/js/cdn.json +1 -1
- package/assets/js/highcharts/css/highcharts.css +74 -0
- package/assets/js/highcharts/es-modules/Accessibility/Components/LegendComponent.js +1 -1
- package/assets/js/highcharts/es-modules/Accessibility/Components/SeriesComponent/SeriesComponent.js +1 -1
- package/assets/js/highcharts/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +9 -2
- package/assets/js/highcharts/es-modules/Core/Axis/Axis.js +25 -15
- package/assets/js/highcharts/es-modules/Core/Axis/AxisDefaults.js +3 -2
- package/assets/js/highcharts/es-modules/Core/Axis/Color/ColorAxis.js +1 -1
- package/assets/js/highcharts/es-modules/Core/Axis/Color/ColorAxisDefaults.js +2 -2
- package/assets/js/highcharts/es-modules/Core/Axis/GridAxis.js +1 -1
- package/assets/js/highcharts/es-modules/Core/Axis/OrdinalAxis.js +1 -1
- package/assets/js/highcharts/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +10 -0
- package/assets/js/highcharts/es-modules/Core/Axis/RadialAxis.js +19 -113
- package/assets/js/highcharts/es-modules/Core/Axis/RadialAxisDefaults.js +128 -0
- package/assets/js/highcharts/es-modules/Core/Axis/Tick.js +9 -13
- package/assets/js/highcharts/es-modules/Core/Chart/Chart.js +21 -17
- package/assets/js/highcharts/es-modules/Core/Chart/ChartDefaults.js +4 -2
- package/assets/js/highcharts/es-modules/Core/Chart/StockChart.js +5 -9
- package/assets/js/highcharts/es-modules/Core/Defaults.js +180 -91
- package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGElement.js +50 -28
- package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGLabel.js +6 -3
- package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGRenderer.js +38 -80
- package/assets/js/highcharts/es-modules/Core/Renderer/SVG/Symbols.js +9 -5
- package/assets/js/highcharts/es-modules/Core/Series/DataLabel.js +17 -10
- package/assets/js/highcharts/es-modules/Core/Series/Point.js +4 -3
- package/assets/js/highcharts/es-modules/Core/Series/Series.js +24 -15
- package/assets/js/highcharts/es-modules/Core/Series/SeriesDefaults.js +15 -0
- package/assets/js/highcharts/es-modules/Core/Templating.js +4 -1
- package/assets/js/highcharts/es-modules/Core/Tooltip.js +17 -55
- package/assets/js/highcharts/es-modules/Core/Utilities.js +16 -0
- package/assets/js/highcharts/es-modules/Data/Converters/CSVConverter.js +1 -1
- package/assets/js/highcharts/es-modules/Data/DataCursor.js +34 -16
- package/assets/js/highcharts/es-modules/Data/DataPool.js +1 -1
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Controllables/Controllable.js +3 -0
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +0 -3
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +0 -3
- package/assets/js/highcharts/es-modules/Extensions/Annotations/EventEmitter.js +6 -6
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +2 -0
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/CrookedLine.js +1 -0
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/Fibonacci.js +4 -2
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +2 -1
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/InfinityLine.js +2 -1
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/Measure.js +4 -3
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/Pitchfork.js +11 -5
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/TimeCycles.js +2 -1
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/Tunnel.js +4 -2
- package/assets/js/highcharts/es-modules/Extensions/Annotations/Types/VerticalLine.js +2 -1
- package/assets/js/highcharts/es-modules/Extensions/Boost/BoostChart.js +11 -3
- package/assets/js/highcharts/es-modules/Extensions/Boost/BoostSeries.js +7 -4
- package/assets/js/highcharts/es-modules/Extensions/Boost/WGLRenderer.js +11 -2
- package/assets/js/highcharts/es-modules/Extensions/Data.js +3 -3
- package/assets/js/highcharts/es-modules/Extensions/DataGrouping/DataGroupingSeriesComposition.js +1 -0
- package/assets/js/highcharts/es-modules/Extensions/DownloadURL.js +3 -0
- package/assets/js/highcharts/es-modules/Extensions/DragPanes/AxisResizer.js +1 -2
- package/assets/js/highcharts/es-modules/Extensions/DraggablePoints/DragDropProps.js +17 -0
- package/assets/js/highcharts/es-modules/Extensions/DraggablePoints/DraggablePoints.js +1 -0
- package/assets/js/highcharts/es-modules/Extensions/Drilldown/Drilldown.js +14 -14
- package/assets/js/highcharts/es-modules/Extensions/Exporting/Exporting.js +13 -18
- package/assets/js/highcharts/es-modules/Extensions/Exporting/ExportingDefaults.js +8 -6
- package/assets/js/highcharts/es-modules/Extensions/OfflineExporting/OfflineExporting.js +38 -30
- package/assets/js/highcharts/es-modules/Extensions/Pane/PaneDefaults.js +11 -0
- package/assets/js/highcharts/es-modules/Extensions/RegexLimits.js +1 -0
- package/assets/js/highcharts/es-modules/Extensions/ScrollablePlotArea.js +19 -17
- package/assets/js/highcharts/es-modules/Extensions/Themes/BrandDark.js +13 -1
- package/assets/js/highcharts/es-modules/Maps/MapNavigation.js +5 -3
- package/assets/js/highcharts/es-modules/Maps/MapView.js +5 -5
- package/assets/js/highcharts/es-modules/Maps/Projection.js +39 -20
- package/assets/js/highcharts/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +10 -231
- package/assets/js/highcharts/es-modules/Series/ArcDiagram/ArcDiagramSeriesDefaults.js +245 -0
- package/assets/js/highcharts/es-modules/Series/Area/AreaSeries.js +2 -222
- package/assets/js/highcharts/es-modules/Series/Area/AreaSeriesDefaults.js +239 -0
- package/assets/js/highcharts/es-modules/Series/AreaRange/AreaRangeSeries.js +0 -133
- package/assets/js/highcharts/es-modules/Series/AreaRange/AreaRangeSeriesDefaults.js +273 -0
- package/assets/js/highcharts/es-modules/Series/BoxPlot/BoxPlotSeries.js +36 -38
- package/assets/js/highcharts/es-modules/Series/Bubble/BubbleSeries.js +17 -6
- package/assets/js/highcharts/es-modules/Series/Candlestick/CandlestickSeries.js +9 -11
- package/assets/js/highcharts/es-modules/Series/ColorMapComposition.js +28 -4
- package/assets/js/highcharts/es-modules/Series/Column/ColumnDataLabel.js +1 -1
- package/assets/js/highcharts/es-modules/Series/Column/ColumnSeries.js +25 -30
- package/assets/js/highcharts/es-modules/Series/DataModifyComposition.js +26 -2
- package/assets/js/highcharts/es-modules/Series/DotPlot/DotPlotSeries.js +37 -27
- package/assets/js/highcharts/es-modules/Series/DotPlot/DotPlotSeriesDefaults.js +3 -2
- package/assets/js/highcharts/es-modules/Series/Dumbbell/DumbbellSeries.js +1 -39
- package/assets/js/highcharts/es-modules/Series/Dumbbell/DumbbellSeriesDefaults.js +29 -0
- package/assets/js/highcharts/es-modules/Series/Flags/FlagsSeries.js +2 -1
- package/assets/js/highcharts/es-modules/Series/GeoHeatmap/GeoHeatmapSeries.js +3 -10
- package/assets/js/highcharts/es-modules/Series/HLC/HLCSeries.js +4 -5
- package/assets/js/highcharts/es-modules/Series/MapLine/MapLineSeriesDefaults.js +7 -6
- package/assets/js/highcharts/es-modules/Series/MapPoint/MapPointSeriesDefaults.js +17 -11
- package/assets/js/highcharts/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +1 -1
- package/assets/js/highcharts/es-modules/Series/Networkgraph/ReingoldFruchtermanLayout.js +1 -1
- package/assets/js/highcharts/es-modules/Series/OHLC/OHLCSeries.js +3 -5
- package/assets/js/highcharts/es-modules/Series/Organization/OrganizationSeries.js +17 -19
- package/assets/js/highcharts/es-modules/Series/Organization/OrganizationSeriesDefaults.js +1 -1
- package/assets/js/highcharts/es-modules/Series/PackedBubble/PackedBubbleLayout.js +3 -3
- package/assets/js/highcharts/es-modules/Series/PackedBubble/PackedBubbleSeries.js +3 -3
- package/assets/js/highcharts/es-modules/Series/PackedBubble/PackedBubbleSeriesDefaults.js +0 -1
- package/assets/js/highcharts/es-modules/Series/Pyramid/PyramidSeriesDefaults.js +3 -3
- package/assets/js/highcharts/es-modules/Series/Sankey/SankeySeries.js +5 -6
- package/assets/js/highcharts/es-modules/Series/Sankey/SankeySeriesDefaults.js +1 -1
- package/assets/js/highcharts/es-modules/Series/SeriesOnPointComposition.js +2 -2
- package/assets/js/highcharts/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +1 -1
- package/assets/js/highcharts/es-modules/Series/Treegraph/TreegraphLink.js +12 -7
- package/assets/js/highcharts/es-modules/Series/Treegraph/TreegraphSeries.js +8 -9
- package/assets/js/highcharts/es-modules/Series/Treemap/TreemapSeries.js +8 -8
- package/assets/js/highcharts/es-modules/Series/Treemap/TreemapSeriesDefaults.js +1 -1
- package/assets/js/highcharts/es-modules/Series/Variwide/VariwideSeries.js +4 -4
- package/assets/js/highcharts/es-modules/Series/Venn/VennSeriesDefaults.js +2 -2
- package/assets/js/highcharts/es-modules/Series/Waterfall/WaterfallSeries.js +11 -12
- package/assets/js/highcharts/es-modules/Series/XRange/XRangeSeries.js +4 -4
- package/assets/js/highcharts/es-modules/Stock/Navigator/Navigator.js +2 -5
- package/assets/js/highcharts/es-modules/Stock/Navigator/NavigatorDefaults.js +11 -0
- package/assets/js/highcharts/es-modules/Stock/Navigator/NavigatorSymbols.js +9 -10
- package/assets/js/highcharts/es-modules/Stock/RangeSelector/RangeSelector.js +162 -187
- package/assets/js/highcharts/es-modules/Stock/RangeSelector/RangeSelectorComposition.js +32 -74
- package/assets/js/highcharts/es-modules/Stock/Scrollbar/Scrollbar.js +6 -7
- package/assets/js/highcharts/es-modules/masters/highcharts-more.src.js +2 -0
- package/assets/js/highcharts/highcharts-3d.js +1 -1
- package/assets/js/highcharts/highcharts-3d.src.js +1 -1
- package/assets/js/highcharts/highcharts-gantt.js +3 -3
- package/assets/js/highcharts/highcharts-gantt.src.js +2008 -906
- package/assets/js/highcharts/highcharts-more.js +2 -2
- package/assets/js/highcharts/highcharts-more.src.js +234 -313
- package/assets/js/highcharts/highcharts.js +3 -3
- package/assets/js/highcharts/highcharts.src.js +743 -616
- package/assets/js/highcharts/highmaps.js +3 -3
- package/assets/js/highcharts/highmaps.src.js +862 -673
- package/assets/js/highcharts/highstock.js +3 -3
- package/assets/js/highcharts/highstock.src.js +1016 -935
- package/assets/js/highcharts/indicators/acceleration-bands.js +1 -1
- package/assets/js/highcharts/indicators/acceleration-bands.src.js +1 -1
- package/assets/js/highcharts/indicators/accumulation-distribution.js +1 -1
- package/assets/js/highcharts/indicators/accumulation-distribution.src.js +1 -1
- package/assets/js/highcharts/indicators/ao.js +1 -1
- package/assets/js/highcharts/indicators/ao.src.js +1 -1
- package/assets/js/highcharts/indicators/apo.js +1 -1
- package/assets/js/highcharts/indicators/apo.src.js +1 -1
- package/assets/js/highcharts/indicators/aroon-oscillator.js +1 -1
- package/assets/js/highcharts/indicators/aroon-oscillator.src.js +1 -1
- package/assets/js/highcharts/indicators/aroon.js +1 -1
- package/assets/js/highcharts/indicators/aroon.src.js +1 -1
- package/assets/js/highcharts/indicators/atr.js +1 -1
- package/assets/js/highcharts/indicators/atr.src.js +1 -1
- package/assets/js/highcharts/indicators/bollinger-bands.js +1 -1
- package/assets/js/highcharts/indicators/bollinger-bands.src.js +1 -1
- package/assets/js/highcharts/indicators/cci.js +1 -1
- package/assets/js/highcharts/indicators/cci.src.js +1 -1
- package/assets/js/highcharts/indicators/chaikin.js +1 -1
- package/assets/js/highcharts/indicators/chaikin.src.js +1 -1
- package/assets/js/highcharts/indicators/cmf.js +1 -1
- package/assets/js/highcharts/indicators/cmf.src.js +1 -1
- package/assets/js/highcharts/indicators/cmo.js +1 -1
- package/assets/js/highcharts/indicators/cmo.src.js +1 -1
- package/assets/js/highcharts/indicators/dema.js +1 -1
- package/assets/js/highcharts/indicators/dema.src.js +1 -1
- package/assets/js/highcharts/indicators/disparity-index.js +1 -1
- package/assets/js/highcharts/indicators/disparity-index.src.js +1 -1
- package/assets/js/highcharts/indicators/dmi.js +1 -1
- package/assets/js/highcharts/indicators/dmi.src.js +1 -1
- package/assets/js/highcharts/indicators/dpo.js +1 -1
- package/assets/js/highcharts/indicators/dpo.src.js +1 -1
- package/assets/js/highcharts/indicators/ichimoku-kinko-hyo.js +1 -1
- package/assets/js/highcharts/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/assets/js/highcharts/indicators/indicators-all.js +1 -1
- package/assets/js/highcharts/indicators/indicators-all.src.js +1 -1
- package/assets/js/highcharts/indicators/indicators.js +1 -1
- package/assets/js/highcharts/indicators/indicators.src.js +1 -1
- package/assets/js/highcharts/indicators/keltner-channels.js +1 -1
- package/assets/js/highcharts/indicators/keltner-channels.src.js +1 -1
- package/assets/js/highcharts/indicators/klinger.js +1 -1
- package/assets/js/highcharts/indicators/klinger.src.js +1 -1
- package/assets/js/highcharts/indicators/macd.js +1 -1
- package/assets/js/highcharts/indicators/macd.src.js +1 -1
- package/assets/js/highcharts/indicators/mfi.js +1 -1
- package/assets/js/highcharts/indicators/mfi.src.js +1 -1
- package/assets/js/highcharts/indicators/momentum.js +1 -1
- package/assets/js/highcharts/indicators/momentum.src.js +1 -1
- package/assets/js/highcharts/indicators/natr.js +1 -1
- package/assets/js/highcharts/indicators/natr.src.js +1 -1
- package/assets/js/highcharts/indicators/obv.js +1 -1
- package/assets/js/highcharts/indicators/obv.src.js +1 -1
- package/assets/js/highcharts/indicators/pivot-points.js +1 -1
- package/assets/js/highcharts/indicators/pivot-points.src.js +1 -1
- package/assets/js/highcharts/indicators/ppo.js +1 -1
- package/assets/js/highcharts/indicators/ppo.src.js +1 -1
- package/assets/js/highcharts/indicators/price-channel.js +1 -1
- package/assets/js/highcharts/indicators/price-channel.src.js +1 -1
- package/assets/js/highcharts/indicators/price-envelopes.js +1 -1
- package/assets/js/highcharts/indicators/price-envelopes.src.js +1 -1
- package/assets/js/highcharts/indicators/psar.js +1 -1
- package/assets/js/highcharts/indicators/psar.src.js +1 -1
- package/assets/js/highcharts/indicators/regressions.js +1 -1
- package/assets/js/highcharts/indicators/regressions.src.js +1 -1
- package/assets/js/highcharts/indicators/roc.js +1 -1
- package/assets/js/highcharts/indicators/roc.src.js +1 -1
- package/assets/js/highcharts/indicators/rsi.js +1 -1
- package/assets/js/highcharts/indicators/rsi.src.js +1 -1
- package/assets/js/highcharts/indicators/slow-stochastic.js +1 -1
- package/assets/js/highcharts/indicators/slow-stochastic.src.js +1 -1
- package/assets/js/highcharts/indicators/stochastic.js +1 -1
- package/assets/js/highcharts/indicators/stochastic.src.js +1 -1
- package/assets/js/highcharts/indicators/supertrend.js +1 -1
- package/assets/js/highcharts/indicators/supertrend.src.js +1 -1
- package/assets/js/highcharts/indicators/tema.js +1 -1
- package/assets/js/highcharts/indicators/tema.src.js +1 -1
- package/assets/js/highcharts/indicators/trendline.js +1 -1
- package/assets/js/highcharts/indicators/trendline.src.js +1 -1
- package/assets/js/highcharts/indicators/trix.js +1 -1
- package/assets/js/highcharts/indicators/trix.src.js +1 -1
- package/assets/js/highcharts/indicators/volume-by-price.js +1 -1
- package/assets/js/highcharts/indicators/volume-by-price.src.js +1 -1
- package/assets/js/highcharts/indicators/vwap.js +1 -1
- package/assets/js/highcharts/indicators/vwap.src.js +1 -1
- package/assets/js/highcharts/indicators/williams-r.js +1 -1
- package/assets/js/highcharts/indicators/williams-r.src.js +1 -1
- package/assets/js/highcharts/indicators/wma.js +1 -1
- package/assets/js/highcharts/indicators/wma.src.js +1 -1
- package/assets/js/highcharts/indicators/zigzag.js +1 -1
- package/assets/js/highcharts/indicators/zigzag.src.js +1 -1
- package/assets/js/highcharts/modules/accessibility.js +2 -2
- package/assets/js/highcharts/modules/accessibility.src.js +39 -28
- package/assets/js/highcharts/modules/annotations-advanced.js +2 -2
- package/assets/js/highcharts/modules/annotations-advanced.src.js +46 -31
- package/assets/js/highcharts/modules/annotations.js +2 -2
- package/assets/js/highcharts/modules/annotations.src.js +12 -15
- package/assets/js/highcharts/modules/arc-diagram.js +2 -2
- package/assets/js/highcharts/modules/arc-diagram.src.js +258 -233
- package/assets/js/highcharts/modules/arrow-symbols.js +1 -1
- package/assets/js/highcharts/modules/arrow-symbols.src.js +1 -1
- package/assets/js/highcharts/modules/boost-canvas.js +2 -2
- package/assets/js/highcharts/modules/boost-canvas.src.js +30 -10
- package/assets/js/highcharts/modules/boost.js +2 -2
- package/assets/js/highcharts/modules/boost.src.js +30 -10
- package/assets/js/highcharts/modules/broken-axis.js +1 -1
- package/assets/js/highcharts/modules/broken-axis.src.js +1 -1
- package/assets/js/highcharts/modules/bullet.js +1 -1
- package/assets/js/highcharts/modules/bullet.src.js +1 -1
- package/assets/js/highcharts/modules/coloraxis.js +2 -2
- package/assets/js/highcharts/modules/coloraxis.src.js +4 -4
- package/assets/js/highcharts/modules/current-date-indicator.js +1 -1
- package/assets/js/highcharts/modules/current-date-indicator.src.js +1 -1
- package/assets/js/highcharts/modules/cylinder.js +1 -1
- package/assets/js/highcharts/modules/cylinder.src.js +1 -1
- package/assets/js/highcharts/modules/data-tools.js +2 -2
- package/assets/js/highcharts/modules/data-tools.src.js +37 -19
- package/assets/js/highcharts/modules/data.js +1 -1
- package/assets/js/highcharts/modules/data.src.js +4 -4
- package/assets/js/highcharts/modules/datagrouping.js +2 -2
- package/assets/js/highcharts/modules/datagrouping.src.js +2 -1
- package/assets/js/highcharts/modules/debugger.js +1 -1
- package/assets/js/highcharts/modules/debugger.src.js +1 -1
- package/assets/js/highcharts/modules/dependency-wheel.js +1 -1
- package/assets/js/highcharts/modules/dependency-wheel.src.js +1 -1
- package/assets/js/highcharts/modules/dotplot.js +2 -2
- package/assets/js/highcharts/modules/dotplot.src.js +41 -30
- package/assets/js/highcharts/modules/drag-panes.js +2 -2
- package/assets/js/highcharts/modules/drag-panes.src.js +2 -3
- package/assets/js/highcharts/modules/draggable-points.js +2 -2
- package/assets/js/highcharts/modules/draggable-points.src.js +19 -1
- package/assets/js/highcharts/modules/drilldown.js +2 -2
- package/assets/js/highcharts/modules/drilldown.src.js +15 -15
- package/assets/js/highcharts/modules/dumbbell.js +2 -2
- package/assets/js/highcharts/modules/dumbbell.src.js +31 -40
- package/assets/js/highcharts/modules/export-data.js +2 -2
- package/assets/js/highcharts/modules/export-data.src.js +4 -1
- package/assets/js/highcharts/modules/exporting.js +2 -2
- package/assets/js/highcharts/modules/exporting.src.js +22 -25
- package/assets/js/highcharts/modules/flowmap.js +1 -1
- package/assets/js/highcharts/modules/flowmap.src.js +1 -1
- package/assets/js/highcharts/modules/full-screen.js +1 -1
- package/assets/js/highcharts/modules/full-screen.src.js +1 -1
- package/assets/js/highcharts/modules/funnel.js +2 -2
- package/assets/js/highcharts/modules/funnel.src.js +4 -4
- package/assets/js/highcharts/modules/funnel3d.js +1 -1
- package/assets/js/highcharts/modules/funnel3d.src.js +1 -1
- package/assets/js/highcharts/modules/gantt.js +2 -2
- package/assets/js/highcharts/modules/gantt.src.js +1266 -291
- package/assets/js/highcharts/modules/geoheatmap.js +1 -1
- package/assets/js/highcharts/modules/geoheatmap.src.js +4 -11
- package/assets/js/highcharts/modules/grid-axis.js +2 -2
- package/assets/js/highcharts/modules/grid-axis.src.js +2 -2
- package/assets/js/highcharts/modules/heatmap.js +2 -2
- package/assets/js/highcharts/modules/heatmap.src.js +32 -9
- package/assets/js/highcharts/modules/heikinashi.js +1 -1
- package/assets/js/highcharts/modules/heikinashi.src.js +1 -1
- package/assets/js/highcharts/modules/histogram-bellcurve.js +1 -1
- package/assets/js/highcharts/modules/histogram-bellcurve.src.js +1 -1
- package/assets/js/highcharts/modules/hollowcandlestick.js +1 -1
- package/assets/js/highcharts/modules/hollowcandlestick.src.js +1 -1
- package/assets/js/highcharts/modules/item-series.js +1 -1
- package/assets/js/highcharts/modules/item-series.src.js +1 -1
- package/assets/js/highcharts/modules/lollipop.js +1 -1
- package/assets/js/highcharts/modules/lollipop.src.js +1 -1
- package/assets/js/highcharts/modules/map.js +2 -2
- package/assets/js/highcharts/modules/map.src.js +120 -58
- package/assets/js/highcharts/modules/marker-clusters.js +1 -1
- package/assets/js/highcharts/modules/marker-clusters.src.js +1 -1
- package/assets/js/highcharts/modules/mouse-wheel-zoom.js +1 -1
- package/assets/js/highcharts/modules/mouse-wheel-zoom.src.js +1 -1
- package/assets/js/highcharts/modules/navigator.js +2 -2
- package/assets/js/highcharts/modules/navigator.src.js +28 -24
- package/assets/js/highcharts/modules/networkgraph.js +2 -2
- package/assets/js/highcharts/modules/networkgraph.src.js +3 -3
- package/assets/js/highcharts/modules/no-data-to-display.js +1 -1
- package/assets/js/highcharts/modules/no-data-to-display.src.js +1 -1
- package/assets/js/highcharts/modules/offline-exporting.js +2 -2
- package/assets/js/highcharts/modules/offline-exporting.src.js +43 -32
- package/assets/js/highcharts/modules/organization.js +2 -2
- package/assets/js/highcharts/modules/organization.src.js +19 -21
- package/assets/js/highcharts/modules/overlapping-datalabels.js +1 -1
- package/assets/js/highcharts/modules/overlapping-datalabels.src.js +1 -1
- package/assets/js/highcharts/modules/parallel-coordinates.js +1 -1
- package/assets/js/highcharts/modules/parallel-coordinates.src.js +1 -1
- package/assets/js/highcharts/modules/pareto.js +1 -1
- package/assets/js/highcharts/modules/pareto.src.js +1 -1
- package/assets/js/highcharts/modules/pathfinder.js +1 -1
- package/assets/js/highcharts/modules/pathfinder.src.js +1 -1
- package/assets/js/highcharts/modules/pattern-fill.js +1 -1
- package/assets/js/highcharts/modules/pattern-fill.src.js +1 -1
- package/assets/js/highcharts/modules/pictorial.js +1 -1
- package/assets/js/highcharts/modules/pictorial.src.js +1 -1
- package/assets/js/highcharts/modules/price-indicator.js +1 -1
- package/assets/js/highcharts/modules/price-indicator.src.js +1 -1
- package/assets/js/highcharts/modules/pyramid3d.js +1 -1
- package/assets/js/highcharts/modules/pyramid3d.src.js +1 -1
- package/assets/js/highcharts/modules/sankey.js +2 -2
- package/assets/js/highcharts/modules/sankey.src.js +7 -8
- package/assets/js/highcharts/modules/series-label.js +1 -1
- package/assets/js/highcharts/modules/series-label.src.js +1 -1
- package/assets/js/highcharts/modules/series-on-point.js +2 -2
- package/assets/js/highcharts/modules/series-on-point.src.js +3 -3
- package/assets/js/highcharts/modules/solid-gauge.js +1 -1
- package/assets/js/highcharts/modules/solid-gauge.src.js +1 -1
- package/assets/js/highcharts/modules/sonification.js +2 -2
- package/assets/js/highcharts/modules/sonification.src.js +4 -1
- package/assets/js/highcharts/modules/static-scale.js +1 -1
- package/assets/js/highcharts/modules/static-scale.src.js +1 -1
- package/assets/js/highcharts/modules/stock-tools.js +2 -2
- package/assets/js/highcharts/modules/stock-tools.src.js +3 -3
- package/assets/js/highcharts/modules/stock.js +2 -2
- package/assets/js/highcharts/modules/stock.src.js +274 -320
- package/assets/js/highcharts/modules/streamgraph.js +1 -1
- package/assets/js/highcharts/modules/streamgraph.src.js +1 -1
- package/assets/js/highcharts/modules/sunburst.js +2 -2
- package/assets/js/highcharts/modules/sunburst.src.js +39 -16
- package/assets/js/highcharts/modules/tiledwebmap.js +1 -1
- package/assets/js/highcharts/modules/tiledwebmap.src.js +1 -1
- package/assets/js/highcharts/modules/tilemap.js +1 -1
- package/assets/js/highcharts/modules/tilemap.src.js +1 -1
- package/assets/js/highcharts/modules/timeline.js +1 -1
- package/assets/js/highcharts/modules/timeline.src.js +1 -1
- package/assets/js/highcharts/modules/treegraph.js +2 -2
- package/assets/js/highcharts/modules/treegraph.src.js +21 -17
- package/assets/js/highcharts/modules/treegrid.js +2 -2
- package/assets/js/highcharts/modules/treegrid.src.js +2 -2
- package/assets/js/highcharts/modules/treemap.js +2 -2
- package/assets/js/highcharts/modules/treemap.src.js +38 -15
- package/assets/js/highcharts/modules/variable-pie.js +1 -1
- package/assets/js/highcharts/modules/variable-pie.src.js +1 -1
- package/assets/js/highcharts/modules/variwide.js +2 -2
- package/assets/js/highcharts/modules/variwide.src.js +5 -5
- package/assets/js/highcharts/modules/vector.js +1 -1
- package/assets/js/highcharts/modules/vector.src.js +1 -1
- package/assets/js/highcharts/modules/venn.js +1 -1
- package/assets/js/highcharts/modules/venn.src.js +3 -3
- package/assets/js/highcharts/modules/windbarb.js +1 -1
- package/assets/js/highcharts/modules/windbarb.src.js +1 -1
- package/assets/js/highcharts/modules/wordcloud.js +1 -1
- package/assets/js/highcharts/modules/wordcloud.src.js +1 -1
- package/assets/js/highcharts/modules/xrange.js +2 -2
- package/assets/js/highcharts/modules/xrange.src.js +5 -5
- package/assets/js/highcharts/standalone-navigator.js +2 -2
- package/assets/js/highcharts/standalone-navigator.src.js +769 -638
- package/assets/js/highcharts/themes/avocado.js +1 -1
- package/assets/js/highcharts/themes/avocado.src.js +1 -1
- package/assets/js/highcharts/themes/brand-dark.js +2 -2
- package/assets/js/highcharts/themes/brand-dark.src.js +14 -2
- package/assets/js/highcharts/themes/brand-light.js +1 -1
- package/assets/js/highcharts/themes/brand-light.src.js +1 -1
- package/assets/js/highcharts/themes/dark-blue.js +1 -1
- package/assets/js/highcharts/themes/dark-blue.src.js +1 -1
- package/assets/js/highcharts/themes/dark-green.js +1 -1
- package/assets/js/highcharts/themes/dark-green.src.js +1 -1
- package/assets/js/highcharts/themes/dark-unica.js +1 -1
- package/assets/js/highcharts/themes/dark-unica.src.js +1 -1
- package/assets/js/highcharts/themes/gray.js +1 -1
- package/assets/js/highcharts/themes/gray.src.js +1 -1
- package/assets/js/highcharts/themes/grid-light.js +1 -1
- package/assets/js/highcharts/themes/grid-light.src.js +1 -1
- package/assets/js/highcharts/themes/grid.js +1 -1
- package/assets/js/highcharts/themes/grid.src.js +1 -1
- package/assets/js/highcharts/themes/high-contrast-dark.js +1 -1
- package/assets/js/highcharts/themes/high-contrast-dark.src.js +1 -1
- package/assets/js/highcharts/themes/high-contrast-light.js +1 -1
- package/assets/js/highcharts/themes/high-contrast-light.src.js +1 -1
- package/assets/js/highcharts/themes/sand-signika.js +1 -1
- package/assets/js/highcharts/themes/sand-signika.src.js +1 -1
- package/assets/js/highcharts/themes/skies.js +1 -1
- package/assets/js/highcharts/themes/skies.src.js +1 -1
- package/assets/js/highcharts/themes/sunset.js +1 -1
- package/assets/js/highcharts/themes/sunset.src.js +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts JS v11.4.
|
|
2
|
+
* @license Highcharts JS v11.4.3 (2024-05-22)
|
|
3
3
|
*
|
|
4
4
|
* Annotations module
|
|
5
5
|
*
|
|
@@ -1155,11 +1155,13 @@
|
|
|
1155
1155
|
annotation.cancelClick = emitter.hasDragged;
|
|
1156
1156
|
}
|
|
1157
1157
|
emitter.cancelClick = emitter.hasDragged;
|
|
1158
|
-
emitter.hasDragged = false;
|
|
1159
1158
|
emitter.chart.hasDraggedAnnotation = false;
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1159
|
+
if (emitter.hasDragged) {
|
|
1160
|
+
// ControlPoints vs Annotation:
|
|
1161
|
+
fireEvent(pick(annotation, // #15952
|
|
1162
|
+
emitter), 'afterUpdate');
|
|
1163
|
+
}
|
|
1164
|
+
emitter.hasDragged = false;
|
|
1163
1165
|
emitter.onMouseUp();
|
|
1164
1166
|
}, isTouchDevice || firesTouchEvents ? { passive: false } : void 0);
|
|
1165
1167
|
}
|
|
@@ -1167,9 +1169,7 @@
|
|
|
1167
1169
|
* Mouse up handler.
|
|
1168
1170
|
*/
|
|
1169
1171
|
onMouseUp() {
|
|
1170
|
-
const chart = this.chart, annotation = this.target || this, annotationsOptions = chart.options.annotations, index = chart.annotations.indexOf(annotation);
|
|
1171
1172
|
this.removeDocEvents();
|
|
1172
|
-
annotationsOptions[index] = annotation.options;
|
|
1173
1173
|
}
|
|
1174
1174
|
/**
|
|
1175
1175
|
* Remove emitter document events.
|
|
@@ -2204,6 +2204,9 @@
|
|
|
2204
2204
|
render(
|
|
2205
2205
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2206
2206
|
_parentGroup) {
|
|
2207
|
+
if (this.options.className && this.graphic) {
|
|
2208
|
+
this.graphic.addClass(this.options.className);
|
|
2209
|
+
}
|
|
2207
2210
|
this.renderControlPoints();
|
|
2208
2211
|
}
|
|
2209
2212
|
/**
|
|
@@ -2614,9 +2617,6 @@
|
|
|
2614
2617
|
.path([['M', 0, 0]])
|
|
2615
2618
|
.attr(attrs)
|
|
2616
2619
|
.add(parent);
|
|
2617
|
-
if (options.className) {
|
|
2618
|
-
this.graphic.addClass(options.className);
|
|
2619
|
-
}
|
|
2620
2620
|
this.tracker = this.annotation.chart.renderer
|
|
2621
2621
|
.path([['M', 0, 0]])
|
|
2622
2622
|
.addClass('highcharts-tracker-line')
|
|
@@ -3383,9 +3383,6 @@
|
|
|
3383
3383
|
.css(options.style)
|
|
3384
3384
|
.shadow(options.shadow);
|
|
3385
3385
|
}
|
|
3386
|
-
if (options.className) {
|
|
3387
|
-
this.graphic.addClass(options.className);
|
|
3388
|
-
}
|
|
3389
3386
|
this.graphic.labelrank = options.labelrank;
|
|
3390
3387
|
super.render();
|
|
3391
3388
|
}
|
|
@@ -4939,7 +4936,7 @@
|
|
|
4939
4936
|
this.popup = new Popup(this.chart.container, (this.chart.options.navigation.iconsURL ||
|
|
4940
4937
|
(this.chart.options.stockTools &&
|
|
4941
4938
|
this.chart.options.stockTools.gui.iconsURL) ||
|
|
4942
|
-
'https://code.highcharts.com/11.4.
|
|
4939
|
+
'https://code.highcharts.com/11.4.3/gfx/stock-icons/'), this.chart);
|
|
4943
4940
|
}
|
|
4944
4941
|
this.popup.showForm(config.formType, this.chart, config.options, config.onSubmit);
|
|
4945
4942
|
}
|
|
@@ -6101,7 +6098,7 @@
|
|
|
6101
6098
|
* from a different server.
|
|
6102
6099
|
*
|
|
6103
6100
|
* @type {string}
|
|
6104
|
-
* @default https://code.highcharts.com/11.4.
|
|
6101
|
+
* @default https://code.highcharts.com/11.4.3/gfx/stock-icons/
|
|
6105
6102
|
* @since 7.1.3
|
|
6106
6103
|
* @apioption navigation.iconsURL
|
|
6107
6104
|
*/
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
!/**
|
|
2
|
-
* Highcharts JS v11.4.
|
|
2
|
+
* Highcharts JS v11.4.3 (2024-05-22)
|
|
3
3
|
*
|
|
4
4
|
* Arc diagram module
|
|
5
5
|
*
|
|
6
6
|
* (c) 2021 Piotr Madej
|
|
7
7
|
*
|
|
8
8
|
* License: www.highcharts.com/license
|
|
9
|
-
*/function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/modules/arc-diagram",["highcharts","highcharts/modules/sankey"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function i(e,t,i,
|
|
9
|
+
*/function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/modules/arc-diagram",["highcharts","highcharts/modules/sankey"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function i(e,t,i,s){e.hasOwnProperty(t)||(e[t]=s.apply(null,i),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}i(t,"Series/ArcDiagram/ArcDiagramPoint.js",[t["Series/NodesComposition.js"],t["Core/Series/SeriesRegistry.js"],t["Core/Utilities.js"]],function(e,t,i){let{seriesTypes:{sankey:{prototype:{pointClass:s}}}}=t,{extend:o}=i;class a extends s{isValid(){return!0}}return o(a.prototype,{setState:e.setNodeState}),a}),i(t,"Series/ArcDiagram/ArcDiagramSeriesDefaults.js",[],function(){return{centeredLinks:!1,equalNodes:!1,dataLabels:{linkTextPath:{attributes:{startOffset:"25%"}}},marker:{fillOpacity:1,lineWidth:0,states:{},symbol:"circle"},offset:"100%",reversed:!1}}),i(t,"Series/ArcDiagram/ArcDiagramSeries.js",[t["Series/ArcDiagram/ArcDiagramPoint.js"],t["Series/ArcDiagram/ArcDiagramSeriesDefaults.js"],t["Series/Sankey/SankeyColumnComposition.js"],t["Core/Series/Series.js"],t["Core/Series/SeriesRegistry.js"],t["Core/Renderer/SVG/SVGRenderer.js"],t["Core/Utilities.js"]],function(e,t,i,s,o,a,n){let{prototype:{symbols:r}}=a,{seriesTypes:{column:l,sankey:h}}=o,{crisp:d,extend:p,merge:m,pick:u,relativeLength:c}=n;class g extends h{createNodeColumns(){let e=this,t=e.chart,s=i.compose([],e);return s.sankeyColumn.maxLength=t.inverted?t.plotHeight:t.plotWidth,s.sankeyColumn.getTranslationFactor=e=>{let i=s.slice(),o=this.options.minLinkWidth||0,a,n=0,r,l,h=0,d=1,p=0,m=(t.plotSizeX||0)-(e.options.marker&&e.options.marker.lineWidth||0)-(s.length-1)*e.nodePadding;for(;s.length;){for(n=m/s.sankeyColumn.sum(),a=!1,r=s.length;r--;){l=s[r].getSum()*n*d;let e=Math.min(t.plotHeight,t.plotWidth);l>e?d=Math.min(e/l,d):l<o&&(s.splice(r,1),m-=o,l=o,a=!0),p+=l*(1-d)/2,h=Math.max(h,l)}if(!a)break}return s.length=0,i.forEach(e=>{e.scale=d,s.push(e)}),s.sankeyColumn.maxRadius=h,s.sankeyColumn.scale=d,s.sankeyColumn.additionalSpace=p,n},s.sankeyColumn.offset=function(i,o){let a=i.series.options.equalNodes,n=e.nodePadding,r=Math.min(t.plotWidth,t.plotHeight,(s.sankeyColumn.maxLength||0)/e.nodes.length-n),l=s.sankeyColumn.additionalSpace||0,h;for(let t=0;t<s.length;t++){let d=s[t].getSum()*(s.sankeyColumn.scale||0),p=a?r:Math.max(d*o,e.options.minLinkWidth||0);if(h=d?p+n:0,s[t]===i)return{relativeLeft:l+c(i.options.offset||0,h)};l+=h}},e.nodes.forEach(function(e){e.column=0,s.push(e)}),[s]}translateLink(e){let t=e.fromNode,i=e.toNode,s=this.chart,o=this.translationFactor,a=e.options,n=this.options,r=u(a.linkWeight,n.linkWeight,Math.max((e.weight||0)*o*t.scale,this.options.minLinkWidth||0)),l=e.series.options.centeredLinks,h=t.nodeY,d=(t,i)=>{let s=(t.offset(e,i)||0)*o;return Math.min(t.nodeX+s,t.nodeX+(t.shapeArgs&&t.shapeArgs.height||0)-r)},p=l?t.nodeX+((t.shapeArgs.height||0)-r)/2:d(t,"linksFrom"),m=l?i.nodeX+((i.shapeArgs.height||0)-r)/2:d(i,"linksTo"),c=h;p>m&&([p,m]=[m,p]),n.reversed&&([p,m]=[m,p],c=(s.plotSizeY||0)-c),e.shapeType="path",e.linkBase=[p,p+r,m,m+r];let g=(m+r-p)/Math.abs(m+r-p)*u(n.linkRadius,Math.min(Math.abs(m+r-p)/2,t.nodeY-Math.abs(r)));e.shapeArgs={d:[["M",p,c],["A",(m+r-p)/2,g,0,0,1,m+r,c],["L",m,c],["A",(m-p-r)/2,g-r,0,0,0,p+r,c],["Z"]]},e.dlBox={x:p+(m-p)/2,y:c-g,height:r,width:0},e.tooltipPos=s.inverted?[(s.plotSizeY||0)-e.dlBox.y-r/2,(s.plotSizeX||0)-e.dlBox.x]:[e.dlBox.x,e.dlBox.y+r/2],e.y=e.plotY=1,e.x=e.plotX=1,e.color||(e.color=t.color)}translateNode(e,t){let i=this.translationFactor,s=this.chart,o=s.inverted?s.plotWidth:s.plotHeight,a=this.options,n=Math.min(s.plotWidth,s.plotHeight,o/e.series.nodes.length-this.nodePadding),l=e.getSum()*(t.sankeyColumn.scale||0),p=a.equalNodes?n:Math.max(l*i,this.options.minLinkWidth||0),c=a.marker?.lineWidth||0,g=t.sankeyColumn.offset(e,i),f=d(u(g&&g.absoluteLeft,(t.sankeyColumn.left(i)||0)+(g&&g.relativeLeft||0)),c),y=m(a.marker,e.options.marker),k=y.symbol,S=y.radius,C=parseInt(a.offset,10)*((s.inverted?s.plotWidth:s.plotHeight)-(d(this.colDistance*(e.column||0)+(y.lineWidth||0)/2,c)+(t.sankeyColumn.scale||0)*(t.sankeyColumn.maxRadius||0)/2))/100;if(e.sum=l,l){e.nodeX=f,e.nodeY=C;let t=e.options.width||a.width||p,i=e.options.height||a.height||p,o=C;a.reversed&&(o=(s.plotSizeY||0)-C,s.inverted&&(o=(s.plotSizeY||0)-C)),this.mapOptionsToLevel&&(e.dlOptions=h.getDLOptions({level:this.mapOptionsToLevel[e.level],optionsPoint:e.options})),e.plotX=1,e.plotY=1,e.tooltipPos=s.inverted?[(s.plotSizeY||0)-o-i/2,(s.plotSizeX||0)-f-t/2]:[f+t/2,o+i/2],e.shapeType="path",e.shapeArgs={d:r[k||"circle"](f,o-(S||i)/2,S||t,S||i),width:S||t,height:S||i},e.dlBox={x:f+t/2,y:o,height:0,width:0}}else e.dlOptions={enabled:!1}}drawDataLabels(){if(this.options.dataLabels){let e=this.options.dataLabels.textPath;l.prototype.drawDataLabels.call(this,this.nodes),this.options.dataLabels.textPath=this.options.dataLabels.linkTextPath,l.prototype.drawDataLabels.call(this,this.data),this.options.dataLabels.textPath=e}}pointAttribs(e,t){if(e&&e.isNode){let{...e}=s.prototype.pointAttribs.apply(this,arguments);return e}return super.pointAttribs.apply(this,arguments)}markerAttribs(e){return e.isNode?super.markerAttribs.apply(this,arguments):{}}}return g.defaultOptions=m(h.defaultOptions,t),p(g.prototype,{orderNodes:!1}),g.prototype.pointClass=e,o.registerSeriesType("arcdiagram",g),g}),i(t,"masters/modules/arc-diagram.src.js",[t["Core/Globals.js"]],function(e){return e})});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts JS v11.4.
|
|
2
|
+
* @license Highcharts JS v11.4.3 (2024-05-22)
|
|
3
3
|
*
|
|
4
4
|
* Arc diagram module
|
|
5
5
|
*
|
|
@@ -77,7 +77,254 @@
|
|
|
77
77
|
|
|
78
78
|
return ArcDiagramPoint;
|
|
79
79
|
});
|
|
80
|
-
_registerModule(_modules, 'Series/ArcDiagram/
|
|
80
|
+
_registerModule(_modules, 'Series/ArcDiagram/ArcDiagramSeriesDefaults.js', [], function () {
|
|
81
|
+
/* *
|
|
82
|
+
*
|
|
83
|
+
* Arc diagram module
|
|
84
|
+
*
|
|
85
|
+
* (c) 2021 Piotr Madej, Grzegorz Blachliński
|
|
86
|
+
*
|
|
87
|
+
* License: www.highcharts.com/license
|
|
88
|
+
*
|
|
89
|
+
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
90
|
+
*
|
|
91
|
+
* */
|
|
92
|
+
/* *
|
|
93
|
+
*
|
|
94
|
+
* API Options
|
|
95
|
+
*
|
|
96
|
+
* */
|
|
97
|
+
/**
|
|
98
|
+
* Arc diagram series is a chart drawing style in which
|
|
99
|
+
* the vertices of the chart are positioned along a line
|
|
100
|
+
* on the Euclidean plane and the edges are drawn as a semicircle
|
|
101
|
+
* in one of the two half-planes delimited by the line,
|
|
102
|
+
* or as smooth curves formed by sequences of semicircles.
|
|
103
|
+
*
|
|
104
|
+
* @sample highcharts/demo/arc-diagram/
|
|
105
|
+
* Arc Diagram
|
|
106
|
+
*
|
|
107
|
+
* @extends plotOptions.sankey
|
|
108
|
+
* @since 10.0.0
|
|
109
|
+
* @product highcharts
|
|
110
|
+
* @requires modules/arc-diagram
|
|
111
|
+
* @exclude curveFactor, connectEnds, connectNulls, colorAxis, colorKey,
|
|
112
|
+
* dataSorting, dragDrop, getExtremesFromAll, nodeAlignment,
|
|
113
|
+
* nodePadding, centerInCategory, pointInterval,
|
|
114
|
+
* pointIntervalUnit, pointPlacement, pointStart,
|
|
115
|
+
* relativeXValue, softThreshold, stack, stacking, step,
|
|
116
|
+
* xAxis, yAxis
|
|
117
|
+
* @optionparent plotOptions.arcdiagram
|
|
118
|
+
*/
|
|
119
|
+
const ArcDiagramSeriesDefaults = {
|
|
120
|
+
/**
|
|
121
|
+
* The option to center links rather than position them one after
|
|
122
|
+
* another
|
|
123
|
+
*
|
|
124
|
+
* @type {boolean}
|
|
125
|
+
* @since 10.0.0
|
|
126
|
+
* @default false
|
|
127
|
+
* @product highcharts
|
|
128
|
+
*/
|
|
129
|
+
centeredLinks: false,
|
|
130
|
+
/**
|
|
131
|
+
* Whether nodes with different values should have the same size. If set
|
|
132
|
+
* to true, all nodes are calculated based on the `nodePadding` and
|
|
133
|
+
* current `plotArea`. It is possible to override it using the
|
|
134
|
+
* `marker.radius` option.
|
|
135
|
+
*
|
|
136
|
+
* @type {boolean}
|
|
137
|
+
* @since 10.0.0
|
|
138
|
+
* @default false
|
|
139
|
+
* @product highcharts
|
|
140
|
+
*/
|
|
141
|
+
equalNodes: false,
|
|
142
|
+
/**
|
|
143
|
+
* Options for the data labels appearing on top of the nodes and links.
|
|
144
|
+
* For arc diagram charts, data labels are visible for the nodes by
|
|
145
|
+
* default, but hidden for links. This is controlled by modifying the
|
|
146
|
+
* `nodeFormat`, and the `format` that applies to links and is an empty
|
|
147
|
+
* string by default.
|
|
148
|
+
*
|
|
149
|
+
* @declare Highcharts.SeriesArcDiagramDataLabelsOptionsObject
|
|
150
|
+
*
|
|
151
|
+
* @private
|
|
152
|
+
*/
|
|
153
|
+
dataLabels: {
|
|
154
|
+
/**
|
|
155
|
+
* Options for a _link_ label text which should follow link
|
|
156
|
+
* connection. Border and background are disabled for a label that
|
|
157
|
+
* follows a path.
|
|
158
|
+
*
|
|
159
|
+
* **Note:** Only SVG-based renderer supports this option. Setting
|
|
160
|
+
* `useHTML` to true will disable this option.
|
|
161
|
+
*
|
|
162
|
+
* @extends plotOptions.networkgraph.dataLabels.linkTextPath
|
|
163
|
+
* @since 10.0.0
|
|
164
|
+
*/
|
|
165
|
+
linkTextPath: {
|
|
166
|
+
/**
|
|
167
|
+
* @type {Highcharts.SVGAttributes}
|
|
168
|
+
* @default {"startOffset":"25%"}
|
|
169
|
+
*/
|
|
170
|
+
attributes: {
|
|
171
|
+
/**
|
|
172
|
+
* @ignore-option
|
|
173
|
+
*/
|
|
174
|
+
startOffset: '25%'
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
/**
|
|
179
|
+
* The radius of the link arc. If not set, series renders a semi-circle
|
|
180
|
+
* between the nodes, except when overflowing the edge of the plot area,
|
|
181
|
+
* in which case an arc touching the edge is rendered. If `linkRadius`
|
|
182
|
+
* is set, an arc extending to the given value is rendered.
|
|
183
|
+
*
|
|
184
|
+
* @type {number}
|
|
185
|
+
* @since 10.0.0
|
|
186
|
+
* @default undefined
|
|
187
|
+
* @product highcharts
|
|
188
|
+
* @apioption series.arcdiagram.linkRadius
|
|
189
|
+
*/
|
|
190
|
+
/**
|
|
191
|
+
* The global link weight, in pixels. If not set, width is calculated
|
|
192
|
+
* per link, depending on the weight value.
|
|
193
|
+
*
|
|
194
|
+
* @sample highcharts/series-arcdiagram/link-weight
|
|
195
|
+
* Link weight
|
|
196
|
+
*
|
|
197
|
+
* @type {number}
|
|
198
|
+
* @since 10.0.0
|
|
199
|
+
* @default undefined
|
|
200
|
+
* @product highcharts
|
|
201
|
+
* @apioption series.arcdiagram.linkWeight
|
|
202
|
+
*/
|
|
203
|
+
/**
|
|
204
|
+
* @extends plotOptions.series.marker
|
|
205
|
+
* @excluding enabled, enabledThreshold, height, width
|
|
206
|
+
*/
|
|
207
|
+
marker: {
|
|
208
|
+
fillOpacity: 1,
|
|
209
|
+
lineWidth: 0,
|
|
210
|
+
states: {},
|
|
211
|
+
symbol: 'circle'
|
|
212
|
+
},
|
|
213
|
+
/**
|
|
214
|
+
* The offset of an arc diagram nodes column in relation to the
|
|
215
|
+
* `plotArea`. The offset equal to 50% places nodes in the center of a
|
|
216
|
+
* chart. By default the series is placed so that the biggest node is
|
|
217
|
+
* touching the bottom border of the `plotArea`.
|
|
218
|
+
*
|
|
219
|
+
* @type {string}
|
|
220
|
+
* @since 10.0.0
|
|
221
|
+
* @default '100%'
|
|
222
|
+
* @product highcharts
|
|
223
|
+
* @apioption series.arcdiagram.offset
|
|
224
|
+
*/
|
|
225
|
+
offset: '100%',
|
|
226
|
+
/**
|
|
227
|
+
* Whether the series should be placed on the other side of the
|
|
228
|
+
* `plotArea`.
|
|
229
|
+
*
|
|
230
|
+
* @type {boolean}
|
|
231
|
+
* @since 10.0.0
|
|
232
|
+
* @default false
|
|
233
|
+
* @product highcharts
|
|
234
|
+
*/
|
|
235
|
+
reversed: false
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* An `arcdiagram` series. If the [type](#series.arcdiagram.type)
|
|
239
|
+
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
240
|
+
*
|
|
241
|
+
* @extends series,plotOptions.arcdiagram
|
|
242
|
+
* @exclude dataSorting, boostThreshold, boostBlending, curveFactor,
|
|
243
|
+
* connectEnds, connectNulls, colorAxis, colorKey, dataSorting,
|
|
244
|
+
* dragDrop, getExtremesFromAll, nodePadding, centerInCategory,
|
|
245
|
+
* pointInterval, pointIntervalUnit, pointPlacement,
|
|
246
|
+
* pointStart, relativeXValue, softThreshold, stack,
|
|
247
|
+
* stacking, step, xAxis, yAxis
|
|
248
|
+
* @product highcharts
|
|
249
|
+
* @requires modules/sankey
|
|
250
|
+
* @requires modules/arc-diagram
|
|
251
|
+
* @apioption series.arcdiagram
|
|
252
|
+
*/
|
|
253
|
+
/**
|
|
254
|
+
* @extends plotOptions.series.marker
|
|
255
|
+
* @excluding enabled, enabledThreshold, height, radius, width
|
|
256
|
+
* @apioption series.arcdiagram.marker
|
|
257
|
+
*/
|
|
258
|
+
/**
|
|
259
|
+
* @type {Highcharts.SeriesArcDiagramDataLabelsOptionsObject|Array<Highcharts.SeriesArcDiagramDataLabelsOptionsObject>}
|
|
260
|
+
* @product highcharts
|
|
261
|
+
* @apioption series.arcdiagram.data.dataLabels
|
|
262
|
+
*/
|
|
263
|
+
/**
|
|
264
|
+
* A collection of options for the individual nodes. The nodes in an arc diagram
|
|
265
|
+
* are auto-generated instances of `Highcharts.Point`, but options can be
|
|
266
|
+
* applied here and linked by the `id`.
|
|
267
|
+
*
|
|
268
|
+
* @extends series.sankey.nodes
|
|
269
|
+
* @type {Array<*>}
|
|
270
|
+
* @product highcharts
|
|
271
|
+
* @excluding column, level
|
|
272
|
+
* @apioption series.arcdiagram.nodes
|
|
273
|
+
*/
|
|
274
|
+
/**
|
|
275
|
+
* Individual data label for each node. The options are the same as the ones for
|
|
276
|
+
* [series.arcdiagram.dataLabels](#series.arcdiagram.dataLabels).
|
|
277
|
+
*
|
|
278
|
+
* @type
|
|
279
|
+
* {Highcharts.SeriesArcDiagramDataLabelsOptionsObject|Array<Highcharts.SeriesArcDiagramDataLabelsOptionsObject>}
|
|
280
|
+
*
|
|
281
|
+
* @apioption series.arcdiagram.nodes.dataLabels
|
|
282
|
+
*/
|
|
283
|
+
/**
|
|
284
|
+
* Individual data label for each node. The options are the same as the ones for
|
|
285
|
+
* [series.arcdiagram.dataLabels](#series.arcdiagram.dataLabels).
|
|
286
|
+
*
|
|
287
|
+
* @type
|
|
288
|
+
* {Highcharts.SeriesArcDiagramDataLabelsOptionsObject|Array<Highcharts.SeriesArcDiagramDataLabelsOptionsObject>}
|
|
289
|
+
*
|
|
290
|
+
*/
|
|
291
|
+
/**
|
|
292
|
+
* An array of data points for the series. For the `arcdiagram` series type,
|
|
293
|
+
* points can be given in the following way:
|
|
294
|
+
*
|
|
295
|
+
* An array of objects with named values. The following snippet shows only a few
|
|
296
|
+
* settings, see the complete options set below. If the total number of data
|
|
297
|
+
* points exceeds the series' [turboThreshold](#series.area.turboThreshold),
|
|
298
|
+
* this option is not available.
|
|
299
|
+
*
|
|
300
|
+
* ```js
|
|
301
|
+
* data: [{
|
|
302
|
+
* from: 'Category1',
|
|
303
|
+
* to: 'Category2',
|
|
304
|
+
* weight: 2
|
|
305
|
+
* }, {
|
|
306
|
+
* from: 'Category1',
|
|
307
|
+
* to: 'Category3',
|
|
308
|
+
* weight: 5
|
|
309
|
+
* }]
|
|
310
|
+
* ```
|
|
311
|
+
*
|
|
312
|
+
* @type {Array<*>}
|
|
313
|
+
* @extends series.sankey.data
|
|
314
|
+
* @product highcharts
|
|
315
|
+
* @excluding outgoing, dataLabels
|
|
316
|
+
* @apioption series.arcdiagram.data
|
|
317
|
+
*/
|
|
318
|
+
''; // Adds doclets above to the transpiled file
|
|
319
|
+
/* *
|
|
320
|
+
*
|
|
321
|
+
* Default Export
|
|
322
|
+
*
|
|
323
|
+
* */
|
|
324
|
+
|
|
325
|
+
return ArcDiagramSeriesDefaults;
|
|
326
|
+
});
|
|
327
|
+
_registerModule(_modules, 'Series/ArcDiagram/ArcDiagramSeries.js', [_modules['Series/ArcDiagram/ArcDiagramPoint.js'], _modules['Series/ArcDiagram/ArcDiagramSeriesDefaults.js'], _modules['Series/Sankey/SankeyColumnComposition.js'], _modules['Core/Series/Series.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Core/Renderer/SVG/SVGRenderer.js'], _modules['Core/Utilities.js']], function (ArcDiagramPoint, ArcDiagramSeriesDefaults, SankeyColumnComposition, Series, SeriesRegistry, SVGRenderer, U) {
|
|
81
328
|
/* *
|
|
82
329
|
*
|
|
83
330
|
* Arc diagram module
|
|
@@ -91,7 +338,7 @@
|
|
|
91
338
|
* */
|
|
92
339
|
const { prototype: { symbols } } = SVGRenderer;
|
|
93
340
|
const { seriesTypes: { column: ColumnSeries, sankey: SankeySeries } } = SeriesRegistry;
|
|
94
|
-
const { extend, merge, pick, relativeLength } = U;
|
|
341
|
+
const { crisp, extend, merge, pick, relativeLength } = U;
|
|
95
342
|
/* *
|
|
96
343
|
*
|
|
97
344
|
* Class
|
|
@@ -293,12 +540,11 @@
|
|
|
293
540
|
const series = this, translationFactor = series.translationFactor, chart = series.chart, maxNodesLength = chart.inverted ?
|
|
294
541
|
chart.plotWidth : chart.plotHeight, options = series.options, maxRadius = Math.min(chart.plotWidth, chart.plotHeight, maxNodesLength / node.series.nodes.length - this.nodePadding), sum = node.getSum() * (column.sankeyColumn.scale || 0), equalNodes = options.equalNodes, nodeHeight = equalNodes ?
|
|
295
542
|
maxRadius :
|
|
296
|
-
Math.max(sum * translationFactor, this.options.minLinkWidth || 0),
|
|
297
|
-
|
|
298
|
-
(nodeOffset && nodeOffset.relativeLeft || 0)))) + crisp, markerOptions = merge(options.marker, node.options.marker), symbol = markerOptions.symbol, markerRadius = markerOptions.radius, top = parseInt(options.offset, 10) *
|
|
543
|
+
Math.max(sum * translationFactor, this.options.minLinkWidth || 0), lineWidth = options.marker?.lineWidth || 0, nodeOffset = column.sankeyColumn.offset(node, translationFactor), fromNodeLeft = crisp(pick(nodeOffset && nodeOffset.absoluteLeft, ((column.sankeyColumn.left(translationFactor) || 0) +
|
|
544
|
+
(nodeOffset && nodeOffset.relativeLeft || 0))), lineWidth), markerOptions = merge(options.marker, node.options.marker), symbol = markerOptions.symbol, markerRadius = markerOptions.radius, top = parseInt(options.offset, 10) *
|
|
299
545
|
((chart.inverted ?
|
|
300
|
-
chart.plotWidth : chart.plotHeight) - (
|
|
301
|
-
(markerOptions.lineWidth || 0) / 2) +
|
|
546
|
+
chart.plotWidth : chart.plotHeight) - (crisp(this.colDistance * (node.column || 0) +
|
|
547
|
+
(markerOptions.lineWidth || 0) / 2, lineWidth) +
|
|
302
548
|
(column.sankeyColumn.scale || 0) *
|
|
303
549
|
(column.sankeyColumn.maxRadius || 0) / 2)) / 100;
|
|
304
550
|
node.sum = sum;
|
|
@@ -384,146 +630,12 @@
|
|
|
384
630
|
return {};
|
|
385
631
|
}
|
|
386
632
|
}
|
|
387
|
-
|
|
388
|
-
* Arc diagram series is a chart drawing style in which
|
|
389
|
-
* the vertices of the chart are positioned along a line
|
|
390
|
-
* on the Euclidean plane and the edges are drawn as a semicircle
|
|
391
|
-
* in one of the two half-planes delimited by the line,
|
|
392
|
-
* or as smooth curves formed by sequences of semicircles.
|
|
633
|
+
/* *
|
|
393
634
|
*
|
|
394
|
-
*
|
|
395
|
-
* Arc Diagram
|
|
635
|
+
* Static Properties
|
|
396
636
|
*
|
|
397
|
-
*
|
|
398
|
-
|
|
399
|
-
* @product highcharts
|
|
400
|
-
* @requires modules/arc-diagram
|
|
401
|
-
* @exclude curveFactor, connectEnds, connectNulls, colorAxis, colorKey,
|
|
402
|
-
* dataSorting, dragDrop, getExtremesFromAll, nodeAlignment,
|
|
403
|
-
* nodePadding, centerInCategory, pointInterval,
|
|
404
|
-
* pointIntervalUnit, pointPlacement, pointStart,
|
|
405
|
-
* relativeXValue, softThreshold, stack, stacking, step,
|
|
406
|
-
* xAxis, yAxis
|
|
407
|
-
* @optionparent plotOptions.arcdiagram
|
|
408
|
-
*/
|
|
409
|
-
ArcDiagramSeries.defaultOptions = merge(SankeySeries.defaultOptions, {
|
|
410
|
-
/**
|
|
411
|
-
* The option to center links rather than position them one after
|
|
412
|
-
* another
|
|
413
|
-
*
|
|
414
|
-
* @type {boolean}
|
|
415
|
-
* @since 10.0.0
|
|
416
|
-
* @default false
|
|
417
|
-
* @product highcharts
|
|
418
|
-
*/
|
|
419
|
-
centeredLinks: false,
|
|
420
|
-
/**
|
|
421
|
-
* The radius of the link arc. If not set, series renders a semi-circle
|
|
422
|
-
* between the nodes, except when overflowing the edge of the plot area,
|
|
423
|
-
* in which case an arc touching the edge is rendered. If `linkRadius`
|
|
424
|
-
* is set, an arc extending to the given value is rendered.
|
|
425
|
-
*
|
|
426
|
-
* @type {number}
|
|
427
|
-
* @since 10.0.0
|
|
428
|
-
* @default undefined
|
|
429
|
-
* @product highcharts
|
|
430
|
-
* @apioption series.arcdiagram.linkRadius
|
|
431
|
-
*/
|
|
432
|
-
/**
|
|
433
|
-
* The offset of an arc diagram nodes column in relation to the
|
|
434
|
-
* `plotArea`. The offset equal to 50% places nodes in the center of a
|
|
435
|
-
* chart. By default the series is placed so that the biggest node is
|
|
436
|
-
* touching the bottom border of the `plotArea`.
|
|
437
|
-
*
|
|
438
|
-
* @type {string}
|
|
439
|
-
* @since 10.0.0
|
|
440
|
-
* @default '100%'
|
|
441
|
-
* @product highcharts
|
|
442
|
-
* @apioption series.arcdiagram.offset
|
|
443
|
-
*/
|
|
444
|
-
offset: '100%',
|
|
445
|
-
/**
|
|
446
|
-
* The global link weight, in pixels. If not set, width is calculated
|
|
447
|
-
* per link, depending on the weight value.
|
|
448
|
-
*
|
|
449
|
-
* @sample highcharts/series-arcdiagram/link-weight
|
|
450
|
-
* Link weight
|
|
451
|
-
*
|
|
452
|
-
* @type {number}
|
|
453
|
-
* @since 10.0.0
|
|
454
|
-
* @default undefined
|
|
455
|
-
* @product highcharts
|
|
456
|
-
* @apioption series.arcdiagram.linkWeight
|
|
457
|
-
*/
|
|
458
|
-
/**
|
|
459
|
-
* Whether nodes with different values should have the same size. If set
|
|
460
|
-
* to true, all nodes are calculated based on the `nodePadding` and
|
|
461
|
-
* current `plotArea`. It is possible to override it using the
|
|
462
|
-
* `marker.radius` option.
|
|
463
|
-
*
|
|
464
|
-
* @type {boolean}
|
|
465
|
-
* @since 10.0.0
|
|
466
|
-
* @default false
|
|
467
|
-
* @product highcharts
|
|
468
|
-
*/
|
|
469
|
-
equalNodes: false,
|
|
470
|
-
/**
|
|
471
|
-
* Whether the series should be placed on the other side of the
|
|
472
|
-
* `plotArea`.
|
|
473
|
-
*
|
|
474
|
-
* @type {boolean}
|
|
475
|
-
* @since 10.0.0
|
|
476
|
-
* @default false
|
|
477
|
-
* @product highcharts
|
|
478
|
-
*/
|
|
479
|
-
reversed: false,
|
|
480
|
-
/**
|
|
481
|
-
* Options for the data labels appearing on top of the nodes and links.
|
|
482
|
-
* For arc diagram charts, data labels are visible for the nodes by
|
|
483
|
-
* default, but hidden for links. This is controlled by modifying the
|
|
484
|
-
* `nodeFormat`, and the `format` that applies to links and is an empty
|
|
485
|
-
* string by default.
|
|
486
|
-
*
|
|
487
|
-
* @declare Highcharts.SeriesArcDiagramDataLabelsOptionsObject
|
|
488
|
-
*
|
|
489
|
-
* @private
|
|
490
|
-
*/
|
|
491
|
-
dataLabels: {
|
|
492
|
-
/**
|
|
493
|
-
* Options for a _link_ label text which should follow link
|
|
494
|
-
* connection. Border and background are disabled for a label that
|
|
495
|
-
* follows a path.
|
|
496
|
-
*
|
|
497
|
-
* **Note:** Only SVG-based renderer supports this option. Setting
|
|
498
|
-
* `useHTML` to true will disable this option.
|
|
499
|
-
*
|
|
500
|
-
* @extends plotOptions.networkgraph.dataLabels.linkTextPath
|
|
501
|
-
* @since 10.0.0
|
|
502
|
-
*/
|
|
503
|
-
linkTextPath: {
|
|
504
|
-
/**
|
|
505
|
-
* @type {Highcharts.SVGAttributes}
|
|
506
|
-
* @default {"startOffset":"25%"}
|
|
507
|
-
*/
|
|
508
|
-
attributes: {
|
|
509
|
-
/**
|
|
510
|
-
* @ignore-option
|
|
511
|
-
*/
|
|
512
|
-
startOffset: '25%'
|
|
513
|
-
}
|
|
514
|
-
}
|
|
515
|
-
},
|
|
516
|
-
/**
|
|
517
|
-
* @extends plotOptions.series.marker
|
|
518
|
-
* @excluding enabled, enabledThreshold, height, width
|
|
519
|
-
*/
|
|
520
|
-
marker: {
|
|
521
|
-
symbol: 'circle',
|
|
522
|
-
fillOpacity: 1,
|
|
523
|
-
lineWidth: 0,
|
|
524
|
-
states: {}
|
|
525
|
-
}
|
|
526
|
-
});
|
|
637
|
+
* */
|
|
638
|
+
ArcDiagramSeries.defaultOptions = merge(SankeySeries.defaultOptions, ArcDiagramSeriesDefaults);
|
|
527
639
|
extend(ArcDiagramSeries.prototype, {
|
|
528
640
|
orderNodes: false
|
|
529
641
|
});
|
|
@@ -534,93 +646,6 @@
|
|
|
534
646
|
* Default Export
|
|
535
647
|
*
|
|
536
648
|
* */
|
|
537
|
-
/* *
|
|
538
|
-
*
|
|
539
|
-
* API Options
|
|
540
|
-
*
|
|
541
|
-
* */
|
|
542
|
-
/**
|
|
543
|
-
* An `arcdiagram` series. If the [type](#series.arcdiagram.type)
|
|
544
|
-
* option is not specified, it is inherited from [chart.type](#chart.type).
|
|
545
|
-
*
|
|
546
|
-
* @extends series,plotOptions.arcdiagram
|
|
547
|
-
* @exclude dataSorting, boostThreshold, boostBlending, curveFactor,
|
|
548
|
-
* connectEnds, connectNulls, colorAxis, colorKey, dataSorting,
|
|
549
|
-
* dragDrop, getExtremesFromAll, nodePadding, centerInCategory,
|
|
550
|
-
* pointInterval, pointIntervalUnit, pointPlacement,
|
|
551
|
-
* pointStart, relativeXValue, softThreshold, stack,
|
|
552
|
-
* stacking, step, xAxis, yAxis
|
|
553
|
-
* @product highcharts
|
|
554
|
-
* @requires modules/sankey
|
|
555
|
-
* @requires modules/arc-diagram
|
|
556
|
-
* @apioption series.arcdiagram
|
|
557
|
-
*/
|
|
558
|
-
/**
|
|
559
|
-
* @extends plotOptions.series.marker
|
|
560
|
-
* @excluding enabled, enabledThreshold, height, radius, width
|
|
561
|
-
* @apioption series.arcdiagram.marker
|
|
562
|
-
*/
|
|
563
|
-
/**
|
|
564
|
-
* @type {Highcharts.SeriesArcDiagramDataLabelsOptionsObject|Array<Highcharts.SeriesArcDiagramDataLabelsOptionsObject>}
|
|
565
|
-
* @product highcharts
|
|
566
|
-
* @apioption series.arcdiagram.data.dataLabels
|
|
567
|
-
*/
|
|
568
|
-
/**
|
|
569
|
-
* A collection of options for the individual nodes. The nodes in an arc diagram
|
|
570
|
-
* are auto-generated instances of `Highcharts.Point`, but options can be
|
|
571
|
-
* applied here and linked by the `id`.
|
|
572
|
-
*
|
|
573
|
-
* @extends series.sankey.nodes
|
|
574
|
-
* @type {Array<*>}
|
|
575
|
-
* @product highcharts
|
|
576
|
-
* @excluding column, level
|
|
577
|
-
* @apioption series.arcdiagram.nodes
|
|
578
|
-
*/
|
|
579
|
-
/**
|
|
580
|
-
* Individual data label for each node. The options are the same as the ones for
|
|
581
|
-
* [series.arcdiagram.dataLabels](#series.arcdiagram.dataLabels).
|
|
582
|
-
*
|
|
583
|
-
* @type
|
|
584
|
-
* {Highcharts.SeriesArcDiagramDataLabelsOptionsObject|Array<Highcharts.SeriesArcDiagramDataLabelsOptionsObject>}
|
|
585
|
-
*
|
|
586
|
-
* @apioption series.arcdiagram.nodes.dataLabels
|
|
587
|
-
*/
|
|
588
|
-
/**
|
|
589
|
-
* Individual data label for each node. The options are the same as the ones for
|
|
590
|
-
* [series.arcdiagram.dataLabels](#series.arcdiagram.dataLabels).
|
|
591
|
-
*
|
|
592
|
-
* @type
|
|
593
|
-
* {Highcharts.SeriesArcDiagramDataLabelsOptionsObject|Array<Highcharts.SeriesArcDiagramDataLabelsOptionsObject>}
|
|
594
|
-
*
|
|
595
|
-
*/
|
|
596
|
-
/**
|
|
597
|
-
* An array of data points for the series. For the `arcdiagram` series type,
|
|
598
|
-
* points can be given in the following way:
|
|
599
|
-
*
|
|
600
|
-
* An array of objects with named values. The following snippet shows only a few
|
|
601
|
-
* settings, see the complete options set below. If the total number of data
|
|
602
|
-
* points exceeds the series' [turboThreshold](#series.area.turboThreshold),
|
|
603
|
-
* this option is not available.
|
|
604
|
-
*
|
|
605
|
-
* ```js
|
|
606
|
-
* data: [{
|
|
607
|
-
* from: 'Category1',
|
|
608
|
-
* to: 'Category2',
|
|
609
|
-
* weight: 2
|
|
610
|
-
* }, {
|
|
611
|
-
* from: 'Category1',
|
|
612
|
-
* to: 'Category3',
|
|
613
|
-
* weight: 5
|
|
614
|
-
* }]
|
|
615
|
-
* ```
|
|
616
|
-
*
|
|
617
|
-
* @type {Array<*>}
|
|
618
|
-
* @extends series.sankey.data
|
|
619
|
-
* @product highcharts
|
|
620
|
-
* @excluding outgoing, dataLabels
|
|
621
|
-
* @apioption series.arcdiagram.data
|
|
622
|
-
*/
|
|
623
|
-
''; // Adds doclets above to the transpiled file
|
|
624
649
|
|
|
625
650
|
return ArcDiagramSeries;
|
|
626
651
|
});
|