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,9 +1,11 @@
|
|
|
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 './ColumnSeries.js';
|
|
@@ -11,31 +13,69 @@ import './ColumnSeries.js';
|
|
|
11
13
|
var seriesType = H.seriesType;
|
|
12
14
|
|
|
13
15
|
/**
|
|
14
|
-
*
|
|
16
|
+
* Bar series type.
|
|
17
|
+
*
|
|
18
|
+
* @private
|
|
19
|
+
* @class
|
|
20
|
+
* @name Highcharts.seriesTypes.bar
|
|
21
|
+
*
|
|
22
|
+
* @augments Highcharts.Series
|
|
15
23
|
*/
|
|
16
|
-
seriesType('bar', 'column',
|
|
24
|
+
seriesType('bar', 'column',
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* A bar series is a special type of column series where the columns are
|
|
28
|
+
* horizontal.
|
|
29
|
+
*
|
|
30
|
+
* @sample highcharts/demo/bar-basic/
|
|
31
|
+
* Bar chart
|
|
32
|
+
*
|
|
33
|
+
* @extends plotOptions.column
|
|
34
|
+
* @product highcharts
|
|
35
|
+
* @apioption plotOptions.bar
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Alignment of the data label relative to the data point.
|
|
40
|
+
*
|
|
41
|
+
* @sample {highcharts} highcharts/plotoptions/bar-datalabels-align-inside-bar/
|
|
42
|
+
* Data labels inside the bar
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @default left
|
|
46
|
+
* @product highcharts
|
|
47
|
+
* @apioption plotOptions.bar.dataLabels.align
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* The x position of the data label relative to the data point.
|
|
52
|
+
*
|
|
53
|
+
* @sample {highcharts} highcharts/plotoptions/bar-datalabels-align-inside-bar/
|
|
54
|
+
* Data labels inside the bar
|
|
55
|
+
*
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @default 5
|
|
58
|
+
* @product highcharts
|
|
59
|
+
* @apioption plotOptions.bar.dataLabels.x
|
|
60
|
+
*/
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @ignore
|
|
64
|
+
*/
|
|
65
|
+
null
|
|
66
|
+
|
|
67
|
+
, {
|
|
17
68
|
inverted: true
|
|
18
69
|
});
|
|
19
|
-
/**
|
|
20
|
-
* A bar series is a special type of column series where the columns are
|
|
21
|
-
* horizontal.
|
|
22
|
-
*
|
|
23
|
-
* @sample highcharts/demo/bar-basic/
|
|
24
|
-
* Bar chart
|
|
25
|
-
* @extends {plotOptions.column}
|
|
26
|
-
* @product highcharts
|
|
27
|
-
* @optionparent plotOptions.bar
|
|
28
|
-
*/
|
|
29
70
|
|
|
30
71
|
|
|
31
72
|
/**
|
|
32
73
|
* A `bar` series. If the [type](#series.bar.type) option is not specified,
|
|
33
74
|
* it is inherited from [chart.type](#chart.type).
|
|
34
75
|
*
|
|
35
|
-
* @type {Object}
|
|
36
76
|
* @extends series,plotOptions.bar
|
|
37
|
-
* @excluding connectNulls,dashStyle,dataParser,dataURL,gapSize,gapUnit,
|
|
38
|
-
* lineWidth,marker,connectEnds,step
|
|
77
|
+
* @excluding connectNulls, dashStyle, dataParser, dataURL, gapSize, gapUnit,
|
|
78
|
+
* linecap, lineWidth, marker, connectEnds, step
|
|
39
79
|
* @product highcharts
|
|
40
80
|
* @apioption series.bar
|
|
41
81
|
*/
|
|
@@ -85,18 +125,19 @@ seriesType('bar', 'column', null, {
|
|
|
85
125
|
* }]
|
|
86
126
|
* ```
|
|
87
127
|
*
|
|
88
|
-
* @
|
|
128
|
+
* @sample {highcharts} highcharts/chart/reflow-true/
|
|
129
|
+
* Numerical values
|
|
130
|
+
* @sample {highcharts} highcharts/series/data-array-of-arrays/
|
|
131
|
+
* Arrays of numeric x and y
|
|
132
|
+
* @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
|
|
133
|
+
* Arrays of datetime x and y
|
|
134
|
+
* @sample {highcharts} highcharts/series/data-array-of-name-value/
|
|
135
|
+
* Arrays of point.name and y
|
|
136
|
+
* @sample {highcharts} highcharts/series/data-array-of-objects/
|
|
137
|
+
* Config objects
|
|
138
|
+
*
|
|
139
|
+
* @type {Array<number|Array<number|string|Date>|*>}
|
|
89
140
|
* @extends series.column.data
|
|
90
|
-
* @sample {highcharts} highcharts/chart/reflow-true/
|
|
91
|
-
* Numerical values
|
|
92
|
-
* @sample {highcharts} highcharts/series/data-array-of-arrays/
|
|
93
|
-
* Arrays of numeric x and y
|
|
94
|
-
* @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
|
|
95
|
-
* Arrays of datetime x and y
|
|
96
|
-
* @sample {highcharts} highcharts/series/data-array-of-name-value/
|
|
97
|
-
* Arrays of point.name and y
|
|
98
|
-
* @sample {highcharts} highcharts/series/data-array-of-objects/
|
|
99
|
-
* Config objects
|
|
100
141
|
* @product highcharts
|
|
101
142
|
* @apioption series.bar.data
|
|
102
143
|
*/
|
|
@@ -112,27 +153,3 @@ seriesType('bar', 'column', null, {
|
|
|
112
153
|
* @product highcharts highstock
|
|
113
154
|
* @apioption series.bar.states.select
|
|
114
155
|
*/
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* Alignment of the data label relative to the data point.
|
|
118
|
-
*
|
|
119
|
-
* @type {String}
|
|
120
|
-
* @sample {highcharts}
|
|
121
|
-
* highcharts/plotoptions/bar-datalabels-align-inside-bar/
|
|
122
|
-
* Data labels inside the bar
|
|
123
|
-
* @default left
|
|
124
|
-
* @product highcharts
|
|
125
|
-
* @apioption plotOptions.bar.dataLabels.align
|
|
126
|
-
*/
|
|
127
|
-
|
|
128
|
-
/**
|
|
129
|
-
* The x position of the data label relative to the data point.
|
|
130
|
-
*
|
|
131
|
-
* @type {Number}
|
|
132
|
-
* @sample {highcharts}
|
|
133
|
-
* highcharts/plotoptions/bar-datalabels-align-inside-bar/
|
|
134
|
-
* Data labels inside the bar
|
|
135
|
-
* @default 5
|
|
136
|
-
* @product highcharts
|
|
137
|
-
* @apioption plotOptions.bar.dataLabels.x
|
|
138
|
-
*/
|
|
@@ -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
|
*/
|
|
@@ -102,25 +102,13 @@ var addEvent = H.addEvent,
|
|
|
102
102
|
* @class
|
|
103
103
|
* @name Highcharts.Chart
|
|
104
104
|
*
|
|
105
|
-
* @param {Highcharts.
|
|
106
|
-
* The chart options structure.
|
|
107
|
-
*
|
|
108
|
-
* @param {Highcharts.ChartCallbackFunction|undefined} [callback]
|
|
109
|
-
* Function to run when the chart has loaded and and all external images
|
|
110
|
-
* are loaded. Defining a
|
|
111
|
-
* {@link https://api.highcharts.com/highcharts/chart.events.load|chart.event.load}
|
|
112
|
-
* handler is equivalent.
|
|
113
|
-
*//**
|
|
114
|
-
* @class
|
|
115
|
-
* @name Highcharts.Chart
|
|
116
|
-
*
|
|
117
|
-
* @param {string|Highcharts.HTMLDOMElement} renderTo
|
|
105
|
+
* @param {string|Highcharts.HTMLDOMElement} [renderTo]
|
|
118
106
|
* The DOM element to render to, or its id.
|
|
119
107
|
*
|
|
120
108
|
* @param {Highcharts.Options} options
|
|
121
109
|
* The chart options structure.
|
|
122
110
|
*
|
|
123
|
-
* @param {Highcharts.ChartCallbackFunction
|
|
111
|
+
* @param {Highcharts.ChartCallbackFunction} [callback]
|
|
124
112
|
* Function to run when the chart has loaded and and all external images
|
|
125
113
|
* are loaded. Defining a
|
|
126
114
|
* {@link https://api.highcharts.com/highcharts/chart.events.load|chart.event.load}
|
|
@@ -146,27 +134,13 @@ var Chart = H.Chart = function () {
|
|
|
146
134
|
*
|
|
147
135
|
* @function Highcharts.chart
|
|
148
136
|
*
|
|
149
|
-
* @param {Highcharts.
|
|
150
|
-
* The chart options structure.
|
|
151
|
-
*
|
|
152
|
-
* @param {Highcharts.ChartCallbackFunction|undefined} [callback]
|
|
153
|
-
* Function to run when the chart has loaded and and all external images
|
|
154
|
-
* are loaded. Defining a
|
|
155
|
-
* {@link https://api.highcharts.com/highcharts/chart.events.load|chart.event.load}
|
|
156
|
-
* handler is equivalent.
|
|
157
|
-
*
|
|
158
|
-
* @return {Highcharts.Chart}
|
|
159
|
-
* Returns the Chart object.
|
|
160
|
-
*//**
|
|
161
|
-
* @function Highcharts.chart
|
|
162
|
-
*
|
|
163
|
-
* @param {string|Highcharts.HTMLDOMElement} renderTo
|
|
137
|
+
* @param {string|Highcharts.HTMLDOMElement} [renderTo]
|
|
164
138
|
* The DOM element to render to, or its id.
|
|
165
139
|
*
|
|
166
140
|
* @param {Highcharts.Options} options
|
|
167
141
|
* The chart options structure.
|
|
168
142
|
*
|
|
169
|
-
* @param {Highcharts.ChartCallbackFunction
|
|
143
|
+
* @param {Highcharts.ChartCallbackFunction} [callback]
|
|
170
144
|
* Function to run when the chart has loaded and and all external images
|
|
171
145
|
* are loaded. Defining a
|
|
172
146
|
* {@link https://api.highcharts.com/highcharts/chart.events.load|chart.event.load}
|
|
@@ -219,7 +193,7 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
219
193
|
* @param {Highcharts.Options} userOptions
|
|
220
194
|
* Custom options.
|
|
221
195
|
*
|
|
222
|
-
* @param {Function
|
|
196
|
+
* @param {Function} [callback]
|
|
223
197
|
* Function to run when the chart has loaded and and all external
|
|
224
198
|
* images are loaded.
|
|
225
199
|
*
|
|
@@ -458,7 +432,7 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
458
432
|
*
|
|
459
433
|
* @function Highcharts.Chart#redraw
|
|
460
434
|
*
|
|
461
|
-
* @param {boolean|Highcharts.AnimationOptionsObject
|
|
435
|
+
* @param {boolean|Highcharts.AnimationOptionsObject} [animation]
|
|
462
436
|
* If or how to apply animation to the redraw.
|
|
463
437
|
*
|
|
464
438
|
* @fires Highcharts.Chart#event:afterSetExtremes
|
|
@@ -568,6 +542,10 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
568
542
|
// set axes scales
|
|
569
543
|
each(axes, function (axis) {
|
|
570
544
|
axis.updateNames();
|
|
545
|
+
// Update categories in a Gantt chart
|
|
546
|
+
if (axis.updateYNames) {
|
|
547
|
+
axis.updateYNames();
|
|
548
|
+
}
|
|
571
549
|
axis.setScale();
|
|
572
550
|
});
|
|
573
551
|
}
|
|
@@ -881,7 +859,7 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
881
859
|
* @private
|
|
882
860
|
* @function Highcharts.Chart#layOutTitles
|
|
883
861
|
*
|
|
884
|
-
* @param {boolean
|
|
862
|
+
* @param {boolean} [redraw=true]
|
|
885
863
|
*/
|
|
886
864
|
layOutTitles: function (redraw) {
|
|
887
865
|
var titleOffset = 0,
|
|
@@ -939,8 +917,6 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
939
917
|
* {@link Chart.chartHeight}.
|
|
940
918
|
*
|
|
941
919
|
* @function Highcharts.Chart#getChartSize
|
|
942
|
-
*
|
|
943
|
-
* @return {void}
|
|
944
920
|
*/
|
|
945
921
|
getChartSize: function () {
|
|
946
922
|
var chart = this,
|
|
@@ -1204,7 +1180,7 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
1204
1180
|
* @private
|
|
1205
1181
|
* @function Highcharts.Chart#getMargins
|
|
1206
1182
|
*
|
|
1207
|
-
* @param
|
|
1183
|
+
* @param {boolean} skipAxes
|
|
1208
1184
|
*
|
|
1209
1185
|
* @fires Highcharts.Chart#event:getMargins
|
|
1210
1186
|
*/
|
|
@@ -1282,9 +1258,9 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
1282
1258
|
*
|
|
1283
1259
|
* @function Highcharts.Chart#reflow
|
|
1284
1260
|
*
|
|
1285
|
-
* @param
|
|
1286
|
-
*
|
|
1287
|
-
*
|
|
1261
|
+
* @param {global.Event} e
|
|
1262
|
+
* Event arguments. Used primarily when the function is called
|
|
1263
|
+
* internally as a response to window resize.
|
|
1288
1264
|
*/
|
|
1289
1265
|
reflow: function (e) {
|
|
1290
1266
|
var chart = this,
|
|
@@ -1334,7 +1310,7 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
1334
1310
|
* @private
|
|
1335
1311
|
* @function Highcharts.Chart#setReflow
|
|
1336
1312
|
*
|
|
1337
|
-
* @param
|
|
1313
|
+
* @param {boolean} reflow
|
|
1338
1314
|
*/
|
|
1339
1315
|
setReflow: function (reflow) {
|
|
1340
1316
|
|
|
@@ -1378,19 +1354,19 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
1378
1354
|
*
|
|
1379
1355
|
* @function Highcharts.Chart#setSize
|
|
1380
1356
|
*
|
|
1381
|
-
* @param
|
|
1382
|
-
*
|
|
1383
|
-
*
|
|
1384
|
-
*
|
|
1385
|
-
*
|
|
1357
|
+
* @param {number|null} [width]
|
|
1358
|
+
* The new pixel width of the chart. Since v4.2.6, the argument can
|
|
1359
|
+
* be `undefined` in order to preserve the current value (when
|
|
1360
|
+
* setting height only), or `null` to adapt to the width of the
|
|
1361
|
+
* containing element.
|
|
1386
1362
|
*
|
|
1387
|
-
* @param
|
|
1388
|
-
*
|
|
1389
|
-
*
|
|
1390
|
-
*
|
|
1363
|
+
* @param {number|null} [height]
|
|
1364
|
+
* The new pixel height of the chart. Since v4.2.6, the argument can
|
|
1365
|
+
* be `undefined` in order to preserve the current value, or `null`
|
|
1366
|
+
* in order to adapt to the height of the containing element.
|
|
1391
1367
|
*
|
|
1392
|
-
* @param
|
|
1393
|
-
*
|
|
1368
|
+
* @param {Highcharts.AnimationOptionsObject} [animation=true]
|
|
1369
|
+
* Whether and how to apply animation.
|
|
1394
1370
|
*
|
|
1395
1371
|
* @fires Highcharts.Chart#event:endResize
|
|
1396
1372
|
* @fires Highcharts.Chart#event:resize
|
|
@@ -1459,7 +1435,7 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
1459
1435
|
* @private
|
|
1460
1436
|
* @function Highcharts.Chart#setChartSize
|
|
1461
1437
|
*
|
|
1462
|
-
* @param
|
|
1438
|
+
* @param {boolean} skipAxes
|
|
1463
1439
|
*
|
|
1464
1440
|
* @fires Highcharts.Chart#event:afterSetChartSize
|
|
1465
1441
|
*/
|
|
@@ -1945,8 +1921,8 @@ extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
|
|
|
1945
1921
|
*
|
|
1946
1922
|
* @function Highcharts.Chart#addCredits
|
|
1947
1923
|
*
|
|
1948
|
-
* @param
|
|
1949
|
-
*
|
|
1924
|
+
* @param {Highcharts.CreditsOptions} options
|
|
1925
|
+
* A configuration object for the new credits.
|
|
1950
1926
|
*/
|
|
1951
1927
|
addCredits: function (credits) {
|
|
1952
1928
|
var chart = this;
|
|
@@ -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
|
*/
|
|
@@ -15,8 +15,10 @@
|
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
17
|
'use strict';
|
|
18
|
+
|
|
18
19
|
import H from './Globals.js';
|
|
19
20
|
import './Utilities.js';
|
|
21
|
+
|
|
20
22
|
var each = H.each,
|
|
21
23
|
isNumber = H.isNumber,
|
|
22
24
|
map = H.map,
|
|
@@ -26,8 +28,9 @@ var each = H.each,
|
|
|
26
28
|
/**
|
|
27
29
|
* Handle color operations. The object methods are chainable.
|
|
28
30
|
*
|
|
29
|
-
* @
|
|
30
|
-
* @class
|
|
31
|
+
* @private
|
|
32
|
+
* @class
|
|
33
|
+
* @name Highcharts.Color
|
|
31
34
|
*
|
|
32
35
|
* @param {Highcharts.ColorString} input
|
|
33
36
|
* The input color in either rbga or hex format
|
|
@@ -77,10 +80,8 @@ H.Color.prototype = {
|
|
|
77
80
|
* @private
|
|
78
81
|
* @function Highcharts.Color#init
|
|
79
82
|
*
|
|
80
|
-
* @param
|
|
81
|
-
*
|
|
82
|
-
*
|
|
83
|
-
* @return {void}
|
|
83
|
+
* @param {Highcharts.ColorString} input
|
|
84
|
+
* The input color in either rbga or hex format
|
|
84
85
|
*/
|
|
85
86
|
init: function (input) {
|
|
86
87
|
var result,
|
|
@@ -154,8 +155,8 @@ H.Color.prototype = {
|
|
|
154
155
|
*
|
|
155
156
|
* @function Highcharts.Color#get
|
|
156
157
|
*
|
|
157
|
-
* @param
|
|
158
|
-
*
|
|
158
|
+
* @param {string} format
|
|
159
|
+
* Possible values are 'a', 'rgb', undefined
|
|
159
160
|
*
|
|
160
161
|
* @return {Highcharts.ColorString}
|
|
161
162
|
* This color as a string.
|
|
@@ -192,8 +193,8 @@ H.Color.prototype = {
|
|
|
192
193
|
*
|
|
193
194
|
* @function Highcharts.Color#brighten
|
|
194
195
|
*
|
|
195
|
-
* @param
|
|
196
|
-
*
|
|
196
|
+
* @param {number} alpha
|
|
197
|
+
* The alpha value.
|
|
197
198
|
*
|
|
198
199
|
* @return {Highcharts.ColorString}
|
|
199
200
|
* This color with modifications.
|
|
@@ -227,8 +228,8 @@ H.Color.prototype = {
|
|
|
227
228
|
*
|
|
228
229
|
* @function Highcharts.Color#setOpacity
|
|
229
230
|
*
|
|
230
|
-
* @param
|
|
231
|
-
*
|
|
231
|
+
* @param {number} alpha
|
|
232
|
+
* Opacity between 0 and 1.
|
|
232
233
|
*
|
|
233
234
|
* @return {Highcharts.ColorString}
|
|
234
235
|
* Color with modifications.
|
|
@@ -243,12 +244,12 @@ H.Color.prototype = {
|
|
|
243
244
|
*
|
|
244
245
|
* @function Highcharts.Color#tweenTo
|
|
245
246
|
*
|
|
246
|
-
* @param
|
|
247
|
-
*
|
|
247
|
+
* @param {Highcharts.Color} to
|
|
248
|
+
* The color object to tween to.
|
|
248
249
|
*
|
|
249
|
-
* @param
|
|
250
|
-
*
|
|
251
|
-
*
|
|
250
|
+
* @param {number} pos
|
|
251
|
+
* The intermediate position, where 0 is the from color (current
|
|
252
|
+
* color item), and 1 is the `to` color.
|
|
252
253
|
*
|
|
253
254
|
* @return {Highcharts.ColorString}
|
|
254
255
|
* The intermediate color in rgba notation.
|
|
@@ -287,6 +288,16 @@ H.Color.prototype = {
|
|
|
287
288
|
return ret;
|
|
288
289
|
}
|
|
289
290
|
};
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* Creates a color instance out of a color string.
|
|
294
|
+
*
|
|
295
|
+
* @private
|
|
296
|
+
* @function Highcharts.color
|
|
297
|
+
*
|
|
298
|
+
* @param {Highcharts.ColorString} input
|
|
299
|
+
* The input color in either rbga or hex format
|
|
300
|
+
*/
|
|
290
301
|
H.color = function (input) {
|
|
291
302
|
return new H.Color(input);
|
|
292
303
|
};
|