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.
Files changed (871) hide show
  1. package/bower.json +1 -1
  2. package/css/highcharts.css +29 -0
  3. package/css/highcharts.scss +25 -1
  4. package/css/themes/dark-unica.css +29 -0
  5. package/css/themes/grid-light.css +29 -0
  6. package/css/themes/sand-signika.css +29 -0
  7. package/es-modules/indicators/accumulation-distribution.src.js +1 -1
  8. package/es-modules/indicators/atr.src.js +1 -1
  9. package/es-modules/indicators/bollinger-bands.src.js +2 -2
  10. package/es-modules/indicators/cci.src.js +1 -1
  11. package/es-modules/indicators/cmf.src.js +1 -1
  12. package/es-modules/indicators/ema.src.js +1 -1
  13. package/es-modules/indicators/ichimoku-kinko-hyo.src.js +1 -1
  14. package/es-modules/indicators/indicators.src.js +29 -14
  15. package/es-modules/indicators/macd.src.js +4 -4
  16. package/es-modules/indicators/mfi.src.js +1 -1
  17. package/es-modules/indicators/momentum.src.js +2 -2
  18. package/es-modules/indicators/pivot-points.src.js +7 -2
  19. package/es-modules/indicators/price-envelopes.src.js +2 -2
  20. package/es-modules/indicators/psar.src.js +1 -1
  21. package/es-modules/indicators/roc.src.js +1 -1
  22. package/es-modules/indicators/rsi.src.js +1 -1
  23. package/es-modules/indicators/stochastic.src.js +9 -7
  24. package/es-modules/indicators/volume-by-price.src.js +1 -1
  25. package/es-modules/indicators/vwap.src.js +1 -1
  26. package/es-modules/indicators/wma.src.js +1 -1
  27. package/es-modules/indicators/zigzag.src.js +1 -1
  28. package/es-modules/masters/highcharts-gantt.src.js +11 -0
  29. package/es-modules/masters/modules/annotations.src.js +1 -1
  30. package/es-modules/masters/modules/arrow-symbols.src.js +12 -0
  31. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  32. package/es-modules/masters/modules/current-date-indicator.src.js +12 -0
  33. package/es-modules/masters/modules/data.src.js +1 -1
  34. package/es-modules/masters/modules/draggable-points.src.js +9 -0
  35. package/es-modules/masters/modules/export-data.src.js +1 -1
  36. package/es-modules/masters/modules/exporting.src.js +1 -1
  37. package/es-modules/masters/modules/funnel.src.js +1 -1
  38. package/es-modules/masters/modules/gantt.src.js +2 -1
  39. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  40. package/es-modules/masters/modules/heatmap.src.js +1 -1
  41. package/es-modules/masters/modules/item-series.src.js +1 -1
  42. package/es-modules/masters/modules/map.src.js +1 -1
  43. package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  44. package/es-modules/masters/modules/pathfinder.src.js +12 -0
  45. package/es-modules/masters/modules/sankey.src.js +1 -1
  46. package/es-modules/masters/modules/series-label.src.js +1 -1
  47. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  48. package/es-modules/masters/modules/stock.src.js +1 -1
  49. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  50. package/es-modules/masters/modules/treegrid.src.js +12 -0
  51. package/es-modules/masters/modules/variwide.src.js +1 -1
  52. package/es-modules/masters/modules/vector.src.js +1 -1
  53. package/es-modules/masters/modules/windbarb.src.js +1 -1
  54. package/es-modules/masters/modules/xrange.src.js +1 -1
  55. package/es-modules/masters/themes/dark-blue.src.js +1 -1
  56. package/es-modules/masters/themes/dark-green.src.js +1 -1
  57. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  58. package/es-modules/masters/themes/gray.src.js +1 -1
  59. package/es-modules/masters/themes/grid-light.src.js +1 -1
  60. package/es-modules/masters/themes/grid.src.js +1 -1
  61. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  62. package/es-modules/masters/themes/skies.src.js +1 -1
  63. package/es-modules/mixins/centered-series.js +36 -5
  64. package/es-modules/mixins/on-series.js +1 -1
  65. package/es-modules/mixins/polygon.js +4 -4
  66. package/es-modules/modules/annotations.src.js +2 -2
  67. package/es-modules/modules/boost-canvas.src.js +19 -8
  68. package/es-modules/modules/boost.src.js +300 -137
  69. package/es-modules/modules/broken-axis.src.js +169 -134
  70. package/es-modules/modules/bullet.src.js +2 -2
  71. package/es-modules/modules/data.src.js +8 -6
  72. package/es-modules/modules/draggable-points.src.js +2257 -0
  73. package/es-modules/modules/drilldown.src.js +4 -2
  74. package/es-modules/modules/export-data.src.js +11 -1
  75. package/es-modules/modules/exporting.src.js +62 -36
  76. package/es-modules/modules/funnel.src.js +5 -5
  77. package/es-modules/modules/histogram.src.js +30 -28
  78. package/es-modules/modules/item-series.src.js +36 -11
  79. package/es-modules/modules/keyboard-navigation.src.js +81 -44
  80. package/es-modules/modules/no-data-to-display.src.js +5 -5
  81. package/es-modules/modules/oldie.src.js +14 -9
  82. package/es-modules/modules/overlapping-datalabels.src.js +45 -21
  83. package/es-modules/modules/parallel-coordinates.src.js +4 -3
  84. package/es-modules/modules/pareto.src.js +1 -1
  85. package/es-modules/modules/sankey.src.js +28 -10
  86. package/es-modules/modules/series-label.src.js +6 -6
  87. package/es-modules/modules/solid-gauge.src.js +10 -7
  88. package/es-modules/modules/static-scale.src.js +67 -28
  89. package/es-modules/modules/streamgraph.src.js +4 -4
  90. package/es-modules/modules/sunburst.src.js +4 -4
  91. package/es-modules/modules/tilemap.src.js +231 -134
  92. package/es-modules/modules/treemap.src.js +30 -27
  93. package/es-modules/modules/variable-pie.src.js +3 -3
  94. package/es-modules/modules/variwide.src.js +36 -24
  95. package/es-modules/modules/vector.src.js +98 -28
  96. package/es-modules/modules/windbarb.src.js +4 -4
  97. package/es-modules/modules/wordcloud.src.js +133 -48
  98. package/es-modules/modules/xrange.src.js +258 -78
  99. package/es-modules/parts/AreaSeries.js +83 -50
  100. package/es-modules/parts/AreaSplineSeries.js +66 -29
  101. package/es-modules/parts/Axis.js +2184 -745
  102. package/es-modules/parts/BarSeries.js +70 -53
  103. package/es-modules/parts/CandlestickSeries.js +20 -10
  104. package/es-modules/parts/Chart.js +349 -157
  105. package/es-modules/parts/Color.js +74 -25
  106. package/es-modules/parts/ColumnSeries.js +274 -147
  107. package/es-modules/parts/DataGrouping.js +36 -3
  108. package/es-modules/parts/DataLabels.js +318 -144
  109. package/es-modules/parts/DateTimeAxis.js +27 -5
  110. package/es-modules/parts/Dynamics.js +236 -144
  111. package/es-modules/parts/FlagsSeries.js +49 -7
  112. package/es-modules/parts/Globals.js +4 -3
  113. package/es-modules/parts/Html.js +82 -16
  114. package/es-modules/parts/Interaction.js +198 -65
  115. package/es-modules/parts/Legend.js +181 -31
  116. package/es-modules/parts/LogarithmicAxis.js +36 -3
  117. package/es-modules/parts/MSPointer.js +31 -4
  118. package/es-modules/parts/Navigator.js +479 -187
  119. package/es-modules/parts/OHLCSeries.js +11 -5
  120. package/es-modules/parts/Options.js +1052 -686
  121. package/es-modules/parts/OrdinalAxis.js +20 -6
  122. package/es-modules/parts/PieSeries.js +258 -142
  123. package/es-modules/parts/PlotBandSeries.experimental.js +2 -2
  124. package/es-modules/parts/PlotLineOrBand.js +671 -35
  125. package/es-modules/parts/Point.js +189 -73
  126. package/es-modules/parts/Pointer.js +263 -62
  127. package/es-modules/parts/RangeSelector.js +601 -91
  128. package/es-modules/parts/Responsive.js +82 -36
  129. package/es-modules/parts/ScatterSeries.js +59 -27
  130. package/es-modules/parts/ScrollablePlotArea.js +30 -9
  131. package/es-modules/parts/Scrollbar.js +284 -113
  132. package/es-modules/parts/Series.js +1105 -836
  133. package/es-modules/parts/SplineSeries.js +53 -31
  134. package/es-modules/parts/Stacking.js +108 -7
  135. package/es-modules/parts/StockChart.js +26 -8
  136. package/es-modules/parts/SvgRenderer.js +1251 -613
  137. package/es-modules/parts/Tick.js +164 -30
  138. package/es-modules/parts/Time.js +171 -71
  139. package/es-modules/parts/Tooltip.js +271 -49
  140. package/es-modules/parts/TouchPointer.js +70 -3
  141. package/es-modules/parts/Utilities.js +1024 -429
  142. package/es-modules/parts-3d/Axis.js +4 -3
  143. package/es-modules/parts-3d/Chart.js +8 -9
  144. package/es-modules/parts-3d/Column.js +1 -1
  145. package/es-modules/parts-3d/Math.js +1 -1
  146. package/es-modules/parts-3d/Pie.js +1 -1
  147. package/es-modules/parts-3d/SVGRenderer.js +13 -10
  148. package/es-modules/parts-3d/Scatter.js +4 -4
  149. package/es-modules/parts-3d/Series.js +1 -1
  150. package/es-modules/parts-3d/VMLRenderer.js +1 -1
  151. package/es-modules/parts-gantt/ArrowSymbols.js +110 -0
  152. package/es-modules/parts-gantt/CurrentDateIndicator.js +92 -0
  153. package/es-modules/parts-gantt/GanttChart.js +111 -0
  154. package/es-modules/parts-gantt/GanttSeries.js +376 -0
  155. package/es-modules/parts-gantt/GridAxis.js +965 -0
  156. package/es-modules/parts-gantt/Pathfinder.js +1247 -0
  157. package/es-modules/parts-gantt/PathfinderAlgorithms.js +746 -0
  158. package/es-modules/parts-gantt/Tree.js +146 -0
  159. package/es-modules/parts-gantt/TreeGrid.js +917 -0
  160. package/es-modules/parts-map/ColorAxis.js +4 -5
  161. package/es-modules/parts-map/ColorSeriesMixin.js +3 -1
  162. package/es-modules/parts-map/GeoJSON.js +1 -1
  163. package/es-modules/parts-map/HeatmapSeries.js +126 -55
  164. package/es-modules/parts-map/Map.js +144 -51
  165. package/es-modules/parts-map/MapAxis.js +1 -1
  166. package/es-modules/parts-map/MapBubbleSeries.js +6 -5
  167. package/es-modules/parts-map/MapLineSeries.js +4 -4
  168. package/es-modules/parts-map/MapNavigation.js +50 -12
  169. package/es-modules/parts-map/MapPointSeries.js +3 -3
  170. package/es-modules/parts-map/MapPointer.js +1 -1
  171. package/es-modules/parts-map/MapSeries.js +7 -7
  172. package/es-modules/parts-more/AreaRangeSeries.js +82 -40
  173. package/es-modules/parts-more/AreaSplineRangeSeries.js +3 -3
  174. package/es-modules/parts-more/BoxPlotSeries.js +3 -3
  175. package/es-modules/parts-more/BubbleSeries.js +9 -4
  176. package/es-modules/parts-more/ColumnRangeSeries.js +3 -3
  177. package/es-modules/parts-more/ErrorBarSeries.js +6 -4
  178. package/es-modules/parts-more/GaugeSeries.js +3 -3
  179. package/es-modules/parts-more/Pane.js +3 -2
  180. package/es-modules/parts-more/Polar.js +1 -1
  181. package/es-modules/parts-more/PolygonSeries.js +3 -3
  182. package/es-modules/parts-more/RadialAxis.js +5 -4
  183. package/es-modules/parts-more/WaterfallSeries.js +9 -4
  184. package/es-modules/supplemental.docs.js +0 -1955
  185. package/es-modules/themes/dark-blue.js +1 -1
  186. package/es-modules/themes/dark-green.js +1 -1
  187. package/es-modules/themes/dark-unica.js +1 -1
  188. package/es-modules/themes/gray.js +1 -1
  189. package/es-modules/themes/grid-light.js +1 -1
  190. package/es-modules/themes/grid.js +1 -1
  191. package/es-modules/themes/sand-signika.js +1 -1
  192. package/es-modules/themes/skies.js +1 -1
  193. package/highcharts-3d.js +77 -75
  194. package/highcharts-3d.js.map +1 -8
  195. package/highcharts-3d.src.js +39 -32
  196. package/highcharts-gantt.js +503 -0
  197. package/highcharts-gantt.js.map +1 -0
  198. package/highcharts-gantt.src.js +49289 -0
  199. package/highcharts-more.js +66 -64
  200. package/highcharts-more.js.map +1 -8
  201. package/highcharts-more.src.js +135 -75
  202. package/highcharts.js +413 -403
  203. package/highcharts.js.map +1 -8
  204. package/highcharts.src.js +11114 -4781
  205. package/highmaps.js +442 -433
  206. package/highmaps.js.map +1 -8
  207. package/highmaps.src.js +10740 -4598
  208. package/highstock.js +553 -540
  209. package/highstock.js.map +1 -8
  210. package/highstock.src.js +12807 -5343
  211. package/indicators/accumulation-distribution.js +4 -3
  212. package/indicators/accumulation-distribution.js.map +1 -8
  213. package/indicators/accumulation-distribution.src.js +6 -2
  214. package/indicators/atr.js +4 -3
  215. package/indicators/atr.js.map +1 -8
  216. package/indicators/atr.src.js +6 -2
  217. package/indicators/bollinger-bands.js +7 -6
  218. package/indicators/bollinger-bands.js.map +1 -8
  219. package/indicators/bollinger-bands.src.js +7 -3
  220. package/indicators/cci.js +4 -3
  221. package/indicators/cci.js.map +1 -8
  222. package/indicators/cci.src.js +6 -2
  223. package/indicators/cmf.js +5 -4
  224. package/indicators/cmf.js.map +1 -8
  225. package/indicators/cmf.src.js +6 -2
  226. package/indicators/ema.js +4 -3
  227. package/indicators/ema.js.map +1 -8
  228. package/indicators/ema.src.js +6 -2
  229. package/indicators/ichimoku-kinko-hyo.js +10 -9
  230. package/indicators/ichimoku-kinko-hyo.js.map +1 -8
  231. package/indicators/ichimoku-kinko-hyo.src.js +6 -2
  232. package/indicators/indicators.js +6 -5
  233. package/indicators/indicators.js.map +1 -8
  234. package/indicators/indicators.src.js +34 -15
  235. package/indicators/macd.js +11 -10
  236. package/indicators/macd.js.map +1 -8
  237. package/indicators/macd.src.js +10 -6
  238. package/indicators/mfi.js +5 -3
  239. package/indicators/mfi.js.map +1 -8
  240. package/indicators/mfi.src.js +6 -2
  241. package/indicators/momentum.js +4 -3
  242. package/indicators/momentum.js.map +1 -8
  243. package/indicators/momentum.src.js +7 -3
  244. package/indicators/pivot-points.js +8 -7
  245. package/indicators/pivot-points.js.map +1 -8
  246. package/indicators/pivot-points.src.js +12 -3
  247. package/indicators/price-envelopes.js +7 -6
  248. package/indicators/price-envelopes.js.map +1 -8
  249. package/indicators/price-envelopes.src.js +7 -3
  250. package/indicators/psar.js +5 -4
  251. package/indicators/psar.js.map +1 -8
  252. package/indicators/psar.src.js +6 -2
  253. package/indicators/roc.js +4 -3
  254. package/indicators/roc.js.map +1 -8
  255. package/indicators/roc.src.js +6 -2
  256. package/indicators/rsi.js +4 -3
  257. package/indicators/rsi.js.map +1 -8
  258. package/indicators/rsi.src.js +6 -2
  259. package/indicators/stochastic.js +7 -5
  260. package/indicators/stochastic.js.map +1 -8
  261. package/indicators/stochastic.src.js +14 -8
  262. package/indicators/volume-by-price.js +13 -12
  263. package/indicators/volume-by-price.js.map +1 -8
  264. package/indicators/volume-by-price.src.js +6 -2
  265. package/indicators/vwap.js +4 -3
  266. package/indicators/vwap.js.map +1 -8
  267. package/indicators/vwap.src.js +6 -2
  268. package/indicators/wma.js +4 -3
  269. package/indicators/wma.js.map +1 -8
  270. package/indicators/wma.src.js +6 -2
  271. package/indicators/zigzag.js +5 -3
  272. package/indicators/zigzag.js.map +1 -8
  273. package/indicators/zigzag.src.js +6 -2
  274. package/js/es-modules/indicators/accumulation-distribution.src.js +1 -1
  275. package/js/es-modules/indicators/atr.src.js +1 -1
  276. package/js/es-modules/indicators/bollinger-bands.src.js +2 -2
  277. package/js/es-modules/indicators/cci.src.js +1 -1
  278. package/js/es-modules/indicators/cmf.src.js +1 -1
  279. package/js/es-modules/indicators/ema.src.js +1 -1
  280. package/js/es-modules/indicators/ichimoku-kinko-hyo.src.js +1 -1
  281. package/js/es-modules/indicators/indicators.src.js +29 -14
  282. package/js/es-modules/indicators/macd.src.js +4 -4
  283. package/js/es-modules/indicators/mfi.src.js +1 -1
  284. package/js/es-modules/indicators/momentum.src.js +2 -2
  285. package/js/es-modules/indicators/pivot-points.src.js +7 -2
  286. package/js/es-modules/indicators/price-envelopes.src.js +2 -2
  287. package/js/es-modules/indicators/psar.src.js +1 -1
  288. package/js/es-modules/indicators/roc.src.js +1 -1
  289. package/js/es-modules/indicators/rsi.src.js +1 -1
  290. package/js/es-modules/indicators/stochastic.src.js +9 -7
  291. package/js/es-modules/indicators/volume-by-price.src.js +1 -1
  292. package/js/es-modules/indicators/vwap.src.js +1 -1
  293. package/js/es-modules/indicators/wma.src.js +1 -1
  294. package/js/es-modules/indicators/zigzag.src.js +1 -1
  295. package/js/es-modules/masters/highcharts-gantt.src.js +11 -0
  296. package/js/es-modules/masters/modules/annotations.src.js +1 -1
  297. package/js/es-modules/masters/modules/arrow-symbols.src.js +12 -0
  298. package/js/es-modules/masters/modules/broken-axis.src.js +1 -1
  299. package/js/es-modules/masters/modules/current-date-indicator.src.js +12 -0
  300. package/js/es-modules/masters/modules/data.src.js +1 -1
  301. package/js/es-modules/masters/modules/draggable-points.src.js +9 -0
  302. package/js/es-modules/masters/modules/export-data.src.js +1 -1
  303. package/js/es-modules/masters/modules/exporting.src.js +1 -1
  304. package/js/es-modules/masters/modules/funnel.src.js +1 -1
  305. package/js/es-modules/masters/modules/gantt.src.js +2 -1
  306. package/js/es-modules/masters/modules/grid-axis.src.js +1 -1
  307. package/js/es-modules/masters/modules/heatmap.src.js +1 -1
  308. package/js/es-modules/masters/modules/item-series.src.js +1 -1
  309. package/js/es-modules/masters/modules/map.src.js +1 -1
  310. package/js/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  311. package/js/es-modules/masters/modules/pathfinder.src.js +12 -0
  312. package/js/es-modules/masters/modules/sankey.src.js +1 -1
  313. package/js/es-modules/masters/modules/series-label.src.js +1 -1
  314. package/js/es-modules/masters/modules/solid-gauge.src.js +1 -1
  315. package/js/es-modules/masters/modules/stock.src.js +1 -1
  316. package/js/es-modules/masters/modules/streamgraph.src.js +1 -1
  317. package/js/es-modules/masters/modules/treegrid.src.js +12 -0
  318. package/js/es-modules/masters/modules/variwide.src.js +1 -1
  319. package/js/es-modules/masters/modules/vector.src.js +1 -1
  320. package/js/es-modules/masters/modules/windbarb.src.js +1 -1
  321. package/js/es-modules/masters/modules/xrange.src.js +1 -1
  322. package/js/es-modules/masters/themes/dark-blue.src.js +1 -1
  323. package/js/es-modules/masters/themes/dark-green.src.js +1 -1
  324. package/js/es-modules/masters/themes/dark-unica.src.js +1 -1
  325. package/js/es-modules/masters/themes/gray.src.js +1 -1
  326. package/js/es-modules/masters/themes/grid-light.src.js +1 -1
  327. package/js/es-modules/masters/themes/grid.src.js +1 -1
  328. package/js/es-modules/masters/themes/sand-signika.src.js +1 -1
  329. package/js/es-modules/masters/themes/skies.src.js +1 -1
  330. package/js/es-modules/mixins/centered-series.js +36 -5
  331. package/js/es-modules/mixins/on-series.js +1 -1
  332. package/js/es-modules/mixins/polygon.js +4 -4
  333. package/js/es-modules/modules/annotations.src.js +2 -2
  334. package/js/es-modules/modules/boost-canvas.src.js +19 -8
  335. package/js/es-modules/modules/boost.src.js +300 -137
  336. package/js/es-modules/modules/broken-axis.src.js +169 -134
  337. package/js/es-modules/modules/bullet.src.js +2 -2
  338. package/js/es-modules/modules/data.src.js +8 -6
  339. package/js/es-modules/modules/draggable-points.src.js +2257 -0
  340. package/js/es-modules/modules/drilldown.src.js +4 -2
  341. package/js/es-modules/modules/export-data.src.js +11 -1
  342. package/js/es-modules/modules/exporting.src.js +62 -36
  343. package/js/es-modules/modules/funnel.src.js +5 -5
  344. package/js/es-modules/modules/histogram.src.js +30 -28
  345. package/js/es-modules/modules/item-series.src.js +36 -11
  346. package/js/es-modules/modules/keyboard-navigation.src.js +81 -44
  347. package/js/es-modules/modules/no-data-to-display.src.js +5 -5
  348. package/js/es-modules/modules/oldie.src.js +14 -9
  349. package/js/es-modules/modules/overlapping-datalabels.src.js +45 -21
  350. package/js/es-modules/modules/parallel-coordinates.src.js +4 -3
  351. package/js/es-modules/modules/pareto.src.js +1 -1
  352. package/js/es-modules/modules/sankey.src.js +23 -7
  353. package/js/es-modules/modules/series-label.src.js +6 -6
  354. package/js/es-modules/modules/solid-gauge.src.js +8 -5
  355. package/js/es-modules/modules/static-scale.src.js +67 -28
  356. package/js/es-modules/modules/streamgraph.src.js +4 -4
  357. package/js/es-modules/modules/sunburst.src.js +4 -4
  358. package/js/es-modules/modules/tilemap.src.js +231 -134
  359. package/js/es-modules/modules/treemap.src.js +29 -26
  360. package/js/es-modules/modules/variable-pie.src.js +3 -3
  361. package/js/es-modules/modules/variwide.src.js +36 -24
  362. package/js/es-modules/modules/vector.src.js +98 -28
  363. package/js/es-modules/modules/windbarb.src.js +4 -4
  364. package/js/es-modules/modules/wordcloud.src.js +133 -48
  365. package/js/es-modules/modules/xrange.src.js +256 -69
  366. package/js/es-modules/parts/AreaSeries.js +83 -50
  367. package/js/es-modules/parts/AreaSplineSeries.js +66 -29
  368. package/js/es-modules/parts/Axis.js +2089 -694
  369. package/js/es-modules/parts/BarSeries.js +70 -53
  370. package/js/es-modules/parts/CandlestickSeries.js +20 -10
  371. package/js/es-modules/parts/Chart.js +349 -157
  372. package/js/es-modules/parts/Color.js +74 -25
  373. package/js/es-modules/parts/ColumnSeries.js +241 -128
  374. package/js/es-modules/parts/DataGrouping.js +36 -3
  375. package/js/es-modules/parts/DataLabels.js +287 -116
  376. package/js/es-modules/parts/DateTimeAxis.js +27 -5
  377. package/js/es-modules/parts/Dynamics.js +236 -144
  378. package/js/es-modules/parts/FlagsSeries.js +49 -7
  379. package/js/es-modules/parts/Globals.js +4 -3
  380. package/js/es-modules/parts/Html.js +82 -16
  381. package/js/es-modules/parts/Interaction.js +187 -67
  382. package/js/es-modules/parts/Legend.js +181 -31
  383. package/js/es-modules/parts/LogarithmicAxis.js +36 -3
  384. package/js/es-modules/parts/MSPointer.js +31 -4
  385. package/js/es-modules/parts/Navigator.js +432 -162
  386. package/js/es-modules/parts/OHLCSeries.js +5 -5
  387. package/js/es-modules/parts/Options.js +855 -592
  388. package/js/es-modules/parts/OrdinalAxis.js +20 -6
  389. package/js/es-modules/parts/PieSeries.js +247 -134
  390. package/js/es-modules/parts/PlotBandSeries.experimental.js +2 -2
  391. package/js/es-modules/parts/PlotLineOrBand.js +671 -35
  392. package/js/es-modules/parts/Point.js +182 -70
  393. package/js/es-modules/parts/Pointer.js +263 -62
  394. package/js/es-modules/parts/RangeSelector.js +579 -91
  395. package/js/es-modules/parts/Responsive.js +82 -36
  396. package/js/es-modules/parts/ScatterSeries.js +58 -27
  397. package/js/es-modules/parts/ScrollablePlotArea.js +30 -9
  398. package/js/es-modules/parts/Scrollbar.js +201 -71
  399. package/js/es-modules/parts/Series.js +995 -745
  400. package/js/es-modules/parts/SplineSeries.js +53 -31
  401. package/js/es-modules/parts/Stacking.js +108 -7
  402. package/js/es-modules/parts/StockChart.js +26 -8
  403. package/js/es-modules/parts/SvgRenderer.js +1208 -598
  404. package/js/es-modules/parts/Tick.js +164 -30
  405. package/js/es-modules/parts/Time.js +171 -71
  406. package/js/es-modules/parts/Tooltip.js +276 -49
  407. package/js/es-modules/parts/TouchPointer.js +70 -3
  408. package/js/es-modules/parts/Utilities.js +1024 -429
  409. package/js/es-modules/parts-3d/Axis.js +4 -3
  410. package/js/es-modules/parts-3d/Chart.js +8 -9
  411. package/js/es-modules/parts-3d/Column.js +1 -1
  412. package/js/es-modules/parts-3d/Math.js +1 -1
  413. package/js/es-modules/parts-3d/Pie.js +1 -1
  414. package/js/es-modules/parts-3d/SVGRenderer.js +13 -10
  415. package/js/es-modules/parts-3d/Scatter.js +4 -4
  416. package/js/es-modules/parts-3d/Series.js +1 -1
  417. package/js/es-modules/parts-3d/VMLRenderer.js +1 -1
  418. package/js/es-modules/parts-gantt/ArrowSymbols.js +110 -0
  419. package/js/es-modules/parts-gantt/CurrentDateIndicator.js +92 -0
  420. package/js/es-modules/parts-gantt/GanttChart.js +111 -0
  421. package/js/es-modules/parts-gantt/GanttSeries.js +371 -0
  422. package/js/es-modules/parts-gantt/GridAxis.js +962 -0
  423. package/js/es-modules/parts-gantt/Pathfinder.js +1225 -0
  424. package/js/es-modules/parts-gantt/PathfinderAlgorithms.js +746 -0
  425. package/js/es-modules/parts-gantt/Tree.js +146 -0
  426. package/js/es-modules/parts-gantt/TreeGrid.js +891 -0
  427. package/js/es-modules/parts-map/ColorAxis.js +4 -5
  428. package/js/es-modules/parts-map/ColorSeriesMixin.js +3 -1
  429. package/js/es-modules/parts-map/GeoJSON.js +1 -1
  430. package/js/es-modules/parts-map/HeatmapSeries.js +124 -54
  431. package/js/es-modules/parts-map/Map.js +136 -47
  432. package/js/es-modules/parts-map/MapAxis.js +1 -1
  433. package/js/es-modules/parts-map/MapBubbleSeries.js +6 -5
  434. package/js/es-modules/parts-map/MapLineSeries.js +4 -4
  435. package/js/es-modules/parts-map/MapNavigation.js +50 -12
  436. package/js/es-modules/parts-map/MapPointSeries.js +3 -3
  437. package/js/es-modules/parts-map/MapPointer.js +1 -1
  438. package/js/es-modules/parts-map/MapSeries.js +5 -5
  439. package/js/es-modules/parts-more/AreaRangeSeries.js +82 -40
  440. package/js/es-modules/parts-more/AreaSplineRangeSeries.js +3 -3
  441. package/js/es-modules/parts-more/BoxPlotSeries.js +3 -3
  442. package/js/es-modules/parts-more/BubbleSeries.js +9 -4
  443. package/js/es-modules/parts-more/ColumnRangeSeries.js +3 -3
  444. package/js/es-modules/parts-more/ErrorBarSeries.js +6 -4
  445. package/js/es-modules/parts-more/GaugeSeries.js +3 -3
  446. package/js/es-modules/parts-more/Pane.js +3 -2
  447. package/js/es-modules/parts-more/Polar.js +1 -1
  448. package/js/es-modules/parts-more/PolygonSeries.js +3 -3
  449. package/js/es-modules/parts-more/RadialAxis.js +5 -4
  450. package/js/es-modules/parts-more/WaterfallSeries.js +9 -4
  451. package/js/es-modules/supplemental.docs.js +0 -1955
  452. package/js/es-modules/themes/dark-blue.js +1 -1
  453. package/js/es-modules/themes/dark-green.js +1 -1
  454. package/js/es-modules/themes/dark-unica.js +1 -1
  455. package/js/es-modules/themes/gray.js +1 -1
  456. package/js/es-modules/themes/grid-light.js +1 -1
  457. package/js/es-modules/themes/grid.js +1 -1
  458. package/js/es-modules/themes/sand-signika.js +1 -1
  459. package/js/es-modules/themes/skies.js +1 -1
  460. package/js/highcharts-3d.js +75 -74
  461. package/js/highcharts-3d.js.map +1 -8
  462. package/js/highcharts-3d.src.js +39 -32
  463. package/js/highcharts-gantt.js +480 -0
  464. package/js/highcharts-gantt.js.map +1 -0
  465. package/js/highcharts-gantt.src.js +47011 -0
  466. package/js/highcharts-more.js +63 -61
  467. package/js/highcharts-more.js.map +1 -8
  468. package/js/highcharts-more.src.js +135 -75
  469. package/js/highcharts.js +396 -387
  470. package/js/highcharts.js.map +1 -8
  471. package/js/highcharts.src.js +10765 -4659
  472. package/js/highmaps.js +419 -411
  473. package/js/highmaps.js.map +1 -8
  474. package/js/highmaps.src.js +10198 -4285
  475. package/js/highstock.js +529 -516
  476. package/js/highstock.js.map +1 -8
  477. package/js/highstock.src.js +12108 -4962
  478. package/js/indicators/accumulation-distribution.js +4 -3
  479. package/js/indicators/accumulation-distribution.js.map +1 -8
  480. package/js/indicators/accumulation-distribution.src.js +6 -2
  481. package/js/indicators/atr.js +4 -3
  482. package/js/indicators/atr.js.map +1 -8
  483. package/js/indicators/atr.src.js +6 -2
  484. package/js/indicators/bollinger-bands.js +7 -6
  485. package/js/indicators/bollinger-bands.js.map +1 -8
  486. package/js/indicators/bollinger-bands.src.js +7 -3
  487. package/js/indicators/cci.js +4 -3
  488. package/js/indicators/cci.js.map +1 -8
  489. package/js/indicators/cci.src.js +6 -2
  490. package/js/indicators/cmf.js +5 -4
  491. package/js/indicators/cmf.js.map +1 -8
  492. package/js/indicators/cmf.src.js +6 -2
  493. package/js/indicators/ema.js +4 -3
  494. package/js/indicators/ema.js.map +1 -8
  495. package/js/indicators/ema.src.js +6 -2
  496. package/js/indicators/ichimoku-kinko-hyo.js +10 -9
  497. package/js/indicators/ichimoku-kinko-hyo.js.map +1 -8
  498. package/js/indicators/ichimoku-kinko-hyo.src.js +6 -2
  499. package/js/indicators/indicators.js +6 -5
  500. package/js/indicators/indicators.js.map +1 -8
  501. package/js/indicators/indicators.src.js +34 -15
  502. package/js/indicators/macd.js +11 -10
  503. package/js/indicators/macd.js.map +1 -8
  504. package/js/indicators/macd.src.js +10 -6
  505. package/js/indicators/mfi.js +5 -3
  506. package/js/indicators/mfi.js.map +1 -8
  507. package/js/indicators/mfi.src.js +6 -2
  508. package/js/indicators/momentum.js +4 -3
  509. package/js/indicators/momentum.js.map +1 -8
  510. package/js/indicators/momentum.src.js +7 -3
  511. package/js/indicators/pivot-points.js +8 -7
  512. package/js/indicators/pivot-points.js.map +1 -8
  513. package/js/indicators/pivot-points.src.js +12 -3
  514. package/js/indicators/price-envelopes.js +7 -6
  515. package/js/indicators/price-envelopes.js.map +1 -8
  516. package/js/indicators/price-envelopes.src.js +7 -3
  517. package/js/indicators/psar.js +5 -4
  518. package/js/indicators/psar.js.map +1 -8
  519. package/js/indicators/psar.src.js +6 -2
  520. package/js/indicators/roc.js +4 -3
  521. package/js/indicators/roc.js.map +1 -8
  522. package/js/indicators/roc.src.js +6 -2
  523. package/js/indicators/rsi.js +4 -3
  524. package/js/indicators/rsi.js.map +1 -8
  525. package/js/indicators/rsi.src.js +6 -2
  526. package/js/indicators/stochastic.js +7 -5
  527. package/js/indicators/stochastic.js.map +1 -8
  528. package/js/indicators/stochastic.src.js +14 -8
  529. package/js/indicators/volume-by-price.js +13 -12
  530. package/js/indicators/volume-by-price.js.map +1 -8
  531. package/js/indicators/volume-by-price.src.js +6 -2
  532. package/js/indicators/vwap.js +4 -3
  533. package/js/indicators/vwap.js.map +1 -8
  534. package/js/indicators/vwap.src.js +6 -2
  535. package/js/indicators/wma.js +4 -3
  536. package/js/indicators/wma.js.map +1 -8
  537. package/js/indicators/wma.src.js +6 -2
  538. package/js/indicators/zigzag.js +5 -3
  539. package/js/indicators/zigzag.js.map +1 -8
  540. package/js/indicators/zigzag.src.js +6 -2
  541. package/js/modules/accessibility.js +52 -51
  542. package/js/modules/accessibility.js.map +1 -8
  543. package/js/modules/accessibility.src.js +86 -45
  544. package/js/modules/annotations.js +22 -21
  545. package/js/modules/annotations.js.map +1 -8
  546. package/js/modules/annotations.src.js +8 -4
  547. package/js/modules/arrow-symbols.js +13 -0
  548. package/js/modules/arrow-symbols.js.map +1 -0
  549. package/js/modules/arrow-symbols.src.js +138 -0
  550. package/js/modules/boost-canvas.js +15 -13
  551. package/js/modules/boost-canvas.js.map +1 -8
  552. package/js/modules/boost-canvas.src.js +24 -9
  553. package/js/modules/boost.js +57 -52
  554. package/js/modules/boost.js.map +1 -8
  555. package/js/modules/boost.src.js +305 -138
  556. package/js/modules/broken-axis.js +12 -10
  557. package/js/modules/broken-axis.js.map +1 -8
  558. package/js/modules/broken-axis.src.js +175 -136
  559. package/js/modules/bullet.js +3 -2
  560. package/js/modules/bullet.js.map +1 -8
  561. package/js/modules/bullet.src.js +7 -3
  562. package/js/modules/current-date-indicator.js +13 -0
  563. package/js/modules/current-date-indicator.js.map +1 -0
  564. package/js/modules/current-date-indicator.src.js +120 -0
  565. package/js/modules/data.js +25 -24
  566. package/js/modules/data.js.map +1 -8
  567. package/js/modules/data.src.js +14 -8
  568. package/js/modules/drag-panes.js +9 -8
  569. package/js/modules/drag-panes.js.map +1 -8
  570. package/js/modules/drag-panes.src.js +5 -1
  571. package/js/modules/draggable-points.js +38 -0
  572. package/js/modules/draggable-points.js.map +1 -0
  573. package/js/modules/draggable-points.src.js +2281 -0
  574. package/js/modules/drilldown.js +20 -19
  575. package/js/modules/drilldown.js.map +1 -8
  576. package/js/modules/drilldown.src.js +9 -3
  577. package/js/modules/export-data.js +20 -19
  578. package/js/modules/export-data.js.map +1 -8
  579. package/js/modules/export-data.src.js +17 -3
  580. package/js/modules/exporting.js +24 -23
  581. package/js/modules/exporting.js.map +1 -8
  582. package/js/modules/exporting.src.js +68 -38
  583. package/js/modules/funnel.js +8 -6
  584. package/js/modules/funnel.js.map +1 -8
  585. package/js/modules/funnel.src.js +11 -7
  586. package/js/modules/gantt.js +81 -18
  587. package/js/modules/gantt.js.map +1 -8
  588. package/js/modules/gantt.src.js +5494 -372
  589. package/js/modules/grid-axis.js +16 -10
  590. package/js/modules/grid-axis.js.map +1 -8
  591. package/js/modules/grid-axis.src.js +735 -293
  592. package/js/modules/heatmap.js +22 -21
  593. package/js/modules/heatmap.js.map +1 -8
  594. package/js/modules/heatmap.src.js +137 -62
  595. package/js/modules/histogram-bellcurve.js +9 -8
  596. package/js/modules/histogram-bellcurve.js.map +1 -8
  597. package/js/modules/histogram-bellcurve.src.js +35 -29
  598. package/js/modules/item-series.js +6 -4
  599. package/js/modules/item-series.js.map +1 -8
  600. package/js/modules/item-series.src.js +42 -13
  601. package/js/modules/map.js +63 -62
  602. package/js/modules/map.js.map +1 -8
  603. package/js/modules/map.src.js +353 -145
  604. package/js/modules/no-data-to-display.js +5 -4
  605. package/js/modules/no-data-to-display.js.map +1 -8
  606. package/js/modules/no-data-to-display.src.js +10 -6
  607. package/js/modules/offline-exporting.js +14 -13
  608. package/js/modules/offline-exporting.js.map +1 -8
  609. package/js/modules/offline-exporting.src.js +6 -2
  610. package/js/modules/oldie.js +29 -27
  611. package/js/modules/oldie.js.map +1 -8
  612. package/js/modules/oldie.src.js +20 -11
  613. package/js/modules/overlapping-datalabels.js +4 -3
  614. package/js/modules/overlapping-datalabels.js.map +1 -8
  615. package/js/modules/overlapping-datalabels.src.js +6 -2
  616. package/js/modules/parallel-coordinates.js +10 -9
  617. package/js/modules/parallel-coordinates.js.map +1 -8
  618. package/js/modules/parallel-coordinates.src.js +9 -4
  619. package/js/modules/pareto.js +5 -4
  620. package/js/modules/pareto.js.map +1 -8
  621. package/js/modules/pareto.src.js +6 -2
  622. package/js/modules/pathfinder.js +34 -0
  623. package/js/modules/pathfinder.js.map +1 -0
  624. package/js/modules/pathfinder.src.js +2106 -0
  625. package/js/modules/pattern-fill.js +13 -12
  626. package/js/modules/pattern-fill.js.map +1 -8
  627. package/js/modules/pattern-fill.src.js +5 -1
  628. package/js/modules/sankey.js +13 -12
  629. package/js/modules/sankey.js.map +1 -8
  630. package/js/modules/sankey.src.js +29 -9
  631. package/js/modules/series-label.js +17 -15
  632. package/js/modules/series-label.js.map +1 -8
  633. package/js/modules/series-label.src.js +12 -8
  634. package/js/modules/solid-gauge.js +9 -8
  635. package/js/modules/solid-gauge.js.map +1 -8
  636. package/js/modules/solid-gauge.src.js +14 -7
  637. package/js/modules/static-scale.js +4 -3
  638. package/js/modules/static-scale.js.map +1 -8
  639. package/js/modules/static-scale.src.js +69 -26
  640. package/js/modules/stock.js +136 -132
  641. package/js/modules/stock.js.map +1 -8
  642. package/js/modules/stock.src.js +1543 -499
  643. package/js/modules/streamgraph.js +4 -3
  644. package/js/modules/streamgraph.js.map +1 -8
  645. package/js/modules/streamgraph.src.js +10 -6
  646. package/js/modules/sunburst.js +40 -39
  647. package/js/modules/sunburst.js.map +1 -8
  648. package/js/modules/sunburst.src.js +38 -31
  649. package/js/modules/tilemap.js +19 -18
  650. package/js/modules/tilemap.js.map +1 -8
  651. package/js/modules/tilemap.src.js +363 -190
  652. package/js/modules/treegrid.js +51 -0
  653. package/js/modules/treegrid.js.map +1 -0
  654. package/js/modules/treegrid.src.js +2759 -0
  655. package/js/modules/treemap.js +27 -26
  656. package/js/modules/treemap.js.map +1 -8
  657. package/js/modules/treemap.src.js +34 -27
  658. package/js/modules/variable-pie.js +8 -7
  659. package/js/modules/variable-pie.js.map +1 -8
  660. package/js/modules/variable-pie.src.js +8 -4
  661. package/js/modules/variwide.js +8 -7
  662. package/js/modules/variwide.js.map +1 -8
  663. package/js/modules/variwide.src.js +42 -26
  664. package/js/modules/vector.js +7 -6
  665. package/js/modules/vector.js.map +1 -8
  666. package/js/modules/vector.src.js +104 -30
  667. package/js/modules/windbarb.js +11 -10
  668. package/js/modules/windbarb.js.map +1 -8
  669. package/js/modules/windbarb.src.js +11 -7
  670. package/js/modules/wordcloud.js +18 -15
  671. package/js/modules/wordcloud.js.map +1 -8
  672. package/js/modules/wordcloud.src.js +142 -53
  673. package/js/modules/xrange.js +12 -10
  674. package/js/modules/xrange.js.map +1 -8
  675. package/js/modules/xrange.src.js +262 -71
  676. package/js/themes/avocado.js +3 -2
  677. package/js/themes/avocado.js.map +1 -8
  678. package/js/themes/avocado.src.js +5 -1
  679. package/js/themes/dark-blue.js +9 -8
  680. package/js/themes/dark-blue.js.map +1 -8
  681. package/js/themes/dark-blue.src.js +7 -3
  682. package/js/themes/dark-green.js +9 -8
  683. package/js/themes/dark-green.js.map +1 -8
  684. package/js/themes/dark-green.src.js +7 -3
  685. package/js/themes/dark-unica.js +9 -7
  686. package/js/themes/dark-unica.js.map +1 -8
  687. package/js/themes/dark-unica.src.js +7 -3
  688. package/js/themes/gray.js +10 -8
  689. package/js/themes/gray.js.map +1 -8
  690. package/js/themes/gray.src.js +7 -3
  691. package/js/themes/grid-light.js +5 -4
  692. package/js/themes/grid-light.js.map +1 -8
  693. package/js/themes/grid-light.src.js +7 -3
  694. package/js/themes/grid.js +6 -5
  695. package/js/themes/grid.js.map +1 -8
  696. package/js/themes/grid.src.js +7 -3
  697. package/js/themes/sand-signika.js +6 -5
  698. package/js/themes/sand-signika.js.map +1 -8
  699. package/js/themes/sand-signika.src.js +7 -3
  700. package/js/themes/skies.js +6 -5
  701. package/js/themes/skies.js.map +1 -8
  702. package/js/themes/skies.src.js +7 -3
  703. package/js/themes/sunset.js +3 -2
  704. package/js/themes/sunset.js.map +1 -8
  705. package/js/themes/sunset.src.js +5 -1
  706. package/modules/accessibility.js +53 -51
  707. package/modules/accessibility.js.map +1 -8
  708. package/modules/accessibility.src.js +86 -45
  709. package/modules/annotations.js +24 -22
  710. package/modules/annotations.js.map +1 -8
  711. package/modules/annotations.src.js +8 -4
  712. package/modules/arrow-symbols.js +13 -0
  713. package/modules/arrow-symbols.js.map +1 -0
  714. package/modules/arrow-symbols.src.js +138 -0
  715. package/modules/boost-canvas.js +15 -13
  716. package/modules/boost-canvas.js.map +1 -8
  717. package/modules/boost-canvas.src.js +24 -9
  718. package/modules/boost.js +57 -52
  719. package/modules/boost.js.map +1 -8
  720. package/modules/boost.src.js +305 -138
  721. package/modules/broken-axis.js +12 -10
  722. package/modules/broken-axis.js.map +1 -8
  723. package/modules/broken-axis.src.js +175 -136
  724. package/modules/bullet.js +6 -5
  725. package/modules/bullet.js.map +1 -8
  726. package/modules/bullet.src.js +7 -3
  727. package/modules/current-date-indicator.js +13 -0
  728. package/modules/current-date-indicator.js.map +1 -0
  729. package/modules/current-date-indicator.src.js +120 -0
  730. package/modules/data.js +25 -24
  731. package/modules/data.js.map +1 -8
  732. package/modules/data.src.js +14 -8
  733. package/modules/drag-panes.js +9 -8
  734. package/modules/drag-panes.js.map +1 -8
  735. package/modules/drag-panes.src.js +5 -1
  736. package/modules/draggable-points.js +38 -0
  737. package/modules/draggable-points.js.map +1 -0
  738. package/modules/draggable-points.src.js +2281 -0
  739. package/modules/drilldown.js +16 -15
  740. package/modules/drilldown.js.map +1 -8
  741. package/modules/drilldown.src.js +9 -3
  742. package/modules/export-data.js +20 -19
  743. package/modules/export-data.js.map +1 -8
  744. package/modules/export-data.src.js +17 -3
  745. package/modules/exporting.js +23 -21
  746. package/modules/exporting.js.map +1 -8
  747. package/modules/exporting.src.js +68 -38
  748. package/modules/funnel.js +8 -7
  749. package/modules/funnel.js.map +1 -8
  750. package/modules/funnel.src.js +11 -7
  751. package/modules/gantt.js +84 -19
  752. package/modules/gantt.js.map +1 -8
  753. package/modules/gantt.src.js +5557 -379
  754. package/modules/grid-axis.js +17 -10
  755. package/modules/grid-axis.js.map +1 -8
  756. package/modules/grid-axis.src.js +736 -293
  757. package/modules/heatmap.js +22 -21
  758. package/modules/heatmap.js.map +1 -8
  759. package/modules/heatmap.src.js +139 -63
  760. package/modules/histogram-bellcurve.js +9 -8
  761. package/modules/histogram-bellcurve.js.map +1 -8
  762. package/modules/histogram-bellcurve.src.js +35 -29
  763. package/modules/item-series.js +6 -4
  764. package/modules/item-series.js.map +1 -8
  765. package/modules/item-series.src.js +42 -13
  766. package/modules/map.js +65 -64
  767. package/modules/map.js.map +1 -8
  768. package/modules/map.src.js +365 -152
  769. package/modules/no-data-to-display.js +5 -4
  770. package/modules/no-data-to-display.js.map +1 -8
  771. package/modules/no-data-to-display.src.js +10 -6
  772. package/modules/offline-exporting.js +14 -12
  773. package/modules/offline-exporting.js.map +1 -8
  774. package/modules/offline-exporting.src.js +6 -2
  775. package/modules/oldie.js +29 -27
  776. package/modules/oldie.js.map +1 -8
  777. package/modules/oldie.src.js +20 -11
  778. package/modules/overlapping-datalabels.js +4 -3
  779. package/modules/overlapping-datalabels.js.map +1 -8
  780. package/modules/overlapping-datalabels.src.js +6 -2
  781. package/modules/parallel-coordinates.js +10 -9
  782. package/modules/parallel-coordinates.js.map +1 -8
  783. package/modules/parallel-coordinates.src.js +9 -4
  784. package/modules/pareto.js +5 -4
  785. package/modules/pareto.js.map +1 -8
  786. package/modules/pareto.src.js +6 -2
  787. package/modules/pathfinder.js +35 -0
  788. package/modules/pathfinder.js.map +1 -0
  789. package/modules/pathfinder.src.js +2128 -0
  790. package/modules/pattern-fill.js +13 -12
  791. package/modules/pattern-fill.js.map +1 -8
  792. package/modules/pattern-fill.src.js +5 -1
  793. package/modules/sankey.js +13 -12
  794. package/modules/sankey.js.map +1 -8
  795. package/modules/sankey.src.js +34 -12
  796. package/modules/series-label.js +17 -15
  797. package/modules/series-label.js.map +1 -8
  798. package/modules/series-label.src.js +12 -8
  799. package/modules/solid-gauge.js +9 -8
  800. package/modules/solid-gauge.js.map +1 -8
  801. package/modules/solid-gauge.src.js +16 -9
  802. package/modules/static-scale.js +4 -3
  803. package/modules/static-scale.js.map +1 -8
  804. package/modules/static-scale.src.js +69 -26
  805. package/modules/stock.js +143 -139
  806. package/modules/stock.js.map +1 -8
  807. package/modules/stock.src.js +1701 -566
  808. package/modules/streamgraph.js +4 -3
  809. package/modules/streamgraph.js.map +1 -8
  810. package/modules/streamgraph.src.js +10 -6
  811. package/modules/sunburst.js +42 -41
  812. package/modules/sunburst.js.map +1 -8
  813. package/modules/sunburst.src.js +39 -32
  814. package/modules/tilemap.js +18 -17
  815. package/modules/tilemap.js.map +1 -8
  816. package/modules/tilemap.src.js +365 -191
  817. package/modules/treegrid.js +52 -0
  818. package/modules/treegrid.js.map +1 -0
  819. package/modules/treegrid.src.js +2797 -0
  820. package/modules/treemap.js +29 -28
  821. package/modules/treemap.js.map +1 -8
  822. package/modules/treemap.src.js +35 -28
  823. package/modules/variable-pie.js +8 -7
  824. package/modules/variable-pie.js.map +1 -8
  825. package/modules/variable-pie.src.js +8 -4
  826. package/modules/variwide.js +8 -7
  827. package/modules/variwide.js.map +1 -8
  828. package/modules/variwide.src.js +42 -26
  829. package/modules/vector.js +7 -6
  830. package/modules/vector.js.map +1 -8
  831. package/modules/vector.src.js +104 -30
  832. package/modules/windbarb.js +11 -10
  833. package/modules/windbarb.js.map +1 -8
  834. package/modules/windbarb.src.js +11 -7
  835. package/modules/wordcloud.js +18 -15
  836. package/modules/wordcloud.js.map +1 -8
  837. package/modules/wordcloud.src.js +142 -53
  838. package/modules/xrange.js +13 -11
  839. package/modules/xrange.js.map +1 -8
  840. package/modules/xrange.src.js +264 -80
  841. package/package.json +1 -1
  842. package/themes/avocado.js +3 -2
  843. package/themes/avocado.js.map +1 -8
  844. package/themes/avocado.src.js +5 -1
  845. package/themes/dark-blue.js +9 -8
  846. package/themes/dark-blue.js.map +1 -8
  847. package/themes/dark-blue.src.js +7 -3
  848. package/themes/dark-green.js +9 -8
  849. package/themes/dark-green.js.map +1 -8
  850. package/themes/dark-green.src.js +7 -3
  851. package/themes/dark-unica.js +9 -7
  852. package/themes/dark-unica.js.map +1 -8
  853. package/themes/dark-unica.src.js +7 -3
  854. package/themes/gray.js +10 -8
  855. package/themes/gray.js.map +1 -8
  856. package/themes/gray.src.js +7 -3
  857. package/themes/grid-light.js +5 -4
  858. package/themes/grid-light.js.map +1 -8
  859. package/themes/grid-light.src.js +7 -3
  860. package/themes/grid.js +6 -5
  861. package/themes/grid.js.map +1 -8
  862. package/themes/grid.src.js +7 -3
  863. package/themes/sand-signika.js +6 -5
  864. package/themes/sand-signika.js.map +1 -8
  865. package/themes/sand-signika.src.js +7 -3
  866. package/themes/skies.js +6 -5
  867. package/themes/skies.js.map +1 -8
  868. package/themes/skies.src.js +7 -3
  869. package/themes/sunset.js +3 -2
  870. package/themes/sunset.js.map +1 -8
  871. package/themes/sunset.src.js +5 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * (c) 2010-2017 Torstein Honsi
