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,9 +1,11 @@
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
+
6
7
  'use strict';
8
+
7
9
  import H from './Globals.js';
8
10
  import './Utilities.js';
9
11
  import './Chart.js';
@@ -11,6 +13,7 @@ import './Options.js';
11
13
  import './Legend.js';
12
14
  import './Point.js';
13
15
  import './Series.js';
16
+
14
17
  var addEvent = H.addEvent,
15
18
  Chart = H.Chart,
16
19
  createElement = H.createElement,
@@ -35,12 +38,18 @@ var addEvent = H.addEvent,
35
38
  /**
36
39
  * TrackerMixin for points and graphs.
37
40
  *
38
- * @ignore
41
+ * @private
42
+ * @mixin Highcharts.TrackerMixin
39
43
  */
40
44
  TrackerMixin = H.TrackerMixin = {
41
45
 
42
46
  /**
43
47
  * Draw the tracker for a point.
48
+ *
49
+ * @private
50
+ * @function Highcharts.TrackerMixin.drawTrackerPoint
51
+ *
52
+ * @fires Highcharts.Series#event:afterDrawTracker
44
53
  */
45
54
  drawTrackerPoint: function () {
46
55
  var series = this,
@@ -103,6 +112,11 @@ TrackerMixin = H.TrackerMixin = {
103
112
  * track mouse events on the graph or points. For the line type charts
104
113
  * the tracker uses the same graphPath, but with a greater stroke width
105
114
  * for better control.
115
+ *
116
+ * @private
117
+ * @function Highcharts.TrackerMixin.drawTrackerGraph
118
+ *
119
+ * @fires Highcharts.Series#event:afterDrawTracker
106
120
  */
107
121
  drawTrackerGraph: function () {
108
122
  var series = this,
@@ -217,28 +231,62 @@ TrackerMixin = H.TrackerMixin = {
217
231
  /* End TrackerMixin */
218
232
 
219
233
 
220
- /**
234
+ /*
221
235
  * Add tracking event listener to the series group, so the point graphics
222
236
  * themselves act as trackers
223
237
  */
224
238
 
225
239
  if (seriesTypes.column) {
240
+ /**
241
+ * @private
242
+ * @borrows Highcharts.TrackerMixin.drawTrackerPoint as Highcharts.seriesTypes.column#drawTracker
243
+ */
226
244
  seriesTypes.column.prototype.drawTracker = TrackerMixin.drawTrackerPoint;
227
245
  }
228
246
 
229
247
  if (seriesTypes.pie) {
248
+ /**
249
+ * @private
250
+ * @borrows Highcharts.TrackerMixin.drawTrackerPoint as Highcharts.seriesTypes.pie#drawTracker
251
+ */
230
252
  seriesTypes.pie.prototype.drawTracker = TrackerMixin.drawTrackerPoint;
231
253
  }
232
254
 
233
255
  if (seriesTypes.scatter) {
256
+ /**
257
+ * @private
258
+ * @borrows Highcharts.TrackerMixin.drawTrackerPoint as Highcharts.seriesTypes.scatter#drawTracker
259
+ */
234
260
  seriesTypes.scatter.prototype.drawTracker = TrackerMixin.drawTrackerPoint;
235
261
  }
236
262
 
237
- /*
238
- * Extend Legend for item events
263
+
264
+
265
+ // Add pointer cursor to legend itemstyle in defaultOptions
266
+ /**
267
+ * @default 'pointer'
268
+ * @apioption legend.itemStyle.cursor
239
269
  */
270
+ defaultOptions.legend.itemStyle.cursor = 'pointer';
271
+
272
+
273
+
274
+ // Extend Legend for item events.
240
275
  extend(Legend.prototype, {
241
276
 
277
+ /**
278
+ * @private
279
+ * @function Highcharts.Legend#setItemEvents
280
+ *
281
+ * @param {Highcharts.Point|Highcharts.Series} item
282
+ *
283
+ * @param {Highcharts.SVGElement} legendItem
284
+ *
285
+ * @param {boolean} [useHTML=false]
286
+ *
287
+ * @fires Highcharts.Point#event:legendItemClick
288
+ * @fires Highcharts.Series#event:legendItemClick
289
+ */
242
290
  setItemEvents: function (item, legendItem, useHTML) {
243
291
  var legend = this,
244
292
  boxWrapper = legend.chart.renderer.boxWrapper,
@@ -300,6 +348,14 @@ extend(Legend.prototype, {
300
348
  });
301
349
  },
302
350
 
351
+ /**
352
+ * @private
353
+ * @function Highcharts.Legend#createCheckboxForItem
354
+ *
355
+ * @param {Highcharts.Point|Highcharts.Series} item
356
+ *
357
+ * @fires Highcharts.Series#event:checkboxClick
358
+ */
303
359
  createCheckboxForItem: function (item) {
304
360
  var legend = this;
305
361
 
@@ -327,22 +383,16 @@ extend(Legend.prototype, {
327
383
  }
328
384
  });
329
385
 
330
-
331
-
332
- // Add pointer cursor to legend itemstyle in defaultOptions
333
- defaultOptions.legend.itemStyle.cursor = 'pointer';
334
-
335
-
336
-
337
- /*
338
- * Extend the Chart object with interaction
339
- */
340
-
386
+ // Extend the Chart object with interaction.
341
387
  extend(Chart.prototype, /** @lends Chart.prototype */ {
388
+
342
389
  /**
343
390
  * Display the zoom button.
344
391
  *
345
392
  * @private
393
+ * @function Highcharts.Chart#showResetZoom
394
+ *
395
+ * @fires Highcharts.Chart#event:beforeShowResetZoom
346
396
  */
347
397
  showResetZoom: function () {
348
398
  var chart = this,
@@ -379,6 +429,10 @@ extend(Chart.prototype, /** @lends Chart.prototype */ {
379
429
  /**
380
430
  * Zoom the chart out after a user has zoomed in. See also
381
431
  * [Axis.setExtremes](/class-reference/Highcharts.Axis#setExtremes).
432
+ *
433
+ * @function Highcharts.Chart#zoomOut
434
+ *
435
+ * @fires Highcharts.Chart#event:selection
382
436
  */
383
437
  zoomOut: function () {
384
438
  fireEvent(this, 'selection', { resetSelection: true }, this.zoom);
@@ -386,9 +440,11 @@ extend(Chart.prototype, /** @lends Chart.prototype */ {
386
440
 
387
441
  /**
388
442
  * Zoom into a given portion of the chart given by axis coordinates.
389
- * @param {Object} event
390
443
  *
391
444
  * @private
445
+ * @function Highcharts.Chart#zoom
446
+ *
447
+ * @param {Highcharts.SelectEventObject} event
392
448
  */
393
449
  zoom: function (event) {
394
450
  var chart = this,
@@ -446,6 +502,11 @@ extend(Chart.prototype, /** @lends Chart.prototype */ {
446
502
  * compared to the first chartX position in the dragging operation.
447
503
  *
448
504
  * @private
505
+ * @function Highcharts.Chart#pan
506
+ *
507
+ * @param {Highcharts.PointerEventObject} e
508
+ *
509
+ * @param {string} panning
449
510
  */
450
511
  pan: function (e, panning) {
451
512
 
@@ -538,24 +599,13 @@ extend(Chart.prototype, /** @lends Chart.prototype */ {
538
599
  }
539
600
  });
540
601
 
541
- /*
542
- * Extend the Point object with interaction
543
- */
602
+ // Extend the Point object with interaction
544
603
  extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
604
+
545
605
  /**
546
606
  * Toggle the selection status of a point.
547
- * @param {Boolean} [selected]
548
- * When `true`, the point is selected. When `false`, the point is
549
- * unselected. When `null` or `undefined`, the selection state is
550
- * toggled.
551
- * @param {Boolean} [accumulate=false]
552
- * When `true`, the selection is added to other selected points.
553
- * When `false`, other selected points are deselected. Internally in
554
- * Highcharts, when {@link http://api.highcharts.com/highcharts/plotOptions.series.allowPointSelect|allowPointSelect}
555
- * is `true`, selected points are accumulated on Control, Shift or
556
- * Cmd clicking the point.
557
607
  *
558
- * @see Highcharts.Chart#getSelectedPoints
608
+ * @see Highcharts.Chart#getSelectedPoints
559
609
  *
560
610
  * @sample highcharts/members/point-select/
561
611
  * Select a point from a button
@@ -563,6 +613,24 @@ extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
563
613
  * Select a range of points through a drag selection
564
614
  * @sample maps/series/data-id/
565
615
  * Select a point in Highmaps
616
+ *
617
+ * @function Highcharts.Point#select
618
+ *
619
+ * @param {boolean} [selected]
620
+ * When `true`, the point is selected. When `false`, the point is
621
+ * unselected. When `null` or `undefined`, the selection state is
622
+ * toggled.
623
+ *
624
+ * @param {boolean} [accumulate=false]
625
+ * When `true`, the selection is added to other selected points.
626
+ * When `false`, other selected points are deselected. Internally in
627
+ * Highcharts, when
628
+ * {@link http://api.highcharts.com/highcharts/plotOptions.series.allowPointSelect|allowPointSelect}
629
+ * is `true`, selected points are accumulated on Control, Shift or
630
+ * Cmd clicking the point.
631
+ *
632
+ * @fires Highcharts.Point#event:select
633
+ * @fires Highcharts.Point#event:unselect
566
634
  */
567
635
  select: function (selected, accumulate) {
568
636
  var point = this,
@@ -579,11 +647,12 @@ extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
579
647
 
580
648
  /**
581
649
  * Whether the point is selected or not.
650
+ *
582
651
  * @see Point#select
583
652
  * @see Chart#getSelectedPoints
584
- * @memberof Point
585
- * @name selected
586
- * @type {Boolean}
653
+ *
654
+ * @name Highcharts.Point#selected
655
+ * @type {boolean}
587
656
  */
588
657
  point.selected = point.options.selected = selected;
589
658
  series.options.data[inArray(point, series.data)] =
@@ -613,7 +682,10 @@ extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
613
682
  * Runs on mouse over the point. Called internally from mouse and touch
614
683
  * events.
615
684
  *
616
- * @param {Object} e The event arguments
685
+ * @function Highcharts.Point#onMouseOver
686
+ *
687
+ * @param {Highcharts.PointerEventObject} e
688
+ * The event arguments.
617
689
  */
618
690
  onMouseOver: function (e) {
619
691
  var point = this,
@@ -630,6 +702,10 @@ extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
630
702
  /**
631
703
  * Runs on mouse out from the point. Called internally from mouse and touch
632
704
  * events.
705
+ *
706
+ * @function Highcharts.Point#onMouseOut
707
+ *
708
+ * @fires Highcharts.Point#event:mouseOut
633
709
  */
634
710
  onMouseOut: function () {
635
711
  var point = this,
@@ -646,6 +722,7 @@ extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
646
722
  * demand, to save processing time on hovering.
647
723
  *
648
724
  * @private
725
+ * @function Highcharts.Point#importEvents
649
726
  */
650
727
  importEvents: function () {
651
728
  if (!this.hasImportedEvents) {
@@ -665,9 +742,17 @@ extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
665
742
 
666
743
  /**
667
744
  * Set the point's state.
668
- * @param {String} [state]
669
- * The new state, can be one of `''` (an empty string), `hover` or
670
- * `select`.
745
+ *
746
+ * @function Highcharts.Point#setState
747
+ *
748
+ * @param {string} [state]
749
+ * The new state, can be one of `''` (an empty string), `hover` or
750
+ * `select`.
751
+ *
752
+ * @param {boolean} [move]
753
+ * State for animation.
754
+ *
755
+ * @fires Highcharts.Point#event:afterSetState
671
756
  */
672
757
  setState: function (state, move) {
673
758
  var point = this,
@@ -861,9 +946,14 @@ extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
861
946
  /**
862
947
  * Get the path definition for the halo, which is usually a shadow-like
863
948
  * circle around the currently hovered point.
864
- * @param {Number} size
865
- * The radius of the circular halo.
866
- * @return {Array} The path definition
949
+ *
950
+ * @function Highcharts.Point#haloPath
951
+ *
952
+ * @param {number} size
953
+ * The radius of the circular halo.
954
+ *
955
+ * @return {Highcharts.SVGPathArray}
956
+ * The path definition.
867
957
  */
868
958
  haloPath: function (size) {
869
959
  var series = this.series,
@@ -878,13 +968,15 @@ extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
878
968
  }
879
969
  });
880
970
 
881
- /*
882
- * Extend the Series object with interaction
883
- */
884
-
971
+ // Extend the Series object with interaction
885
972
  extend(Series.prototype, /** @lends Highcharts.Series.prototype */ {
973
+
886
974
  /**
887
975
  * Runs on mouse over the series graphical items.
976
+ *
977
+ * @function Highcharts.Series#onMouseOver
978
+ *
979
+ * @fires Highcharts.Series#event:mouseOver
888
980
  */
889
981
  onMouseOver: function () {
890
982
  var series = this,
@@ -909,6 +1001,10 @@ extend(Series.prototype, /** @lends Highcharts.Series.prototype */ {
909
1001
 
910
1002
  /**
911
1003
  * Runs on mouse out of the series graphical items.
1004
+ *
1005
+ * @function Highcharts.Series#onMouseOut
1006
+ *
1007
+ * @fires Highcharts.Series#event:mouseOut
912
1008
  */
913
1009
  onMouseOut: function () {
914
1010
  // trigger the event only if listeners exist
@@ -950,9 +1046,10 @@ extend(Series.prototype, /** @lends Highcharts.Series.prototype */ {
950
1046
  * operations, but it can also be called directly to visually
951
1047
  * highlight a series.
952
1048
  *
953
- * @param {String} [state]
954
- * Can be either `hover` or undefined to set to normal
955
- * state.
1049
+ * @function Highcharts.Series#setState
1050
+ *
1051
+ * @param {string} [state]
1052
+ * Can be either `hover` or undefined to set to normal state.
956
1053
  */
957
1054
  setState: function (state) {
958
1055
  var series = this,
@@ -1022,20 +1119,28 @@ extend(Series.prototype, /** @lends Highcharts.Series.prototype */ {
1022
1119
  i = i + 1;
1023
1120
  }
1024
1121
  }
1122
+
1025
1123
 
1124
+
1026
1125
  }
1027
1126
  },
1028
1127
 
1029
1128
  /**
1030
1129
  * Show or hide the series.
1031
1130
  *
1032
- * @param {Boolean} [visible]
1033
- * True to show the series, false to hide. If undefined, the
1034
- * visibility is toggled.
1035
- * @param {Boolean} [redraw=true]
1036
- * Whether to redraw the chart after the series is altered. If doing
1037
- * more operations on the chart, it is a good idea to set redraw to
1038
- * false and call {@link Chart#redraw|chart.redraw()} after.
1131
+ * @function Highcharts.Series#setVisible
1132
+ *
1133
+ * @param {boolean} [visible]
1134
+ * True to show the series, false to hide. If undefined, the
1135
+ * visibility is toggled.
1136
+ *
1137
+ * @param {boolean} [redraw=true]
1138
+ * Whether to redraw the chart after the series is altered. If doing
1139
+ * more operations on the chart, it is a good idea to set redraw to
1140
+ * false and call {@link Chart#redraw|chart.redraw()} after.
1141
+ *
1142
+ * @fires Highcharts.Series#event:hide
1143
+ * @fires Highcharts.Series#event:show
1039
1144
  */
1040
1145
  setVisible: function (vis, redraw) {
1041
1146
  var series = this,
@@ -1113,6 +1218,10 @@ extend(Series.prototype, /** @lends Highcharts.Series.prototype */ {
1113
1218
  *
1114
1219
  * @sample highcharts/members/series-hide/
1115
1220
  * Toggle visibility from a button
1221
+ *
1222
+ * @function Highcharts.Series#show
1223
+ *
1224
+ * @fires Highcharts.Series#event:show
1116
1225
  */
1117
1226
  show: function () {
1118
1227
  this.setVisible(true);
@@ -1126,6 +1235,10 @@ extend(Series.prototype, /** @lends Highcharts.Series.prototype */ {
1126
1235
  *
1127
1236
  * @sample highcharts/members/series-hide/
1128
1237
  * Toggle visibility from a button
1238
+ *
1239
+ * @function Highcharts.Series#hide
1240
+ *
1241
+ * @fires Highcharts.Series#event:hide
1129
1242
  */
1130
1243
  hide: function () {
1131
1244
  this.setVisible(false);
@@ -1133,17 +1246,24 @@ extend(Series.prototype, /** @lends Highcharts.Series.prototype */ {
1133
1246
 
1134
1247
 
1135
1248
  /**
1136
- * Select or unselect the series. This means its {@link
1137
- * Highcharts.Series.selected|selected} property is set, the checkbox in the
1138
- * legend is toggled and when selected, the series is returned by the
1139
- * {@link Highcharts.Chart#getSelectedSeries} function.
1140
- *
1141
- * @param {Boolean} [selected]
1142
- * True to select the series, false to unselect. If undefined, the
1143
- * selection state is toggled.
1249
+ * Select or unselect the series. This means its
1250
+ * {@link Highcharts.Series.selected|selected}
1251
+ * property is set, the checkbox in the legend is toggled and when selected,
1252
+ * the series is returned by the
1253
+ * {@link Highcharts.Chart#getSelectedSeries}
1254
+ * function.
1144
1255
  *
1145
1256
  * @sample highcharts/members/series-select/
1146
1257
  * Select a series from a button
1258
+ *
1259
+ * @function Highcharts.Series#select
1260
+ *
1261
+ * @param {boolean} [selected]
1262
+ * True to select the series, false to unselect. If undefined, the
1263
+ * selection state is toggled.
1264
+ *
1265
+ * @fires Highcharts.Series#event:select
1266
+ * @fires Highcharts.Series#event:unselect
1147
1267
  */
1148
1268
  select: function (selected) {
1149
1269
  var series = this;
@@ -1159,5 +1279,9 @@ extend(Series.prototype, /** @lends Highcharts.Series.prototype */ {
1159
1279
  fireEvent(series, selected ? 'select' : 'unselect');
1160
1280
  },
1161
1281
 
1282
+ /**
1283
+ * @private
1284
+ * @borrows Highcharts.TrackerMixin.drawTrackerGraph as Highcharts.Series#drawTracker
1285
+ */
1162
1286
  drawTracker: TrackerMixin.drawTrackerGraph
1163
1287
  });
@@ -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
  */
@@ -353,8 +353,12 @@ Highcharts.Legend.prototype = {
353
353
  left: (alignAttr.translateX + item.checkboxOffset +
354
354
  checkbox.x - 20) + 'px',
355
355
  top: top + 'px',
356
- display: top > translateY - 6 && top < translateY +
357
- clipHeight - 6 ? '' : 'none'
356
+ display: this.proximate || (
357
+ top > translateY - 6 &&
358
+ top < translateY + clipHeight - 6
359
+ ) ?
360
+ '' :
361
+ 'none'
358
362
  });
359
363
  }
360
364
  }, this);
@@ -1,24 +1,39 @@
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
+
6
7
  'use strict';
8
+
7
9
  import H from './Globals.js';
8
10
  import './Utilities.js';
11
+
9
12
  var Axis = H.Axis,
10
13
  getMagnitude = H.getMagnitude,
11
14
  map = H.map,
12
15
  normalizeTickInterval = H.normalizeTickInterval,
13
16
  pick = H.pick;
14
- /**
17
+
18
+ /*
15
19
  * Methods defined on the Axis prototype
16
20
  */
17
21
 
18
22
  /**
19
- * Set the tick positions of a logarithmic axis
23
+ * Set the tick positions of a logarithmic axis.
24
+ *
25
+ * @private
26
+ * @function Highcharts.Axis#getLogTickPositions
27
+ *
28
+ * @param {number} interval
29
+ *
30
+ * @param {number} min
31
+ *
32
+ * @param {number} max
20
33
  *
21
- * @ignore
34
+ * @param {number} minor
35
+ *
36
+ * @return {Array<number>}
22
37
  */
23
38
  Axis.prototype.getLogTickPositions = function (interval, min, max, minor) {
24
39
  var axis = this,
@@ -129,10 +144,26 @@ Axis.prototype.getLogTickPositions = function (interval, min, max, minor) {
129
144
  return positions;
130
145
  };
131
146
 
147
+ /**
148
+ * @private
149
+ * @function Highcharts.Axis#log2lin
150
+ *
151
+ * @param {number} num
152
+ *
153
+ * @return {number}
154
+ */
132
155
  Axis.prototype.log2lin = function (num) {
133
156
  return Math.log(num) / Math.LN10;
134
157
  };
135
158
 
159
+ /**
160
+ * @private
161
+ * @function Highcharts.Axis#lin2log
162
+ *
163
+ * @param {number} num
164
+ *
165
+ * @return {number}
166
+ */
136
167
  Axis.prototype.lin2log = function (num) {
137
168
  return Math.pow(10, num);
138
169
  };
@@ -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
  */
@@ -2064,6 +2064,24 @@ Navigator.prototype = {
2064
2064
  }, this);
2065
2065
  },
2066
2066
 
2067
+ /**
2068
+ * Get minimum from all base series connected to the navigator
2069
+ *
2070
+ * @param {number} currentSeriesMin
2071
+ * Minium from the current series
2072
+ *
2073
+ * @return {number} Minimum from all series
2074
+ */
2075
+ getBaseSeriesMin: function (currentSeriesMin) {
2076
+ return H.reduce(
2077
+ this.baseSeries,
2078
+ function (min, series) {
2079
+ return Math.min(min, series.xData[0]);
2080
+ },
2081
+ currentSeriesMin
2082
+ );
2083
+ },
2084
+
2067
2085
  /**
2068
2086
  * Set the navigator x axis extremes to reflect the total. The navigator
2069
2087
  * extremes should always be the extremes of the union of all series in the
@@ -2140,8 +2158,11 @@ Navigator.prototype = {
2140
2158
  if (!stickToMin) {
2141
2159
  newMin = Math.max(
2142
2160
  newMax - range,
2143
- navigatorSeries && navigatorSeries.xData ?
2144
- navigatorSeries.xData[0] : -Number.MAX_VALUE
2161
+ navigator.getBaseSeriesMin(
2162
+ navigatorSeries && navigatorSeries.xData ?
2163
+ navigatorSeries.xData[0] :
2164
+ -Number.MAX_VALUE
2165
+ )
2145
2166
  );
2146
2167
  }
2147
2168
  }
@@ -2171,7 +2192,8 @@ Navigator.prototype = {
2171
2192
  updatedDataHandler: function () {
2172
2193
  var navigator = this.chart.navigator,
2173
2194
  baseSeries = this,
2174
- navigatorSeries = this.navigatorSeries;
2195
+ navigatorSeries = this.navigatorSeries,
2196
+ xDataMin = navigator.getBaseSeriesMin(baseSeries.xData[0]);
2175
2197
 
2176
2198
  // If the scrollbar is scrolled all the way to the right, keep right as
2177
2199
  // new data comes in.
@@ -2183,7 +2205,7 @@ Navigator.prototype = {
2183
2205
  // maximum. If the current axis minimum falls outside the new updated
2184
2206
  // dataset, we must adjust.
2185
2207
  navigator.stickToMin = isNumber(baseSeries.xAxis.min) &&
2186
- (baseSeries.xAxis.min <= baseSeries.xData[0]) &&
2208
+ (baseSeries.xAxis.min <= xDataMin) &&
2187
2209
  (!this.chart.fixedRange || !navigator.stickToMax);
2188
2210
 
2189
2211
  // Set the navigator series data to the new data of the base series
@@ -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
  */