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.
Files changed (695) hide show
  1. package/bower.json +1 -1
  2. package/css/highcharts.css +17 -0
  3. package/css/highcharts.scss +14 -0
  4. package/css/themes/dark-unica.css +17 -0
  5. package/css/themes/grid-light.css +17 -0
  6. package/css/themes/sand-signika.css +17 -0
  7. package/es-modules/indicators/momentum.src.js +1 -1
  8. package/es-modules/indicators/pivot-points.src.js +6 -1
  9. package/es-modules/masters/highcharts-gantt.src.js +11 -0
  10. package/es-modules/masters/modules/annotations.src.js +1 -1
  11. package/es-modules/masters/modules/arrow-symbols.src.js +12 -0
  12. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  13. package/es-modules/masters/modules/current-date-indicator.src.js +12 -0
  14. package/es-modules/masters/modules/data.src.js +1 -1
  15. package/es-modules/masters/modules/draggable-points.src.js +9 -0
  16. package/es-modules/masters/modules/export-data.src.js +1 -1
  17. package/es-modules/masters/modules/exporting.src.js +1 -1
  18. package/es-modules/masters/modules/funnel.src.js +1 -1
  19. package/es-modules/masters/modules/gantt.src.js +2 -1
  20. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  21. package/es-modules/masters/modules/heatmap.src.js +1 -1
  22. package/es-modules/masters/modules/item-series.src.js +1 -1
  23. package/es-modules/masters/modules/map.src.js +1 -1
  24. package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  25. package/es-modules/masters/modules/pathfinder.src.js +12 -0
  26. package/es-modules/masters/modules/sankey.src.js +1 -1
  27. package/es-modules/masters/modules/series-label.src.js +1 -1
  28. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  29. package/es-modules/masters/modules/stock.src.js +1 -1
  30. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  31. package/es-modules/masters/modules/treegrid.src.js +12 -0
  32. package/es-modules/masters/modules/variwide.src.js +1 -1
  33. package/es-modules/masters/modules/vector.src.js +1 -1
  34. package/es-modules/masters/modules/windbarb.src.js +1 -1
  35. package/es-modules/masters/modules/xrange.src.js +1 -1
  36. package/es-modules/masters/themes/dark-blue.src.js +1 -1
  37. package/es-modules/masters/themes/dark-green.src.js +1 -1
  38. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  39. package/es-modules/masters/themes/gray.src.js +1 -1
  40. package/es-modules/masters/themes/grid-light.src.js +1 -1
  41. package/es-modules/masters/themes/grid.src.js +1 -1
  42. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  43. package/es-modules/masters/themes/skies.src.js +1 -1
  44. package/es-modules/mixins/centered-series.js +1 -1
  45. package/es-modules/mixins/on-series.js +1 -1
  46. package/es-modules/modules/boost.src.js +22 -14
  47. package/es-modules/modules/broken-axis.src.js +169 -134
  48. package/es-modules/modules/data.src.js +2 -2
  49. package/es-modules/modules/draggable-points.src.js +2257 -0
  50. package/es-modules/modules/drilldown.src.js +1 -0
  51. package/es-modules/modules/export-data.src.js +1 -1
  52. package/es-modules/modules/exporting.src.js +1 -1
  53. package/es-modules/modules/funnel.src.js +1 -1
  54. package/es-modules/modules/item-series.src.js +1 -1
  55. package/es-modules/modules/no-data-to-display.src.js +5 -5
  56. package/es-modules/modules/oldie.src.js +1 -1
  57. package/es-modules/modules/overlapping-datalabels.src.js +38 -22
  58. package/es-modules/modules/parallel-coordinates.src.js +3 -2
  59. package/es-modules/modules/sankey.src.js +1 -1
  60. package/es-modules/modules/series-label.src.js +2 -2
  61. package/es-modules/modules/solid-gauge.src.js +1 -1
  62. package/es-modules/modules/static-scale.src.js +67 -28
  63. package/es-modules/modules/streamgraph.src.js +1 -1
  64. package/es-modules/modules/tilemap.src.js +231 -134
  65. package/es-modules/modules/variwide.src.js +1 -1
  66. package/es-modules/modules/vector.src.js +92 -22
  67. package/es-modules/modules/windbarb.src.js +1 -1
  68. package/es-modules/modules/xrange.src.js +257 -77
  69. package/es-modules/parts/AreaSeries.js +77 -77
  70. package/es-modules/parts/AreaSplineSeries.js +64 -27
  71. package/es-modules/parts/Axis.js +160 -67
  72. package/es-modules/parts/BarSeries.js +68 -51
  73. package/es-modules/parts/CandlestickSeries.js +1 -1
  74. package/es-modules/parts/Chart.js +31 -55
  75. package/es-modules/parts/Color.js +29 -18
  76. package/es-modules/parts/ColumnSeries.js +264 -142
  77. package/es-modules/parts/DataGrouping.js +9 -6
  78. package/es-modules/parts/DataLabels.js +261 -210
  79. package/es-modules/parts/DateTimeAxis.js +26 -7
  80. package/es-modules/parts/Dynamics.js +5 -2
  81. package/es-modules/parts/FlagsSeries.js +1 -1
  82. package/es-modules/parts/Globals.js +1 -1
  83. package/es-modules/parts/Html.js +64 -12
  84. package/es-modules/parts/Interaction.js +187 -63
  85. package/es-modules/parts/Legend.js +7 -3
  86. package/es-modules/parts/LogarithmicAxis.js +35 -4
  87. package/es-modules/parts/MSPointer.js +1 -1
  88. package/es-modules/parts/Navigator.js +27 -5
  89. package/es-modules/parts/OHLCSeries.js +1 -1
  90. package/es-modules/parts/Options.js +15 -13
  91. package/es-modules/parts/OrdinalAxis.js +1 -1
  92. package/es-modules/parts/PieSeries.js +256 -140
  93. package/es-modules/parts/PlotBandSeries.experimental.js +1 -1
  94. package/es-modules/parts/PlotLineOrBand.js +7 -40
  95. package/es-modules/parts/Point.js +28 -4
  96. package/es-modules/parts/Pointer.js +8 -6
  97. package/es-modules/parts/RangeSelector.js +1 -1
  98. package/es-modules/parts/Responsive.js +82 -36
  99. package/es-modules/parts/ScatterSeries.js +57 -25
  100. package/es-modules/parts/ScrollablePlotArea.js +17 -7
  101. package/es-modules/parts/Scrollbar.js +9 -2
  102. package/es-modules/parts/Series.js +22 -9
  103. package/es-modules/parts/SplineSeries.js +51 -29
  104. package/es-modules/parts/Stacking.js +100 -6
  105. package/es-modules/parts/StockChart.js +9 -3
  106. package/es-modules/parts/SvgRenderer.js +15 -10
  107. package/es-modules/parts/Tick.js +150 -30
  108. package/es-modules/parts/Time.js +23 -5
  109. package/es-modules/parts/Tooltip.js +2 -2
  110. package/es-modules/parts/TouchPointer.js +1 -1
  111. package/es-modules/parts/Utilities.js +16 -1
  112. package/es-modules/parts-3d/Axis.js +1 -1
  113. package/es-modules/parts-3d/Chart.js +1 -1
  114. package/es-modules/parts-3d/Column.js +1 -1
  115. package/es-modules/parts-3d/Math.js +1 -1
  116. package/es-modules/parts-3d/Pie.js +1 -1
  117. package/es-modules/parts-3d/SVGRenderer.js +1 -1
  118. package/es-modules/parts-3d/Scatter.js +1 -1
  119. package/es-modules/parts-3d/Series.js +1 -1
  120. package/es-modules/parts-3d/VMLRenderer.js +1 -1
  121. package/es-modules/parts-gantt/ArrowSymbols.js +110 -0
  122. package/es-modules/parts-gantt/CurrentDateIndicator.js +92 -0
  123. package/es-modules/parts-gantt/GanttChart.js +111 -0
  124. package/es-modules/parts-gantt/GanttSeries.js +376 -0
  125. package/es-modules/parts-gantt/GridAxis.js +965 -0
  126. package/es-modules/parts-gantt/Pathfinder.js +1247 -0
  127. package/es-modules/parts-gantt/PathfinderAlgorithms.js +746 -0
  128. package/es-modules/parts-gantt/Tree.js +146 -0
  129. package/es-modules/parts-gantt/TreeGrid.js +917 -0
  130. package/es-modules/parts-map/ColorAxis.js +1 -1
  131. package/es-modules/parts-map/ColorSeriesMixin.js +1 -1
  132. package/es-modules/parts-map/GeoJSON.js +1 -1
  133. package/es-modules/parts-map/HeatmapSeries.js +124 -53
  134. package/es-modules/parts-map/Map.js +1 -1
  135. package/es-modules/parts-map/MapAxis.js +1 -1
  136. package/es-modules/parts-map/MapBubbleSeries.js +1 -1
  137. package/es-modules/parts-map/MapLineSeries.js +1 -1
  138. package/es-modules/parts-map/MapNavigation.js +1 -1
  139. package/es-modules/parts-map/MapPointSeries.js +1 -1
  140. package/es-modules/parts-map/MapPointer.js +1 -1
  141. package/es-modules/parts-map/MapSeries.js +2 -2
  142. package/es-modules/parts-more/AreaRangeSeries.js +80 -38
  143. package/es-modules/parts-more/AreaSplineRangeSeries.js +1 -1
  144. package/es-modules/parts-more/BoxPlotSeries.js +1 -1
  145. package/es-modules/parts-more/BubbleSeries.js +1 -1
  146. package/es-modules/parts-more/ColumnRangeSeries.js +1 -1
  147. package/es-modules/parts-more/ErrorBarSeries.js +1 -1
  148. package/es-modules/parts-more/GaugeSeries.js +1 -1
  149. package/es-modules/parts-more/Pane.js +2 -1
  150. package/es-modules/parts-more/Polar.js +1 -1
  151. package/es-modules/parts-more/PolygonSeries.js +1 -1
  152. package/es-modules/parts-more/RadialAxis.js +5 -4
  153. package/es-modules/parts-more/WaterfallSeries.js +1 -1
  154. package/es-modules/supplemental.docs.js +0 -1955
  155. package/es-modules/themes/dark-blue.js +1 -1
  156. package/es-modules/themes/dark-green.js +1 -1
  157. package/es-modules/themes/dark-unica.js +1 -1
  158. package/es-modules/themes/gray.js +1 -1
  159. package/es-modules/themes/grid-light.js +1 -1
  160. package/es-modules/themes/grid.js +1 -1
  161. package/es-modules/themes/sand-signika.js +1 -1
  162. package/es-modules/themes/skies.js +1 -1
  163. package/highcharts-3d.js +1 -1
  164. package/highcharts-3d.src.js +10 -10
  165. package/highcharts-gantt.js +503 -0
  166. package/highcharts-gantt.js.map +1 -0
  167. package/highcharts-gantt.src.js +49289 -0
  168. package/highcharts-more.js +65 -64
  169. package/highcharts-more.js.map +1 -1
  170. package/highcharts-more.src.js +97 -53
  171. package/highcharts.js +415 -410
  172. package/highcharts.js.map +1 -1
  173. package/highcharts.src.js +2170 -1128
  174. package/highmaps.js +443 -438
  175. package/highmaps.js.map +1 -1
  176. package/highmaps.src.js +1647 -849
  177. package/highstock.js +553 -548
  178. package/highstock.js.map +1 -1
  179. package/highstock.src.js +2398 -1283
  180. package/indicators/accumulation-distribution.js +1 -1
  181. package/indicators/accumulation-distribution.src.js +1 -1
  182. package/indicators/atr.js +1 -1
  183. package/indicators/atr.src.js +1 -1
  184. package/indicators/bollinger-bands.js +1 -1
  185. package/indicators/bollinger-bands.src.js +1 -1
  186. package/indicators/cci.js +1 -1
  187. package/indicators/cci.src.js +1 -1
  188. package/indicators/cmf.js +1 -1
  189. package/indicators/cmf.src.js +1 -1
  190. package/indicators/ema.js +1 -1
  191. package/indicators/ema.src.js +1 -1
  192. package/indicators/ichimoku-kinko-hyo.js +1 -1
  193. package/indicators/ichimoku-kinko-hyo.src.js +1 -1
  194. package/indicators/indicators.js +1 -1
  195. package/indicators/indicators.src.js +1 -1
  196. package/indicators/macd.js +1 -1
  197. package/indicators/macd.src.js +1 -1
  198. package/indicators/mfi.js +1 -1
  199. package/indicators/mfi.src.js +1 -1
  200. package/indicators/momentum.js +1 -1
  201. package/indicators/momentum.src.js +2 -2
  202. package/indicators/pivot-points.js +4 -4
  203. package/indicators/pivot-points.js.map +1 -1
  204. package/indicators/pivot-points.src.js +7 -2
  205. package/indicators/price-envelopes.js +1 -1
  206. package/indicators/price-envelopes.src.js +1 -1
  207. package/indicators/psar.js +1 -1
  208. package/indicators/psar.src.js +1 -1
  209. package/indicators/roc.js +1 -1
  210. package/indicators/roc.src.js +1 -1
  211. package/indicators/rsi.js +1 -1
  212. package/indicators/rsi.src.js +1 -1
  213. package/indicators/stochastic.js +1 -1
  214. package/indicators/stochastic.src.js +1 -1
  215. package/indicators/volume-by-price.js +1 -1
  216. package/indicators/volume-by-price.src.js +1 -1
  217. package/indicators/vwap.js +1 -1
  218. package/indicators/vwap.src.js +1 -1
  219. package/indicators/wma.js +1 -1
  220. package/indicators/wma.src.js +1 -1
  221. package/indicators/zigzag.js +1 -1
  222. package/indicators/zigzag.src.js +1 -1
  223. package/js/es-modules/indicators/momentum.src.js +1 -1
  224. package/js/es-modules/indicators/pivot-points.src.js +6 -1
  225. package/js/es-modules/masters/highcharts-gantt.src.js +11 -0
  226. package/js/es-modules/masters/modules/annotations.src.js +1 -1
  227. package/js/es-modules/masters/modules/arrow-symbols.src.js +12 -0
  228. package/js/es-modules/masters/modules/broken-axis.src.js +1 -1
  229. package/js/es-modules/masters/modules/current-date-indicator.src.js +12 -0
  230. package/js/es-modules/masters/modules/data.src.js +1 -1
  231. package/js/es-modules/masters/modules/draggable-points.src.js +9 -0
  232. package/js/es-modules/masters/modules/export-data.src.js +1 -1
  233. package/js/es-modules/masters/modules/exporting.src.js +1 -1
  234. package/js/es-modules/masters/modules/funnel.src.js +1 -1
  235. package/js/es-modules/masters/modules/gantt.src.js +2 -1
  236. package/js/es-modules/masters/modules/grid-axis.src.js +1 -1
  237. package/js/es-modules/masters/modules/heatmap.src.js +1 -1
  238. package/js/es-modules/masters/modules/item-series.src.js +1 -1
  239. package/js/es-modules/masters/modules/map.src.js +1 -1
  240. package/js/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  241. package/js/es-modules/masters/modules/pathfinder.src.js +12 -0
  242. package/js/es-modules/masters/modules/sankey.src.js +1 -1
  243. package/js/es-modules/masters/modules/series-label.src.js +1 -1
  244. package/js/es-modules/masters/modules/solid-gauge.src.js +1 -1
  245. package/js/es-modules/masters/modules/stock.src.js +1 -1
  246. package/js/es-modules/masters/modules/streamgraph.src.js +1 -1
  247. package/js/es-modules/masters/modules/treegrid.src.js +12 -0
  248. package/js/es-modules/masters/modules/variwide.src.js +1 -1
  249. package/js/es-modules/masters/modules/vector.src.js +1 -1
  250. package/js/es-modules/masters/modules/windbarb.src.js +1 -1
  251. package/js/es-modules/masters/modules/xrange.src.js +1 -1
  252. package/js/es-modules/masters/themes/dark-blue.src.js +1 -1
  253. package/js/es-modules/masters/themes/dark-green.src.js +1 -1
  254. package/js/es-modules/masters/themes/dark-unica.src.js +1 -1
  255. package/js/es-modules/masters/themes/gray.src.js +1 -1
  256. package/js/es-modules/masters/themes/grid-light.src.js +1 -1
  257. package/js/es-modules/masters/themes/grid.src.js +1 -1
  258. package/js/es-modules/masters/themes/sand-signika.src.js +1 -1
  259. package/js/es-modules/masters/themes/skies.src.js +1 -1
  260. package/js/es-modules/mixins/centered-series.js +1 -1
  261. package/js/es-modules/mixins/on-series.js +1 -1
  262. package/js/es-modules/modules/boost.src.js +22 -14
  263. package/js/es-modules/modules/broken-axis.src.js +169 -134
  264. package/js/es-modules/modules/data.src.js +2 -2
  265. package/js/es-modules/modules/draggable-points.src.js +2257 -0
  266. package/js/es-modules/modules/drilldown.src.js +1 -0
  267. package/js/es-modules/modules/export-data.src.js +1 -1
  268. package/js/es-modules/modules/exporting.src.js +1 -1
  269. package/js/es-modules/modules/funnel.src.js +1 -1
  270. package/js/es-modules/modules/item-series.src.js +1 -1
  271. package/js/es-modules/modules/no-data-to-display.src.js +5 -5
  272. package/js/es-modules/modules/oldie.src.js +1 -1
  273. package/js/es-modules/modules/overlapping-datalabels.src.js +38 -22
  274. package/js/es-modules/modules/parallel-coordinates.src.js +3 -2
  275. package/js/es-modules/modules/sankey.src.js +1 -1
  276. package/js/es-modules/modules/series-label.src.js +2 -2
  277. package/js/es-modules/modules/solid-gauge.src.js +1 -1
  278. package/js/es-modules/modules/static-scale.src.js +67 -28
  279. package/js/es-modules/modules/streamgraph.src.js +1 -1
  280. package/js/es-modules/modules/tilemap.src.js +231 -134
  281. package/js/es-modules/modules/variwide.src.js +1 -1
  282. package/js/es-modules/modules/vector.src.js +92 -22
  283. package/js/es-modules/modules/windbarb.src.js +1 -1
  284. package/js/es-modules/modules/xrange.src.js +255 -68
  285. package/js/es-modules/parts/AreaSeries.js +77 -77
  286. package/js/es-modules/parts/AreaSplineSeries.js +64 -27
  287. package/js/es-modules/parts/Axis.js +160 -67
  288. package/js/es-modules/parts/BarSeries.js +68 -51
  289. package/js/es-modules/parts/CandlestickSeries.js +1 -1
  290. package/js/es-modules/parts/Chart.js +31 -55
  291. package/js/es-modules/parts/Color.js +29 -18
  292. package/js/es-modules/parts/ColumnSeries.js +231 -123
  293. package/js/es-modules/parts/DataGrouping.js +9 -6
  294. package/js/es-modules/parts/DataLabels.js +230 -182
  295. package/js/es-modules/parts/DateTimeAxis.js +26 -7
  296. package/js/es-modules/parts/Dynamics.js +5 -2
  297. package/js/es-modules/parts/FlagsSeries.js +1 -1
  298. package/js/es-modules/parts/Globals.js +1 -1
  299. package/js/es-modules/parts/Html.js +64 -12
  300. package/js/es-modules/parts/Interaction.js +178 -61
  301. package/js/es-modules/parts/Legend.js +7 -3
  302. package/js/es-modules/parts/LogarithmicAxis.js +35 -4
  303. package/js/es-modules/parts/MSPointer.js +1 -1
  304. package/js/es-modules/parts/Navigator.js +27 -5
  305. package/js/es-modules/parts/OHLCSeries.js +1 -1
  306. package/js/es-modules/parts/Options.js +13 -12
  307. package/js/es-modules/parts/OrdinalAxis.js +1 -1
  308. package/js/es-modules/parts/PieSeries.js +245 -132
  309. package/js/es-modules/parts/PlotBandSeries.experimental.js +1 -1
  310. package/js/es-modules/parts/PlotLineOrBand.js +7 -40
  311. package/js/es-modules/parts/Point.js +28 -4
  312. package/js/es-modules/parts/Pointer.js +8 -6
  313. package/js/es-modules/parts/RangeSelector.js +1 -1
  314. package/js/es-modules/parts/Responsive.js +82 -36
  315. package/js/es-modules/parts/ScatterSeries.js +56 -25
  316. package/js/es-modules/parts/ScrollablePlotArea.js +17 -7
  317. package/js/es-modules/parts/Scrollbar.js +9 -2
  318. package/js/es-modules/parts/Series.js +22 -9
  319. package/js/es-modules/parts/SplineSeries.js +51 -29
  320. package/js/es-modules/parts/Stacking.js +100 -6
  321. package/js/es-modules/parts/StockChart.js +9 -3
  322. package/js/es-modules/parts/SvgRenderer.js +15 -10
  323. package/js/es-modules/parts/Tick.js +150 -30
  324. package/js/es-modules/parts/Time.js +23 -5
  325. package/js/es-modules/parts/Tooltip.js +2 -2
  326. package/js/es-modules/parts/TouchPointer.js +1 -1
  327. package/js/es-modules/parts/Utilities.js +16 -1
  328. package/js/es-modules/parts-3d/Axis.js +1 -1
  329. package/js/es-modules/parts-3d/Chart.js +1 -1
  330. package/js/es-modules/parts-3d/Column.js +1 -1
  331. package/js/es-modules/parts-3d/Math.js +1 -1
  332. package/js/es-modules/parts-3d/Pie.js +1 -1
  333. package/js/es-modules/parts-3d/SVGRenderer.js +1 -1
  334. package/js/es-modules/parts-3d/Scatter.js +1 -1
  335. package/js/es-modules/parts-3d/Series.js +1 -1
  336. package/js/es-modules/parts-3d/VMLRenderer.js +1 -1
  337. package/js/es-modules/parts-gantt/ArrowSymbols.js +110 -0
  338. package/js/es-modules/parts-gantt/CurrentDateIndicator.js +92 -0
  339. package/js/es-modules/parts-gantt/GanttChart.js +111 -0
  340. package/js/es-modules/parts-gantt/GanttSeries.js +371 -0
  341. package/js/es-modules/parts-gantt/GridAxis.js +962 -0
  342. package/js/es-modules/parts-gantt/Pathfinder.js +1225 -0
  343. package/js/es-modules/parts-gantt/PathfinderAlgorithms.js +746 -0
  344. package/js/es-modules/parts-gantt/Tree.js +146 -0
  345. package/js/es-modules/parts-gantt/TreeGrid.js +891 -0
  346. package/js/es-modules/parts-map/ColorAxis.js +1 -1
  347. package/js/es-modules/parts-map/ColorSeriesMixin.js +1 -1
  348. package/js/es-modules/parts-map/GeoJSON.js +1 -1
  349. package/js/es-modules/parts-map/HeatmapSeries.js +122 -52
  350. package/js/es-modules/parts-map/Map.js +1 -1
  351. package/js/es-modules/parts-map/MapAxis.js +1 -1
  352. package/js/es-modules/parts-map/MapBubbleSeries.js +1 -1
  353. package/js/es-modules/parts-map/MapLineSeries.js +1 -1
  354. package/js/es-modules/parts-map/MapNavigation.js +1 -1
  355. package/js/es-modules/parts-map/MapPointSeries.js +1 -1
  356. package/js/es-modules/parts-map/MapPointer.js +1 -1
  357. package/js/es-modules/parts-map/MapSeries.js +2 -2
  358. package/js/es-modules/parts-more/AreaRangeSeries.js +80 -38
  359. package/js/es-modules/parts-more/AreaSplineRangeSeries.js +1 -1
  360. package/js/es-modules/parts-more/BoxPlotSeries.js +1 -1
  361. package/js/es-modules/parts-more/BubbleSeries.js +1 -1
  362. package/js/es-modules/parts-more/ColumnRangeSeries.js +1 -1
  363. package/js/es-modules/parts-more/ErrorBarSeries.js +1 -1
  364. package/js/es-modules/parts-more/GaugeSeries.js +1 -1
  365. package/js/es-modules/parts-more/Pane.js +2 -1
  366. package/js/es-modules/parts-more/Polar.js +1 -1
  367. package/js/es-modules/parts-more/PolygonSeries.js +1 -1
  368. package/js/es-modules/parts-more/RadialAxis.js +5 -4
  369. package/js/es-modules/parts-more/WaterfallSeries.js +1 -1
  370. package/js/es-modules/supplemental.docs.js +0 -1955
  371. package/js/es-modules/themes/dark-blue.js +1 -1
  372. package/js/es-modules/themes/dark-green.js +1 -1
  373. package/js/es-modules/themes/dark-unica.js +1 -1
  374. package/js/es-modules/themes/gray.js +1 -1
  375. package/js/es-modules/themes/grid-light.js +1 -1
  376. package/js/es-modules/themes/grid.js +1 -1
  377. package/js/es-modules/themes/sand-signika.js +1 -1
  378. package/js/es-modules/themes/skies.js +1 -1
  379. package/js/highcharts-3d.js +1 -1
  380. package/js/highcharts-3d.src.js +10 -10
  381. package/js/highcharts-gantt.js +480 -0
  382. package/js/highcharts-gantt.js.map +1 -0
  383. package/js/highcharts-gantt.src.js +47011 -0
  384. package/js/highcharts-more.js +62 -61
  385. package/js/highcharts-more.js.map +1 -1
  386. package/js/highcharts-more.src.js +97 -53
  387. package/js/highcharts.js +394 -390
  388. package/js/highcharts.js.map +1 -1
  389. package/js/highcharts.src.js +2083 -1070
  390. package/js/highmaps.js +420 -416
  391. package/js/highmaps.js.map +1 -1
  392. package/js/highmaps.src.js +1569 -798
  393. package/js/highstock.js +526 -520
  394. package/js/highstock.js.map +1 -1
  395. package/js/highstock.src.js +2311 -1225
  396. package/js/indicators/accumulation-distribution.js +1 -1
  397. package/js/indicators/accumulation-distribution.src.js +1 -1
  398. package/js/indicators/atr.js +1 -1
  399. package/js/indicators/atr.src.js +1 -1
  400. package/js/indicators/bollinger-bands.js +1 -1
  401. package/js/indicators/bollinger-bands.src.js +1 -1
  402. package/js/indicators/cci.js +1 -1
  403. package/js/indicators/cci.src.js +1 -1
  404. package/js/indicators/cmf.js +1 -1
  405. package/js/indicators/cmf.src.js +1 -1
  406. package/js/indicators/ema.js +1 -1
  407. package/js/indicators/ema.src.js +1 -1
  408. package/js/indicators/ichimoku-kinko-hyo.js +1 -1
  409. package/js/indicators/ichimoku-kinko-hyo.src.js +1 -1
  410. package/js/indicators/indicators.js +1 -1
  411. package/js/indicators/indicators.src.js +1 -1
  412. package/js/indicators/macd.js +1 -1
  413. package/js/indicators/macd.src.js +1 -1
  414. package/js/indicators/mfi.js +1 -1
  415. package/js/indicators/mfi.src.js +1 -1
  416. package/js/indicators/momentum.js +1 -1
  417. package/js/indicators/momentum.src.js +2 -2
  418. package/js/indicators/pivot-points.js +4 -4
  419. package/js/indicators/pivot-points.js.map +1 -1
  420. package/js/indicators/pivot-points.src.js +7 -2
  421. package/js/indicators/price-envelopes.js +1 -1
  422. package/js/indicators/price-envelopes.src.js +1 -1
  423. package/js/indicators/psar.js +1 -1
  424. package/js/indicators/psar.src.js +1 -1
  425. package/js/indicators/roc.js +1 -1
  426. package/js/indicators/roc.src.js +1 -1
  427. package/js/indicators/rsi.js +1 -1
  428. package/js/indicators/rsi.src.js +1 -1
  429. package/js/indicators/stochastic.js +1 -1
  430. package/js/indicators/stochastic.src.js +1 -1
  431. package/js/indicators/volume-by-price.js +1 -1
  432. package/js/indicators/volume-by-price.src.js +1 -1
  433. package/js/indicators/vwap.js +1 -1
  434. package/js/indicators/vwap.src.js +1 -1
  435. package/js/indicators/wma.js +1 -1
  436. package/js/indicators/wma.src.js +1 -1
  437. package/js/indicators/zigzag.js +1 -1
  438. package/js/indicators/zigzag.src.js +1 -1
  439. package/js/modules/accessibility.js +1 -1
  440. package/js/modules/accessibility.src.js +1 -1
  441. package/js/modules/annotations.js +2 -2
  442. package/js/modules/annotations.src.js +2 -2
  443. package/js/modules/arrow-symbols.js +13 -0
  444. package/js/modules/arrow-symbols.js.map +1 -0
  445. package/js/modules/arrow-symbols.src.js +138 -0
  446. package/js/modules/boost-canvas.js +1 -1
  447. package/js/modules/boost-canvas.src.js +1 -1
  448. package/js/modules/boost.js +43 -43
  449. package/js/modules/boost.js.map +1 -1
  450. package/js/modules/boost.src.js +23 -15
  451. package/js/modules/broken-axis.js +11 -10
  452. package/js/modules/broken-axis.js.map +1 -1
  453. package/js/modules/broken-axis.src.js +171 -136
  454. package/js/modules/bullet.js +1 -1
  455. package/js/modules/bullet.src.js +1 -1
  456. package/js/modules/current-date-indicator.js +13 -0
  457. package/js/modules/current-date-indicator.js.map +1 -0
  458. package/js/modules/current-date-indicator.src.js +120 -0
  459. package/js/modules/data.js +2 -2
  460. package/js/modules/data.src.js +4 -4
  461. package/js/modules/drag-panes.js +1 -1
  462. package/js/modules/drag-panes.src.js +1 -1
  463. package/js/modules/draggable-points.js +38 -0
  464. package/js/modules/draggable-points.js.map +1 -0
  465. package/js/modules/draggable-points.src.js +2281 -0
  466. package/js/modules/drilldown.js +1 -1
  467. package/js/modules/drilldown.js.map +1 -1
  468. package/js/modules/drilldown.src.js +2 -1
  469. package/js/modules/export-data.js +2 -2
  470. package/js/modules/export-data.src.js +3 -3
  471. package/js/modules/exporting.js +2 -2
  472. package/js/modules/exporting.src.js +3 -3
  473. package/js/modules/funnel.js +2 -2
  474. package/js/modules/funnel.src.js +3 -3
  475. package/js/modules/gantt.js +80 -18
  476. package/js/modules/gantt.js.map +1 -1
  477. package/js/modules/gantt.src.js +5490 -372
  478. package/js/modules/grid-axis.js +15 -11
  479. package/js/modules/grid-axis.js.map +1 -1
  480. package/js/modules/grid-axis.src.js +731 -293
  481. package/js/modules/heatmap.js +2 -2
  482. package/js/modules/heatmap.js.map +1 -1
  483. package/js/modules/heatmap.src.js +126 -56
  484. package/js/modules/histogram-bellcurve.js +1 -1
  485. package/js/modules/histogram-bellcurve.src.js +1 -1
  486. package/js/modules/item-series.js +2 -2
  487. package/js/modules/item-series.src.js +3 -3
  488. package/js/modules/map.js +2 -2
  489. package/js/modules/map.js.map +1 -1
  490. package/js/modules/map.src.js +137 -67
  491. package/js/modules/no-data-to-display.js +1 -1
  492. package/js/modules/no-data-to-display.src.js +6 -6
  493. package/js/modules/offline-exporting.js +2 -2
  494. package/js/modules/offline-exporting.src.js +2 -2
  495. package/js/modules/oldie.js +2 -2
  496. package/js/modules/oldie.src.js +3 -3
  497. package/js/modules/overlapping-datalabels.js +2 -2
  498. package/js/modules/overlapping-datalabels.src.js +2 -2
  499. package/js/modules/parallel-coordinates.js +9 -9
  500. package/js/modules/parallel-coordinates.js.map +1 -1
  501. package/js/modules/parallel-coordinates.src.js +4 -3
  502. package/js/modules/pareto.js +1 -1
  503. package/js/modules/pareto.src.js +1 -1
  504. package/js/modules/pathfinder.js +34 -0
  505. package/js/modules/pathfinder.js.map +1 -0
  506. package/js/modules/pathfinder.src.js +2106 -0
  507. package/js/modules/pattern-fill.js +1 -1
  508. package/js/modules/pattern-fill.src.js +1 -1
  509. package/js/modules/sankey.js +2 -2
  510. package/js/modules/sankey.src.js +3 -3
  511. package/js/modules/series-label.js +2 -2
  512. package/js/modules/series-label.src.js +4 -4
  513. package/js/modules/solid-gauge.js +2 -2
  514. package/js/modules/solid-gauge.src.js +3 -3
  515. package/js/modules/static-scale.js +3 -3
  516. package/js/modules/static-scale.js.map +1 -1
  517. package/js/modules/static-scale.src.js +65 -26
  518. package/js/modules/stock.js +135 -134
  519. package/js/modules/stock.js.map +1 -1
  520. package/js/modules/stock.src.js +230 -157
  521. package/js/modules/streamgraph.js +2 -2
  522. package/js/modules/streamgraph.src.js +3 -3
  523. package/js/modules/sunburst.js +1 -1
  524. package/js/modules/sunburst.src.js +1 -1
  525. package/js/modules/tilemap.js +1 -1
  526. package/js/modules/tilemap.js.map +1 -1
  527. package/js/modules/tilemap.src.js +355 -188
  528. package/js/modules/treegrid.js +51 -0
  529. package/js/modules/treegrid.js.map +1 -0
  530. package/js/modules/treegrid.src.js +2759 -0
  531. package/js/modules/treemap.js +1 -1
  532. package/js/modules/treemap.src.js +1 -1
  533. package/js/modules/variable-pie.js +1 -1
  534. package/js/modules/variable-pie.src.js +1 -1
  535. package/js/modules/variwide.js +2 -2
  536. package/js/modules/variwide.src.js +3 -3
  537. package/js/modules/vector.js +2 -2
  538. package/js/modules/vector.js.map +1 -1
  539. package/js/modules/vector.src.js +94 -24
  540. package/js/modules/windbarb.js +2 -2
  541. package/js/modules/windbarb.src.js +4 -4
  542. package/js/modules/wordcloud.js +1 -1
  543. package/js/modules/wordcloud.src.js +1 -1
  544. package/js/modules/xrange.js +11 -10
  545. package/js/modules/xrange.js.map +1 -1
  546. package/js/modules/xrange.src.js +257 -70
  547. package/js/themes/avocado.js +1 -1
  548. package/js/themes/avocado.src.js +1 -1
  549. package/js/themes/dark-blue.js +2 -2
  550. package/js/themes/dark-blue.src.js +3 -3
  551. package/js/themes/dark-green.js +2 -2
  552. package/js/themes/dark-green.src.js +3 -3
  553. package/js/themes/dark-unica.js +2 -2
  554. package/js/themes/dark-unica.src.js +3 -3
  555. package/js/themes/gray.js +2 -2
  556. package/js/themes/gray.src.js +3 -3
  557. package/js/themes/grid-light.js +2 -2
  558. package/js/themes/grid-light.src.js +3 -3
  559. package/js/themes/grid.js +2 -2
  560. package/js/themes/grid.src.js +3 -3
  561. package/js/themes/sand-signika.js +2 -2
  562. package/js/themes/sand-signika.src.js +3 -3
  563. package/js/themes/skies.js +2 -2
  564. package/js/themes/skies.src.js +3 -3
  565. package/js/themes/sunset.js +1 -1
  566. package/js/themes/sunset.src.js +1 -1
  567. package/modules/accessibility.js +1 -1
  568. package/modules/accessibility.src.js +1 -1
  569. package/modules/annotations.js +2 -2
  570. package/modules/annotations.src.js +2 -2
  571. package/modules/arrow-symbols.js +13 -0
  572. package/modules/arrow-symbols.js.map +1 -0
  573. package/modules/arrow-symbols.src.js +138 -0
  574. package/modules/boost-canvas.js +1 -1
  575. package/modules/boost-canvas.src.js +1 -1
  576. package/modules/boost.js +36 -36
  577. package/modules/boost.js.map +1 -1
  578. package/modules/boost.src.js +23 -15
  579. package/modules/broken-axis.js +11 -10
  580. package/modules/broken-axis.js.map +1 -1
  581. package/modules/broken-axis.src.js +171 -136
  582. package/modules/bullet.js +1 -1
  583. package/modules/bullet.src.js +1 -1
  584. package/modules/current-date-indicator.js +13 -0
  585. package/modules/current-date-indicator.js.map +1 -0
  586. package/modules/current-date-indicator.src.js +120 -0
  587. package/modules/data.js +2 -2
  588. package/modules/data.src.js +4 -4
  589. package/modules/drag-panes.js +1 -1
  590. package/modules/drag-panes.src.js +1 -1
  591. package/modules/draggable-points.js +38 -0
  592. package/modules/draggable-points.js.map +1 -0
  593. package/modules/draggable-points.src.js +2281 -0
  594. package/modules/drilldown.js +1 -1
  595. package/modules/drilldown.js.map +1 -1
  596. package/modules/drilldown.src.js +2 -1
  597. package/modules/export-data.js +2 -2
  598. package/modules/export-data.src.js +3 -3
  599. package/modules/exporting.js +2 -2
  600. package/modules/exporting.src.js +3 -3
  601. package/modules/funnel.js +2 -2
  602. package/modules/funnel.src.js +3 -3
  603. package/modules/gantt.js +83 -19
  604. package/modules/gantt.js.map +1 -1
  605. package/modules/gantt.src.js +5553 -379
  606. package/modules/grid-axis.js +16 -11
  607. package/modules/grid-axis.js.map +1 -1
  608. package/modules/grid-axis.src.js +732 -293
  609. package/modules/heatmap.js +2 -2
  610. package/modules/heatmap.js.map +1 -1
  611. package/modules/heatmap.src.js +128 -57
  612. package/modules/histogram-bellcurve.js +1 -1
  613. package/modules/histogram-bellcurve.src.js +1 -1
  614. package/modules/item-series.js +2 -2
  615. package/modules/item-series.src.js +3 -3
  616. package/modules/map.js +2 -2
  617. package/modules/map.js.map +1 -1
  618. package/modules/map.src.js +139 -68
  619. package/modules/no-data-to-display.js +1 -1
  620. package/modules/no-data-to-display.src.js +6 -6
  621. package/modules/offline-exporting.js +2 -2
  622. package/modules/offline-exporting.src.js +2 -2
  623. package/modules/oldie.js +2 -2
  624. package/modules/oldie.src.js +3 -3
  625. package/modules/overlapping-datalabels.js +2 -2
  626. package/modules/overlapping-datalabels.src.js +2 -2
  627. package/modules/parallel-coordinates.js +8 -8
  628. package/modules/parallel-coordinates.js.map +1 -1
  629. package/modules/parallel-coordinates.src.js +4 -3
  630. package/modules/pareto.js +1 -1
  631. package/modules/pareto.src.js +1 -1
  632. package/modules/pathfinder.js +35 -0
  633. package/modules/pathfinder.js.map +1 -0
  634. package/modules/pathfinder.src.js +2128 -0
  635. package/modules/pattern-fill.js +1 -1
  636. package/modules/pattern-fill.src.js +1 -1
  637. package/modules/sankey.js +2 -2
  638. package/modules/sankey.src.js +3 -3
  639. package/modules/series-label.js +2 -2
  640. package/modules/series-label.src.js +4 -4
  641. package/modules/solid-gauge.js +2 -2
  642. package/modules/solid-gauge.src.js +3 -3
  643. package/modules/static-scale.js +3 -3
  644. package/modules/static-scale.js.map +1 -1
  645. package/modules/static-scale.src.js +65 -26
  646. package/modules/stock.js +142 -142
  647. package/modules/stock.js.map +1 -1
  648. package/modules/stock.src.js +230 -157
  649. package/modules/streamgraph.js +2 -2
  650. package/modules/streamgraph.src.js +3 -3
  651. package/modules/sunburst.js +1 -1
  652. package/modules/sunburst.src.js +1 -1
  653. package/modules/tilemap.js +1 -1
  654. package/modules/tilemap.js.map +1 -1
  655. package/modules/tilemap.src.js +357 -189
  656. package/modules/treegrid.js +52 -0
  657. package/modules/treegrid.js.map +1 -0
  658. package/modules/treegrid.src.js +2797 -0
  659. package/modules/treemap.js +1 -1
  660. package/modules/treemap.src.js +1 -1
  661. package/modules/variable-pie.js +1 -1
  662. package/modules/variable-pie.src.js +1 -1
  663. package/modules/variwide.js +2 -2
  664. package/modules/variwide.src.js +3 -3
  665. package/modules/vector.js +2 -2
  666. package/modules/vector.js.map +1 -1
  667. package/modules/vector.src.js +94 -24
  668. package/modules/windbarb.js +2 -2
  669. package/modules/windbarb.src.js +4 -4
  670. package/modules/wordcloud.js +1 -1
  671. package/modules/wordcloud.src.js +1 -1
  672. package/modules/xrange.js +12 -11
  673. package/modules/xrange.js.map +1 -1
  674. package/modules/xrange.src.js +259 -79
  675. package/package.json +1 -1
  676. package/themes/avocado.js +1 -1
  677. package/themes/avocado.src.js +1 -1
  678. package/themes/dark-blue.js +2 -2
  679. package/themes/dark-blue.src.js +3 -3
  680. package/themes/dark-green.js +2 -2
  681. package/themes/dark-green.src.js +3 -3
  682. package/themes/dark-unica.js +2 -2
  683. package/themes/dark-unica.src.js +3 -3
  684. package/themes/gray.js +2 -2
  685. package/themes/gray.src.js +3 -3
  686. package/themes/grid-light.js +2 -2
  687. package/themes/grid-light.src.js +3 -3
  688. package/themes/grid.js +2 -2
  689. package/themes/grid.src.js +3 -3
  690. package/themes/sand-signika.js +2 -2
  691. package/themes/sand-signika.src.js +3 -3
  692. package/themes/skies.js +2 -2
  693. package/themes/skies.src.js +3 -3
  694. package/themes/sunset.js +1 -1
  695. package/themes/sunset.src.js +1 -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
  */
