highcharts 6.1.1 → 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 +29 -0
- package/css/highcharts.scss +25 -1
- package/css/themes/dark-unica.css +29 -0
- package/css/themes/grid-light.css +29 -0
- package/css/themes/sand-signika.css +29 -0
- package/es-modules/indicators/accumulation-distribution.src.js +1 -1
- package/es-modules/indicators/atr.src.js +1 -1
- package/es-modules/indicators/bollinger-bands.src.js +2 -2
- package/es-modules/indicators/cci.src.js +1 -1
- package/es-modules/indicators/cmf.src.js +1 -1
- package/es-modules/indicators/ema.src.js +1 -1
- package/es-modules/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/es-modules/indicators/indicators.src.js +29 -14
- package/es-modules/indicators/macd.src.js +4 -4
- package/es-modules/indicators/mfi.src.js +1 -1
- package/es-modules/indicators/momentum.src.js +2 -2
- package/es-modules/indicators/pivot-points.src.js +7 -2
- package/es-modules/indicators/price-envelopes.src.js +2 -2
- package/es-modules/indicators/psar.src.js +1 -1
- package/es-modules/indicators/roc.src.js +1 -1
- package/es-modules/indicators/rsi.src.js +1 -1
- package/es-modules/indicators/stochastic.src.js +9 -7
- package/es-modules/indicators/volume-by-price.src.js +1 -1
- package/es-modules/indicators/vwap.src.js +1 -1
- package/es-modules/indicators/wma.src.js +1 -1
- package/es-modules/indicators/zigzag.src.js +1 -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 +36 -5
- package/es-modules/mixins/on-series.js +1 -1
- package/es-modules/mixins/polygon.js +4 -4
- package/es-modules/modules/annotations.src.js +2 -2
- package/es-modules/modules/boost-canvas.src.js +19 -8
- package/es-modules/modules/boost.src.js +300 -137
- package/es-modules/modules/broken-axis.src.js +169 -134
- package/es-modules/modules/bullet.src.js +2 -2
- package/es-modules/modules/data.src.js +8 -6
- package/es-modules/modules/draggable-points.src.js +2257 -0
- package/es-modules/modules/drilldown.src.js +4 -2
- package/es-modules/modules/export-data.src.js +11 -1
- package/es-modules/modules/exporting.src.js +62 -36
- package/es-modules/modules/funnel.src.js +5 -5
- package/es-modules/modules/histogram.src.js +30 -28
- package/es-modules/modules/item-series.src.js +36 -11
- package/es-modules/modules/keyboard-navigation.src.js +81 -44
- package/es-modules/modules/no-data-to-display.src.js +5 -5
- package/es-modules/modules/oldie.src.js +14 -9
- package/es-modules/modules/overlapping-datalabels.src.js +45 -21
- package/es-modules/modules/parallel-coordinates.src.js +4 -3
- package/es-modules/modules/pareto.src.js +1 -1
- package/es-modules/modules/sankey.src.js +28 -10
- package/es-modules/modules/series-label.src.js +6 -6
- package/es-modules/modules/solid-gauge.src.js +10 -7
- package/es-modules/modules/static-scale.src.js +67 -28
- package/es-modules/modules/streamgraph.src.js +4 -4
- package/es-modules/modules/sunburst.src.js +4 -4
- package/es-modules/modules/tilemap.src.js +231 -134
- package/es-modules/modules/treemap.src.js +30 -27
- package/es-modules/modules/variable-pie.src.js +3 -3
- package/es-modules/modules/variwide.src.js +36 -24
- package/es-modules/modules/vector.src.js +98 -28
- package/es-modules/modules/windbarb.src.js +4 -4
- package/es-modules/modules/wordcloud.src.js +133 -48
- package/es-modules/modules/xrange.src.js +258 -78
- package/es-modules/parts/AreaSeries.js +83 -50
- package/es-modules/parts/AreaSplineSeries.js +66 -29
- package/es-modules/parts/Axis.js +2184 -745
- package/es-modules/parts/BarSeries.js +70 -53
- package/es-modules/parts/CandlestickSeries.js +20 -10
- package/es-modules/parts/Chart.js +349 -157
- package/es-modules/parts/Color.js +74 -25
- package/es-modules/parts/ColumnSeries.js +274 -147
- package/es-modules/parts/DataGrouping.js +36 -3
- package/es-modules/parts/DataLabels.js +318 -144
- package/es-modules/parts/DateTimeAxis.js +27 -5
- package/es-modules/parts/Dynamics.js +236 -144
- package/es-modules/parts/FlagsSeries.js +49 -7
- package/es-modules/parts/Globals.js +4 -3
- package/es-modules/parts/Html.js +82 -16
- package/es-modules/parts/Interaction.js +198 -65
- package/es-modules/parts/Legend.js +181 -31
- package/es-modules/parts/LogarithmicAxis.js +36 -3
- package/es-modules/parts/MSPointer.js +31 -4
- package/es-modules/parts/Navigator.js +479 -187
- package/es-modules/parts/OHLCSeries.js +11 -5
- package/es-modules/parts/Options.js +1052 -686
- package/es-modules/parts/OrdinalAxis.js +20 -6
- package/es-modules/parts/PieSeries.js +258 -142
- package/es-modules/parts/PlotBandSeries.experimental.js +2 -2
- package/es-modules/parts/PlotLineOrBand.js +671 -35
- package/es-modules/parts/Point.js +189 -73
- package/es-modules/parts/Pointer.js +263 -62
- package/es-modules/parts/RangeSelector.js +601 -91
- package/es-modules/parts/Responsive.js +82 -36
- package/es-modules/parts/ScatterSeries.js +59 -27
- package/es-modules/parts/ScrollablePlotArea.js +30 -9
- package/es-modules/parts/Scrollbar.js +284 -113
- package/es-modules/parts/Series.js +1105 -836
- package/es-modules/parts/SplineSeries.js +53 -31
- package/es-modules/parts/Stacking.js +108 -7
- package/es-modules/parts/StockChart.js +26 -8
- package/es-modules/parts/SvgRenderer.js +1251 -613
- package/es-modules/parts/Tick.js +164 -30
- package/es-modules/parts/Time.js +171 -71
- package/es-modules/parts/Tooltip.js +271 -49
- package/es-modules/parts/TouchPointer.js +70 -3
- package/es-modules/parts/Utilities.js +1024 -429
- package/es-modules/parts-3d/Axis.js +4 -3
- package/es-modules/parts-3d/Chart.js +8 -9
- 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 +13 -10
- package/es-modules/parts-3d/Scatter.js +4 -4
- 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 +4 -5
- package/es-modules/parts-map/ColorSeriesMixin.js +3 -1
- package/es-modules/parts-map/GeoJSON.js +1 -1
- package/es-modules/parts-map/HeatmapSeries.js +126 -55
- package/es-modules/parts-map/Map.js +144 -51
- package/es-modules/parts-map/MapAxis.js +1 -1
- package/es-modules/parts-map/MapBubbleSeries.js +6 -5
- package/es-modules/parts-map/MapLineSeries.js +4 -4
- package/es-modules/parts-map/MapNavigation.js +50 -12
- package/es-modules/parts-map/MapPointSeries.js +3 -3
- package/es-modules/parts-map/MapPointer.js +1 -1
- package/es-modules/parts-map/MapSeries.js +7 -7
- package/es-modules/parts-more/AreaRangeSeries.js +82 -40
- package/es-modules/parts-more/AreaSplineRangeSeries.js +3 -3
- package/es-modules/parts-more/BoxPlotSeries.js +3 -3
- package/es-modules/parts-more/BubbleSeries.js +9 -4
- package/es-modules/parts-more/ColumnRangeSeries.js +3 -3
- package/es-modules/parts-more/ErrorBarSeries.js +6 -4
- package/es-modules/parts-more/GaugeSeries.js +3 -3
- package/es-modules/parts-more/Pane.js +3 -2
- package/es-modules/parts-more/Polar.js +1 -1
- package/es-modules/parts-more/PolygonSeries.js +3 -3
- package/es-modules/parts-more/RadialAxis.js +5 -4
- package/es-modules/parts-more/WaterfallSeries.js +9 -4
- 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 +77 -75
- package/highcharts-3d.js.map +1 -8
- package/highcharts-3d.src.js +39 -32
- package/highcharts-gantt.js +503 -0
- package/highcharts-gantt.js.map +1 -0
- package/highcharts-gantt.src.js +49289 -0
- package/highcharts-more.js +66 -64
- package/highcharts-more.js.map +1 -8
- package/highcharts-more.src.js +135 -75
- package/highcharts.js +413 -403
- package/highcharts.js.map +1 -8
- package/highcharts.src.js +11114 -4781
- package/highmaps.js +442 -433
- package/highmaps.js.map +1 -8
- package/highmaps.src.js +10740 -4598
- package/highstock.js +553 -540
- package/highstock.js.map +1 -8
- package/highstock.src.js +12807 -5343
- package/indicators/accumulation-distribution.js +4 -3
- package/indicators/accumulation-distribution.js.map +1 -8
- package/indicators/accumulation-distribution.src.js +6 -2
- package/indicators/atr.js +4 -3
- package/indicators/atr.js.map +1 -8
- package/indicators/atr.src.js +6 -2
- package/indicators/bollinger-bands.js +7 -6
- package/indicators/bollinger-bands.js.map +1 -8
- package/indicators/bollinger-bands.src.js +7 -3
- package/indicators/cci.js +4 -3
- package/indicators/cci.js.map +1 -8
- package/indicators/cci.src.js +6 -2
- package/indicators/cmf.js +5 -4
- package/indicators/cmf.js.map +1 -8
- package/indicators/cmf.src.js +6 -2
- package/indicators/ema.js +4 -3
- package/indicators/ema.js.map +1 -8
- package/indicators/ema.src.js +6 -2
- package/indicators/ichimoku-kinko-hyo.js +10 -9
- package/indicators/ichimoku-kinko-hyo.js.map +1 -8
- package/indicators/ichimoku-kinko-hyo.src.js +6 -2
- package/indicators/indicators.js +6 -5
- package/indicators/indicators.js.map +1 -8
- package/indicators/indicators.src.js +34 -15
- package/indicators/macd.js +11 -10
- package/indicators/macd.js.map +1 -8
- package/indicators/macd.src.js +10 -6
- package/indicators/mfi.js +5 -3
- package/indicators/mfi.js.map +1 -8
- package/indicators/mfi.src.js +6 -2
- package/indicators/momentum.js +4 -3
- package/indicators/momentum.js.map +1 -8
- package/indicators/momentum.src.js +7 -3
- package/indicators/pivot-points.js +8 -7
- package/indicators/pivot-points.js.map +1 -8
- package/indicators/pivot-points.src.js +12 -3
- package/indicators/price-envelopes.js +7 -6
- package/indicators/price-envelopes.js.map +1 -8
- package/indicators/price-envelopes.src.js +7 -3
- package/indicators/psar.js +5 -4
- package/indicators/psar.js.map +1 -8
- package/indicators/psar.src.js +6 -2
- package/indicators/roc.js +4 -3
- package/indicators/roc.js.map +1 -8
- package/indicators/roc.src.js +6 -2
- package/indicators/rsi.js +4 -3
- package/indicators/rsi.js.map +1 -8
- package/indicators/rsi.src.js +6 -2
- package/indicators/stochastic.js +7 -5
- package/indicators/stochastic.js.map +1 -8
- package/indicators/stochastic.src.js +14 -8
- package/indicators/volume-by-price.js +13 -12
- package/indicators/volume-by-price.js.map +1 -8
- package/indicators/volume-by-price.src.js +6 -2
- package/indicators/vwap.js +4 -3
- package/indicators/vwap.js.map +1 -8
- package/indicators/vwap.src.js +6 -2
- package/indicators/wma.js +4 -3
- package/indicators/wma.js.map +1 -8
- package/indicators/wma.src.js +6 -2
- package/indicators/zigzag.js +5 -3
- package/indicators/zigzag.js.map +1 -8
- package/indicators/zigzag.src.js +6 -2
- package/js/es-modules/indicators/accumulation-distribution.src.js +1 -1
- package/js/es-modules/indicators/atr.src.js +1 -1
- package/js/es-modules/indicators/bollinger-bands.src.js +2 -2
- package/js/es-modules/indicators/cci.src.js +1 -1
- package/js/es-modules/indicators/cmf.src.js +1 -1
- package/js/es-modules/indicators/ema.src.js +1 -1
- package/js/es-modules/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/js/es-modules/indicators/indicators.src.js +29 -14
- package/js/es-modules/indicators/macd.src.js +4 -4
- package/js/es-modules/indicators/mfi.src.js +1 -1
- package/js/es-modules/indicators/momentum.src.js +2 -2
- package/js/es-modules/indicators/pivot-points.src.js +7 -2
- package/js/es-modules/indicators/price-envelopes.src.js +2 -2
- package/js/es-modules/indicators/psar.src.js +1 -1
- package/js/es-modules/indicators/roc.src.js +1 -1
- package/js/es-modules/indicators/rsi.src.js +1 -1
- package/js/es-modules/indicators/stochastic.src.js +9 -7
- package/js/es-modules/indicators/volume-by-price.src.js +1 -1
- package/js/es-modules/indicators/vwap.src.js +1 -1
- package/js/es-modules/indicators/wma.src.js +1 -1
- package/js/es-modules/indicators/zigzag.src.js +1 -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 +36 -5
- package/js/es-modules/mixins/on-series.js +1 -1
- package/js/es-modules/mixins/polygon.js +4 -4
- package/js/es-modules/modules/annotations.src.js +2 -2
- package/js/es-modules/modules/boost-canvas.src.js +19 -8
- package/js/es-modules/modules/boost.src.js +300 -137
- package/js/es-modules/modules/broken-axis.src.js +169 -134
- package/js/es-modules/modules/bullet.src.js +2 -2
- package/js/es-modules/modules/data.src.js +8 -6
- package/js/es-modules/modules/draggable-points.src.js +2257 -0
- package/js/es-modules/modules/drilldown.src.js +4 -2
- package/js/es-modules/modules/export-data.src.js +11 -1
- package/js/es-modules/modules/exporting.src.js +62 -36
- package/js/es-modules/modules/funnel.src.js +5 -5
- package/js/es-modules/modules/histogram.src.js +30 -28
- package/js/es-modules/modules/item-series.src.js +36 -11
- package/js/es-modules/modules/keyboard-navigation.src.js +81 -44
- package/js/es-modules/modules/no-data-to-display.src.js +5 -5
- package/js/es-modules/modules/oldie.src.js +14 -9
- package/js/es-modules/modules/overlapping-datalabels.src.js +45 -21
- package/js/es-modules/modules/parallel-coordinates.src.js +4 -3
- package/js/es-modules/modules/pareto.src.js +1 -1
- package/js/es-modules/modules/sankey.src.js +23 -7
- package/js/es-modules/modules/series-label.src.js +6 -6
- package/js/es-modules/modules/solid-gauge.src.js +8 -5
- package/js/es-modules/modules/static-scale.src.js +67 -28
- package/js/es-modules/modules/streamgraph.src.js +4 -4
- package/js/es-modules/modules/sunburst.src.js +4 -4
- package/js/es-modules/modules/tilemap.src.js +231 -134
- package/js/es-modules/modules/treemap.src.js +29 -26
- package/js/es-modules/modules/variable-pie.src.js +3 -3
- package/js/es-modules/modules/variwide.src.js +36 -24
- package/js/es-modules/modules/vector.src.js +98 -28
- package/js/es-modules/modules/windbarb.src.js +4 -4
- package/js/es-modules/modules/wordcloud.src.js +133 -48
- package/js/es-modules/modules/xrange.src.js +256 -69
- package/js/es-modules/parts/AreaSeries.js +83 -50
- package/js/es-modules/parts/AreaSplineSeries.js +66 -29
- package/js/es-modules/parts/Axis.js +2089 -694
- package/js/es-modules/parts/BarSeries.js +70 -53
- package/js/es-modules/parts/CandlestickSeries.js +20 -10
- package/js/es-modules/parts/Chart.js +349 -157
- package/js/es-modules/parts/Color.js +74 -25
- package/js/es-modules/parts/ColumnSeries.js +241 -128
- package/js/es-modules/parts/DataGrouping.js +36 -3
- package/js/es-modules/parts/DataLabels.js +287 -116
- package/js/es-modules/parts/DateTimeAxis.js +27 -5
- package/js/es-modules/parts/Dynamics.js +236 -144
- package/js/es-modules/parts/FlagsSeries.js +49 -7
- package/js/es-modules/parts/Globals.js +4 -3
- package/js/es-modules/parts/Html.js +82 -16
- package/js/es-modules/parts/Interaction.js +187 -67
- package/js/es-modules/parts/Legend.js +181 -31
- package/js/es-modules/parts/LogarithmicAxis.js +36 -3
- package/js/es-modules/parts/MSPointer.js +31 -4
- package/js/es-modules/parts/Navigator.js +432 -162
- package/js/es-modules/parts/OHLCSeries.js +5 -5
- package/js/es-modules/parts/Options.js +855 -592
- package/js/es-modules/parts/OrdinalAxis.js +20 -6
- package/js/es-modules/parts/PieSeries.js +247 -134
- package/js/es-modules/parts/PlotBandSeries.experimental.js +2 -2
- package/js/es-modules/parts/PlotLineOrBand.js +671 -35
- package/js/es-modules/parts/Point.js +182 -70
- package/js/es-modules/parts/Pointer.js +263 -62
- package/js/es-modules/parts/RangeSelector.js +579 -91
- package/js/es-modules/parts/Responsive.js +82 -36
- package/js/es-modules/parts/ScatterSeries.js +58 -27
- package/js/es-modules/parts/ScrollablePlotArea.js +30 -9
- package/js/es-modules/parts/Scrollbar.js +201 -71
- package/js/es-modules/parts/Series.js +995 -745
- package/js/es-modules/parts/SplineSeries.js +53 -31
- package/js/es-modules/parts/Stacking.js +108 -7
- package/js/es-modules/parts/StockChart.js +26 -8
- package/js/es-modules/parts/SvgRenderer.js +1208 -598
- package/js/es-modules/parts/Tick.js +164 -30
- package/js/es-modules/parts/Time.js +171 -71
- package/js/es-modules/parts/Tooltip.js +276 -49
- package/js/es-modules/parts/TouchPointer.js +70 -3
- package/js/es-modules/parts/Utilities.js +1024 -429
- package/js/es-modules/parts-3d/Axis.js +4 -3
- package/js/es-modules/parts-3d/Chart.js +8 -9
- 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 +13 -10
- package/js/es-modules/parts-3d/Scatter.js +4 -4
- 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 +4 -5
- package/js/es-modules/parts-map/ColorSeriesMixin.js +3 -1
- package/js/es-modules/parts-map/GeoJSON.js +1 -1
- package/js/es-modules/parts-map/HeatmapSeries.js +124 -54
- package/js/es-modules/parts-map/Map.js +136 -47
- package/js/es-modules/parts-map/MapAxis.js +1 -1
- package/js/es-modules/parts-map/MapBubbleSeries.js +6 -5
- package/js/es-modules/parts-map/MapLineSeries.js +4 -4
- package/js/es-modules/parts-map/MapNavigation.js +50 -12
- package/js/es-modules/parts-map/MapPointSeries.js +3 -3
- package/js/es-modules/parts-map/MapPointer.js +1 -1
- package/js/es-modules/parts-map/MapSeries.js +5 -5
- package/js/es-modules/parts-more/AreaRangeSeries.js +82 -40
- package/js/es-modules/parts-more/AreaSplineRangeSeries.js +3 -3
- package/js/es-modules/parts-more/BoxPlotSeries.js +3 -3
- package/js/es-modules/parts-more/BubbleSeries.js +9 -4
- package/js/es-modules/parts-more/ColumnRangeSeries.js +3 -3
- package/js/es-modules/parts-more/ErrorBarSeries.js +6 -4
- package/js/es-modules/parts-more/GaugeSeries.js +3 -3
- package/js/es-modules/parts-more/Pane.js +3 -2
- package/js/es-modules/parts-more/Polar.js +1 -1
- package/js/es-modules/parts-more/PolygonSeries.js +3 -3
- package/js/es-modules/parts-more/RadialAxis.js +5 -4
- package/js/es-modules/parts-more/WaterfallSeries.js +9 -4
- 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 +75 -74
- package/js/highcharts-3d.js.map +1 -8
- package/js/highcharts-3d.src.js +39 -32
- 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 +63 -61
- package/js/highcharts-more.js.map +1 -8
- package/js/highcharts-more.src.js +135 -75
- package/js/highcharts.js +396 -387
- package/js/highcharts.js.map +1 -8
- package/js/highcharts.src.js +10765 -4659
- package/js/highmaps.js +419 -411
- package/js/highmaps.js.map +1 -8
- package/js/highmaps.src.js +10198 -4285
- package/js/highstock.js +529 -516
- package/js/highstock.js.map +1 -8
- package/js/highstock.src.js +12108 -4962
- package/js/indicators/accumulation-distribution.js +4 -3
- package/js/indicators/accumulation-distribution.js.map +1 -8
- package/js/indicators/accumulation-distribution.src.js +6 -2
- package/js/indicators/atr.js +4 -3
- package/js/indicators/atr.js.map +1 -8
- package/js/indicators/atr.src.js +6 -2
- package/js/indicators/bollinger-bands.js +7 -6
- package/js/indicators/bollinger-bands.js.map +1 -8
- package/js/indicators/bollinger-bands.src.js +7 -3
- package/js/indicators/cci.js +4 -3
- package/js/indicators/cci.js.map +1 -8
- package/js/indicators/cci.src.js +6 -2
- package/js/indicators/cmf.js +5 -4
- package/js/indicators/cmf.js.map +1 -8
- package/js/indicators/cmf.src.js +6 -2
- package/js/indicators/ema.js +4 -3
- package/js/indicators/ema.js.map +1 -8
- package/js/indicators/ema.src.js +6 -2
- package/js/indicators/ichimoku-kinko-hyo.js +10 -9
- package/js/indicators/ichimoku-kinko-hyo.js.map +1 -8
- package/js/indicators/ichimoku-kinko-hyo.src.js +6 -2
- package/js/indicators/indicators.js +6 -5
- package/js/indicators/indicators.js.map +1 -8
- package/js/indicators/indicators.src.js +34 -15
- package/js/indicators/macd.js +11 -10
- package/js/indicators/macd.js.map +1 -8
- package/js/indicators/macd.src.js +10 -6
- package/js/indicators/mfi.js +5 -3
- package/js/indicators/mfi.js.map +1 -8
- package/js/indicators/mfi.src.js +6 -2
- package/js/indicators/momentum.js +4 -3
- package/js/indicators/momentum.js.map +1 -8
- package/js/indicators/momentum.src.js +7 -3
- package/js/indicators/pivot-points.js +8 -7
- package/js/indicators/pivot-points.js.map +1 -8
- package/js/indicators/pivot-points.src.js +12 -3
- package/js/indicators/price-envelopes.js +7 -6
- package/js/indicators/price-envelopes.js.map +1 -8
- package/js/indicators/price-envelopes.src.js +7 -3
- package/js/indicators/psar.js +5 -4
- package/js/indicators/psar.js.map +1 -8
- package/js/indicators/psar.src.js +6 -2
- package/js/indicators/roc.js +4 -3
- package/js/indicators/roc.js.map +1 -8
- package/js/indicators/roc.src.js +6 -2
- package/js/indicators/rsi.js +4 -3
- package/js/indicators/rsi.js.map +1 -8
- package/js/indicators/rsi.src.js +6 -2
- package/js/indicators/stochastic.js +7 -5
- package/js/indicators/stochastic.js.map +1 -8
- package/js/indicators/stochastic.src.js +14 -8
- package/js/indicators/volume-by-price.js +13 -12
- package/js/indicators/volume-by-price.js.map +1 -8
- package/js/indicators/volume-by-price.src.js +6 -2
- package/js/indicators/vwap.js +4 -3
- package/js/indicators/vwap.js.map +1 -8
- package/js/indicators/vwap.src.js +6 -2
- package/js/indicators/wma.js +4 -3
- package/js/indicators/wma.js.map +1 -8
- package/js/indicators/wma.src.js +6 -2
- package/js/indicators/zigzag.js +5 -3
- package/js/indicators/zigzag.js.map +1 -8
- package/js/indicators/zigzag.src.js +6 -2
- package/js/modules/accessibility.js +52 -51
- package/js/modules/accessibility.js.map +1 -8
- package/js/modules/accessibility.src.js +86 -45
- package/js/modules/annotations.js +22 -21
- package/js/modules/annotations.js.map +1 -8
- package/js/modules/annotations.src.js +8 -4
- 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 +15 -13
- package/js/modules/boost-canvas.js.map +1 -8
- package/js/modules/boost-canvas.src.js +24 -9
- package/js/modules/boost.js +57 -52
- package/js/modules/boost.js.map +1 -8
- package/js/modules/boost.src.js +305 -138
- package/js/modules/broken-axis.js +12 -10
- package/js/modules/broken-axis.js.map +1 -8
- package/js/modules/broken-axis.src.js +175 -136
- package/js/modules/bullet.js +3 -2
- package/js/modules/bullet.js.map +1 -8
- package/js/modules/bullet.src.js +7 -3
- 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 +25 -24
- package/js/modules/data.js.map +1 -8
- package/js/modules/data.src.js +14 -8
- package/js/modules/drag-panes.js +9 -8
- package/js/modules/drag-panes.js.map +1 -8
- package/js/modules/drag-panes.src.js +5 -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 +20 -19
- package/js/modules/drilldown.js.map +1 -8
- package/js/modules/drilldown.src.js +9 -3
- package/js/modules/export-data.js +20 -19
- package/js/modules/export-data.js.map +1 -8
- package/js/modules/export-data.src.js +17 -3
- package/js/modules/exporting.js +24 -23
- package/js/modules/exporting.js.map +1 -8
- package/js/modules/exporting.src.js +68 -38
- package/js/modules/funnel.js +8 -6
- package/js/modules/funnel.js.map +1 -8
- package/js/modules/funnel.src.js +11 -7
- package/js/modules/gantt.js +81 -18
- package/js/modules/gantt.js.map +1 -8
- package/js/modules/gantt.src.js +5494 -372
- package/js/modules/grid-axis.js +16 -10
- package/js/modules/grid-axis.js.map +1 -8
- package/js/modules/grid-axis.src.js +735 -293
- package/js/modules/heatmap.js +22 -21
- package/js/modules/heatmap.js.map +1 -8
- package/js/modules/heatmap.src.js +137 -62
- package/js/modules/histogram-bellcurve.js +9 -8
- package/js/modules/histogram-bellcurve.js.map +1 -8
- package/js/modules/histogram-bellcurve.src.js +35 -29
- package/js/modules/item-series.js +6 -4
- package/js/modules/item-series.js.map +1 -8
- package/js/modules/item-series.src.js +42 -13
- package/js/modules/map.js +63 -62
- package/js/modules/map.js.map +1 -8
- package/js/modules/map.src.js +353 -145
- package/js/modules/no-data-to-display.js +5 -4
- package/js/modules/no-data-to-display.js.map +1 -8
- package/js/modules/no-data-to-display.src.js +10 -6
- package/js/modules/offline-exporting.js +14 -13
- package/js/modules/offline-exporting.js.map +1 -8
- package/js/modules/offline-exporting.src.js +6 -2
- package/js/modules/oldie.js +29 -27
- package/js/modules/oldie.js.map +1 -8
- package/js/modules/oldie.src.js +20 -11
- package/js/modules/overlapping-datalabels.js +4 -3
- package/js/modules/overlapping-datalabels.js.map +1 -8
- package/js/modules/overlapping-datalabels.src.js +6 -2
- package/js/modules/parallel-coordinates.js +10 -9
- package/js/modules/parallel-coordinates.js.map +1 -8
- package/js/modules/parallel-coordinates.src.js +9 -4
- package/js/modules/pareto.js +5 -4
- package/js/modules/pareto.js.map +1 -8
- package/js/modules/pareto.src.js +6 -2
- 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 +13 -12
- package/js/modules/pattern-fill.js.map +1 -8
- package/js/modules/pattern-fill.src.js +5 -1
- package/js/modules/sankey.js +13 -12
- package/js/modules/sankey.js.map +1 -8
- package/js/modules/sankey.src.js +29 -9
- package/js/modules/series-label.js +17 -15
- package/js/modules/series-label.js.map +1 -8
- package/js/modules/series-label.src.js +12 -8
- package/js/modules/solid-gauge.js +9 -8
- package/js/modules/solid-gauge.js.map +1 -8
- package/js/modules/solid-gauge.src.js +14 -7
- package/js/modules/static-scale.js +4 -3
- package/js/modules/static-scale.js.map +1 -8
- package/js/modules/static-scale.src.js +69 -26
- package/js/modules/stock.js +136 -132
- package/js/modules/stock.js.map +1 -8
- package/js/modules/stock.src.js +1543 -499
- package/js/modules/streamgraph.js +4 -3
- package/js/modules/streamgraph.js.map +1 -8
- package/js/modules/streamgraph.src.js +10 -6
- package/js/modules/sunburst.js +40 -39
- package/js/modules/sunburst.js.map +1 -8
- package/js/modules/sunburst.src.js +38 -31
- package/js/modules/tilemap.js +19 -18
- package/js/modules/tilemap.js.map +1 -8
- package/js/modules/tilemap.src.js +363 -190
- 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 +27 -26
- package/js/modules/treemap.js.map +1 -8
- package/js/modules/treemap.src.js +34 -27
- package/js/modules/variable-pie.js +8 -7
- package/js/modules/variable-pie.js.map +1 -8
- package/js/modules/variable-pie.src.js +8 -4
- package/js/modules/variwide.js +8 -7
- package/js/modules/variwide.js.map +1 -8
- package/js/modules/variwide.src.js +42 -26
- package/js/modules/vector.js +7 -6
- package/js/modules/vector.js.map +1 -8
- package/js/modules/vector.src.js +104 -30
- package/js/modules/windbarb.js +11 -10
- package/js/modules/windbarb.js.map +1 -8
- package/js/modules/windbarb.src.js +11 -7
- package/js/modules/wordcloud.js +18 -15
- package/js/modules/wordcloud.js.map +1 -8
- package/js/modules/wordcloud.src.js +142 -53
- package/js/modules/xrange.js +12 -10
- package/js/modules/xrange.js.map +1 -8
- package/js/modules/xrange.src.js +262 -71
- package/js/themes/avocado.js +3 -2
- package/js/themes/avocado.js.map +1 -8
- package/js/themes/avocado.src.js +5 -1
- package/js/themes/dark-blue.js +9 -8
- package/js/themes/dark-blue.js.map +1 -8
- package/js/themes/dark-blue.src.js +7 -3
- package/js/themes/dark-green.js +9 -8
- package/js/themes/dark-green.js.map +1 -8
- package/js/themes/dark-green.src.js +7 -3
- package/js/themes/dark-unica.js +9 -7
- package/js/themes/dark-unica.js.map +1 -8
- package/js/themes/dark-unica.src.js +7 -3
- package/js/themes/gray.js +10 -8
- package/js/themes/gray.js.map +1 -8
- package/js/themes/gray.src.js +7 -3
- package/js/themes/grid-light.js +5 -4
- package/js/themes/grid-light.js.map +1 -8
- package/js/themes/grid-light.src.js +7 -3
- package/js/themes/grid.js +6 -5
- package/js/themes/grid.js.map +1 -8
- package/js/themes/grid.src.js +7 -3
- package/js/themes/sand-signika.js +6 -5
- package/js/themes/sand-signika.js.map +1 -8
- package/js/themes/sand-signika.src.js +7 -3
- package/js/themes/skies.js +6 -5
- package/js/themes/skies.js.map +1 -8
- package/js/themes/skies.src.js +7 -3
- package/js/themes/sunset.js +3 -2
- package/js/themes/sunset.js.map +1 -8
- package/js/themes/sunset.src.js +5 -1
- package/modules/accessibility.js +53 -51
- package/modules/accessibility.js.map +1 -8
- package/modules/accessibility.src.js +86 -45
- package/modules/annotations.js +24 -22
- package/modules/annotations.js.map +1 -8
- package/modules/annotations.src.js +8 -4
- 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 +15 -13
- package/modules/boost-canvas.js.map +1 -8
- package/modules/boost-canvas.src.js +24 -9
- package/modules/boost.js +57 -52
- package/modules/boost.js.map +1 -8
- package/modules/boost.src.js +305 -138
- package/modules/broken-axis.js +12 -10
- package/modules/broken-axis.js.map +1 -8
- package/modules/broken-axis.src.js +175 -136
- package/modules/bullet.js +6 -5
- package/modules/bullet.js.map +1 -8
- package/modules/bullet.src.js +7 -3
- 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 +25 -24
- package/modules/data.js.map +1 -8
- package/modules/data.src.js +14 -8
- package/modules/drag-panes.js +9 -8
- package/modules/drag-panes.js.map +1 -8
- package/modules/drag-panes.src.js +5 -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 +16 -15
- package/modules/drilldown.js.map +1 -8
- package/modules/drilldown.src.js +9 -3
- package/modules/export-data.js +20 -19
- package/modules/export-data.js.map +1 -8
- package/modules/export-data.src.js +17 -3
- package/modules/exporting.js +23 -21
- package/modules/exporting.js.map +1 -8
- package/modules/exporting.src.js +68 -38
- package/modules/funnel.js +8 -7
- package/modules/funnel.js.map +1 -8
- package/modules/funnel.src.js +11 -7
- package/modules/gantt.js +84 -19
- package/modules/gantt.js.map +1 -8
- package/modules/gantt.src.js +5557 -379
- package/modules/grid-axis.js +17 -10
- package/modules/grid-axis.js.map +1 -8
- package/modules/grid-axis.src.js +736 -293
- package/modules/heatmap.js +22 -21
- package/modules/heatmap.js.map +1 -8
- package/modules/heatmap.src.js +139 -63
- package/modules/histogram-bellcurve.js +9 -8
- package/modules/histogram-bellcurve.js.map +1 -8
- package/modules/histogram-bellcurve.src.js +35 -29
- package/modules/item-series.js +6 -4
- package/modules/item-series.js.map +1 -8
- package/modules/item-series.src.js +42 -13
- package/modules/map.js +65 -64
- package/modules/map.js.map +1 -8
- package/modules/map.src.js +365 -152
- package/modules/no-data-to-display.js +5 -4
- package/modules/no-data-to-display.js.map +1 -8
- package/modules/no-data-to-display.src.js +10 -6
- package/modules/offline-exporting.js +14 -12
- package/modules/offline-exporting.js.map +1 -8
- package/modules/offline-exporting.src.js +6 -2
- package/modules/oldie.js +29 -27
- package/modules/oldie.js.map +1 -8
- package/modules/oldie.src.js +20 -11
- package/modules/overlapping-datalabels.js +4 -3
- package/modules/overlapping-datalabels.js.map +1 -8
- package/modules/overlapping-datalabels.src.js +6 -2
- package/modules/parallel-coordinates.js +10 -9
- package/modules/parallel-coordinates.js.map +1 -8
- package/modules/parallel-coordinates.src.js +9 -4
- package/modules/pareto.js +5 -4
- package/modules/pareto.js.map +1 -8
- package/modules/pareto.src.js +6 -2
- 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 +13 -12
- package/modules/pattern-fill.js.map +1 -8
- package/modules/pattern-fill.src.js +5 -1
- package/modules/sankey.js +13 -12
- package/modules/sankey.js.map +1 -8
- package/modules/sankey.src.js +34 -12
- package/modules/series-label.js +17 -15
- package/modules/series-label.js.map +1 -8
- package/modules/series-label.src.js +12 -8
- package/modules/solid-gauge.js +9 -8
- package/modules/solid-gauge.js.map +1 -8
- package/modules/solid-gauge.src.js +16 -9
- package/modules/static-scale.js +4 -3
- package/modules/static-scale.js.map +1 -8
- package/modules/static-scale.src.js +69 -26
- package/modules/stock.js +143 -139
- package/modules/stock.js.map +1 -8
- package/modules/stock.src.js +1701 -566
- package/modules/streamgraph.js +4 -3
- package/modules/streamgraph.js.map +1 -8
- package/modules/streamgraph.src.js +10 -6
- package/modules/sunburst.js +42 -41
- package/modules/sunburst.js.map +1 -8
- package/modules/sunburst.src.js +39 -32
- package/modules/tilemap.js +18 -17
- package/modules/tilemap.js.map +1 -8
- package/modules/tilemap.src.js +365 -191
- package/modules/treegrid.js +52 -0
- package/modules/treegrid.js.map +1 -0
- package/modules/treegrid.src.js +2797 -0
- package/modules/treemap.js +29 -28
- package/modules/treemap.js.map +1 -8
- package/modules/treemap.src.js +35 -28
- package/modules/variable-pie.js +8 -7
- package/modules/variable-pie.js.map +1 -8
- package/modules/variable-pie.src.js +8 -4
- package/modules/variwide.js +8 -7
- package/modules/variwide.js.map +1 -8
- package/modules/variwide.src.js +42 -26
- package/modules/vector.js +7 -6
- package/modules/vector.js.map +1 -8
- package/modules/vector.src.js +104 -30
- package/modules/windbarb.js +11 -10
- package/modules/windbarb.js.map +1 -8
- package/modules/windbarb.src.js +11 -7
- package/modules/wordcloud.js +18 -15
- package/modules/wordcloud.js.map +1 -8
- package/modules/wordcloud.src.js +142 -53
- package/modules/xrange.js +13 -11
- package/modules/xrange.js.map +1 -8
- package/modules/xrange.src.js +264 -80
- package/package.json +1 -1
- package/themes/avocado.js +3 -2
- package/themes/avocado.js.map +1 -8
- package/themes/avocado.src.js +5 -1
- package/themes/dark-blue.js +9 -8
- package/themes/dark-blue.js.map +1 -8
- package/themes/dark-blue.src.js +7 -3
- package/themes/dark-green.js +9 -8
- package/themes/dark-green.js.map +1 -8
- package/themes/dark-green.src.js +7 -3
- package/themes/dark-unica.js +9 -7
- package/themes/dark-unica.js.map +1 -8
- package/themes/dark-unica.src.js +7 -3
- package/themes/gray.js +10 -8
- package/themes/gray.js.map +1 -8
- package/themes/gray.src.js +7 -3
- package/themes/grid-light.js +5 -4
- package/themes/grid-light.js.map +1 -8
- package/themes/grid-light.src.js +7 -3
- package/themes/grid.js +6 -5
- package/themes/grid.js.map +1 -8
- package/themes/grid.src.js +7 -3
- package/themes/sand-signika.js +6 -5
- package/themes/sand-signika.js.map +1 -8
- package/themes/sand-signika.src.js +7 -3
- package/themes/skies.js +6 -5
- package/themes/skies.js.map +1 -8
- package/themes/skies.src.js +7 -3
- package/themes/sunset.js +3 -2
- package/themes/sunset.js.map +1 -8
- package/themes/sunset.src.js +5 -1
|
@@ -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
|
|
|
@@ -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.
|
|
17
31
|
*
|
|
18
|
-
* @sample
|
|
19
|
-
*
|
|
20
|
-
*
|
|
32
|
+
* @sample {highcharts} highcharts/demo/scatter/
|
|
33
|
+
* Scatter plot
|
|
34
|
+
*
|
|
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,12 +84,21 @@ seriesType('scatter', 'line', {
|
|
|
66
84
|
* @product highcharts highstock
|
|
67
85
|
*/
|
|
68
86
|
tooltip: {
|
|
87
|
+
|
|
69
88
|
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* @default ● {series.name}
|
|
92
|
+
*/
|
|
70
93
|
headerFormat:
|
|
71
94
|
'<span style="color:{point.color}">\u25CF</span> ' +
|
|
72
95
|
'<span style="font-size: 0.85em"> {series.name}</span><br/>',
|
|
96
|
+
|
|
73
97
|
|
|
74
98
|
|
|
99
|
+
/**
|
|
100
|
+
* @default x: {point.x} y: {point.y}
|
|
101
|
+
*/
|
|
75
102
|
pointFormat: 'x: <b>{point.x}</b><br/>y: <b>{point.y}</b><br/>'
|
|
76
103
|
}
|
|
77
104
|
|
|
@@ -82,6 +109,11 @@ seriesType('scatter', 'line', {
|
|
|
82
109
|
noSharedTooltip: true,
|
|
83
110
|
trackerGroups: ['group', 'markerGroup', 'dataLabelsGroup'],
|
|
84
111
|
takeOrdinalPosition: false, // #2342
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* @private
|
|
115
|
+
* @function Highcharts.seriesTypes.scatter#drawGraph
|
|
116
|
+
*/
|
|
85
117
|
drawGraph: function () {
|
|
86
118
|
if (this.options.lineWidth) {
|
|
87
119
|
Series.prototype.drawGraph.call(this);
|
|
@@ -93,9 +125,8 @@ seriesType('scatter', 'line', {
|
|
|
93
125
|
* A `scatter` series. If the [type](#series.scatter.type) option is
|
|
94
126
|
* not specified, it is inherited from [chart.type](#chart.type).
|
|
95
127
|
*
|
|
96
|
-
* @type {Object}
|
|
97
128
|
* @extends series,plotOptions.scatter
|
|
98
|
-
* @excluding dataParser,dataURL
|
|
129
|
+
* @excluding dataParser, dataURL
|
|
99
130
|
* @product highcharts highstock
|
|
100
131
|
* @apioption series.scatter
|
|
101
132
|
*/
|
|
@@ -126,8 +157,8 @@ seriesType('scatter', 'line', {
|
|
|
126
157
|
* ]
|
|
127
158
|
* ```
|
|
128
159
|
*
|
|
129
|
-
* 3. An array of objects with named values. The
|
|
130
|
-
*
|
|
160
|
+
* 3. An array of objects with named values. The following snippet shows only a
|
|
161
|
+
* few settings, see the complete options set below. If the total number of data
|
|
131
162
|
* points exceeds the series' [turboThreshold](#series.scatter.turboThreshold),
|
|
132
163
|
* this option is not available.
|
|
133
164
|
*
|
|
@@ -145,18 +176,19 @@ seriesType('scatter', 'line', {
|
|
|
145
176
|
* }]
|
|
146
177
|
* ```
|
|
147
178
|
*
|
|
148
|
-
* @
|
|
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>|*>}
|
|
149
191
|
* @extends series.line.data
|
|
150
|
-
* @sample {highcharts} highcharts/chart/reflow-true/
|
|
151
|
-
* Numerical values
|
|
152
|
-
* @sample {highcharts} highcharts/series/data-array-of-arrays/
|
|
153
|
-
* Arrays of numeric x and y
|
|
154
|
-
* @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
|
|
155
|
-
* Arrays of datetime x and y
|
|
156
|
-
* @sample {highcharts} highcharts/series/data-array-of-name-value/
|
|
157
|
-
* Arrays of point.name and y
|
|
158
|
-
* @sample {highcharts} highcharts/series/data-array-of-objects/
|
|
159
|
-
* Config objects
|
|
160
192
|
* @product highcharts highstock
|
|
161
193
|
* @apioption series.scatter.data
|
|
162
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,
|
|
@@ -171,6 +181,8 @@ Chart.prototype.applyFixed = function () {
|
|
|
171
181
|
.addClass('highcharts-scrollable-mask')
|
|
172
182
|
.add();
|
|
173
183
|
|
|
184
|
+
// These elements are moved over to the fixed renderer and stay fixed
|
|
185
|
+
// when the user scrolls the chart.
|
|
174
186
|
H.each([
|
|
175
187
|
this.inverted ?
|
|
176
188
|
'.highcharts-xaxis' :
|
|
@@ -182,27 +194,36 @@ Chart.prototype.applyFixed = function () {
|
|
|
182
194
|
'.highcharts-credits',
|
|
183
195
|
'.highcharts-legend',
|
|
184
196
|
'.highcharts-subtitle',
|
|
185
|
-
'.highcharts-title'
|
|
197
|
+
'.highcharts-title',
|
|
198
|
+
'.highcharts-legend-checkbox'
|
|
186
199
|
], function (className) {
|
|
187
200
|
H.each(container.querySelectorAll(className), function (elem) {
|
|
188
|
-
|
|
201
|
+
(
|
|
202
|
+
elem.namespaceURI === fixedRenderer.SVG_NS ?
|
|
203
|
+
fixedRenderer.box :
|
|
204
|
+
fixedRenderer.box.parentNode
|
|
205
|
+
).appendChild(elem);
|
|
189
206
|
elem.style.pointerEvents = 'auto';
|
|
190
207
|
});
|
|
191
208
|
});
|
|
192
209
|
}
|
|
193
210
|
|
|
211
|
+
// Set the size of the fixed renderer to the visible width
|
|
194
212
|
this.fixedRenderer.setSize(
|
|
195
213
|
this.chartWidth,
|
|
196
214
|
this.chartHeight
|
|
197
215
|
);
|
|
198
216
|
|
|
217
|
+
// Increase the size of the scrollable renderer and background
|
|
199
218
|
scrollableWidth = this.chartWidth + this.scrollablePixels;
|
|
219
|
+
H.stop(this.container);
|
|
200
220
|
this.container.style.width = scrollableWidth + 'px';
|
|
201
221
|
this.renderer.boxWrapper.attr({
|
|
202
222
|
width: scrollableWidth,
|
|
203
223
|
height: this.chartHeight,
|
|
204
224
|
viewBox: [0, 0, scrollableWidth, this.chartHeight].join(' ')
|
|
205
225
|
});
|
|
226
|
+
this.chartBackground.attr({ width: scrollableWidth });
|
|
206
227
|
|
|
207
228
|
// Set scroll position
|
|
208
229
|
if (firstTime) {
|