highcharts 6.1.4 → 6.2.0
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 +17 -0
- package/css/highcharts.scss +14 -0
- package/css/themes/dark-unica.css +17 -0
- package/css/themes/grid-light.css +17 -0
- package/css/themes/sand-signika.css +17 -0
- package/es-modules/indicators/momentum.src.js +1 -1
- package/es-modules/indicators/pivot-points.src.js +6 -1
- package/es-modules/masters/highcharts-gantt.src.js +11 -0
- package/es-modules/masters/modules/annotations.src.js +1 -1
- package/es-modules/masters/modules/arrow-symbols.src.js +12 -0
- package/es-modules/masters/modules/broken-axis.src.js +1 -1
- package/es-modules/masters/modules/current-date-indicator.src.js +12 -0
- package/es-modules/masters/modules/data.src.js +1 -1
- package/es-modules/masters/modules/draggable-points.src.js +9 -0
- 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/funnel.src.js +1 -1
- package/es-modules/masters/modules/gantt.src.js +2 -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/item-series.src.js +1 -1
- package/es-modules/masters/modules/map.src.js +1 -1
- package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
- package/es-modules/masters/modules/pathfinder.src.js +12 -0
- 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/solid-gauge.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/treegrid.src.js +12 -0
- 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/windbarb.src.js +1 -1
- package/es-modules/masters/modules/xrange.src.js +1 -1
- package/es-modules/masters/themes/dark-blue.src.js +1 -1
- package/es-modules/masters/themes/dark-green.src.js +1 -1
- package/es-modules/masters/themes/dark-unica.src.js +1 -1
- package/es-modules/masters/themes/gray.src.js +1 -1
- package/es-modules/masters/themes/grid-light.src.js +1 -1
- package/es-modules/masters/themes/grid.src.js +1 -1
- package/es-modules/masters/themes/sand-signika.src.js +1 -1
- package/es-modules/masters/themes/skies.src.js +1 -1
- package/es-modules/mixins/centered-series.js +1 -1
- package/es-modules/mixins/on-series.js +1 -1
- package/es-modules/modules/boost.src.js +22 -14
- package/es-modules/modules/broken-axis.src.js +169 -134
- package/es-modules/modules/data.src.js +2 -2
- package/es-modules/modules/draggable-points.src.js +2257 -0
- package/es-modules/modules/drilldown.src.js +1 -0
- package/es-modules/modules/export-data.src.js +1 -1
- package/es-modules/modules/exporting.src.js +1 -1
- package/es-modules/modules/funnel.src.js +1 -1
- package/es-modules/modules/item-series.src.js +1 -1
- package/es-modules/modules/no-data-to-display.src.js +5 -5
- package/es-modules/modules/oldie.src.js +1 -1
- package/es-modules/modules/overlapping-datalabels.src.js +38 -22
- package/es-modules/modules/parallel-coordinates.src.js +3 -2
- package/es-modules/modules/sankey.src.js +1 -1
- package/es-modules/modules/series-label.src.js +2 -2
- package/es-modules/modules/solid-gauge.src.js +1 -1
- package/es-modules/modules/static-scale.src.js +67 -28
- package/es-modules/modules/streamgraph.src.js +1 -1
- package/es-modules/modules/tilemap.src.js +231 -134
- package/es-modules/modules/variwide.src.js +1 -1
- package/es-modules/modules/vector.src.js +92 -22
- package/es-modules/modules/windbarb.src.js +1 -1
- package/es-modules/modules/xrange.src.js +257 -77
- package/es-modules/parts/AreaSeries.js +77 -77
- package/es-modules/parts/AreaSplineSeries.js +64 -27
- package/es-modules/parts/Axis.js +160 -67
- package/es-modules/parts/BarSeries.js +68 -51
- package/es-modules/parts/CandlestickSeries.js +1 -1
- package/es-modules/parts/Chart.js +31 -55
- package/es-modules/parts/Color.js +29 -18
- package/es-modules/parts/ColumnSeries.js +264 -142
- package/es-modules/parts/DataGrouping.js +9 -6
- package/es-modules/parts/DataLabels.js +261 -210
- package/es-modules/parts/DateTimeAxis.js +26 -7
- package/es-modules/parts/Dynamics.js +5 -2
- package/es-modules/parts/FlagsSeries.js +1 -1
- package/es-modules/parts/Globals.js +1 -1
- package/es-modules/parts/Html.js +64 -12
- package/es-modules/parts/Interaction.js +187 -63
- package/es-modules/parts/Legend.js +7 -3
- package/es-modules/parts/LogarithmicAxis.js +35 -4
- package/es-modules/parts/MSPointer.js +1 -1
- package/es-modules/parts/Navigator.js +27 -5
- package/es-modules/parts/OHLCSeries.js +1 -1
- package/es-modules/parts/Options.js +15 -13
- package/es-modules/parts/OrdinalAxis.js +1 -1
- package/es-modules/parts/PieSeries.js +256 -140
- package/es-modules/parts/PlotBandSeries.experimental.js +1 -1
- package/es-modules/parts/PlotLineOrBand.js +7 -40
- package/es-modules/parts/Point.js +28 -4
- package/es-modules/parts/Pointer.js +8 -6
- package/es-modules/parts/RangeSelector.js +1 -1
- package/es-modules/parts/Responsive.js +82 -36
- package/es-modules/parts/ScatterSeries.js +57 -25
- package/es-modules/parts/ScrollablePlotArea.js +17 -7
- package/es-modules/parts/Scrollbar.js +9 -2
- package/es-modules/parts/Series.js +22 -9
- package/es-modules/parts/SplineSeries.js +51 -29
- package/es-modules/parts/Stacking.js +100 -6
- package/es-modules/parts/StockChart.js +9 -3
- package/es-modules/parts/SvgRenderer.js +15 -10
- package/es-modules/parts/Tick.js +150 -30
- package/es-modules/parts/Time.js +23 -5
- package/es-modules/parts/Tooltip.js +2 -2
- package/es-modules/parts/TouchPointer.js +1 -1
- package/es-modules/parts/Utilities.js +16 -1
- package/es-modules/parts-3d/Axis.js +1 -1
- package/es-modules/parts-3d/Chart.js +1 -1
- package/es-modules/parts-3d/Column.js +1 -1
- package/es-modules/parts-3d/Math.js +1 -1
- package/es-modules/parts-3d/Pie.js +1 -1
- package/es-modules/parts-3d/SVGRenderer.js +1 -1
- package/es-modules/parts-3d/Scatter.js +1 -1
- package/es-modules/parts-3d/Series.js +1 -1
- package/es-modules/parts-3d/VMLRenderer.js +1 -1
- package/es-modules/parts-gantt/ArrowSymbols.js +110 -0
- package/es-modules/parts-gantt/CurrentDateIndicator.js +92 -0
- package/es-modules/parts-gantt/GanttChart.js +111 -0
- package/es-modules/parts-gantt/GanttSeries.js +376 -0
- package/es-modules/parts-gantt/GridAxis.js +965 -0
- package/es-modules/parts-gantt/Pathfinder.js +1247 -0
- package/es-modules/parts-gantt/PathfinderAlgorithms.js +746 -0
- package/es-modules/parts-gantt/Tree.js +146 -0
- package/es-modules/parts-gantt/TreeGrid.js +917 -0
- package/es-modules/parts-map/ColorAxis.js +1 -1
- package/es-modules/parts-map/ColorSeriesMixin.js +1 -1
- package/es-modules/parts-map/GeoJSON.js +1 -1
- package/es-modules/parts-map/HeatmapSeries.js +124 -53
- package/es-modules/parts-map/Map.js +1 -1
- package/es-modules/parts-map/MapAxis.js +1 -1
- package/es-modules/parts-map/MapBubbleSeries.js +1 -1
- package/es-modules/parts-map/MapLineSeries.js +1 -1
- package/es-modules/parts-map/MapNavigation.js +1 -1
- package/es-modules/parts-map/MapPointSeries.js +1 -1
- package/es-modules/parts-map/MapPointer.js +1 -1
- package/es-modules/parts-map/MapSeries.js +2 -2
- package/es-modules/parts-more/AreaRangeSeries.js +80 -38
- package/es-modules/parts-more/AreaSplineRangeSeries.js +1 -1
- package/es-modules/parts-more/BoxPlotSeries.js +1 -1
- package/es-modules/parts-more/BubbleSeries.js +1 -1
- package/es-modules/parts-more/ColumnRangeSeries.js +1 -1
- package/es-modules/parts-more/ErrorBarSeries.js +1 -1
- package/es-modules/parts-more/GaugeSeries.js +1 -1
- package/es-modules/parts-more/Pane.js +2 -1
- package/es-modules/parts-more/Polar.js +1 -1
- package/es-modules/parts-more/PolygonSeries.js +1 -1
- package/es-modules/parts-more/RadialAxis.js +5 -4
- package/es-modules/parts-more/WaterfallSeries.js +1 -1
- package/es-modules/supplemental.docs.js +0 -1955
- package/es-modules/themes/dark-blue.js +1 -1
- package/es-modules/themes/dark-green.js +1 -1
- package/es-modules/themes/dark-unica.js +1 -1
- package/es-modules/themes/gray.js +1 -1
- package/es-modules/themes/grid-light.js +1 -1
- package/es-modules/themes/grid.js +1 -1
- package/es-modules/themes/sand-signika.js +1 -1
- package/es-modules/themes/skies.js +1 -1
- package/highcharts-3d.js +1 -1
- package/highcharts-3d.src.js +10 -10
- package/highcharts-gantt.js +503 -0
- package/highcharts-gantt.js.map +1 -0
- package/highcharts-gantt.src.js +49289 -0
- package/highcharts-more.js +65 -64
- package/highcharts-more.js.map +1 -1
- package/highcharts-more.src.js +97 -53
- package/highcharts.js +415 -410
- package/highcharts.js.map +1 -1
- package/highcharts.src.js +2170 -1128
- package/highmaps.js +443 -438
- package/highmaps.js.map +1 -1
- package/highmaps.src.js +1647 -849
- package/highstock.js +553 -548
- package/highstock.js.map +1 -1
- package/highstock.src.js +2398 -1283
- package/indicators/accumulation-distribution.js +1 -1
- package/indicators/accumulation-distribution.src.js +1 -1
- package/indicators/atr.js +1 -1
- package/indicators/atr.src.js +1 -1
- package/indicators/bollinger-bands.js +1 -1
- package/indicators/bollinger-bands.src.js +1 -1
- package/indicators/cci.js +1 -1
- package/indicators/cci.src.js +1 -1
- package/indicators/cmf.js +1 -1
- package/indicators/cmf.src.js +1 -1
- package/indicators/ema.js +1 -1
- package/indicators/ema.src.js +1 -1
- package/indicators/ichimoku-kinko-hyo.js +1 -1
- package/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/indicators/indicators.js +1 -1
- package/indicators/indicators.src.js +1 -1
- package/indicators/macd.js +1 -1
- package/indicators/macd.src.js +1 -1
- package/indicators/mfi.js +1 -1
- package/indicators/mfi.src.js +1 -1
- package/indicators/momentum.js +1 -1
- package/indicators/momentum.src.js +2 -2
- package/indicators/pivot-points.js +4 -4
- package/indicators/pivot-points.js.map +1 -1
- package/indicators/pivot-points.src.js +7 -2
- package/indicators/price-envelopes.js +1 -1
- package/indicators/price-envelopes.src.js +1 -1
- package/indicators/psar.js +1 -1
- package/indicators/psar.src.js +1 -1
- package/indicators/roc.js +1 -1
- package/indicators/roc.src.js +1 -1
- package/indicators/rsi.js +1 -1
- package/indicators/rsi.src.js +1 -1
- package/indicators/stochastic.js +1 -1
- package/indicators/stochastic.src.js +1 -1
- package/indicators/volume-by-price.js +1 -1
- package/indicators/volume-by-price.src.js +1 -1
- package/indicators/vwap.js +1 -1
- package/indicators/vwap.src.js +1 -1
- package/indicators/wma.js +1 -1
- package/indicators/wma.src.js +1 -1
- package/indicators/zigzag.js +1 -1
- package/indicators/zigzag.src.js +1 -1
- package/js/es-modules/indicators/momentum.src.js +1 -1
- package/js/es-modules/indicators/pivot-points.src.js +6 -1
- package/js/es-modules/masters/highcharts-gantt.src.js +11 -0
- package/js/es-modules/masters/modules/annotations.src.js +1 -1
- package/js/es-modules/masters/modules/arrow-symbols.src.js +12 -0
- package/js/es-modules/masters/modules/broken-axis.src.js +1 -1
- package/js/es-modules/masters/modules/current-date-indicator.src.js +12 -0
- package/js/es-modules/masters/modules/data.src.js +1 -1
- package/js/es-modules/masters/modules/draggable-points.src.js +9 -0
- package/js/es-modules/masters/modules/export-data.src.js +1 -1
- package/js/es-modules/masters/modules/exporting.src.js +1 -1
- package/js/es-modules/masters/modules/funnel.src.js +1 -1
- package/js/es-modules/masters/modules/gantt.src.js +2 -1
- package/js/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/js/es-modules/masters/modules/heatmap.src.js +1 -1
- package/js/es-modules/masters/modules/item-series.src.js +1 -1
- package/js/es-modules/masters/modules/map.src.js +1 -1
- package/js/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
- package/js/es-modules/masters/modules/pathfinder.src.js +12 -0
- package/js/es-modules/masters/modules/sankey.src.js +1 -1
- package/js/es-modules/masters/modules/series-label.src.js +1 -1
- package/js/es-modules/masters/modules/solid-gauge.src.js +1 -1
- package/js/es-modules/masters/modules/stock.src.js +1 -1
- package/js/es-modules/masters/modules/streamgraph.src.js +1 -1
- package/js/es-modules/masters/modules/treegrid.src.js +12 -0
- package/js/es-modules/masters/modules/variwide.src.js +1 -1
- package/js/es-modules/masters/modules/vector.src.js +1 -1
- package/js/es-modules/masters/modules/windbarb.src.js +1 -1
- package/js/es-modules/masters/modules/xrange.src.js +1 -1
- package/js/es-modules/masters/themes/dark-blue.src.js +1 -1
- package/js/es-modules/masters/themes/dark-green.src.js +1 -1
- package/js/es-modules/masters/themes/dark-unica.src.js +1 -1
- package/js/es-modules/masters/themes/gray.src.js +1 -1
- package/js/es-modules/masters/themes/grid-light.src.js +1 -1
- package/js/es-modules/masters/themes/grid.src.js +1 -1
- package/js/es-modules/masters/themes/sand-signika.src.js +1 -1
- package/js/es-modules/masters/themes/skies.src.js +1 -1
- package/js/es-modules/mixins/centered-series.js +1 -1
- package/js/es-modules/mixins/on-series.js +1 -1
- package/js/es-modules/modules/boost.src.js +22 -14
- package/js/es-modules/modules/broken-axis.src.js +169 -134
- package/js/es-modules/modules/data.src.js +2 -2
- package/js/es-modules/modules/draggable-points.src.js +2257 -0
- package/js/es-modules/modules/drilldown.src.js +1 -0
- package/js/es-modules/modules/export-data.src.js +1 -1
- package/js/es-modules/modules/exporting.src.js +1 -1
- package/js/es-modules/modules/funnel.src.js +1 -1
- package/js/es-modules/modules/item-series.src.js +1 -1
- package/js/es-modules/modules/no-data-to-display.src.js +5 -5
- package/js/es-modules/modules/oldie.src.js +1 -1
- package/js/es-modules/modules/overlapping-datalabels.src.js +38 -22
- package/js/es-modules/modules/parallel-coordinates.src.js +3 -2
- package/js/es-modules/modules/sankey.src.js +1 -1
- package/js/es-modules/modules/series-label.src.js +2 -2
- package/js/es-modules/modules/solid-gauge.src.js +1 -1
- package/js/es-modules/modules/static-scale.src.js +67 -28
- package/js/es-modules/modules/streamgraph.src.js +1 -1
- package/js/es-modules/modules/tilemap.src.js +231 -134
- package/js/es-modules/modules/variwide.src.js +1 -1
- package/js/es-modules/modules/vector.src.js +92 -22
- package/js/es-modules/modules/windbarb.src.js +1 -1
- package/js/es-modules/modules/xrange.src.js +255 -68
- package/js/es-modules/parts/AreaSeries.js +77 -77
- package/js/es-modules/parts/AreaSplineSeries.js +64 -27
- package/js/es-modules/parts/Axis.js +160 -67
- package/js/es-modules/parts/BarSeries.js +68 -51
- package/js/es-modules/parts/CandlestickSeries.js +1 -1
- package/js/es-modules/parts/Chart.js +31 -55
- package/js/es-modules/parts/Color.js +29 -18
- package/js/es-modules/parts/ColumnSeries.js +231 -123
- package/js/es-modules/parts/DataGrouping.js +9 -6
- package/js/es-modules/parts/DataLabels.js +230 -182
- package/js/es-modules/parts/DateTimeAxis.js +26 -7
- package/js/es-modules/parts/Dynamics.js +5 -2
- package/js/es-modules/parts/FlagsSeries.js +1 -1
- package/js/es-modules/parts/Globals.js +1 -1
- package/js/es-modules/parts/Html.js +64 -12
- package/js/es-modules/parts/Interaction.js +178 -61
- package/js/es-modules/parts/Legend.js +7 -3
- package/js/es-modules/parts/LogarithmicAxis.js +35 -4
- package/js/es-modules/parts/MSPointer.js +1 -1
- package/js/es-modules/parts/Navigator.js +27 -5
- package/js/es-modules/parts/OHLCSeries.js +1 -1
- package/js/es-modules/parts/Options.js +13 -12
- package/js/es-modules/parts/OrdinalAxis.js +1 -1
- package/js/es-modules/parts/PieSeries.js +245 -132
- package/js/es-modules/parts/PlotBandSeries.experimental.js +1 -1
- package/js/es-modules/parts/PlotLineOrBand.js +7 -40
- package/js/es-modules/parts/Point.js +28 -4
- package/js/es-modules/parts/Pointer.js +8 -6
- package/js/es-modules/parts/RangeSelector.js +1 -1
- package/js/es-modules/parts/Responsive.js +82 -36
- package/js/es-modules/parts/ScatterSeries.js +56 -25
- package/js/es-modules/parts/ScrollablePlotArea.js +17 -7
- package/js/es-modules/parts/Scrollbar.js +9 -2
- package/js/es-modules/parts/Series.js +22 -9
- package/js/es-modules/parts/SplineSeries.js +51 -29
- package/js/es-modules/parts/Stacking.js +100 -6
- package/js/es-modules/parts/StockChart.js +9 -3
- package/js/es-modules/parts/SvgRenderer.js +15 -10
- package/js/es-modules/parts/Tick.js +150 -30
- package/js/es-modules/parts/Time.js +23 -5
- package/js/es-modules/parts/Tooltip.js +2 -2
- package/js/es-modules/parts/TouchPointer.js +1 -1
- package/js/es-modules/parts/Utilities.js +16 -1
- package/js/es-modules/parts-3d/Axis.js +1 -1
- package/js/es-modules/parts-3d/Chart.js +1 -1
- package/js/es-modules/parts-3d/Column.js +1 -1
- package/js/es-modules/parts-3d/Math.js +1 -1
- package/js/es-modules/parts-3d/Pie.js +1 -1
- package/js/es-modules/parts-3d/SVGRenderer.js +1 -1
- package/js/es-modules/parts-3d/Scatter.js +1 -1
- package/js/es-modules/parts-3d/Series.js +1 -1
- package/js/es-modules/parts-3d/VMLRenderer.js +1 -1
- package/js/es-modules/parts-gantt/ArrowSymbols.js +110 -0
- package/js/es-modules/parts-gantt/CurrentDateIndicator.js +92 -0
- package/js/es-modules/parts-gantt/GanttChart.js +111 -0
- package/js/es-modules/parts-gantt/GanttSeries.js +371 -0
- package/js/es-modules/parts-gantt/GridAxis.js +962 -0
- package/js/es-modules/parts-gantt/Pathfinder.js +1225 -0
- package/js/es-modules/parts-gantt/PathfinderAlgorithms.js +746 -0
- package/js/es-modules/parts-gantt/Tree.js +146 -0
- package/js/es-modules/parts-gantt/TreeGrid.js +891 -0
- package/js/es-modules/parts-map/ColorAxis.js +1 -1
- package/js/es-modules/parts-map/ColorSeriesMixin.js +1 -1
- package/js/es-modules/parts-map/GeoJSON.js +1 -1
- package/js/es-modules/parts-map/HeatmapSeries.js +122 -52
- package/js/es-modules/parts-map/Map.js +1 -1
- package/js/es-modules/parts-map/MapAxis.js +1 -1
- package/js/es-modules/parts-map/MapBubbleSeries.js +1 -1
- package/js/es-modules/parts-map/MapLineSeries.js +1 -1
- package/js/es-modules/parts-map/MapNavigation.js +1 -1
- package/js/es-modules/parts-map/MapPointSeries.js +1 -1
- package/js/es-modules/parts-map/MapPointer.js +1 -1
- package/js/es-modules/parts-map/MapSeries.js +2 -2
- package/js/es-modules/parts-more/AreaRangeSeries.js +80 -38
- package/js/es-modules/parts-more/AreaSplineRangeSeries.js +1 -1
- package/js/es-modules/parts-more/BoxPlotSeries.js +1 -1
- package/js/es-modules/parts-more/BubbleSeries.js +1 -1
- package/js/es-modules/parts-more/ColumnRangeSeries.js +1 -1
- package/js/es-modules/parts-more/ErrorBarSeries.js +1 -1
- package/js/es-modules/parts-more/GaugeSeries.js +1 -1
- package/js/es-modules/parts-more/Pane.js +2 -1
- package/js/es-modules/parts-more/Polar.js +1 -1
- package/js/es-modules/parts-more/PolygonSeries.js +1 -1
- package/js/es-modules/parts-more/RadialAxis.js +5 -4
- package/js/es-modules/parts-more/WaterfallSeries.js +1 -1
- package/js/es-modules/supplemental.docs.js +0 -1955
- package/js/es-modules/themes/dark-blue.js +1 -1
- package/js/es-modules/themes/dark-green.js +1 -1
- package/js/es-modules/themes/dark-unica.js +1 -1
- package/js/es-modules/themes/gray.js +1 -1
- package/js/es-modules/themes/grid-light.js +1 -1
- package/js/es-modules/themes/grid.js +1 -1
- package/js/es-modules/themes/sand-signika.js +1 -1
- package/js/es-modules/themes/skies.js +1 -1
- package/js/highcharts-3d.js +1 -1
- package/js/highcharts-3d.src.js +10 -10
- package/js/highcharts-gantt.js +480 -0
- package/js/highcharts-gantt.js.map +1 -0
- package/js/highcharts-gantt.src.js +47011 -0
- package/js/highcharts-more.js +62 -61
- package/js/highcharts-more.js.map +1 -1
- package/js/highcharts-more.src.js +97 -53
- package/js/highcharts.js +394 -390
- package/js/highcharts.js.map +1 -1
- package/js/highcharts.src.js +2083 -1070
- package/js/highmaps.js +420 -416
- package/js/highmaps.js.map +1 -1
- package/js/highmaps.src.js +1569 -798
- package/js/highstock.js +526 -520
- package/js/highstock.js.map +1 -1
- package/js/highstock.src.js +2311 -1225
- package/js/indicators/accumulation-distribution.js +1 -1
- package/js/indicators/accumulation-distribution.src.js +1 -1
- package/js/indicators/atr.js +1 -1
- package/js/indicators/atr.src.js +1 -1
- package/js/indicators/bollinger-bands.js +1 -1
- package/js/indicators/bollinger-bands.src.js +1 -1
- package/js/indicators/cci.js +1 -1
- package/js/indicators/cci.src.js +1 -1
- package/js/indicators/cmf.js +1 -1
- package/js/indicators/cmf.src.js +1 -1
- package/js/indicators/ema.js +1 -1
- package/js/indicators/ema.src.js +1 -1
- package/js/indicators/ichimoku-kinko-hyo.js +1 -1
- package/js/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/js/indicators/indicators.js +1 -1
- package/js/indicators/indicators.src.js +1 -1
- package/js/indicators/macd.js +1 -1
- package/js/indicators/macd.src.js +1 -1
- package/js/indicators/mfi.js +1 -1
- package/js/indicators/mfi.src.js +1 -1
- package/js/indicators/momentum.js +1 -1
- package/js/indicators/momentum.src.js +2 -2
- package/js/indicators/pivot-points.js +4 -4
- package/js/indicators/pivot-points.js.map +1 -1
- package/js/indicators/pivot-points.src.js +7 -2
- package/js/indicators/price-envelopes.js +1 -1
- package/js/indicators/price-envelopes.src.js +1 -1
- package/js/indicators/psar.js +1 -1
- package/js/indicators/psar.src.js +1 -1
- package/js/indicators/roc.js +1 -1
- package/js/indicators/roc.src.js +1 -1
- package/js/indicators/rsi.js +1 -1
- package/js/indicators/rsi.src.js +1 -1
- package/js/indicators/stochastic.js +1 -1
- package/js/indicators/stochastic.src.js +1 -1
- package/js/indicators/volume-by-price.js +1 -1
- package/js/indicators/volume-by-price.src.js +1 -1
- package/js/indicators/vwap.js +1 -1
- package/js/indicators/vwap.src.js +1 -1
- package/js/indicators/wma.js +1 -1
- package/js/indicators/wma.src.js +1 -1
- package/js/indicators/zigzag.js +1 -1
- package/js/indicators/zigzag.src.js +1 -1
- package/js/modules/accessibility.js +1 -1
- package/js/modules/accessibility.src.js +1 -1
- package/js/modules/annotations.js +2 -2
- package/js/modules/annotations.src.js +2 -2
- package/js/modules/arrow-symbols.js +13 -0
- package/js/modules/arrow-symbols.js.map +1 -0
- package/js/modules/arrow-symbols.src.js +138 -0
- package/js/modules/boost-canvas.js +1 -1
- package/js/modules/boost-canvas.src.js +1 -1
- package/js/modules/boost.js +43 -43
- package/js/modules/boost.js.map +1 -1
- package/js/modules/boost.src.js +23 -15
- package/js/modules/broken-axis.js +11 -10
- package/js/modules/broken-axis.js.map +1 -1
- package/js/modules/broken-axis.src.js +171 -136
- package/js/modules/bullet.js +1 -1
- package/js/modules/bullet.src.js +1 -1
- package/js/modules/current-date-indicator.js +13 -0
- package/js/modules/current-date-indicator.js.map +1 -0
- package/js/modules/current-date-indicator.src.js +120 -0
- package/js/modules/data.js +2 -2
- package/js/modules/data.src.js +4 -4
- package/js/modules/drag-panes.js +1 -1
- package/js/modules/drag-panes.src.js +1 -1
- package/js/modules/draggable-points.js +38 -0
- package/js/modules/draggable-points.js.map +1 -0
- package/js/modules/draggable-points.src.js +2281 -0
- package/js/modules/drilldown.js +1 -1
- package/js/modules/drilldown.js.map +1 -1
- package/js/modules/drilldown.src.js +2 -1
- package/js/modules/export-data.js +2 -2
- package/js/modules/export-data.src.js +3 -3
- package/js/modules/exporting.js +2 -2
- package/js/modules/exporting.src.js +3 -3
- package/js/modules/funnel.js +2 -2
- package/js/modules/funnel.src.js +3 -3
- package/js/modules/gantt.js +80 -18
- package/js/modules/gantt.js.map +1 -1
- package/js/modules/gantt.src.js +5490 -372
- package/js/modules/grid-axis.js +15 -11
- package/js/modules/grid-axis.js.map +1 -1
- package/js/modules/grid-axis.src.js +731 -293
- package/js/modules/heatmap.js +2 -2
- package/js/modules/heatmap.js.map +1 -1
- package/js/modules/heatmap.src.js +126 -56
- package/js/modules/histogram-bellcurve.js +1 -1
- package/js/modules/histogram-bellcurve.src.js +1 -1
- package/js/modules/item-series.js +2 -2
- package/js/modules/item-series.src.js +3 -3
- package/js/modules/map.js +2 -2
- package/js/modules/map.js.map +1 -1
- package/js/modules/map.src.js +137 -67
- package/js/modules/no-data-to-display.js +1 -1
- package/js/modules/no-data-to-display.src.js +6 -6
- package/js/modules/offline-exporting.js +2 -2
- package/js/modules/offline-exporting.src.js +2 -2
- package/js/modules/oldie.js +2 -2
- package/js/modules/oldie.src.js +3 -3
- package/js/modules/overlapping-datalabels.js +2 -2
- package/js/modules/overlapping-datalabels.src.js +2 -2
- package/js/modules/parallel-coordinates.js +9 -9
- package/js/modules/parallel-coordinates.js.map +1 -1
- package/js/modules/parallel-coordinates.src.js +4 -3
- package/js/modules/pareto.js +1 -1
- package/js/modules/pareto.src.js +1 -1
- package/js/modules/pathfinder.js +34 -0
- package/js/modules/pathfinder.js.map +1 -0
- package/js/modules/pathfinder.src.js +2106 -0
- package/js/modules/pattern-fill.js +1 -1
- package/js/modules/pattern-fill.src.js +1 -1
- package/js/modules/sankey.js +2 -2
- package/js/modules/sankey.src.js +3 -3
- package/js/modules/series-label.js +2 -2
- package/js/modules/series-label.src.js +4 -4
- package/js/modules/solid-gauge.js +2 -2
- package/js/modules/solid-gauge.src.js +3 -3
- package/js/modules/static-scale.js +3 -3
- package/js/modules/static-scale.js.map +1 -1
- package/js/modules/static-scale.src.js +65 -26
- package/js/modules/stock.js +135 -134
- package/js/modules/stock.js.map +1 -1
- package/js/modules/stock.src.js +230 -157
- package/js/modules/streamgraph.js +2 -2
- package/js/modules/streamgraph.src.js +3 -3
- package/js/modules/sunburst.js +1 -1
- package/js/modules/sunburst.src.js +1 -1
- package/js/modules/tilemap.js +1 -1
- package/js/modules/tilemap.js.map +1 -1
- package/js/modules/tilemap.src.js +355 -188
- package/js/modules/treegrid.js +51 -0
- package/js/modules/treegrid.js.map +1 -0
- package/js/modules/treegrid.src.js +2759 -0
- package/js/modules/treemap.js +1 -1
- package/js/modules/treemap.src.js +1 -1
- package/js/modules/variable-pie.js +1 -1
- package/js/modules/variable-pie.src.js +1 -1
- package/js/modules/variwide.js +2 -2
- package/js/modules/variwide.src.js +3 -3
- package/js/modules/vector.js +2 -2
- package/js/modules/vector.js.map +1 -1
- package/js/modules/vector.src.js +94 -24
- package/js/modules/windbarb.js +2 -2
- package/js/modules/windbarb.src.js +4 -4
- package/js/modules/wordcloud.js +1 -1
- package/js/modules/wordcloud.src.js +1 -1
- package/js/modules/xrange.js +11 -10
- package/js/modules/xrange.js.map +1 -1
- package/js/modules/xrange.src.js +257 -70
- package/js/themes/avocado.js +1 -1
- package/js/themes/avocado.src.js +1 -1
- package/js/themes/dark-blue.js +2 -2
- package/js/themes/dark-blue.src.js +3 -3
- package/js/themes/dark-green.js +2 -2
- package/js/themes/dark-green.src.js +3 -3
- package/js/themes/dark-unica.js +2 -2
- package/js/themes/dark-unica.src.js +3 -3
- package/js/themes/gray.js +2 -2
- package/js/themes/gray.src.js +3 -3
- package/js/themes/grid-light.js +2 -2
- package/js/themes/grid-light.src.js +3 -3
- package/js/themes/grid.js +2 -2
- package/js/themes/grid.src.js +3 -3
- package/js/themes/sand-signika.js +2 -2
- package/js/themes/sand-signika.src.js +3 -3
- package/js/themes/skies.js +2 -2
- package/js/themes/skies.src.js +3 -3
- package/js/themes/sunset.js +1 -1
- package/js/themes/sunset.src.js +1 -1
- package/modules/accessibility.js +1 -1
- package/modules/accessibility.src.js +1 -1
- package/modules/annotations.js +2 -2
- package/modules/annotations.src.js +2 -2
- package/modules/arrow-symbols.js +13 -0
- package/modules/arrow-symbols.js.map +1 -0
- package/modules/arrow-symbols.src.js +138 -0
- package/modules/boost-canvas.js +1 -1
- package/modules/boost-canvas.src.js +1 -1
- package/modules/boost.js +36 -36
- package/modules/boost.js.map +1 -1
- package/modules/boost.src.js +23 -15
- package/modules/broken-axis.js +11 -10
- package/modules/broken-axis.js.map +1 -1
- package/modules/broken-axis.src.js +171 -136
- package/modules/bullet.js +1 -1
- package/modules/bullet.src.js +1 -1
- package/modules/current-date-indicator.js +13 -0
- package/modules/current-date-indicator.js.map +1 -0
- package/modules/current-date-indicator.src.js +120 -0
- package/modules/data.js +2 -2
- package/modules/data.src.js +4 -4
- package/modules/drag-panes.js +1 -1
- package/modules/drag-panes.src.js +1 -1
- package/modules/draggable-points.js +38 -0
- package/modules/draggable-points.js.map +1 -0
- package/modules/draggable-points.src.js +2281 -0
- package/modules/drilldown.js +1 -1
- package/modules/drilldown.js.map +1 -1
- package/modules/drilldown.src.js +2 -1
- package/modules/export-data.js +2 -2
- package/modules/export-data.src.js +3 -3
- package/modules/exporting.js +2 -2
- package/modules/exporting.src.js +3 -3
- package/modules/funnel.js +2 -2
- package/modules/funnel.src.js +3 -3
- package/modules/gantt.js +83 -19
- package/modules/gantt.js.map +1 -1
- package/modules/gantt.src.js +5553 -379
- package/modules/grid-axis.js +16 -11
- package/modules/grid-axis.js.map +1 -1
- package/modules/grid-axis.src.js +732 -293
- package/modules/heatmap.js +2 -2
- package/modules/heatmap.js.map +1 -1
- package/modules/heatmap.src.js +128 -57
- package/modules/histogram-bellcurve.js +1 -1
- package/modules/histogram-bellcurve.src.js +1 -1
- package/modules/item-series.js +2 -2
- package/modules/item-series.src.js +3 -3
- package/modules/map.js +2 -2
- package/modules/map.js.map +1 -1
- package/modules/map.src.js +139 -68
- package/modules/no-data-to-display.js +1 -1
- package/modules/no-data-to-display.src.js +6 -6
- package/modules/offline-exporting.js +2 -2
- package/modules/offline-exporting.src.js +2 -2
- package/modules/oldie.js +2 -2
- package/modules/oldie.src.js +3 -3
- package/modules/overlapping-datalabels.js +2 -2
- package/modules/overlapping-datalabels.src.js +2 -2
- package/modules/parallel-coordinates.js +8 -8
- package/modules/parallel-coordinates.js.map +1 -1
- package/modules/parallel-coordinates.src.js +4 -3
- package/modules/pareto.js +1 -1
- package/modules/pareto.src.js +1 -1
- package/modules/pathfinder.js +35 -0
- package/modules/pathfinder.js.map +1 -0
- package/modules/pathfinder.src.js +2128 -0
- package/modules/pattern-fill.js +1 -1
- package/modules/pattern-fill.src.js +1 -1
- package/modules/sankey.js +2 -2
- package/modules/sankey.src.js +3 -3
- package/modules/series-label.js +2 -2
- package/modules/series-label.src.js +4 -4
- package/modules/solid-gauge.js +2 -2
- package/modules/solid-gauge.src.js +3 -3
- package/modules/static-scale.js +3 -3
- package/modules/static-scale.js.map +1 -1
- package/modules/static-scale.src.js +65 -26
- package/modules/stock.js +142 -142
- package/modules/stock.js.map +1 -1
- package/modules/stock.src.js +230 -157
- package/modules/streamgraph.js +2 -2
- package/modules/streamgraph.src.js +3 -3
- package/modules/sunburst.js +1 -1
- package/modules/sunburst.src.js +1 -1
- package/modules/tilemap.js +1 -1
- package/modules/tilemap.js.map +1 -1
- package/modules/tilemap.src.js +357 -189
- package/modules/treegrid.js +52 -0
- package/modules/treegrid.js.map +1 -0
- package/modules/treegrid.src.js +2797 -0
- package/modules/treemap.js +1 -1
- package/modules/treemap.src.js +1 -1
- package/modules/variable-pie.js +1 -1
- package/modules/variable-pie.src.js +1 -1
- package/modules/variwide.js +2 -2
- package/modules/variwide.src.js +3 -3
- package/modules/vector.js +2 -2
- package/modules/vector.js.map +1 -1
- package/modules/vector.src.js +94 -24
- package/modules/windbarb.js +2 -2
- package/modules/windbarb.src.js +4 -4
- package/modules/wordcloud.js +1 -1
- package/modules/wordcloud.src.js +1 -1
- package/modules/xrange.js +12 -11
- package/modules/xrange.js.map +1 -1
- package/modules/xrange.src.js +259 -79
- package/package.json +1 -1
- package/themes/avocado.js +1 -1
- package/themes/avocado.src.js +1 -1
- package/themes/dark-blue.js +2 -2
- package/themes/dark-blue.src.js +3 -3
- package/themes/dark-green.js +2 -2
- package/themes/dark-green.src.js +3 -3
- package/themes/dark-unica.js +2 -2
- package/themes/dark-unica.src.js +3 -3
- package/themes/gray.js +2 -2
- package/themes/gray.src.js +3 -3
- package/themes/grid-light.js +2 -2
- package/themes/grid-light.src.js +3 -3
- package/themes/grid.js +2 -2
- package/themes/grid.src.js +3 -3
- package/themes/sand-signika.js +2 -2
- package/themes/sand-signika.src.js +3 -3
- package/themes/skies.js +2 -2
- package/themes/skies.src.js +3 -3
- package/themes/sunset.js +1 -1
- package/themes/sunset.src.js +1 -1
|
@@ -1,42 +1,60 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* (c) 2010-
|
|
2
|
+
* (c) 2010-2018 Torstein Honsi
|
|
3
3
|
*
|
|
4
4
|
* License: www.highcharts.com/license
|
|
5
5
|
*/
|
|
6
|
+
|
|
6
7
|
'use strict';
|
|
8
|
+
|
|
7
9
|
import H from './Globals.js';
|
|
8
10
|
import './Utilities.js';
|
|
9
11
|
import './Options.js';
|
|
10
12
|
import './Series.js';
|
|
13
|
+
|
|
11
14
|
var Series = H.Series,
|
|
12
15
|
seriesType = H.seriesType;
|
|
13
16
|
|
|
14
17
|
/**
|
|
15
|
-
*
|
|
16
|
-
*
|
|
18
|
+
* Scatter series type.
|
|
19
|
+
*
|
|
20
|
+
* @private
|
|
21
|
+
* @class
|
|
22
|
+
* @name Highcharts.seriesTypes.scatter
|
|
23
|
+
*
|
|
24
|
+
* @augments Highcharts.Series
|
|
25
|
+
*/
|
|
26
|
+
seriesType('scatter', 'line'
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* A scatter plot uses cartesian coordinates to display values for two
|
|
30
|
+
* variables for a set of data.
|
|
31
|
+
*
|
|
32
|
+
* @sample {highcharts} highcharts/demo/scatter/
|
|
33
|
+
* Scatter plot
|
|
17
34
|
*
|
|
18
|
-
* @
|
|
19
|
-
* Scatter plot
|
|
20
|
-
* @extends {plotOptions.line}
|
|
35
|
+
* @extends plotOptions.line
|
|
21
36
|
* @excluding pointPlacement, shadow
|
|
22
37
|
* @product highcharts highstock
|
|
23
38
|
* @optionparent plotOptions.scatter
|
|
24
39
|
*/
|
|
25
|
-
|
|
40
|
+
, {
|
|
26
41
|
|
|
27
42
|
/**
|
|
28
43
|
* The width of the line connecting the data points.
|
|
29
44
|
*
|
|
30
|
-
* @sample
|
|
31
|
-
*
|
|
32
|
-
* @sample
|
|
33
|
-
*
|
|
45
|
+
* @sample {highcharts} highcharts/plotoptions/scatter-linewidth-none/
|
|
46
|
+
* 0 by default
|
|
47
|
+
* @sample {highcharts} highcharts/plotoptions/scatter-linewidth-1/
|
|
48
|
+
* 1px
|
|
49
|
+
*
|
|
34
50
|
* @product highcharts highstock
|
|
35
51
|
*/
|
|
36
52
|
lineWidth: 0,
|
|
37
53
|
|
|
38
54
|
findNearestPointBy: 'xy',
|
|
55
|
+
|
|
39
56
|
marker: {
|
|
57
|
+
|
|
40
58
|
enabled: true // Overrides auto-enabling in line series (#3647)
|
|
41
59
|
},
|
|
42
60
|
|
|
@@ -49,7 +67,7 @@ seriesType('scatter', 'line', {
|
|
|
49
67
|
* is false and `tooltip.shared` is false, the tooltip will be hidden
|
|
50
68
|
* when moving the mouse between series.
|
|
51
69
|
*
|
|
52
|
-
* @type {
|
|
70
|
+
* @type {boolean}
|
|
53
71
|
* @default false
|
|
54
72
|
* @product highcharts highstock
|
|
55
73
|
* @apioption plotOptions.scatter.stickyTracking
|
|
@@ -66,13 +84,21 @@ seriesType('scatter', 'line', {
|
|
|
66
84
|
* @product highcharts highstock
|
|
67
85
|
*/
|
|
68
86
|
tooltip: {
|
|
87
|
+
|
|
69
88
|
|
|
70
89
|
|
|
90
|
+
/**
|
|
91
|
+
* @default ● {series.name}
|
|
92
|
+
*/
|
|
71
93
|
headerFormat:
|
|
72
94
|
'<span class="highcharts-color-{point.colorIndex}">\u25CF</span> ' +
|
|
73
95
|
'<span class="highcharts-header"> {series.name}</span><br/>',
|
|
96
|
+
|
|
74
97
|
|
|
75
98
|
|
|
99
|
+
/**
|
|
100
|
+
* @default x: {point.x} y: {point.y}
|
|
101
|
+
*/
|
|
76
102
|
pointFormat: 'x: <b>{point.x}</b><br/>y: <b>{point.y}</b><br/>'
|
|
77
103
|
}
|
|
78
104
|
|
|
@@ -83,6 +109,11 @@ seriesType('scatter', 'line', {
|
|
|
83
109
|
noSharedTooltip: true,
|
|
84
110
|
trackerGroups: ['group', 'markerGroup', 'dataLabelsGroup'],
|
|
85
111
|
takeOrdinalPosition: false, // #2342
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* @private
|
|
115
|
+
* @function Highcharts.seriesTypes.scatter#drawGraph
|
|
116
|
+
*/
|
|
86
117
|
drawGraph: function () {
|
|
87
118
|
if (this.options.lineWidth) {
|
|
88
119
|
Series.prototype.drawGraph.call(this);
|
|
@@ -94,9 +125,8 @@ seriesType('scatter', 'line', {
|
|
|
94
125
|
* A `scatter` series. If the [type](#series.scatter.type) option is
|
|
95
126
|
* not specified, it is inherited from [chart.type](#chart.type).
|
|
96
127
|
*
|
|
97
|
-
* @type {Object}
|
|
98
128
|
* @extends series,plotOptions.scatter
|
|
99
|
-
* @excluding dataParser,dataURL
|
|
129
|
+
* @excluding dataParser, dataURL
|
|
100
130
|
* @product highcharts highstock
|
|
101
131
|
* @apioption series.scatter
|
|
102
132
|
*/
|
|
@@ -146,18 +176,19 @@ seriesType('scatter', 'line', {
|
|
|
146
176
|
* }]
|
|
147
177
|
* ```
|
|
148
178
|
*
|
|
149
|
-
* @
|
|
179
|
+
* @sample {highcharts} highcharts/chart/reflow-true/
|
|
180
|
+
* Numerical values
|
|
181
|
+
* @sample {highcharts} highcharts/series/data-array-of-arrays/
|
|
182
|
+
* Arrays of numeric x and y
|
|
183
|
+
* @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
|
|
184
|
+
* Arrays of datetime x and y
|
|
185
|
+
* @sample {highcharts} highcharts/series/data-array-of-name-value/
|
|
186
|
+
* Arrays of point.name and y
|
|
187
|
+
* @sample {highcharts} highcharts/series/data-array-of-objects/
|
|
188
|
+
* Config objects
|
|
189
|
+
*
|
|
190
|
+
* @type {Array<number|Array<number>|*>}
|
|
150
191
|
* @extends series.line.data
|
|
151
|
-
* @sample {highcharts} highcharts/chart/reflow-true/
|
|
152
|
-
* Numerical values
|
|
153
|
-
* @sample {highcharts} highcharts/series/data-array-of-arrays/
|
|
154
|
-
* Arrays of numeric x and y
|
|
155
|
-
* @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
|
|
156
|
-
* Arrays of datetime x and y
|
|
157
|
-
* @sample {highcharts} highcharts/series/data-array-of-name-value/
|
|
158
|
-
* Arrays of point.name and y
|
|
159
|
-
* @sample {highcharts} highcharts/series/data-array-of-objects/
|
|
160
|
-
* Config objects
|
|
161
192
|
* @product highcharts highstock
|
|
162
193
|
* @apioption series.scatter.data
|
|
163
194
|
*/
|
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
* Highcharts feature to make the Y axis stay fixed when scrolling the chart
|
|
7
7
|
* horizontally on mobile devices. Supports left and right side axes.
|
|
8
8
|
*/
|
|
9
|
+
|
|
9
10
|
'use strict';
|
|
11
|
+
|
|
10
12
|
import H from './Globals.js';
|
|
11
13
|
|
|
12
14
|
var addEvent = H.addEvent,
|
|
@@ -20,11 +22,11 @@ var addEvent = H.addEvent,
|
|
|
20
22
|
* This scrollbar provides smooth scrolling for the contents of the plot area,
|
|
21
23
|
* whereas the title, legend and axes are fixed.
|
|
22
24
|
*
|
|
23
|
-
* @
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
* @since
|
|
27
|
-
* @product
|
|
25
|
+
* @sample {highcharts} highcharts/chart/scrollable-plotarea
|
|
26
|
+
* Scrollable plot area
|
|
27
|
+
*
|
|
28
|
+
* @since 6.1.0
|
|
29
|
+
* @product highcharts gantt
|
|
28
30
|
* @apioption chart.scrollablePlotArea
|
|
29
31
|
*/
|
|
30
32
|
|
|
@@ -32,7 +34,7 @@ var addEvent = H.addEvent,
|
|
|
32
34
|
* The minimum width for the plot area. If it gets smaller than this, the plot
|
|
33
35
|
* area will become scrollable.
|
|
34
36
|
*
|
|
35
|
-
* @type
|
|
37
|
+
* @type {number}
|
|
36
38
|
* @apioption chart.scrollablePlotArea.minWidth
|
|
37
39
|
*/
|
|
38
40
|
|
|
@@ -41,7 +43,7 @@ var addEvent = H.addEvent,
|
|
|
41
43
|
* 1, where 0 aligns the plot area to the left and 1 aligns it to the right.
|
|
42
44
|
* Typically we would use 1 if the chart has right aligned Y axes.
|
|
43
45
|
*
|
|
44
|
-
* @type
|
|
46
|
+
* @type {number}
|
|
45
47
|
* @apioption chart.scrollablePlotArea.scrollPositionX
|
|
46
48
|
*/
|
|
47
49
|
|
|
@@ -105,6 +107,10 @@ addEvent(Chart, 'render', function () {
|
|
|
105
107
|
}
|
|
106
108
|
});
|
|
107
109
|
|
|
110
|
+
/**
|
|
111
|
+
* @private
|
|
112
|
+
* @function Highcharts.Chart#setUpScrolling
|
|
113
|
+
*/
|
|
108
114
|
Chart.prototype.setUpScrolling = function () {
|
|
109
115
|
|
|
110
116
|
// Add the necessary divs to provide scrolling
|
|
@@ -126,6 +132,10 @@ Chart.prototype.setUpScrolling = function () {
|
|
|
126
132
|
this.setUpScrolling = null;
|
|
127
133
|
};
|
|
128
134
|
|
|
135
|
+
/**
|
|
136
|
+
* @private
|
|
137
|
+
* @function Highcharts.Chart#applyFixed
|
|
138
|
+
*/
|
|
129
139
|
Chart.prototype.applyFixed = function () {
|
|
130
140
|
var container = this.container,
|
|
131
141
|
fixedRenderer,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* (c) 2010-
|
|
2
|
+
* (c) 2010-2018 Torstein Honsi
|
|
3
3
|
*
|
|
4
4
|
* License: www.highcharts.com/license
|
|
5
5
|
*/
|
|
@@ -105,6 +105,9 @@ var defaultScrollbarOptions = {
|
|
|
105
105
|
* @type {boolean}
|
|
106
106
|
* @since 1.3
|
|
107
107
|
* @product highstock
|
|
108
|
+
*
|
|
109
|
+
* @sample stock/scrollbar/liveredraw Setting live redraw to false
|
|
110
|
+
*
|
|
108
111
|
* @apioption scrollbar.liveRedraw
|
|
109
112
|
*/
|
|
110
113
|
liveRedraw: undefined,
|
|
@@ -864,7 +867,11 @@ Scrollbar.prototype = {
|
|
|
864
867
|
addEvent(Axis, 'afterInit', function () {
|
|
865
868
|
var axis = this;
|
|
866
869
|
|
|
867
|
-
if (
|
|
870
|
+
if (
|
|
871
|
+
axis.options &&
|
|
872
|
+
axis.options.scrollbar &&
|
|
873
|
+
axis.options.scrollbar.enabled
|
|
874
|
+
) {
|
|
868
875
|
// Predefined options:
|
|
869
876
|
axis.options.scrollbar.vertical = !axis.horiz;
|
|
870
877
|
axis.options.startOnTick = axis.options.endOnTick = false;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* (c) 2010-
|
|
2
|
+
* (c) 2010-2018 Torstein Honsi
|
|
3
3
|
*
|
|
4
4
|
* License: www.highcharts.com/license
|
|
5
5
|
*/
|
|
@@ -422,7 +422,7 @@ H.Series = H.seriesType('line', null
|
|
|
422
422
|
* @type {boolean}
|
|
423
423
|
* @default false
|
|
424
424
|
* @since 4.1.6
|
|
425
|
-
* @product highcharts highstock
|
|
425
|
+
* @product highcharts highstock gantt
|
|
426
426
|
* @apioption plotOptions.series.getExtremesFromAll
|
|
427
427
|
*/
|
|
428
428
|
|
|
@@ -447,6 +447,7 @@ H.Series = H.seriesType('line', null
|
|
|
447
447
|
* The line cap used for line ends and line joins on the graph.
|
|
448
448
|
*
|
|
449
449
|
* @type {string}
|
|
450
|
+
* @default round
|
|
450
451
|
* @product highcharts highstock
|
|
451
452
|
* @validvalue ["round", "square"]
|
|
452
453
|
* @apioption plotOptions.series.linecap
|
|
@@ -463,7 +464,7 @@ H.Series = H.seriesType('line', null
|
|
|
463
464
|
*
|
|
464
465
|
* @type {string}
|
|
465
466
|
* @since 3.0
|
|
466
|
-
* @product highcharts highstock
|
|
467
|
+
* @product highcharts highstock gantt
|
|
467
468
|
* @apioption plotOptions.series.linkedTo
|
|
468
469
|
*/
|
|
469
470
|
|
|
@@ -542,7 +543,7 @@ H.Series = H.seriesType('line', null
|
|
|
542
543
|
*
|
|
543
544
|
* @type {number}
|
|
544
545
|
* @default 1
|
|
545
|
-
* @product highcharts highstock
|
|
546
|
+
* @product highcharts highstock gantt
|
|
546
547
|
* @apioption plotOptions.series.pointInterval
|
|
547
548
|
*/
|
|
548
549
|
|
|
@@ -564,7 +565,7 @@ H.Series = H.seriesType('line', null
|
|
|
564
565
|
*
|
|
565
566
|
* @type {string}
|
|
566
567
|
* @since 4.1.0
|
|
567
|
-
* @product highcharts highstock
|
|
568
|
+
* @product highcharts highstock gantt
|
|
568
569
|
* @validvalue ["day", "month", "year"]
|
|
569
570
|
* @apioption plotOptions.series.pointIntervalUnit
|
|
570
571
|
*/
|
|
@@ -589,6 +590,10 @@ H.Series = H.seriesType('line', null
|
|
|
589
590
|
* #plotOptions.series.pointRange) to work. For column series this is
|
|
590
591
|
* computed, but for line-type series it needs to be set.
|
|
591
592
|
*
|
|
593
|
+
* For the `xrange` series type and gantt charts, if the Y axis is a
|
|
594
|
+
* category axis, the `pointPlacement` applies to the Y axis rather than
|
|
595
|
+
* the (typically datetime) X axis.
|
|
596
|
+
*
|
|
592
597
|
* Defaults to `undefined` in cartesian charts, `"between"` in polar charts.
|
|
593
598
|
*
|
|
594
599
|
* @see [xAxis.tickmarkPlacement](#xAxis.tickmarkPlacement)
|
|
@@ -600,7 +605,7 @@ H.Series = H.seriesType('line', null
|
|
|
600
605
|
*
|
|
601
606
|
* @type {string|number}
|
|
602
607
|
* @since 2.3.0
|
|
603
|
-
* @product highcharts highstock
|
|
608
|
+
* @product highcharts highstock gantt
|
|
604
609
|
* @apioption plotOptions.series.pointPlacement
|
|
605
610
|
*/
|
|
606
611
|
|
|
@@ -618,7 +623,7 @@ H.Series = H.seriesType('line', null
|
|
|
618
623
|
*
|
|
619
624
|
* @type {number}
|
|
620
625
|
* @default 0
|
|
621
|
-
* @product highcharts highstock
|
|
626
|
+
* @product highcharts highstock gantt
|
|
622
627
|
* @apioption plotOptions.series.pointStart
|
|
623
628
|
*/
|
|
624
629
|
|
|
@@ -1244,9 +1249,17 @@ H.Series = H.seriesType('line', null
|
|
|
1244
1249
|
/**
|
|
1245
1250
|
* Options for the series data labels, appearing next to each data point.
|
|
1246
1251
|
*
|
|
1252
|
+
* Since v6.2.0, multiple data labels can be applied to each single point by
|
|
1253
|
+
* defining them as an array of configs.
|
|
1254
|
+
*
|
|
1247
1255
|
* In styled mode, the data labels can be styled with the
|
|
1248
1256
|
* `.highcharts-data-label-box` and `.highcharts-data-label` class names
|
|
1249
1257
|
* ([see example](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/css/series-datalabels)).
|
|
1258
|
+
*
|
|
1259
|
+
* @sample highcharts/plotoptions/series-datalabels-enabled
|
|
1260
|
+
* Data labels enabled
|
|
1261
|
+
* @sample highcharts/plotoptions/series-datalabels-multiple
|
|
1262
|
+
* Multiple data labels on a bar series
|
|
1250
1263
|
*/
|
|
1251
1264
|
dataLabels: {
|
|
1252
1265
|
|
|
@@ -1368,7 +1381,7 @@ H.Series = H.seriesType('line', null
|
|
|
1368
1381
|
* @type {boolean}
|
|
1369
1382
|
* @default true
|
|
1370
1383
|
* @since 4.0
|
|
1371
|
-
* @product highcharts highstock
|
|
1384
|
+
* @product highcharts highstock gantt
|
|
1372
1385
|
* @apioption plotOptions.series.dataLabels.defer
|
|
1373
1386
|
*/
|
|
1374
1387
|
|
|
@@ -1830,7 +1843,7 @@ H.Series = H.seriesType('line', null
|
|
|
1830
1843
|
* data checking and indexing in long series. Set it to `0` disable.
|
|
1831
1844
|
*
|
|
1832
1845
|
* @since 2.2
|
|
1833
|
-
* @product highcharts highstock
|
|
1846
|
+
* @product highcharts highstock gantt
|
|
1834
1847
|
*/
|
|
1835
1848
|
turboThreshold: 1000,
|
|
1836
1849
|
|
|
@@ -1,40 +1,62 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* (c) 2010-
|
|
2
|
+
* (c) 2010-2018 Torstein Honsi
|
|
3
3
|
*
|
|
4
4
|
* License: www.highcharts.com/license
|
|
5
5
|
*/
|
|
6
|
+
|
|
6
7
|
'use strict';
|
|
8
|
+
|
|
7
9
|
import H from './Globals.js';
|
|
8
10
|
import './Utilities.js';
|
|
9
11
|
import './Options.js';
|
|
10
12
|
import './Series.js';
|
|
13
|
+
|
|
11
14
|
var pick = H.pick,
|
|
12
15
|
seriesType = H.seriesType;
|
|
13
16
|
|
|
14
17
|
/**
|
|
15
|
-
*
|
|
16
|
-
* the data points are smoothed.
|
|
18
|
+
* Spline series type.
|
|
17
19
|
*
|
|
18
|
-
* @
|
|
19
|
-
*
|
|
20
|
-
* @
|
|
21
|
-
*
|
|
22
|
-
* @
|
|
23
|
-
* @excluding step
|
|
24
|
-
* @product highcharts highstock
|
|
25
|
-
* @apioption plotOptions.spline
|
|
20
|
+
* @private
|
|
21
|
+
* @class
|
|
22
|
+
* @name Highcharts.seriesTypes.spline
|
|
23
|
+
*
|
|
24
|
+
* @augments Highcarts.Series
|
|
26
25
|
*/
|
|
26
|
+
seriesType('spline', 'line'
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* A spline series is a special type of line series, where the segments
|
|
30
|
+
* between the data points are smoothed.
|
|
31
|
+
*
|
|
32
|
+
* @sample {highcharts} highcharts/demo/spline-irregular-time/
|
|
33
|
+
* Spline chart
|
|
34
|
+
* @sample {highstock} stock/demo/spline/
|
|
35
|
+
* Spline chart
|
|
30
36
|
*
|
|
31
|
-
* @
|
|
32
|
-
* @
|
|
37
|
+
* @extends plotOptions.series
|
|
38
|
+
* @excluding step
|
|
39
|
+
* @product highcharts highstock
|
|
40
|
+
* @optionparent plotOptions.spline
|
|
33
41
|
*/
|
|
34
|
-
|
|
42
|
+
, {
|
|
43
|
+
|
|
44
|
+
}, /** @lends seriesTypes.spline.prototype */ {
|
|
45
|
+
|
|
35
46
|
/**
|
|
36
47
|
* Get the spline segment from a given point's previous neighbour to the
|
|
37
|
-
* given point
|
|
48
|
+
* given point.
|
|
49
|
+
*
|
|
50
|
+
* @private
|
|
51
|
+
* @function Highcharts.seriesTypes.spline#getPointSpline
|
|
52
|
+
*
|
|
53
|
+
* @param {Array<Highcharts.Point>}
|
|
54
|
+
*
|
|
55
|
+
* @param {Highcharts.Point} point
|
|
56
|
+
*
|
|
57
|
+
* @param {number} i
|
|
58
|
+
*
|
|
59
|
+
* @return {Highcharts.SVGPathArray}
|
|
38
60
|
*/
|
|
39
61
|
getPointSpline: function (points, point, i) {
|
|
40
62
|
var
|
|
@@ -175,9 +197,8 @@ seriesType('spline', 'line', {}, /** @lends seriesTypes.spline.prototype */ {
|
|
|
175
197
|
* A `spline` series. If the [type](#series.spline.type) option is
|
|
176
198
|
* not specified, it is inherited from [chart.type](#chart.type).
|
|
177
199
|
*
|
|
178
|
-
* @type {Object}
|
|
179
200
|
* @extends series,plotOptions.spline
|
|
180
|
-
* @excluding dataParser,dataURL,step
|
|
201
|
+
* @excluding dataParser, dataURL, step
|
|
181
202
|
* @product highcharts highstock
|
|
182
203
|
* @apioption series.spline
|
|
183
204
|
*/
|
|
@@ -227,18 +248,19 @@ seriesType('spline', 'line', {}, /** @lends seriesTypes.spline.prototype */ {
|
|
|
227
248
|
* }]
|
|
228
249
|
* ```
|
|
229
250
|
*
|
|
230
|
-
* @
|
|
251
|
+
* @sample {highcharts} highcharts/chart/reflow-true/
|
|
252
|
+
* Numerical values
|
|
253
|
+
* @sample {highcharts} highcharts/series/data-array-of-arrays/
|
|
254
|
+
* Arrays of numeric x and y
|
|
255
|
+
* @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
|
|
256
|
+
* Arrays of datetime x and y
|
|
257
|
+
* @sample {highcharts} highcharts/series/data-array-of-name-value/
|
|
258
|
+
* Arrays of point.name and y
|
|
259
|
+
* @sample {highcharts} highcharts/series/data-array-of-objects/
|
|
260
|
+
* Config objects
|
|
261
|
+
*
|
|
262
|
+
* @type {Array<number|Array<number>|*>}
|
|
231
263
|
* @extends series.line.data
|
|
232
|
-
* @sample {highcharts} highcharts/chart/reflow-true/
|
|
233
|
-
* Numerical values
|
|
234
|
-
* @sample {highcharts} highcharts/series/data-array-of-arrays/
|
|
235
|
-
* Arrays of numeric x and y
|
|
236
|
-
* @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
|
|
237
|
-
* Arrays of datetime x and y
|
|
238
|
-
* @sample {highcharts} highcharts/series/data-array-of-name-value/
|
|
239
|
-
* Arrays of point.name and y
|
|
240
|
-
* @sample {highcharts} highcharts/series/data-array-of-objects/
|
|
241
|
-
* Config objects
|
|
242
264
|
* @product highcharts highstock
|
|
243
265
|
* @apioption series.spline.data
|
|
244
266
|
*/
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* (c) 2010-
|
|
2
|
+
* (c) 2010-2018 Torstein Honsi
|
|
3
3
|
*
|
|
4
4
|
* License: www.highcharts.com/license
|
|
5
5
|
*/
|
|
6
|
+
|
|
6
7
|
'use strict';
|
|
8
|
+
|
|
7
9
|
import H from './Globals.js';
|
|
8
10
|
import './Utilities.js';
|
|
9
11
|
import './Axis.js';
|
|
10
12
|
import './Chart.js';
|
|
11
13
|
import './Series.js';
|
|
14
|
+
|
|
12
15
|
var Axis = H.Axis,
|
|
13
16
|
Chart = H.Chart,
|
|
14
17
|
correctFloat = H.correctFloat,
|
|
@@ -24,7 +27,19 @@ var Axis = H.Axis,
|
|
|
24
27
|
* The class for stacks. Each stack, on a specific X value and either negative
|
|
25
28
|
* or positive, has its own stack item.
|
|
26
29
|
*
|
|
30
|
+
* @private
|
|
27
31
|
* @class
|
|
32
|
+
* @name Highcharts.StackItem
|
|
33
|
+
*
|
|
34
|
+
* @param {Highcharts.Axis} axis
|
|
35
|
+
*
|
|
36
|
+
* @param {Highcharts.Options} options
|
|
37
|
+
*
|
|
38
|
+
* @param {boolean} isNegative
|
|
39
|
+
*
|
|
40
|
+
* @param {number} x
|
|
41
|
+
*
|
|
42
|
+
* @param {string|*} stackOption
|
|
28
43
|
*/
|
|
29
44
|
H.StackItem = function (axis, options, isNegative, x, stackOption) {
|
|
30
45
|
|
|
@@ -71,12 +86,22 @@ H.StackItem = function (axis, options, isNegative, x, stackOption) {
|
|
|
71
86
|
};
|
|
72
87
|
|
|
73
88
|
H.StackItem.prototype = {
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* @private
|
|
92
|
+
* @function Highcharts.StackItem#destroy
|
|
93
|
+
*/
|
|
74
94
|
destroy: function () {
|
|
75
95
|
destroyObjectProperties(this, this.axis);
|
|
76
96
|
},
|
|
77
97
|
|
|
78
98
|
/**
|
|
79
99
|
* Renders the stack total label and adds it to the stack label group.
|
|
100
|
+
*
|
|
101
|
+
* @private
|
|
102
|
+
* @function Highcharts.StackItem#render
|
|
103
|
+
*
|
|
104
|
+
* @param {Highcharts.SVGElement} group
|
|
80
105
|
*/
|
|
81
106
|
render: function (group) {
|
|
82
107
|
var chart = this.axis.chart,
|
|
@@ -110,6 +135,13 @@ H.StackItem.prototype = {
|
|
|
110
135
|
/**
|
|
111
136
|
* Sets the offset that the stack has from the x value and repositions the
|
|
112
137
|
* label.
|
|
138
|
+
*
|
|
139
|
+
* @private
|
|
140
|
+
* @function Highcarts.StackItem#setOffset
|
|
141
|
+
*
|
|
142
|
+
* @param {number} xOffset
|
|
143
|
+
*
|
|
144
|
+
* @param {number} xWidth
|
|
113
145
|
*/
|
|
114
146
|
setOffset: function (xOffset, xWidth) {
|
|
115
147
|
var stackItem = this,
|
|
@@ -151,6 +183,27 @@ H.StackItem.prototype = {
|
|
|
151
183
|
) ? 'show' : 'hide'](true);
|
|
152
184
|
}
|
|
153
185
|
},
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* @private
|
|
189
|
+
* @function Highcharts.StackItem#getStackBox
|
|
190
|
+
*
|
|
191
|
+
* @param {Highcharts.Chart} chart
|
|
192
|
+
*
|
|
193
|
+
* @param {Highcharts.StackItem} stackItem
|
|
194
|
+
*
|
|
195
|
+
* @param {number} x
|
|
196
|
+
*
|
|
197
|
+
* @param {number} y
|
|
198
|
+
*
|
|
199
|
+
* @param {number} xWidth
|
|
200
|
+
*
|
|
201
|
+
* @param {number} h
|
|
202
|
+
*
|
|
203
|
+
* @param {Highcharts.Axis} axis
|
|
204
|
+
*
|
|
205
|
+
* @return {*}
|
|
206
|
+
*/
|
|
154
207
|
getStackBox: function (chart, stackItem, x, y, xWidth, h, axis) {
|
|
155
208
|
var reversed = stackItem.axis.reversed,
|
|
156
209
|
inverted = chart.inverted,
|
|
@@ -175,6 +228,9 @@ H.StackItem.prototype = {
|
|
|
175
228
|
|
|
176
229
|
/**
|
|
177
230
|
* Generate stacks for each series and calculate stacks total values
|
|
231
|
+
*
|
|
232
|
+
* @private
|
|
233
|
+
* @function Highcharts.Chart#getStacks
|
|
178
234
|
*/
|
|
179
235
|
Chart.prototype.getStacks = function () {
|
|
180
236
|
var chart = this;
|
|
@@ -200,7 +256,8 @@ Chart.prototype.getStacks = function () {
|
|
|
200
256
|
/**
|
|
201
257
|
* Build the stacks from top down
|
|
202
258
|
*
|
|
203
|
-
* @
|
|
259
|
+
* @private
|
|
260
|
+
* @function Highcharts.Axis#buildStacks
|
|
204
261
|
*/
|
|
205
262
|
Axis.prototype.buildStacks = function () {
|
|
206
263
|
var axisSeries = this.series,
|
|
@@ -221,6 +278,10 @@ Axis.prototype.buildStacks = function () {
|
|
|
221
278
|
}
|
|
222
279
|
};
|
|
223
280
|
|
|
281
|
+
/**
|
|
282
|
+
* @private
|
|
283
|
+
* @function Highcharts.Axis#renderStackTotals
|
|
284
|
+
*/
|
|
224
285
|
Axis.prototype.renderStackTotals = function () {
|
|
225
286
|
var axis = this,
|
|
226
287
|
chart = axis.chart,
|
|
@@ -254,7 +315,8 @@ Axis.prototype.renderStackTotals = function () {
|
|
|
254
315
|
/**
|
|
255
316
|
* Set all the stacks to initial states and destroy unused ones.
|
|
256
317
|
*
|
|
257
|
-
* @
|
|
318
|
+
* @private
|
|
319
|
+
* @function Highcharts.Axis#resetStacks
|
|
258
320
|
*/
|
|
259
321
|
Axis.prototype.resetStacks = function () {
|
|
260
322
|
var axis = this,
|
|
@@ -277,6 +339,10 @@ Axis.prototype.resetStacks = function () {
|
|
|
277
339
|
}
|
|
278
340
|
};
|
|
279
341
|
|
|
342
|
+
/**
|
|
343
|
+
* @private
|
|
344
|
+
* @function Highcharts.Axis#cleanStacks
|
|
345
|
+
*/
|
|
280
346
|
Axis.prototype.cleanStacks = function () {
|
|
281
347
|
var stacks;
|
|
282
348
|
|
|
@@ -299,6 +365,9 @@ Axis.prototype.cleanStacks = function () {
|
|
|
299
365
|
|
|
300
366
|
/**
|
|
301
367
|
* Adds series' points value to corresponding stack
|
|
368
|
+
*
|
|
369
|
+
* @private
|
|
370
|
+
* @function Highcharts.Series#setStackedPoints
|
|
302
371
|
*/
|
|
303
372
|
Series.prototype.setStackedPoints = function () {
|
|
304
373
|
if (!this.options.stacking || (this.visible !== true &&
|
|
@@ -437,6 +506,9 @@ Series.prototype.setStackedPoints = function () {
|
|
|
437
506
|
|
|
438
507
|
/**
|
|
439
508
|
* Iterate over all stacks and compute the absolute values to percent
|
|
509
|
+
*
|
|
510
|
+
* @private
|
|
511
|
+
* @function Highcharts.Series#modifyStacks
|
|
440
512
|
*/
|
|
441
513
|
Series.prototype.modifyStacks = function () {
|
|
442
514
|
var series = this,
|
|
@@ -473,6 +545,15 @@ Series.prototype.modifyStacks = function () {
|
|
|
473
545
|
|
|
474
546
|
/**
|
|
475
547
|
* Modifier function for percent stacks. Blows up the stack to 100%.
|
|
548
|
+
*
|
|
549
|
+
* @private
|
|
550
|
+
* @function Highcharts.Series#percentStacker
|
|
551
|
+
*
|
|
552
|
+
* @param {Array<number>} pointExtremes
|
|
553
|
+
*
|
|
554
|
+
* @param {Highcharts.StackItem} stack
|
|
555
|
+
*
|
|
556
|
+
* @param {number} i
|
|
476
557
|
*/
|
|
477
558
|
Series.prototype.percentStacker = function (pointExtremes, stack, i) {
|
|
478
559
|
var totalFactor = stack.total ? 100 / stack.total : 0;
|
|
@@ -484,9 +565,22 @@ Series.prototype.percentStacker = function (pointExtremes, stack, i) {
|
|
|
484
565
|
};
|
|
485
566
|
|
|
486
567
|
/**
|
|
487
|
-
* Get stack indicator, according to it's x-value, to determine points with the
|
|
488
|
-
* same x-value
|
|
489
|
-
|
|
568
|
+
* Get stack indicator, according to it's x-value, to determine points with the
|
|
569
|
+
* same x-value
|
|
570
|
+
*
|
|
571
|
+
* @private
|
|
572
|
+
* @function Highcharts.Series#getStackIndicator
|
|
573
|
+
*
|
|
574
|
+
* @param {*} stackIndicator
|
|
575
|
+
*
|
|
576
|
+
* @param {number} x
|
|
577
|
+
*
|
|
578
|
+
* @param {number} index
|
|
579
|
+
*
|
|
580
|
+
* @param {string} key
|
|
581
|
+
*
|
|
582
|
+
* @return {*}
|
|
583
|
+
*/
|
|
490
584
|
Series.prototype.getStackIndicator = function (stackIndicator, x, index, key) {
|
|
491
585
|
// Update stack indicator, when:
|
|
492
586
|
// first point in a stack || x changed || stack type (negative vs positive)
|