2
+ * (c) 2010-2018 Torstein Honsi
3
3
  *
4
4
  * License: www.highcharts.com/license
5
5
  */
@@ -41,20 +41,201 @@ extend(defaultOptions, {
41
41
  * @optionparent rangeSelector
42
42
  */
43
43
  rangeSelector: {
44
- // allButtonsEnabled: false,
45
- // enabled: true,
46
- // buttons: {Object}
47
- // buttonSpacing: 0,
44
+
45
+ /**
46
+ * Whether to enable all buttons from the start. By default buttons are
47
+ * only enabled if the corresponding time range exists on the X axis,
48
+ * but enabling all buttons allows for dynamically loading different
49
+ * time ranges.
50
+ *
51
+ * @sample {highstock} stock/rangeselector/allbuttonsenabled-true/
52
+ * All buttons enabled
53
+ *
54
+ * @type {boolean}
55
+ * @default false
56
+ * @since 2.0.3
57
+ * @product highstock
58
+ * @apioption rangeSelector.allButtonsEnabled
59
+ */
60
+
61
+ /**
62
+ * An array of configuration objects for the buttons.
63
+ *
64
+ * Defaults to
65
+ *
66
+ * <pre>buttons: [{
67
+ * type: 'month',
68
+ * count: 1,
69
+ * text: '1m'
70
+ * }, {
71
+ * type: 'month',
72
+ * count: 3,
73
+ * text: '3m'
74
+ * }, {
75
+ * type: 'month',
76
+ * count: 6,
77
+ * text: '6m'
78
+ * }, {
79
+ * type: 'ytd',
80
+ * text: 'YTD'
81
+ * }, {
82
+ * type: 'year',
83
+ * count: 1,
84
+ * text: '1y'
85
+ * }, {
86
+ * type: 'all',
87
+ * text: 'All'
88
+ * }]</pre>
89
+ *
90
+ * @sample {highstock} stock/rangeselector/datagrouping/
91
+ * Data grouping by buttons
92
+ *
93
+ * @type {Array<*>}
94
+ * @product highstock
95
+ * @apioption rangeSelector.buttons
96
+ */
97
+
98
+ /**
99
+ * How many units of the defined type the button should span. If `type`
100
+ * is "month" and `count` is 3, the button spans three months.
101
+ *
102
+ * @type {number}
103
+ * @default 1
104
+ * @product highstock
105
+ * @apioption rangeSelector.buttons.count
106
+ */
107
+
108
+ /**
109
+ * Fires when clicking on the rangeSelector button. One parameter,
110
+ * event, is passed to the function, containing common event
111
+ * information.
112
+ *
113
+ * <pre>
114
+ * click: function(e) {
115
+ * console.log(this);
116
+ * }
117
+ * </pre>
118
+ *
119
+ * Return false to stop default button's click action.
120
+ *
121
+ * @sample {highstock} stock/rangeselector/button-click/
122
+ * Click event on the button
123
+ *
124
+ * @type {Function}
125
+ * @product highstock
126
+ * @apioption rangeSelector.buttons.events.click
127
+ */
128
+
129
+ /**
130
+ * Additional range (in milliseconds) added to the end of the calculated
131
+ * time span.
132
+ *
133
+ * @sample {highstock} stock/rangeselector/min-max-offsets/
134
+ * Button offsets
135
+ *
136
+ * @type {number}
137
+ * @default 0
138
+ * @since 6.0.0
139
+ * @product highstock
140
+ * @apioption rangeSelector.buttons.offsetMax
141
+ */
142
+
143
+ /**
144
+ * Additional range (in milliseconds) added to the start of the
145
+ * calculated time span.
146
+ *
147
+ * @sample {highstock} stock/rangeselector/min-max-offsets/
148
+ * Button offsets
149
+ *
150
+ * @type {number}
151
+ * @default 0
152
+ * @since 6.0.0
153
+ * @product highstock
154
+ * @apioption rangeSelector.buttons.offsetMin
155
+ */
156
+
157
+ /**
158
+ * When buttons apply dataGrouping on a series, by default zooming
159
+ * in/out will deselect buttons and unset dataGrouping. Enable this
160
+ * option to keep buttons selected when extremes change.
161
+ *
162
+ * @sample {highstock} stock/rangeselector/preserve-datagrouping/
163
+ * Different preserveDataGrouping settings
164
+ *
165
+ * @type {boolean}
166
+ * @since 6.1.2
167
+ * @default false
168
+ * @product highstock
169
+ * @apioption rangeSelector.buttons.preserveDataGrouping
170
+ */
171
+
172
+ /**
173
+ * A custom data grouping object for each button.
174
+ *
175
+ * @see [series.dataGrouping](#plotOptions.series.dataGrouping)
176
+ *
177
+ * @sample {highstock} stock/rangeselector/datagrouping/
178
+ * Data grouping by range selector buttons
179
+ *
180
+ * @type {*}
181
+ * @extends plotOptions.series.dataGrouping
182
+ * @product highstock
183
+ * @apioption rangeSelector.buttons.dataGrouping
184
+ */
185
+
186
+ /**
187
+ * The text for the button itself.
188
+ *
189
+ * @type {string}
190
+ * @product highstock
191
+ * @apioption rangeSelector.buttons.text
192
+ */
193
+
194
+ /**
195
+ * Defined the time span for the button. Can be one of `millisecond`,
196
+ * `second`, `minute`, `hour`, `day`, `week`, `month`, `ytd`, `all`.
197
+ *
198
+ * @type {string}
199
+ * @product highstock
200
+ * @validvalue ["millisecond", "second", "minute", "day", "week", "month", "ytd", "all"]
201
+ * @apioption rangeSelector.buttons.type
202
+ */
203
+
204
+ /**
205
+ * The space in pixels between the buttons in the range selector.
206
+ *
207
+ * @type {number}
208
+ * @default 0
209
+ * @product highstock
210
+ * @apioption rangeSelector.buttonSpacing
211
+ */
212
+
213
+ /**
214
+ * Enable or disable the range selector.
215
+ *
216
+ * @sample {highstock} stock/rangeselector/enabled/
217
+ * Disable the range selector
218
+ *
219
+ * @type {boolean}
220
+ * @default true
221
+ * @product highstock
222
+ * @apioption rangeSelector.enabled
223
+ */
48
224
 
49
225
  /**
50
226
  * The vertical alignment of the rangeselector box. Allowed properties
51
227
  * are `top`, `middle`, `bottom`.
52
228
  *
53
- * @since 6.0.0
54
- * @validvalue ["top", "middle", "bottom"]
55
- * @sample {highstock} stock/rangeselector/vertical-align-middle/ Middle
229
+ * @sample {highstock} stock/rangeselector/vertical-align-middle/
230
+ * Middle
231
+ * @sample {highstock} stock/rangeselector/vertical-align-bottom/
232
+ * Bottom
56
233
  *
57
- * @sample {highstock} stock/rangeselector/vertical-align-bottom/ Bottom
234
+ * @type {string}
235
+ * @default top
236
+ * @since 6.0.0
237
+ * @validvalue ["top", "middle", "bottom"]
238
+ * @apioption rangeSelector.verticalAlign
58
239
  */
59
240
  verticalAlign: 'top',
60
241
 
@@ -73,13 +254,17 @@ extend(defaultOptions, {
73
254
  * `.highcharts-range-selector-buttons .highcharts-button` rule with its
74
255
  * different states.
75
256
  *
76
- * @type {Object}
77
257
  * @sample {highstock} stock/rangeselector/styling/
78
258
  * Styling the buttons and inputs
79
- * @product highstock
259
+ *
260
+ * @type {Highcharts.CSSObject}
261
+ * @product highstock
262
+ * @apioption rangeSelector.buttonTheme
80
263
  */
81
264
  buttonTheme: {
265
+
82
266
  'stroke-width': 0,
267
+
83
268
  width: 28,
84
269
  height: 18,
85
270
  padding: 2,
@@ -93,8 +278,12 @@ extend(defaultOptions, {
93
278
  * @sample {highstock} stock/rangeselector/floating/
94
279
  * Placing the range selector between the plot area and the
95
280
  * navigator
96
- * @since 6.0.0
97
- * @product highstock
281
+ *
282
+ * @type {boolean}
283
+ * @default false
284
+ * @since 6.0.0
285
+ * @product highstock
286
+ * @apioption rangeSelector.floating
98
287
  */
99
288
  floating: false,
100
289
 
@@ -102,8 +291,11 @@ extend(defaultOptions, {
102
291
  * The x offset of the range selector relative to its horizontal
103
292
  * alignment within `chart.spacingLeft` and `chart.spacingRight`.
104
293
  *
105
- * @since 6.0.0
106
- * @product highstock
294
+ * @type {number}
295
+ * @default 0
296
+ * @since 6.0.0
297
+ * @product highstock
298
+ * @apioption rangeSelector.x
107
299
  */
108
300
  x: 0,
109
301
 
@@ -111,8 +303,11 @@ extend(defaultOptions, {
111
303
  * The y offset of the range selector relative to its horizontal
112
304
  * alignment within `chart.spacingLeft` and `chart.spacingRight`.
113
305
  *
114
- * @since 6.0.0
115
- * @product highstock
306
+ * @type {number}
307
+ * @default 0
308
+ * @since 6.0.0
309
+ * @product highstock
310
+ * @apioption rangeSelector.y
116
311
  */
117
312
  y: 0,
118
313
 
@@ -120,69 +315,232 @@ extend(defaultOptions, {
120
315
  * Deprecated. The height of the range selector. Currently it is
121
316
  * calculated dynamically.
122
317
  *
123
- * @type {Number}
124
- * @default undefined
125
- * @since 2.1.9
126
- * @product highstock
127
- * @deprecated true
318
+ * @deprecated
319
+ * @type {number}
320
+ * @default undefined
321
+ * @since 2.1.9
322
+ * @product highstock
323
+ * @apioption rangeSelector.height
128
324
  */
129
325
  height: undefined, // reserved space for buttons and input
130
326
 
327
+ /**
328
+ * The border color of the date input boxes.
329
+ *
330
+ * @sample {highstock} stock/rangeselector/styling/
331
+ * Styling the buttons and inputs
332
+ *
333
+ * @type {Highcharts.ColorString}
334
+ * @default #cccccc
335
+ * @since 1.3.7
336
+ * @product highstock
337
+ * @apioption rangeSelector.inputBoxBorderColor
338
+ */
339
+
340
+ /**
341
+ * The pixel height of the date input boxes.
342
+ *
343
+ * @sample {highstock} stock/rangeselector/styling/
344
+ * Styling the buttons and inputs
345
+ *
346
+ * @type {number}
347
+ * @default 17
348
+ * @since 1.3.7
349
+ * @product highstock
350
+ * @apioption rangeSelector.inputBoxHeight
351
+ */
352
+
353
+ /**
354
+ * CSS for the container DIV holding the input boxes. Deprecated as
355
+ * of 1.2.5\. Use [inputPosition](#rangeSelector.inputPosition) instead.
356
+ *
357
+ * @sample {highstock} stock/rangeselector/styling/
358
+ * Styling the buttons and inputs
359
+ *
360
+ * @deprecated
361
+ * @type {Highcharts.CSSObject}
362
+ * @product highstock
363
+ * @apioption rangeSelector.inputBoxStyle
364
+ */
365
+
366
+ /**
367
+ * The pixel width of the date input boxes.
368
+ *
369
+ * @sample {highstock} stock/rangeselector/styling/
370
+ * Styling the buttons and inputs
371
+ *
372
+ * @type {number}
373
+ * @default 90
374
+ * @since 1.3.7
375
+ * @product highstock
376
+ * @apioption rangeSelector.inputBoxWidth
377
+ */
378
+
379
+ /**
380
+ * The date format in the input boxes when not selected for editing.
381
+ * Defaults to `%b %e, %Y`.
382
+ *
383
+ * @sample {highstock} stock/rangeselector/input-format/
384
+ * Milliseconds in the range selector
385
+ *
386
+ * @type {string}
387
+ * @default %b %e %Y,
388
+ * @product highstock
389
+ * @apioption rangeSelector.inputDateFormat
390
+ */
391
+
392
+ /**
393
+ * A custom callback function to parse values entered in the input boxes
394
+ * and return a valid JavaScript time as milliseconds since 1970.
395
+ *
396
+ * @sample {highstock} stock/rangeselector/input-format/
397
+ * Milliseconds in the range selector
398
+ *
399
+ * @type {Function}
400
+ * @since 1.3.3
401
+ * @product highstock
402
+ * @apioption rangeSelector.inputDateParser
403
+ */
404
+
405
+ /**
406
+ * The date format in the input boxes when they are selected for
407
+ * editing. This must be a format that is recognized by JavaScript
408
+ * Date.parse.
409
+ *
410
+ * @sample {highstock} stock/rangeselector/input-format/
411
+ * Milliseconds in the range selector
412
+ *
413
+ * @type {string}
414
+ * @default %Y-%m-%d
415
+ * @product highstock
416
+ * @apioption rangeSelector.inputEditDateFormat
417
+ */
418
+
419
+ /**
420
+ * Enable or disable the date input boxes. Defaults to enabled when
421
+ * there is enough space, disabled if not (typically mobile).
422
+ *
423
+ * @sample {highstock} stock/rangeselector/input-datepicker/
424
+ * Extending the input with a jQuery UI datepicker
425
+ *
426
+ * @type {boolean}
427
+ * @default true
428
+ * @product highstock
429
+ * @apioption rangeSelector.inputEnabled
430
+ */
431
+
131
432
  /**
132
433
  * Positioning for the input boxes. Allowed properties are `align`,
133
434
  * `x` and `y`.
134
435
  *
135
- * @type {Object}
136
- * @default { align: "right" }
137
- * @since 1.2.4
138
- * @product highstock
436
+ * @type {*}
437
+ * @since 1.2.4
438
+ * @product highstock
439
+ * @apioption rangeSelector.inputPosition
139
440
  */
140
441
  inputPosition: {
141
442
  /**
142
443
  * The alignment of the input box. Allowed properties are `left`,
143
444
  * `center`, `right`.
144
- * @validvalue ["left", "center", "right"]
145
- * @sample {highstock} stock/rangeselector/input-button-position/
146
- * Alignment
147
- * @since 6.0.0
445
+ *
446
+ * @sample {highstock} stock/rangeselector/input-button-position/
447
+ * Alignment
448
+ *
449
+ * @type {string}
450
+ * @default right
451
+ * @since 6.0.0
452
+ * @validvalue ["left", "center", "right"]
453
+ * @apioption rangeSelector.inputPosition.align
148
454
  */
149
455
  align: 'right',
456
+
457
+ /**
458
+ * X offset of the input row.
459
+ *
460
+ * @type {number}
461
+ * @default 0
462
+ * @apioption rangeSelector.inputPosition.x
463
+ */
150
464
  x: 0,
465
+
466
+ /**
467
+ * Y offset of the input row.
468
+ *
469
+ * @type {number}
470
+ * @default 0
471
+ * @apioption rangeSelector.inputPosition.y
472
+ */
151
473
  y: 0
152
474
  },
153
475
 
476
+ /**
477
+ * The index of the button to appear pre-selected.
478
+ *
479
+ * @type {number}
480
+ * @product highstock
481
+ * @apioption rangeSelector.selected
482
+ */
483
+
154
484
  /**
155
485
  * Positioning for the button row.
156
486
  *
157
- * @since 1.2.4
158
- * @product highstock
487
+ * @type {*}
488
+ * @since 1.2.4
489
+ * @product highstock
490
+ * @apioption rangeSelector.buttonPosition
159
491
  */
160
492
  buttonPosition: {
493
+
161
494
  /**
162
495
  * The alignment of the input box. Allowed properties are `left`,
163
496
  * `center`, `right`.
164
- *
165
- * @validvalue ["left", "center", "right"]
166
- * @sample {highstock} stock/rangeselector/input-button-position/
167
- * Alignment
168
- * @since 6.0.0
497
+ *
498
+ * @sample {highstock} stock/rangeselector/input-button-position/
499
+ * Alignment
500
+ *
501
+ * @type {string}
502
+ * @default left
503
+ * @since 6.0.0
504
+ * @validvalue ["left", "center", "right"]
505
+ * @apioption rangeSelector.buttonPosition.align
169
506
  */
170
507
  align: 'left',
508
+
171
509
  /**
172
510
  * X offset of the button row.
511
+ *
512
+ * @type {number}
513
+ * @default 0
514
+ * @apioption rangeSelector.buttonPosition.x
173
515
  */
174
516
  x: 0,
517
+
175
518
  /**
176
519
  * Y offset of the button row.
520
+ *
521
+ * @type {number}
522
+ * @default 0
523
+ * @apioption rangeSelector.buttonPosition.y
177
524
  */
178
525
  y: 0
179
526
  },
180
- // inputDateFormat: '%b %e, %Y',
181
- // inputEditDateFormat: '%Y-%m-%d',
182
- // inputEnabled: true,
183
- // selected: undefined,
527
+
184
528
 
185
- // inputStyle: {},
529
+
530
+ /**
531
+ * CSS for the HTML inputs in the range selector.
532
+ *
533
+ * In styled mode, the inputs are styled by the
534
+ * `.highcharts-range-input text` rule in SVG mode, and
535
+ * `input.highcharts-range-selector` when active.
536
+ *
537
+ * @sample {highstock} stock/rangeselector/styling/
538
+ * Styling the buttons and inputs
539
+ *
540
+ * @type {Highcharts.CSSObject}
541
+ * @product highstock
542
+ * @apioption rangeSelector.inputStyle
543
+ */
186
544
 
187
545
  /**
188
546
  * CSS styles for the labels - the Zoom, From and To texts.
@@ -190,10 +548,12 @@ extend(defaultOptions, {
190
548
  * In styled mode, the labels are styled by the
191
549
  * `.highcharts-range-label` class.
192
550
  *
193
- * @type {CSSObject}
194
551
  * @sample {highstock} stock/rangeselector/styling/
195
552
  * Styling the buttons and inputs
196
- * @product highstock
553
+ *
554
+ * @type {Highcharts.CSSObject}
555
+ * @product highstock
556
+ * @apioption rangeSelector.labelStyle
197
557
  */
198
558
  labelStyle: {
199
559
  color: '#666666'
@@ -231,9 +591,10 @@ defaultOptions.lang = merge(
231
591
  /**
232
592
  * The text for the label for the range selector buttons.
233
593
  *
234
- * @type {String}
235
- * @default Zoom
236
- * @product highstock
594
+ * @type {string}
595
+ * @default Zoom
596
+ * @product highstock
597
+ * @apioption lang.rangeSelectorZoom
237
598
  */
238
599
  rangeSelectorZoom: 'Zoom',
239
600
 
@@ -241,18 +602,20 @@ defaultOptions.lang = merge(
241
602
  * The text for the label for the "from" input box in the range
242
603
  * selector.
243
604
  *
244
- * @type {String}
245
- * @default From
246
- * @product highstock
605
+ * @type {string}
606
+ * @default From
607
+ * @product highstock
608
+ * @apioption lang.rangeSelectorFrom
247
609
  */
248
610
  rangeSelectorFrom: 'From',
249
611
 
250
612
  /**
251
613
  * The text for the label for the "to" input box in the range selector.
252
614
  *
253
- * @type {String}
254
- * @default To
255
- * @product highstock
615
+ * @type {string}
616
+ * @default To
617
+ * @product highstock
618
+ * @apioption lang.rangeSelectorTo
256
619
  */
257
620
  rangeSelectorTo: 'To'
258
621
  }
@@ -260,8 +623,10 @@ defaultOptions.lang = merge(
260
623
 
261
624
  /**
262
625
  * The range selector.
263
- * @class
264
- * @param {Object} chart
626
+ *
627
+ * @class Highcharts.RangeSelector
628
+ *
629
+ * @param {Highcharts.Chart} chart
265
630
  */
266
631
  function RangeSelector(chart) {
267
632
 
@@ -273,9 +638,15 @@ RangeSelector.prototype = {
273
638
  /**
274
639
  * The method to run when one of the buttons in the range selectors is
275
640
  * clicked
276
- * @param {Number} i The index of the button
277
- * @param {Object} rangeOptions
278
- * @param {Boolean} redraw
641
+ *
642
+ * @function Highcharts.RangeSelector#clickButton
643
+ *
644
+ * @param {number} i
645
+ * The index of the button
646
+ *
647
+ * @param {boolean} redraw
648
+ *
649
+ * @return {void}
279
650
  */
280
651
  clickButton: function (i, redraw) {
281
652
  var rangeSelector = this,
@@ -317,6 +688,8 @@ RangeSelector.prototype = {
317
688
  dataGrouping,
318
689
  false
319
690
  );
691
+
692
+ this.frozenStates = rangeOptions.preserveDataGrouping;
320
693
  }
321
694
 
322
695
  // Apply range
@@ -423,6 +796,12 @@ RangeSelector.prototype = {
423
796
  /**
424
797
  * Set the selected option. This method only sets the internal flag, it
425
798
  * doesn't update the buttons or the actual zoomed range.
799
+ *
800
+ * @function Highcharts.RangeSelector#setSelected
801
+ *
802
+ * @param {boolean} selected
803
+ *
804
+ * @return {void}
426
805
  */
427
806
  setSelected: function (selected) {
428
807
  this.selected = this.options.selected = selected;
@@ -457,6 +836,12 @@ RangeSelector.prototype = {
457
836
 
458
837
  /**
459
838
  * Initialize the range selector
839
+ *
840
+ * @function Highcharts.RangeSelector#init
841
+ *
842
+ * @param {Highcharts.Chart} chart
843
+ *
844
+ * @return {void}
460
845
  */
461
846
  init: function (chart) {
462
847
  var rangeSelector = this,
@@ -505,7 +890,8 @@ RangeSelector.prototype = {
505
890
  this.max - this.min !== chart.fixedRange &&
506
891
  e.trigger !== 'rangeSelectorButton' &&
507
892
  e.trigger !== 'updatedData' &&
508
- rangeSelector.forcedDataGrouping
893
+ rangeSelector.forcedDataGrouping &&
894
+ !rangeSelector.frozenStates
509
895
  ) {
510
896
  this.setDataGrouping(false, false);
511
897
  }
@@ -517,6 +903,10 @@ RangeSelector.prototype = {
517
903
  /**
518
904
  * Dynamically update the range selector buttons after a new range has been
519
905
  * set
906
+ *
907
+ * @function Highcharts.RangeSelector#updateButtonStates
908
+ *
909
+ * @return {void}
520
910
  */
521
911
  updateButtonStates: function () {
522
912
  var rangeSelector = this,
@@ -604,7 +994,8 @@ RangeSelector.prototype = {
604
994
  );
605
995
  select = (
606
996
  (isSelected && isSameRange) ||
607
- (isSameRange && !selectedExists && !isYTDButNotSelected)
997
+ (isSameRange && !selectedExists && !isYTDButNotSelected) ||
998
+ (isSelected && rangeSelector.frozenStates)
608
999
  );
609
1000
 
610
1001
  if (disable) {
@@ -623,6 +1014,12 @@ RangeSelector.prototype = {
623
1014
 
624
1015
  /**
625
1016
  * Compute and cache the range for an individual button
1017
+ *
1018
+ * @function Highcharts.RangeSelector#computeButtonRange
1019
+ *
1020
+ * @param {Highcharts.RangeSelectorOptions} rangeOptions
1021
+ *
1022
+ * @return {void}
626
1023
  */
627
1024
  computeButtonRange: function (rangeOptions) {
628
1025
  var type = rangeOptions.type,
@@ -655,8 +1052,14 @@ RangeSelector.prototype = {
655
1052
 
656
1053
  /**
657
1054
  * Set the internal and displayed value of a HTML input for the dates
658
- * @param {String} name
659
- * @param {Number} inputTime
1055
+ *
1056
+ * @function Highcharts.RangeSelector#setInputValue
1057
+ *
1058
+ * @param {string} name
1059
+ *
1060
+ * @param {number} inputTime
1061
+ *
1062
+ * @return {void}
660
1063
  */
661
1064
  setInputValue: function (name, inputTime) {
662
1065
  var options = this.chart.options.rangeSelector,
@@ -680,6 +1083,13 @@ RangeSelector.prototype = {
680
1083
  });
681
1084
  },
682
1085
 
1086
+ /**
1087
+ * @function Highcharts.RangeSelector#showInput
1088
+ *
1089
+ * @param {string} name
1090
+ *
1091
+ * @return {void}
1092
+ */
683
1093
  showInput: function (name) {
684
1094
  var inputGroup = this.inputGroup,
685
1095
  dateBox = this[name + 'DateBox'];
@@ -693,6 +1103,13 @@ RangeSelector.prototype = {
693
1103
  });
694
1104
  },
695
1105
 
1106
+ /**
1107
+ * @function Highcharts.RangeSelector#hideInput
1108
+ *
1109
+ * @param {string} name
1110
+ *
1111
+ * @return {void}
1112
+ */
696
1113
  hideInput: function (name) {
697
1114
  css(this[name + 'Input'], {
698
1115
  border: 0,
@@ -704,7 +1121,12 @@ RangeSelector.prototype = {
704
1121
 
705
1122
  /**
706
1123
  * Draw either the 'from' or the 'to' HTML input box of the range selector
707
- * @param {Object} name
1124
+ *
1125
+ * @function Highcharts.RangeSelector#drawInput
1126
+ *
1127
+ * @param {string} name
1128
+ *
1129
+ * @return {void}
708
1130
  */
709
1131
  drawInput: function (name) {
710
1132
  var rangeSelector = this,
@@ -801,10 +1223,12 @@ RangeSelector.prototype = {
801
1223
  padding: 2,
802
1224
  width: options.inputBoxWidth || 90,
803
1225
  height: options.inputBoxHeight || 17,
1226
+ 'text-align': 'center',
1227
+
804
1228
  stroke:
805
1229
  options.inputBoxBorderColor || '#cccccc',
806
- 'stroke-width': 1,
807
- 'text-align': 'center'
1230
+ 'stroke-width': 1
1231
+
808
1232
  })
809
1233
  .on('click', function () {
810
1234
  // If it is already focused, the onfocus event doesn't fire
@@ -870,6 +1294,10 @@ RangeSelector.prototype = {
870
1294
  /**
871
1295
  * Get the position of the range selector buttons and inputs. This can be
872
1296
  * overridden from outside for custom positioning.
1297
+ *
1298
+ * @function Highcharts.RangeSelector#getPosition
1299
+ *
1300
+ * @return {Highcharts.Dictionary<number>}
873
1301
  */
874
1302
  getPosition: function () {
875
1303
  var chart = this.chart,
@@ -884,13 +1312,18 @@ RangeSelector.prototype = {
884
1312
  };
885
1313
  },
886
1314
  /**
887
- * Get the extremes of YTD.
888
- * Will choose dataMax if its value is lower than the current timestamp.
889
- * Will choose dataMin if its value is higher than the timestamp for
890
- * the start of current year.
1315
+ * Get the extremes of YTD. Will choose dataMax if its value is lower than
1316
+ * the current timestamp. Will choose dataMin if its value is higher than
1317
+ * the timestamp for the start of current year.
1318
+ *
1319
+ * @function Highcharts.RangeSelector#getYTDExtremes
1320
+ *
891
1321
  * @param {number} dataMax
1322
+ *
892
1323
  * @param {number} dataMin
893
- * @return {object} Returns min and max for the YTD
1324
+ *
1325
+ * @return {*}
1326
+ * Returns min and max for the YTD
894
1327
  */
895
1328
  getYTDExtremes: function (dataMax, dataMin, useUTC) {
896
1329
  var time = this.chart.time,
@@ -912,8 +1345,16 @@ RangeSelector.prototype = {
912
1345
  * Render the range selector including the buttons and the inputs. The first
913
1346
  * time render is called, the elements are created and positioned. On
914
1347
  * subsequent calls, they are moved and updated.
915
- * @param {Number} min X axis minimum
916
- * @param {Number} max X axis maximum
1348
+ *
1349
+ * @function Highcharts.RangeSelector#render
1350
+ *
1351
+ * @param {number} min
1352
+ * X axis minimum
1353
+ *
1354
+ * @param {number} max
1355
+ * X axis maximum
1356
+ *
1357
+ * @return {void}
917
1358
  */
918
1359
  render: function (min, max) {
919
1360
 
@@ -931,6 +1372,12 @@ RangeSelector.prototype = {
931
1372
  lang = defaultOptions.lang,
932
1373
  div = rangeSelector.div,
933
1374
  options = chartOptions.rangeSelector,
1375
+ // Place inputs above the container
1376
+ inputsZIndex = pick(
1377
+ chartOptions.chart.style &&
1378
+ chartOptions.chart.style.zIndex,
1379
+ 0
1380
+ ) + 1,
934
1381
  floating = options.floating,
935
1382
  buttons = rangeSelector.buttons,
936
1383
  inputGroup = rangeSelector.inputGroup,
@@ -951,6 +1398,7 @@ RangeSelector.prototype = {
951
1398
  buttonPositionY = buttonPosition.y,
952
1399
  inputPositionY = inputPosition.y,
953
1400
  animate = rendered || false,
1401
+ verb = animate ? 'animate' : 'attr',
954
1402
  exportingX = 0,
955
1403
  alignTranslateY,
956
1404
  legendHeight,
@@ -976,20 +1424,17 @@ RangeSelector.prototype = {
976
1424
 
977
1425
  rangeSelector.zoomText = renderer.text(
978
1426
  lang.rangeSelectorZoom,
979
- pick(plotLeft + buttonPosition.x, plotLeft), 15
1427
+ 0,
1428
+ 15
980
1429
  )
981
1430
  .css(options.labelStyle)
982
1431
  .add(buttonGroup);
983
1432
 
984
- // button start position
985
- buttonLeft = pick(plotLeft + buttonPosition.x, plotLeft) +
986
- rangeSelector.zoomText.getBBox().width + 5;
987
-
988
1433
  each(rangeSelector.buttonOptions, function (rangeOptions, i) {
989
1434
 
990
1435
  buttons[i] = renderer.button(
991
1436
  rangeOptions.text,
992
- buttonLeft,
1437
+ 0,
993
1438
  0,
994
1439
  function () {
995
1440
 
@@ -1020,9 +1465,6 @@ RangeSelector.prototype = {
1020
1465
  'text-align': 'center'
1021
1466
  })
1022
1467
  .add(buttonGroup);
1023
-
1024
- // increase button position for the next button
1025
- buttonLeft += buttons[i].width + pick(options.buttonSpacing, 5);
1026
1468
  });
1027
1469
 
1028
1470
  // first create a wrapper outside the container in order to make
@@ -1031,7 +1473,7 @@ RangeSelector.prototype = {
1031
1473
  rangeSelector.div = div = createElement('div', null, {
1032
1474
  position: 'relative',
1033
1475
  height: 0,
1034
- zIndex: 1 // above container
1476
+ zIndex: inputsZIndex
1035
1477
  });
1036
1478
 
1037
1479
  container.parentNode.insertBefore(div, container);
@@ -1046,6 +1488,22 @@ RangeSelector.prototype = {
1046
1488
  }
1047
1489
  }
1048
1490
 
1491
+ // #8769, allow dynamically updating margins
1492
+ rangeSelector.zoomText[verb]({
1493
+ x: pick(plotLeft + buttonPosition.x, plotLeft)
1494
+ });
1495
+ // button start position
1496
+ buttonLeft = pick(plotLeft + buttonPosition.x, plotLeft) +
1497
+ rangeSelector.zoomText.getBBox().width + 5;
1498
+ each(rangeSelector.buttonOptions, function (rangeOptions, i) {
1499
+
1500
+ buttons[i][verb]({ x: buttonLeft });
1501
+
1502
+ // increase button position for the next button
1503
+ buttonLeft += buttons[i].width + pick(options.buttonSpacing, 5);
1504
+ });
1505
+
1506
+
1049
1507
  plotLeft = chart.plotLeft - chart.spacing[3];
1050
1508
  rangeSelector.updateButtonStates();
1051
1509
 
@@ -1247,7 +1705,11 @@ RangeSelector.prototype = {
1247
1705
 
1248
1706
  /**
1249
1707
  * Extracts height of range selector
1250
- * @return {Number} Returns rangeSelector height
1708
+ *
1709
+ * @function Highcharts.RangeSelector#getHeight
1710
+ *
1711
+ * @return {number}
1712
+ * Returns rangeSelector height
1251
1713
  */
1252
1714
  getHeight: function () {
1253
1715
  var rangeSelector = this,
@@ -1280,8 +1742,13 @@ RangeSelector.prototype = {
1280
1742
 
1281
1743
  /**
1282
1744
  * Detect collision with title or subtitle
1283
- * @param {object} chart
1284
- * @return {Boolean} Returns collision status
1745
+ *
1746
+ * @function Highcharts.RangeSelector#titleCollision
1747
+ *
1748
+ * @param {Highcharts.Chart} chart
1749
+ *
1750
+ * @return {boolean}
1751
+ * Returns collision status
1285
1752
  */
1286
1753
  titleCollision: function (chart) {
1287
1754
  return !(chart.options.title.text || chart.options.subtitle.text);
@@ -1289,7 +1756,12 @@ RangeSelector.prototype = {
1289
1756
 
1290
1757
  /**
1291
1758
  * Update the range selector with new options
1292
- * @param {object} options
1759
+ *
1760
+ * @function Highcharts.RangeSelector#update
1761
+ *
1762
+ * @param {Highcharts.RangeSelectorOptions} options
1763
+ *
1764
+ * @return {void}
1293
1765
  */
1294
1766
  update: function (options) {
1295
1767
  var chart = this.chart;
@@ -1302,6 +1774,10 @@ RangeSelector.prototype = {
1302
1774
 
1303
1775
  /**
1304
1776
  * Destroys allocated elements.
1777
+ *
1778
+ * @function Highcharts.RangeSelector#destroy
1779
+ *
1780
+ * @return {void}
1305
1781
  */
1306
1782
  destroy: function () {
1307
1783
  var rSelector = this,
@@ -1341,6 +1817,18 @@ RangeSelector.prototype = {
1341
1817
  /**
1342
1818
  * Add logic to normalize the zoomed range in order to preserve the pressed
1343
1819
  * state of range selector buttons
1820
+ *
1821
+ * @function Highcharts.Axis#toFixedRange
1822
+ *
1823
+ * @param {number} pxMin
1824
+ *
1825
+ * @param {number} pxMax
1826
+ *
1827
+ * @param {number} fixedMin
1828
+ *
1829
+ * @param {number} fixedMax
1830
+ *
1831
+ * @return {*}
1344
1832
  */
1345
1833
  Axis.prototype.toFixedRange = function (pxMin, pxMax, fixedMin, fixedMax) {
1346
1834
  var fixedRange = this.chart && this.chart.fixedRange,
@@ -1374,7 +1862,10 @@ Axis.prototype.toFixedRange = function (pxMin, pxMax, fixedMin, fixedMax) {
1374
1862
  * selected range is a multiple of months or years, it is compensated for
1375
1863
  * various month lengths.
1376
1864
  *
1377
- * @return {number} The new minimum value.
1865
+ * @function Highcharts.Axis#minFromRange
1866
+ *
1867
+ * @return {number}
1868
+ * The new minimum value.
1378
1869
  */
1379
1870
  Axis.prototype.minFromRange = function () {
1380
1871
  var rangeOptions = this.range,
@@ -1471,20 +1962,32 @@ addEvent(Chart, 'update', function (e) {
1471
1962
 
1472
1963
  var chart = this,
1473
1964
  options = e.options,
1965
+ optionsRangeSelector = options.rangeSelector,
1474
1966
  rangeSelector = chart.rangeSelector,
1475
- verticalAlign;
1967
+ verticalAlign,
1968
+ extraBottomMarginWas = this.extraBottomMargin,
1969
+ extraTopMarginWas = this.extraTopMargin;
1970
+
1971
+ if (
1972
+ optionsRangeSelector &&
1973
+ optionsRangeSelector.enabled &&
1974
+ !defined(rangeSelector)
1975
+ ) {
1976
+ this.options.rangeSelector.enabled = true;
1977
+ this.rangeSelector = new RangeSelector(this);
1978
+ }
1979
+
1476
1980
 
1477
1981
  this.extraBottomMargin = false;
1478
1982
  this.extraTopMargin = false;
1479
- this.isDirtyBox = true; // #7684 - ignored spacingBottom after update
1480
1983
 
1481
1984
  if (rangeSelector) {
1482
1985
 
1483
1986
  rangeSelector.render();
1484
1987
 
1485
1988
  verticalAlign = (
1486
- options.rangeSelector &&
1487
- options.rangeSelector.verticalAlign
1989
+ optionsRangeSelector &&
1990
+ optionsRangeSelector.verticalAlign
1488
1991
  ) || (
1489
1992
  rangeSelector.options && rangeSelector.options.verticalAlign
1490
1993
  );
@@ -1497,6 +2000,13 @@ addEvent(Chart, 'update', function (e) {
1497
2000
  }
1498
2001
  }
1499
2002
 
2003
+ if (
2004
+ this.extraBottomMargin !== extraBottomMarginWas ||
2005
+ this.extraTopMargin !== extraTopMarginWas
2006
+ ) {
2007
+ this.isDirtyBox = true;
2008
+ }
2009
+
1500
2010
  }
1501
2011
 
1502
2012
  });