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,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
|
*/
|
|
@@ -74,6 +74,9 @@ H.PlotLineOrBand.prototype = {
|
|
|
74
74
|
* @return {Highcharts.PlotLineOrBand|undefined}
|
|
75
75
|
*/
|
|
76
76
|
render: function () {
|
|
77
|
+
|
|
78
|
+
H.fireEvent(this, 'render');
|
|
79
|
+
|
|
77
80
|
var plotLine = this,
|
|
78
81
|
axis = plotLine.axis,
|
|
79
82
|
horiz = axis.horiz,
|
|
@@ -319,7 +322,7 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
319
322
|
* perimeter of the gauge.
|
|
320
323
|
*
|
|
321
324
|
* @type {Array<*>}
|
|
322
|
-
* @product highcharts highstock
|
|
325
|
+
* @product highcharts highstock gantt
|
|
323
326
|
* @apioption xAxis.plotBands
|
|
324
327
|
*/
|
|
325
328
|
|
|
@@ -327,7 +330,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
327
330
|
* Border color for the plot band. Also requires `borderWidth` to be set.
|
|
328
331
|
*
|
|
329
332
|
* @type {Highcharts.ColorString}
|
|
330
|
-
* @product highcharts highstock
|
|
331
333
|
* @apioption xAxis.plotBands.borderColor
|
|
332
334
|
*/
|
|
333
335
|
|
|
@@ -336,7 +338,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
336
338
|
*
|
|
337
339
|
* @type {number}
|
|
338
340
|
* @default 0
|
|
339
|
-
* @product highcharts highstock
|
|
340
341
|
* @apioption xAxis.plotBands.borderWidth
|
|
341
342
|
*/
|
|
342
343
|
|
|
@@ -358,7 +359,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
358
359
|
* Plot band on Y axis
|
|
359
360
|
*
|
|
360
361
|
* @type {Highcharts.ColorString}
|
|
361
|
-
* @product highcharts highstock
|
|
362
362
|
* @apioption xAxis.plotBands.color
|
|
363
363
|
*/
|
|
364
364
|
|
|
@@ -370,7 +370,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
370
370
|
* Mouse events demonstrated
|
|
371
371
|
*
|
|
372
372
|
* @since 1.2
|
|
373
|
-
* @product highcharts highstock
|
|
374
373
|
* @context PlotLineOrBand
|
|
375
374
|
* @apioption xAxis.plotBands.events
|
|
376
375
|
*/
|
|
@@ -386,7 +385,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
386
385
|
* Plot band on Y axis
|
|
387
386
|
*
|
|
388
387
|
* @type {number}
|
|
389
|
-
* @product highcharts highstock
|
|
390
388
|
* @apioption xAxis.plotBands.from
|
|
391
389
|
*/
|
|
392
390
|
|
|
@@ -399,7 +397,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
399
397
|
* Remove plot band by id
|
|
400
398
|
*
|
|
401
399
|
* @type {string}
|
|
402
|
-
* @product highcharts highstock
|
|
403
400
|
* @apioption xAxis.plotBands.id
|
|
404
401
|
*/
|
|
405
402
|
|
|
@@ -414,7 +411,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
414
411
|
* Plot band on Y axis
|
|
415
412
|
*
|
|
416
413
|
* @type {number}
|
|
417
|
-
* @product highcharts highstock
|
|
418
414
|
* @apioption xAxis.plotBands.to
|
|
419
415
|
*/
|
|
420
416
|
|
|
@@ -433,14 +429,13 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
433
429
|
*
|
|
434
430
|
* @type {number}
|
|
435
431
|
* @since 1.2
|
|
436
|
-
* @product highcharts highstock
|
|
437
432
|
* @apioption xAxis.plotBands.zIndex
|
|
438
433
|
*/
|
|
439
434
|
|
|
440
435
|
/**
|
|
441
436
|
* Text labels for the plot bands
|
|
442
437
|
*
|
|
443
|
-
* @product highcharts highstock
|
|
438
|
+
* @product highcharts highstock gantt
|
|
444
439
|
* @apioption xAxis.plotBands.label
|
|
445
440
|
*/
|
|
446
441
|
|
|
@@ -456,7 +451,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
456
451
|
* @type {string}
|
|
457
452
|
* @default center
|
|
458
453
|
* @since 2.1
|
|
459
|
-
* @product highcharts highstock
|
|
460
454
|
* @apioption xAxis.plotBands.label.align
|
|
461
455
|
*/
|
|
462
456
|
|
|
@@ -469,7 +463,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
469
463
|
* @type {number}
|
|
470
464
|
* @default 0
|
|
471
465
|
* @since 2.1
|
|
472
|
-
* @product highcharts highstock
|
|
473
466
|
* @apioption xAxis.plotBands.label.rotation
|
|
474
467
|
*/
|
|
475
468
|
|
|
@@ -484,7 +477,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
484
477
|
*
|
|
485
478
|
* @type {Highcharts.CSSObject}
|
|
486
479
|
* @since 2.1
|
|
487
|
-
* @product highcharts highstock
|
|
488
480
|
* @apioption xAxis.plotBands.label.style
|
|
489
481
|
*/
|
|
490
482
|
|
|
@@ -493,7 +485,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
493
485
|
*
|
|
494
486
|
* @type {string}
|
|
495
487
|
* @since 2.1
|
|
496
|
-
* @product highcharts
|
|
497
488
|
* @apioption xAxis.plotBands.label.text
|
|
498
489
|
*/
|
|
499
490
|
|
|
@@ -508,7 +499,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
508
499
|
*
|
|
509
500
|
* @type {string}
|
|
510
501
|
* @since 2.1
|
|
511
|
-
* @product highcharts highstock
|
|
512
502
|
* @validvalue ["center", "left", "right"]
|
|
513
503
|
* @apioption xAxis.plotBands.label.textAlign
|
|
514
504
|
*/
|
|
@@ -520,7 +510,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
520
510
|
* @type {boolean}
|
|
521
511
|
* @default false
|
|
522
512
|
* @since 3.0.3
|
|
523
|
-
* @product highcharts highstock
|
|
524
513
|
* @apioption xAxis.plotBands.label.useHTML
|
|
525
514
|
*/
|
|
526
515
|
|
|
@@ -536,7 +525,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
536
525
|
* @type {string}
|
|
537
526
|
* @default top
|
|
538
527
|
* @since 2.1
|
|
539
|
-
* @product highcharts highstock
|
|
540
528
|
* @validvalue ["bottom", "middle", "top"]
|
|
541
529
|
* @apioption xAxis.plotBands.label.verticalAlign
|
|
542
530
|
*/
|
|
@@ -552,7 +540,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
552
540
|
*
|
|
553
541
|
* @type {number}
|
|
554
542
|
* @since 2.1
|
|
555
|
-
* @product highcharts highstock
|
|
556
543
|
* @apioption xAxis.plotBands.label.x
|
|
557
544
|
*/
|
|
558
545
|
|
|
@@ -567,7 +554,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
567
554
|
*
|
|
568
555
|
* @type {number}
|
|
569
556
|
* @since 2.1
|
|
570
|
-
* @product highcharts highstock
|
|
571
557
|
* @apioption xAxis.plotBands.label.y
|
|
572
558
|
*/
|
|
573
559
|
|
|
@@ -579,7 +565,7 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
579
565
|
* `.highcharts-plot-line` class in addition to the `className` option.
|
|
580
566
|
*
|
|
581
567
|
* @type {Array<*>}
|
|
582
|
-
* @product highcharts highstock
|
|
568
|
+
* @product highcharts highstock gantt
|
|
583
569
|
* @apioption xAxis.plotLines
|
|
584
570
|
*/
|
|
585
571
|
|
|
@@ -601,7 +587,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
601
587
|
* Plot line on Y axis
|
|
602
588
|
*
|
|
603
589
|
* @type {Highcharts.ColorString}
|
|
604
|
-
* @product highcharts highstock
|
|
605
590
|
* @apioption xAxis.plotLines.color
|
|
606
591
|
*/
|
|
607
592
|
|
|
@@ -619,7 +604,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
619
604
|
* @type {string}
|
|
620
605
|
* @default Solid
|
|
621
606
|
* @since 1.2
|
|
622
|
-
* @product highcharts highstock
|
|
623
607
|
* @validvalue ["Solid", "ShortDash", "ShortDot", "ShortDashDot",
|
|
624
608
|
* "ShortDashDotDot", "Dot", "Dash" ,"LongDash", "DashDot",
|
|
625
609
|
* "LongDashDot", "LongDashDotDot"]
|
|
@@ -635,7 +619,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
635
619
|
*
|
|
636
620
|
* @type {*}
|
|
637
621
|
* @since 1.2
|
|
638
|
-
* @product highcharts highstock
|
|
639
622
|
* @context PlotLineOrBand
|
|
640
623
|
* @apioption xAxis.plotLines.events
|
|
641
624
|
*/
|
|
@@ -647,7 +630,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
647
630
|
* Remove plot line by id
|
|
648
631
|
*
|
|
649
632
|
* @type {string}
|
|
650
|
-
* @product highcharts highstock
|
|
651
633
|
* @apioption xAxis.plotLines.id
|
|
652
634
|
*/
|
|
653
635
|
|
|
@@ -660,7 +642,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
660
642
|
* Plot line on Y axis
|
|
661
643
|
*
|
|
662
644
|
* @type {number}
|
|
663
|
-
* @product highcharts highstock
|
|
664
645
|
* @apioption xAxis.plotLines.value
|
|
665
646
|
*/
|
|
666
647
|
|
|
@@ -673,7 +654,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
673
654
|
* Plot line on Y axis
|
|
674
655
|
*
|
|
675
656
|
* @type {number}
|
|
676
|
-
* @product highcharts highstock
|
|
677
657
|
* @apioption xAxis.plotLines.width
|
|
678
658
|
*/
|
|
679
659
|
|
|
@@ -689,14 +669,12 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
689
669
|
*
|
|
690
670
|
* @type {number}
|
|
691
671
|
* @since 1.2
|
|
692
|
-
* @product highcharts highstock
|
|
693
672
|
* @apioption xAxis.plotLines.zIndex
|
|
694
673
|
*/
|
|
695
674
|
|
|
696
675
|
/**
|
|
697
676
|
* Text labels for the plot bands
|
|
698
677
|
*
|
|
699
|
-
* @product highcharts highstock
|
|
700
678
|
* @apioption xAxis.plotLines.label
|
|
701
679
|
*/
|
|
702
680
|
|
|
@@ -712,7 +690,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
712
690
|
* @type {string}
|
|
713
691
|
* @default left
|
|
714
692
|
* @since 2.1
|
|
715
|
-
* @product highcharts highstock
|
|
716
693
|
* @validvalue ["center", "left", "right"]
|
|
717
694
|
* @apioption xAxis.plotLines.label.align
|
|
718
695
|
*/
|
|
@@ -726,7 +703,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
726
703
|
*
|
|
727
704
|
* @type {number}
|
|
728
705
|
* @since 2.1
|
|
729
|
-
* @product highcharts highstock
|
|
730
706
|
* @apioption xAxis.plotLines.label.rotation
|
|
731
707
|
*/
|
|
732
708
|
|
|
@@ -741,7 +717,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
741
717
|
*
|
|
742
718
|
* @type {Highcharts.CSSObject}
|
|
743
719
|
* @since 2.1
|
|
744
|
-
* @product highcharts highstock
|
|
745
720
|
* @apioption xAxis.plotLines.label.style
|
|
746
721
|
*/
|
|
747
722
|
|
|
@@ -750,7 +725,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
750
725
|
*
|
|
751
726
|
* @type {string}
|
|
752
727
|
* @since 2.1
|
|
753
|
-
* @product highcharts
|
|
754
728
|
* @apioption xAxis.plotLines.label.text
|
|
755
729
|
*/
|
|
756
730
|
|
|
@@ -765,7 +739,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
765
739
|
*
|
|
766
740
|
* @type {string}
|
|
767
741
|
* @since 2.1
|
|
768
|
-
* @product highcharts highstock
|
|
769
742
|
* @apioption xAxis.plotLines.label.textAlign
|
|
770
743
|
*/
|
|
771
744
|
|
|
@@ -776,7 +749,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
776
749
|
* @type {boolean}
|
|
777
750
|
* @default false
|
|
778
751
|
* @since 3.0.3
|
|
779
|
-
* @product highcharts highstock
|
|
780
752
|
* @apioption xAxis.plotLines.label.useHTML
|
|
781
753
|
*/
|
|
782
754
|
|
|
@@ -791,7 +763,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
791
763
|
* @default {highcharts} top
|
|
792
764
|
* @default {highstock} top
|
|
793
765
|
* @since 2.1
|
|
794
|
-
* @product highcharts highstock
|
|
795
766
|
* @validvalue ["top", "middle", "bottom"]
|
|
796
767
|
* @apioption xAxis.plotLines.label.verticalAlign
|
|
797
768
|
*/
|
|
@@ -807,7 +778,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
807
778
|
*
|
|
808
779
|
* @type {number}
|
|
809
780
|
* @since 2.1
|
|
810
|
-
* @product highcharts highstock
|
|
811
781
|
* @apioption xAxis.plotLines.label.x
|
|
812
782
|
*/
|
|
813
783
|
|
|
@@ -822,7 +792,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
822
792
|
*
|
|
823
793
|
* @type {number}
|
|
824
794
|
* @since 2.1
|
|
825
|
-
* @product highcharts highstock
|
|
826
795
|
* @apioption xAxis.plotLines.label.y
|
|
827
796
|
*/
|
|
828
797
|
|
|
@@ -831,7 +800,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
831
800
|
*
|
|
832
801
|
* @type {Array<*>}
|
|
833
802
|
* @extends xAxis.plotBands
|
|
834
|
-
* @product highcharts highstock
|
|
835
803
|
* @apioption yAxis.plotBands
|
|
836
804
|
*/
|
|
837
805
|
|
|
@@ -888,7 +856,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
|
|
|
888
856
|
*
|
|
889
857
|
* @type {Array<*>}
|
|
890
858
|
* @extends xAxis.plotLines
|
|
891
|
-
* @product highcharts highstock
|
|
892
859
|
* @apioption yAxis.plotLines
|
|
893
860
|
*/
|
|
894
861
|
|
|
@@ -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
|
*/
|
|
@@ -48,7 +48,6 @@ import './Utilities.js';
|
|
|
48
48
|
|
|
49
49
|
var Point,
|
|
50
50
|
H = Highcharts,
|
|
51
|
-
|
|
52
51
|
each = H.each,
|
|
53
52
|
extend = H.extend,
|
|
54
53
|
erase = H.erase,
|
|
@@ -57,6 +56,8 @@ var Point,
|
|
|
57
56
|
isArray = H.isArray,
|
|
58
57
|
isNumber = H.isNumber,
|
|
59
58
|
pick = H.pick,
|
|
59
|
+
uniqueKey = H.uniqueKey,
|
|
60
|
+
defined = H.defined,
|
|
60
61
|
removeEvent = H.removeEvent;
|
|
61
62
|
|
|
62
63
|
/**
|
|
@@ -120,6 +121,9 @@ Highcharts.Point.prototype = {
|
|
|
120
121
|
|
|
121
122
|
point.applyOptions(options, x);
|
|
122
123
|
|
|
124
|
+
// Add a unique ID to the point if none is assigned
|
|
125
|
+
point.id = defined(point.id) ? point.id : uniqueKey();
|
|
126
|
+
|
|
123
127
|
if (series.options.colorByPoint) {
|
|
124
128
|
|
|
125
129
|
|
|
@@ -197,6 +201,9 @@ Highcharts.Point.prototype = {
|
|
|
197
201
|
if (options.group) {
|
|
198
202
|
delete point.group;
|
|
199
203
|
}
|
|
204
|
+
if (options.dataLabels) {
|
|
205
|
+
delete point.dataLabels;
|
|
206
|
+
}
|
|
200
207
|
|
|
201
208
|
/**
|
|
202
209
|
* The y value of the point.
|
|
@@ -436,8 +443,8 @@ Highcharts.Point.prototype = {
|
|
|
436
443
|
point.onMouseOut();
|
|
437
444
|
}
|
|
438
445
|
|
|
439
|
-
// Remove all events
|
|
440
|
-
if (point.graphic || point.dataLabel) {
|
|
446
|
+
// Remove all events and elements
|
|
447
|
+
if (point.graphic || point.dataLabel || point.dataLabels) {
|
|
441
448
|
removeEvent(point);
|
|
442
449
|
point.destroyElements();
|
|
443
450
|
}
|
|
@@ -474,6 +481,23 @@ Highcharts.Point.prototype = {
|
|
|
474
481
|
point[prop] = point[prop].destroy();
|
|
475
482
|
}
|
|
476
483
|
}
|
|
484
|
+
// Handle point.dataLabels and point.connectors
|
|
485
|
+
if (point.dataLabels) {
|
|
486
|
+
each(point.dataLabels, function (label) {
|
|
487
|
+
if (label.element) {
|
|
488
|
+
label.destroy();
|
|
489
|
+
}
|
|
490
|
+
});
|
|
491
|
+
delete point.dataLabels;
|
|
492
|
+
}
|
|
493
|
+
if (point.connectors) {
|
|
494
|
+
each(point.connectors, function (connector) {
|
|
495
|
+
if (connector.element) {
|
|
496
|
+
connector.destroy();
|
|
497
|
+
}
|
|
498
|
+
});
|
|
499
|
+
delete point.connectors;
|
|
500
|
+
}
|
|
477
501
|
},
|
|
478
502
|
|
|
479
503
|
/**
|
|
@@ -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
|
*/
|
|
@@ -647,11 +647,13 @@ Highcharts.Pointer.prototype = {
|
|
|
647
647
|
if (tooltip.shared && hoverPoints) { // #8284
|
|
648
648
|
each(hoverPoints, function (point) {
|
|
649
649
|
point.setState(point.state, true);
|
|
650
|
-
if (point.series.
|
|
651
|
-
point.series.xAxis.
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
point.series.yAxis.
|
|
650
|
+
if (point.series.isCartesian) {
|
|
651
|
+
if (point.series.xAxis.crosshair) {
|
|
652
|
+
point.series.xAxis.drawCrosshair(null, point);
|
|
653
|
+
}
|
|
654
|
+
if (point.series.yAxis.crosshair) {
|
|
655
|
+
point.series.yAxis.drawCrosshair(null, point);
|
|
656
|
+
}
|
|
655
657
|
}
|
|
656
658
|
});
|
|
657
659
|
} else if (hoverPoint) { // #2500
|
|
@@ -1,12 +1,25 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* (c) 2010-
|
|
2
|
+
* (c) 2010-2018 Torstein Honsi
|
|
3
3
|
*
|
|
4
4
|
* License: www.highcharts.com/license
|
|
5
5
|
*/
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* A callback function to gain complete control on when the responsive rule
|
|
9
|
+
* applies.
|
|
10
|
+
*
|
|
11
|
+
* @callback Highcharts.ResponsiveCallbackFunction
|
|
12
|
+
*
|
|
13
|
+
* @return {boolean}
|
|
14
|
+
* Return `true` if it applies.
|
|
15
|
+
*/
|
|
16
|
+
|
|
6
17
|
'use strict';
|
|
18
|
+
|
|
7
19
|
import H from './Globals.js';
|
|
8
20
|
import './Chart.js';
|
|
9
21
|
import './Utilities.js';
|
|
22
|
+
|
|
10
23
|
var Chart = H.Chart,
|
|
11
24
|
each = H.each,
|
|
12
25
|
inArray = H.inArray,
|
|
@@ -15,16 +28,20 @@ var Chart = H.Chart,
|
|
|
15
28
|
pick = H.pick,
|
|
16
29
|
splat = H.splat;
|
|
17
30
|
|
|
18
|
-
|
|
19
31
|
/**
|
|
20
32
|
* Allows setting a set of rules to apply for different screen or chart
|
|
21
33
|
* sizes. Each rule specifies additional chart options.
|
|
22
34
|
*
|
|
23
|
-
* @sample {highstock} stock/demo/responsive/
|
|
24
|
-
*
|
|
25
|
-
* @sample highcharts/responsive/
|
|
26
|
-
*
|
|
27
|
-
* @
|
|
35
|
+
* @sample {highstock} stock/demo/responsive/
|
|
36
|
+
* Stock chart
|
|
37
|
+
* @sample highcharts/responsive/axis/
|
|
38
|
+
* Axis
|
|
39
|
+
* @sample highcharts/responsive/legend/
|
|
40
|
+
* Legend
|
|
41
|
+
* @sample highcharts/responsive/classname/
|
|
42
|
+
* Class name
|
|
43
|
+
*
|
|
44
|
+
* @since 5.0.0
|
|
28
45
|
* @apioption responsive
|
|
29
46
|
*/
|
|
30
47
|
|
|
@@ -32,11 +49,15 @@ var Chart = H.Chart,
|
|
|
32
49
|
* A set of rules for responsive settings. The rules are executed from
|
|
33
50
|
* the top down.
|
|
34
51
|
*
|
|
35
|
-
* @
|
|
36
|
-
*
|
|
37
|
-
* @sample {highstock} highcharts/responsive/axis/
|
|
38
|
-
*
|
|
39
|
-
* @
|
|
52
|
+
* @sample {highcharts} highcharts/responsive/axis/
|
|
53
|
+
* Axis changes
|
|
54
|
+
* @sample {highstock} highcharts/responsive/axis/
|
|
55
|
+
* Axis changes
|
|
56
|
+
* @sample {highmaps} highcharts/responsive/axis/
|
|
57
|
+
* Axis changes
|
|
58
|
+
*
|
|
59
|
+
* @type {Array<*>}
|
|
60
|
+
* @since 5.0.0
|
|
40
61
|
* @apioption responsive.rules
|
|
41
62
|
*/
|
|
42
63
|
|
|
@@ -53,20 +74,24 @@ var Chart = H.Chart,
|
|
|
53
74
|
* with two series items without an `id`, will cause the existing chart's
|
|
54
75
|
* two series to be updated with respective options.
|
|
55
76
|
*
|
|
56
|
-
* @
|
|
57
|
-
*
|
|
58
|
-
* @sample highcharts/responsive/axis/
|
|
59
|
-
*
|
|
60
|
-
* @sample highcharts/responsive/
|
|
61
|
-
*
|
|
77
|
+
* @sample {highstock} stock/demo/responsive/
|
|
78
|
+
* Stock chart
|
|
79
|
+
* @sample highcharts/responsive/axis/
|
|
80
|
+
* Axis
|
|
81
|
+
* @sample highcharts/responsive/legend/
|
|
82
|
+
* Legend
|
|
83
|
+
* @sample highcharts/responsive/classname/
|
|
84
|
+
* Class name
|
|
85
|
+
*
|
|
86
|
+
* @type {Highcharts.Options}
|
|
87
|
+
* @since 5.0.0
|
|
62
88
|
* @apioption responsive.rules.chartOptions
|
|
63
89
|
*/
|
|
64
90
|
|
|
65
91
|
/**
|
|
66
92
|
* Under which conditions the rule applies.
|
|
67
93
|
*
|
|
68
|
-
* @
|
|
69
|
-
* @since 5.0.0
|
|
94
|
+
* @since 5.0.0
|
|
70
95
|
* @apioption responsive.rules.condition
|
|
71
96
|
*/
|
|
72
97
|
|
|
@@ -76,50 +101,57 @@ var Chart = H.Chart,
|
|
|
76
101
|
* against other metrics than the chart size, or example the document
|
|
77
102
|
* size or other elements.
|
|
78
103
|
*
|
|
79
|
-
* @type
|
|
80
|
-
* @
|
|
81
|
-
* @
|
|
104
|
+
* @type {Highcharts.ResponsiveCallbackFunction}
|
|
105
|
+
* @since 5.0.0
|
|
106
|
+
* @context Highcharts.Chart
|
|
82
107
|
* @apioption responsive.rules.condition.callback
|
|
83
108
|
*/
|
|
84
109
|
|
|
85
110
|
/**
|
|
86
111
|
* The responsive rule applies if the chart height is less than this.
|
|
87
112
|
*
|
|
88
|
-
* @type
|
|
89
|
-
* @since
|
|
113
|
+
* @type {number}
|
|
114
|
+
* @since 5.0.0
|
|
90
115
|
* @apioption responsive.rules.condition.maxHeight
|
|
91
116
|
*/
|
|
92
117
|
|
|
93
118
|
/**
|
|
94
119
|
* The responsive rule applies if the chart width is less than this.
|
|
95
120
|
*
|
|
96
|
-
* @
|
|
97
|
-
*
|
|
98
|
-
*
|
|
121
|
+
* @sample highcharts/responsive/axis/
|
|
122
|
+
* Max width is 500
|
|
123
|
+
*
|
|
124
|
+
* @type {number}
|
|
125
|
+
* @since 5.0.0
|
|
99
126
|
* @apioption responsive.rules.condition.maxWidth
|
|
100
127
|
*/
|
|
101
128
|
|
|
102
129
|
/**
|
|
103
130
|
* The responsive rule applies if the chart height is greater than this.
|
|
104
131
|
*
|
|
105
|
-
* @type
|
|
106
|
-
* @default
|
|
107
|
-
* @since
|
|
132
|
+
* @type {number}
|
|
133
|
+
* @default 0
|
|
134
|
+
* @since 5.0.0
|
|
108
135
|
* @apioption responsive.rules.condition.minHeight
|
|
109
136
|
*/
|
|
110
137
|
|
|
111
138
|
/**
|
|
112
139
|
* The responsive rule applies if the chart width is greater than this.
|
|
113
140
|
*
|
|
114
|
-
* @type
|
|
115
|
-
* @default
|
|
116
|
-
* @since
|
|
141
|
+
* @type {number}
|
|
142
|
+
* @default 0
|
|
143
|
+
* @since 5.0.0
|
|
117
144
|
* @apioption responsive.rules.condition.minWidth
|
|
118
145
|
*/
|
|
119
146
|
|
|
120
147
|
/**
|
|
121
148
|
* Update the chart based on the current chart/document size and options for
|
|
122
149
|
* responsiveness.
|
|
150
|
+
*
|
|
151
|
+
* @private
|
|
152
|
+
* @function Highcharts.Chart#setResponsive
|
|
153
|
+
*
|
|
154
|
+
* @param {boolean} [redraw=true]
|
|
123
155
|
*/
|
|
124
156
|
Chart.prototype.setResponsive = function (redraw) {
|
|
125
157
|
var options = this.options.responsive,
|
|
@@ -175,9 +207,17 @@ Chart.prototype.setResponsive = function (redraw) {
|
|
|
175
207
|
};
|
|
176
208
|
|
|
177
209
|
/**
|
|
178
|
-
* Handle a single responsiveness rule
|
|
210
|
+
* Handle a single responsiveness rule.
|
|
211
|
+
*
|
|
212
|
+
* @private
|
|
213
|
+
* @function Highcharts.Chart#matchResponsiveRule
|
|
214
|
+
*
|
|
215
|
+
* @param {Highcharts.ResponsiveRulesConditionOptions} rule
|
|
216
|
+
*
|
|
217
|
+
* @param {Array<number>} matches
|
|
179
218
|
*/
|
|
180
219
|
Chart.prototype.matchResponsiveRule = function (rule, matches) {
|
|
220
|
+
|
|
181
221
|
var condition = rule.condition,
|
|
182
222
|
fn = condition.callback || function () {
|
|
183
223
|
return (
|
|
@@ -192,13 +232,19 @@ Chart.prototype.matchResponsiveRule = function (rule, matches) {
|
|
|
192
232
|
if (fn.call(this)) {
|
|
193
233
|
matches.push(rule._id);
|
|
194
234
|
}
|
|
195
|
-
|
|
196
235
|
};
|
|
197
236
|
|
|
198
237
|
/**
|
|
199
238
|
* Get the current values for a given set of options. Used before we update
|
|
200
239
|
* the chart with a new responsiveness rule.
|
|
201
240
|
* TODO: Restore axis options (by id?)
|
|
241
|
+
*
|
|
242
|
+
* @private
|
|
243
|
+
* @function Highcharts.Chart#currentOptions
|
|
244
|
+
*
|
|
245
|
+
* @param {Highcharts.Options} options
|
|
246
|
+
*
|
|
247
|
+
* @return {Highcharts.Options}
|
|
202
248
|
*/
|
|
203
249
|
Chart.prototype.currentOptions = function (options) {
|
|
204
250
|
|