@@ -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
  */
@@ -74,6 +74,9 @@ H.PlotLineOrBand.prototype = {
74
74
  * @return {Highcharts.PlotLineOrBand|undefined}
75
75
  */
76
76
  render: function () {
77
+
78
+ H.fireEvent(this, 'render');
79
+
77
80
  var plotLine = this,
78
81
  axis = plotLine.axis,
79
82
  horiz = axis.horiz,
@@ -319,7 +322,7 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
319
322
  * perimeter of the gauge.
320
323
  *
321
324
  * @type {Array<*>}
322
- * @product highcharts highstock
325
+ * @product highcharts highstock gantt
323
326
  * @apioption xAxis.plotBands
324
327
  */
325
328
 
@@ -327,7 +330,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
327
330
  * Border color for the plot band. Also requires `borderWidth` to be set.
328
331
  *
329
332
  * @type {Highcharts.ColorString}
330
- * @product highcharts highstock
331
333
  * @apioption xAxis.plotBands.borderColor
332
334
  */
333
335
 
@@ -336,7 +338,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
336
338
  *
337
339
  * @type {number}
338
340
  * @default 0
339
- * @product highcharts highstock
340
341
  * @apioption xAxis.plotBands.borderWidth
341
342
  */
342
343
 
@@ -358,7 +359,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
358
359
  * Plot band on Y axis
359
360
  *
360
361
  * @type {Highcharts.ColorString}
361
- * @product highcharts highstock
362
362
  * @apioption xAxis.plotBands.color
363
363
  */
364
364
 
@@ -370,7 +370,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
370
370
  * Mouse events demonstrated
371
371
  *
372
372
  * @since 1.2
373
- * @product highcharts highstock
374
373
  * @context PlotLineOrBand
375
374
  * @apioption xAxis.plotBands.events
376
375
  */
@@ -386,7 +385,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
386
385
  * Plot band on Y axis
387
386
  *
388
387
  * @type {number}
389
- * @product highcharts highstock
390
388
  * @apioption xAxis.plotBands.from
391
389
  */
392
390
 
@@ -399,7 +397,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
399
397
  * Remove plot band by id
400
398
  *
401
399
  * @type {string}
402
- * @product highcharts highstock
403
400
  * @apioption xAxis.plotBands.id
404
401
  */
405
402
 
@@ -414,7 +411,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
414
411
  * Plot band on Y axis
415
412
  *
416
413
  * @type {number}
417
- * @product highcharts highstock
418
414
  * @apioption xAxis.plotBands.to
419
415
  */
420
416
 
@@ -433,14 +429,13 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
433
429
  *
434
430
  * @type {number}
435
431
  * @since 1.2
436
- * @product highcharts highstock
437
432
  * @apioption xAxis.plotBands.zIndex
438
433
  */
439
434
 
440
435
  /**
441
436
  * Text labels for the plot bands
442
437
  *
443
- * @product highcharts highstock
438
+ * @product highcharts highstock gantt
444
439
  * @apioption xAxis.plotBands.label
445
440
  */
446
441
 
@@ -456,7 +451,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
456
451
  * @type {string}
457
452
  * @default center
458
453
  * @since 2.1
459
- * @product highcharts highstock
460
454
  * @apioption xAxis.plotBands.label.align
461
455
  */
462
456
 
@@ -469,7 +463,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
469
463
  * @type {number}
470
464
  * @default 0
471
465
  * @since 2.1
472
- * @product highcharts highstock
473
466
  * @apioption xAxis.plotBands.label.rotation
474
467
  */
475
468
 
@@ -484,7 +477,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
484
477
  *
485
478
  * @type {Highcharts.CSSObject}
486
479
  * @since 2.1
487
- * @product highcharts highstock
488
480
  * @apioption xAxis.plotBands.label.style
489
481
  */
490
482
 
@@ -493,7 +485,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
493
485
  *
494
486
  * @type {string}
495
487
  * @since 2.1
496
- * @product highcharts
497
488
  * @apioption xAxis.plotBands.label.text
498
489
  */
499
490
 
@@ -508,7 +499,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
508
499
  *
509
500
  * @type {string}
510
501
  * @since 2.1
511
- * @product highcharts highstock
512
502
  * @validvalue ["center", "left", "right"]
513
503
  * @apioption xAxis.plotBands.label.textAlign
514
504
  */
@@ -520,7 +510,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
520
510
  * @type {boolean}
521
511
  * @default false
522
512
  * @since 3.0.3
523
- * @product highcharts highstock
524
513
  * @apioption xAxis.plotBands.label.useHTML
525
514
  */
526
515
 
@@ -536,7 +525,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
536
525
  * @type {string}
537
526
  * @default top
538
527
  * @since 2.1
539
- * @product highcharts highstock
540
528
  * @validvalue ["bottom", "middle", "top"]
541
529
  * @apioption xAxis.plotBands.label.verticalAlign
542
530
  */
@@ -552,7 +540,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
552
540
  *
553
541
  * @type {number}
554
542
  * @since 2.1
555
- * @product highcharts highstock
556
543
  * @apioption xAxis.plotBands.label.x
557
544
  */
558
545
 
@@ -567,7 +554,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
567
554
  *
568
555
  * @type {number}
569
556
  * @since 2.1
570
- * @product highcharts highstock
571
557
  * @apioption xAxis.plotBands.label.y
572
558
  */
573
559
 
@@ -579,7 +565,7 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
579
565
  * `.highcharts-plot-line` class in addition to the `className` option.
580
566
  *
581
567
  * @type {Array<*>}
582
- * @product highcharts highstock
568
+ * @product highcharts highstock gantt
583
569
  * @apioption xAxis.plotLines
584
570
  */
585
571
 
@@ -601,7 +587,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
601
587
  * Plot line on Y axis
602
588
  *
603
589
  * @type {Highcharts.ColorString}
604
- * @product highcharts highstock
605
590
  * @apioption xAxis.plotLines.color
606
591
  */
607
592
 
@@ -619,7 +604,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
619
604
  * @type {string}
620
605
  * @default Solid
621
606
  * @since 1.2
622
- * @product highcharts highstock
623
607
  * @validvalue ["Solid", "ShortDash", "ShortDot", "ShortDashDot",
624
608
  * "ShortDashDotDot", "Dot", "Dash" ,"LongDash", "DashDot",
625
609
  * "LongDashDot", "LongDashDotDot"]
@@ -635,7 +619,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
635
619
  *
636
620
  * @type {*}
637
621
  * @since 1.2
638
- * @product highcharts highstock
639
622
  * @context PlotLineOrBand
640
623
  * @apioption xAxis.plotLines.events
641
624
  */
@@ -647,7 +630,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
647
630
  * Remove plot line by id
648
631
  *
649
632
  * @type {string}
650
- * @product highcharts highstock
651
633
  * @apioption xAxis.plotLines.id
652
634
  */
653
635
 
@@ -660,7 +642,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
660
642
  * Plot line on Y axis
661
643
  *
662
644
  * @type {number}
663
- * @product highcharts highstock
664
645
  * @apioption xAxis.plotLines.value
665
646
  */
666
647
 
@@ -673,7 +654,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
673
654
  * Plot line on Y axis
674
655
  *
675
656
  * @type {number}
676
- * @product highcharts highstock
677
657
  * @apioption xAxis.plotLines.width
678
658
  */
679
659
 
@@ -689,14 +669,12 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
689
669
  *
690
670
  * @type {number}
691
671
  * @since 1.2
692
- * @product highcharts highstock
693
672
  * @apioption xAxis.plotLines.zIndex
694
673
  */
695
674
 
696
675
  /**
697
676
  * Text labels for the plot bands
698
677
  *
699
- * @product highcharts highstock
700
678
  * @apioption xAxis.plotLines.label
701
679
  */
702
680
 
@@ -712,7 +690,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
712
690
  * @type {string}
713
691
  * @default left
714
692
  * @since 2.1
715
- * @product highcharts highstock
716
693
  * @validvalue ["center", "left", "right"]
717
694
  * @apioption xAxis.plotLines.label.align
718
695
  */
@@ -726,7 +703,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
726
703
  *
727
704
  * @type {number}
728
705
  * @since 2.1
729
- * @product highcharts highstock
730
706
  * @apioption xAxis.plotLines.label.rotation
731
707
  */
732
708
 
@@ -741,7 +717,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
741
717
  *
742
718
  * @type {Highcharts.CSSObject}
743
719
  * @since 2.1
744
- * @product highcharts highstock
745
720
  * @apioption xAxis.plotLines.label.style
746
721
  */
747
722
 
@@ -750,7 +725,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
750
725
  *
751
726
  * @type {string}
752
727
  * @since 2.1
753
- * @product highcharts
754
728
  * @apioption xAxis.plotLines.label.text
755
729
  */
756
730
 
@@ -765,7 +739,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
765
739
  *
766
740
  * @type {string}
767
741
  * @since 2.1
768
- * @product highcharts highstock
769
742
  * @apioption xAxis.plotLines.label.textAlign
770
743
  */
771
744
 
@@ -776,7 +749,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
776
749
  * @type {boolean}
777
750
  * @default false
778
751
  * @since 3.0.3
779
- * @product highcharts highstock
780
752
  * @apioption xAxis.plotLines.label.useHTML
781
753
  */
782
754
 
@@ -791,7 +763,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
791
763
  * @default {highcharts} top
792
764
  * @default {highstock} top
793
765
  * @since 2.1
794
- * @product highcharts highstock
795
766
  * @validvalue ["top", "middle", "bottom"]
796
767
  * @apioption xAxis.plotLines.label.verticalAlign
797
768
  */
@@ -807,7 +778,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
807
778
  *
808
779
  * @type {number}
809
780
  * @since 2.1
810
- * @product highcharts highstock
811
781
  * @apioption xAxis.plotLines.label.x
812
782
  */
813
783
 
@@ -822,7 +792,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
822
792
  *
823
793
  * @type {number}
824
794
  * @since 2.1
825
- * @product highcharts highstock
826
795
  * @apioption xAxis.plotLines.label.y
827
796
  */
828
797
 
@@ -831,7 +800,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
831
800
  *
832
801
  * @type {Array<*>}
833
802
  * @extends xAxis.plotBands
834
- * @product highcharts highstock
835
803
  * @apioption yAxis.plotBands
836
804
  */
837
805
 
@@ -888,7 +856,6 @@ H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
888
856
  *
889
857
  * @type {Array<*>}
890
858
  * @extends xAxis.plotLines
891
- * @product highcharts highstock
892
859
  * @apioption yAxis.plotLines
893
860
  */
894
861
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * (c) 2010-2017 Torstein Honsi
2
+ * (c) 2010-2018 Torstein Honsi
3
3
  *
4
4
  * License: www.highcharts.com/license
5
5
  */
@@ -48,7 +48,6 @@ import './Utilities.js';
48
48
 
49
49
  var Point,
50
50
  H = Highcharts,
51
-
52
51
  each = H.each,
53
52
  extend = H.extend,
54
53
  erase = H.erase,
@@ -57,6 +56,8 @@ var Point,
57
56
  isArray = H.isArray,
58
57
  isNumber = H.isNumber,
59
58
  pick = H.pick,
59
+ uniqueKey = H.uniqueKey,
60
+ defined = H.defined,
60
61
  removeEvent = H.removeEvent;
61
62
 
62
63
  /**
@@ -120,6 +121,9 @@ Highcharts.Point.prototype = {
120
121
 
121
122
  point.applyOptions(options, x);
122
123
 
124
+ // Add a unique ID to the point if none is assigned
125
+ point.id = defined(point.id) ? point.id : uniqueKey();
126
+
123
127
  if (series.options.colorByPoint) {
124
128
 
125
129
 
@@ -197,6 +201,9 @@ Highcharts.Point.prototype = {
197
201
  if (options.group) {
198
202
  delete point.group;
199
203
  }
204
+ if (options.dataLabels) {
205
+ delete point.dataLabels;
206
+ }
200
207
 
201
208
  /**
202
209
  * The y value of the point.
@@ -436,8 +443,8 @@ Highcharts.Point.prototype = {
436
443
  point.onMouseOut();
437
444
  }
438
445
 
439
- // Remove all events
440
- if (point.graphic || point.dataLabel) {
446
+ // Remove all events and elements
447
+ if (point.graphic || point.dataLabel || point.dataLabels) {
441
448
  removeEvent(point);
442
449
  point.destroyElements();
443
450
  }
@@ -474,6 +481,23 @@ Highcharts.Point.prototype = {
474
481
  point[prop] = point[prop].destroy();
475
482
  }
476
483
  }
484
+ // Handle point.dataLabels and point.connectors
485
+ if (point.dataLabels) {
486
+ each(point.dataLabels, function (label) {
487
+ if (label.element) {
488
+ label.destroy();
489
+ }
490
+ });
491
+ delete point.dataLabels;
492
+ }
493
+ if (point.connectors) {
494
+ each(point.connectors, function (connector) {
495
+ if (connector.element) {
496
+ connector.destroy();
497
+ }
498
+ });
499
+ delete point.connectors;
500
+ }
477
501
  },
478
502
 
479
503
  /**
@@ -1,5 +1,5 @@
1
1
  /**
2
- * (c) 2010-2017 Torstein Honsi
2
+ * (c) 2010-2018 Torstein Honsi
3
3
  *
4
4
  * License: www.highcharts.com/license
5
5
  */
@@ -647,11 +647,13 @@ Highcharts.Pointer.prototype = {
647
647
  if (tooltip.shared && hoverPoints) { // #8284
648
648
  each(hoverPoints, function (point) {
649
649
  point.setState(point.state, true);
650
- if (point.series.xAxis.crosshair) {
651
- point.series.xAxis.drawCrosshair(null, point);
652
- }
653
- if (point.series.yAxis.crosshair) {
654
- point.series.yAxis.drawCrosshair(null, point);
650
+ if (point.series.isCartesian) {
651
+ if (point.series.xAxis.crosshair) {
652
+ point.series.xAxis.drawCrosshair(null, point);
653
+ }
654
+ if (point.series.yAxis.crosshair) {
655
+ point.series.yAxis.drawCrosshair(null, point);
656
+ }
655
657
  }
656
658
  });
657
659
  } else if (hoverPoint) { // #2500
@@ -1,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
  */
@@ -1,12 +1,25 @@
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
  */
6
+
7
+ /**
8
+ * A callback function to gain complete control on when the responsive rule
9
+ * applies.
10
+ *
11
+ * @callback Highcharts.ResponsiveCallbackFunction
12
+ *
13
+ * @return {boolean}
14
+ * Return `true` if it applies.
15
+ */
16
+
6
17
  'use strict';
18
+
7
19
  import H from './Globals.js';
8
20
  import './Chart.js';
9
21
  import './Utilities.js';
22
+
10
23
  var Chart = H.Chart,
11
24
  each = H.each,
12
25
  inArray = H.inArray,
@@ -15,16 +28,20 @@ var Chart = H.Chart,
15
28
  pick = H.pick,
16
29
  splat = H.splat;
17
30
 
18
-
19
31
  /**
20
32
  * Allows setting a set of rules to apply for different screen or chart
21
33
  * sizes. Each rule specifies additional chart options.
22
34
  *
23
- * @sample {highstock} stock/demo/responsive/ Stock chart
24
- * @sample highcharts/responsive/axis/ Axis
25
- * @sample highcharts/responsive/legend/ Legend
26
- * @sample highcharts/responsive/classname/ Class name
27
- * @since 5.0.0
35
+ * @sample {highstock} stock/demo/responsive/
36
+ * Stock chart
37
+ * @sample highcharts/responsive/axis/
38
+ * Axis
39
+ * @sample highcharts/responsive/legend/
40
+ * Legend
41
+ * @sample highcharts/responsive/classname/
42
+ * Class name
43
+ *
44
+ * @since 5.0.0
28
45
  * @apioption responsive
29
46
  */
30
47
 
@@ -32,11 +49,15 @@ var Chart = H.Chart,
32
49
  * A set of rules for responsive settings. The rules are executed from
33
50
  * the top down.
34
51
  *
35
- * @type {Array<Object>}
36
- * @sample {highcharts} highcharts/responsive/axis/ Axis changes
37
- * @sample {highstock} highcharts/responsive/axis/ Axis changes
38
- * @sample {highmaps} highcharts/responsive/axis/ Axis changes
39
- * @since 5.0.0
52
+ * @sample {highcharts} highcharts/responsive/axis/
53
+ * Axis changes
54
+ * @sample {highstock} highcharts/responsive/axis/
55
+ * Axis changes
56
+ * @sample {highmaps} highcharts/responsive/axis/
57
+ * Axis changes
58
+ *
59
+ * @type {Array<*>}
60
+ * @since 5.0.0
40
61
  * @apioption responsive.rules
41
62
  */
42
63
 
@@ -53,20 +74,24 @@ var Chart = H.Chart,
53
74
  * with two series items without an `id`, will cause the existing chart's
54
75
  * two series to be updated with respective options.
55
76
  *
56
- * @type {Object}
57
- * @sample {highstock} stock/demo/responsive/ Stock chart
58
- * @sample highcharts/responsive/axis/ Axis
59
- * @sample highcharts/responsive/legend/ Legend
60
- * @sample highcharts/responsive/classname/ Class name
61
- * @since 5.0.0
77
+ * @sample {highstock} stock/demo/responsive/
78
+ * Stock chart
79
+ * @sample highcharts/responsive/axis/
80
+ * Axis
81
+ * @sample highcharts/responsive/legend/
82
+ * Legend
83
+ * @sample highcharts/responsive/classname/
84
+ * Class name
85
+ *
86
+ * @type {Highcharts.Options}
87
+ * @since 5.0.0
62
88
  * @apioption responsive.rules.chartOptions
63
89
  */
64
90
 
65
91
  /**
66
92
  * Under which conditions the rule applies.
67
93
  *
68
- * @type {Object}
69
- * @since 5.0.0
94
+ * @since 5.0.0
70
95
  * @apioption responsive.rules.condition
71
96
  */
72
97
 
@@ -76,50 +101,57 @@ var Chart = H.Chart,
76
101
  * against other metrics than the chart size, or example the document
77
102
  * size or other elements.
78
103
  *
79
- * @type {Function}
80
- * @context Chart
81
- * @since 5.0.0
104
+ * @type {Highcharts.ResponsiveCallbackFunction}
105
+ * @since 5.0.0
106
+ * @context Highcharts.Chart
82
107
  * @apioption responsive.rules.condition.callback
83
108
  */
84
109
 
85
110
  /**
86
111
  * The responsive rule applies if the chart height is less than this.
87
112
  *
88
- * @type {Number}
89
- * @since 5.0.0
113
+ * @type {number}
114
+ * @since 5.0.0
90
115
  * @apioption responsive.rules.condition.maxHeight
91
116
  */
92
117
 
93
118
  /**
94
119
  * The responsive rule applies if the chart width is less than this.
95
120
  *
96
- * @type {Number}
97
- * @sample highcharts/responsive/axis/ Max width is 500
98
- * @since 5.0.0
121
+ * @sample highcharts/responsive/axis/
122
+ * Max width is 500
123
+ *
124
+ * @type {number}
125
+ * @since 5.0.0
99
126
  * @apioption responsive.rules.condition.maxWidth
100
127
  */
101
128
 
102
129
  /**
103
130
  * The responsive rule applies if the chart height is greater than this.
104
131
  *
105
- * @type {Number}
106
- * @default 0
107
- * @since 5.0.0
132
+ * @type {number}
133
+ * @default 0
134
+ * @since 5.0.0
108
135
  * @apioption responsive.rules.condition.minHeight
109
136
  */
110
137
 
111
138
  /**
112
139
  * The responsive rule applies if the chart width is greater than this.
113
140
  *
114
- * @type {Number}
115
- * @default 0
116
- * @since 5.0.0
141
+ * @type {number}
142
+ * @default 0
143
+ * @since 5.0.0
117
144
  * @apioption responsive.rules.condition.minWidth
118
145
  */
119
146
 
120
147
  /**
121
148
  * Update the chart based on the current chart/document size and options for
122
149
  * responsiveness.
150
+ *
151
+ * @private
152
+ * @function Highcharts.Chart#setResponsive
153
+ *
154
+ * @param {boolean} [redraw=true]
123
155
  */
124
156
  Chart.prototype.setResponsive = function (redraw) {
125
157
  var options = this.options.responsive,
@@ -175,9 +207,17 @@ Chart.prototype.setResponsive = function (redraw) {
175
207
  };
176
208
 
177
209
  /**
178
- * Handle a single responsiveness rule
210
+ * Handle a single responsiveness rule.
211
+ *
212
+ * @private
213
+ * @function Highcharts.Chart#matchResponsiveRule
214
+ *
215
+ * @param {Highcharts.ResponsiveRulesConditionOptions} rule
216
+ *
217
+ * @param {Array<number>} matches
179
218
  */
180
219
  Chart.prototype.matchResponsiveRule = function (rule, matches) {
220
+
181
221
  var condition = rule.condition,
182
222
  fn = condition.callback || function () {
183
223
  return (
@@ -192,13 +232,19 @@ Chart.prototype.matchResponsiveRule = function (rule, matches) {
192
232
  if (fn.call(this)) {
193
233
  matches.push(rule._id);
194
234
  }
195
-
196
235
  };
197
236
 
198
237
  /**
199
238
  * Get the current values for a given set of options. Used before we update
200
239
  * the chart with a new responsiveness rule.
201
240
  * TODO: Restore axis options (by id?)
241
+ *
242
+ * @private
243
+ * @function Highcharts.Chart#currentOptions
244
+ *
245
+ * @param {Highcharts.Options} options
246
+ *
247
+ * @return {Highcharts.Options}
202
248
  */
203
249
  Chart.prototype.currentOptions = function (options) {
204
250