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,42 +1,60 @@
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 './Options.js';
10
12
  import './Series.js';
13
+
11
14
  var Series = H.Series,
12
15
  seriesType = H.seriesType;
13
16
 
14
17
  /**
15
- * A scatter plot uses cartesian coordinates to display values for two variables
16
- * for a set of data.
18
+ * Scatter series type.
19
+ *
20
+ * @private
21
+ * @class
22
+ * @name Highcharts.seriesTypes.scatter
23
+ *
24
+ * @augments Highcharts.Series
25
+ */
26
+ seriesType('scatter', 'line'
27
+
28
+ /**
29
+ * A scatter plot uses cartesian coordinates to display values for two
30
+ * variables for a set of data.
17
31
  *
18
- * @sample {highcharts} highcharts/demo/scatter/
19
- * Scatter plot
20
- * @extends {plotOptions.line}
32
+ * @sample {highcharts} highcharts/demo/scatter/
33
+ * Scatter plot
34
+ *
35
+ * @extends plotOptions.line
21
36
  * @excluding pointPlacement, shadow
22
37
  * @product highcharts highstock
23
38
  * @optionparent plotOptions.scatter
24
39
  */
25
- seriesType('scatter', 'line', {
40
+ , {
26
41
 
27
42
  /**
28
43
  * The width of the line connecting the data points.
29
44
  *
30
- * @sample {highcharts} highcharts/plotoptions/scatter-linewidth-none/
31
- * 0 by default
32
- * @sample {highcharts} highcharts/plotoptions/scatter-linewidth-1/
33
- * 1px
45
+ * @sample {highcharts} highcharts/plotoptions/scatter-linewidth-none/
46
+ * 0 by default
47
+ * @sample {highcharts} highcharts/plotoptions/scatter-linewidth-1/
48
+ * 1px
49
+ *
34
50
  * @product highcharts highstock
35
51
  */
36
52
  lineWidth: 0,
37
53
 
38
54
  findNearestPointBy: 'xy',
55
+
39
56
  marker: {
57
+
40
58
  enabled: true // Overrides auto-enabling in line series (#3647)
41
59
  },
42
60
 
@@ -49,7 +67,7 @@ seriesType('scatter', 'line', {
49
67
  * is false and `tooltip.shared` is false, the tooltip will be hidden
50
68
  * when moving the mouse between series.
51
69
  *
52
- * @type {Boolean}
70
+ * @type {boolean}
53
71
  * @default false
54
72
  * @product highcharts highstock
55
73
  * @apioption plotOptions.scatter.stickyTracking
@@ -66,12 +84,21 @@ seriesType('scatter', 'line', {
66
84
  * @product highcharts highstock
67
85
  */
68
86
  tooltip: {
87
+
69
88
 
89
+
90
+ /**
91
+ * @default ● {series.name}
92
+ */
70
93
  headerFormat:
71
94
  '<span style="color:{point.color}">\u25CF</span> ' +
72
95
  '<span style="font-size: 0.85em"> {series.name}</span><br/>',
96
+
73
97
 
74
98
 
99
+ /**
100
+ * @default x: {point.x} y: {point.y}
101
+ */
75
102
  pointFormat: 'x: <b>{point.x}</b><br/>y: <b>{point.y}</b><br/>'
76
103
  }
77
104
 
@@ -82,6 +109,11 @@ seriesType('scatter', 'line', {
82
109
  noSharedTooltip: true,
83
110
  trackerGroups: ['group', 'markerGroup', 'dataLabelsGroup'],
84
111
  takeOrdinalPosition: false, // #2342
112
+
113
+ /**
114
+ * @private
115
+ * @function Highcharts.seriesTypes.scatter#drawGraph
116
+ */
85
117
  drawGraph: function () {
86
118
  if (this.options.lineWidth) {
87
119
  Series.prototype.drawGraph.call(this);
@@ -93,9 +125,8 @@ seriesType('scatter', 'line', {
93
125
  * A `scatter` series. If the [type](#series.scatter.type) option is
94
126
  * not specified, it is inherited from [chart.type](#chart.type).
95
127
  *
96
- * @type {Object}
97
128
  * @extends series,plotOptions.scatter
98
- * @excluding dataParser,dataURL
129
+ * @excluding dataParser, dataURL
99
130
  * @product highcharts highstock
100
131
  * @apioption series.scatter
101
132
  */
@@ -145,18 +176,19 @@ seriesType('scatter', 'line', {
145
176
  * }]
146
177
  * ```
147
178
  *
148
- * @type {Array<Object|Array|Number>}
179
+ * @sample {highcharts} highcharts/chart/reflow-true/
180
+ * Numerical values
181
+ * @sample {highcharts} highcharts/series/data-array-of-arrays/
182
+ * Arrays of numeric x and y
183
+ * @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
184
+ * Arrays of datetime x and y
185
+ * @sample {highcharts} highcharts/series/data-array-of-name-value/
186
+ * Arrays of point.name and y
187
+ * @sample {highcharts} highcharts/series/data-array-of-objects/
188
+ * Config objects
189
+ *
190
+ * @type {Array<number|Array<number>|*>}
149
191
  * @extends series.line.data
150
- * @sample {highcharts} highcharts/chart/reflow-true/
151
- * Numerical values
152
- * @sample {highcharts} highcharts/series/data-array-of-arrays/
153
- * Arrays of numeric x and y
154
- * @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
155
- * Arrays of datetime x and y
156
- * @sample {highcharts} highcharts/series/data-array-of-name-value/
157
- * Arrays of point.name and y
158
- * @sample {highcharts} highcharts/series/data-array-of-objects/
159
- * Config objects
160
192
  * @product highcharts highstock
161
193
  * @apioption series.scatter.data
162
194
  */
@@ -6,7 +6,9 @@
6
6
  * Highcharts feature to make the Y axis stay fixed when scrolling the chart
7
7
  * horizontally on mobile devices. Supports left and right side axes.
8
8
  */
9
+
9
10
  'use strict';
11
+
10
12
  import H from './Globals.js';
11
13
 
12
14
  var addEvent = H.addEvent,
@@ -20,11 +22,11 @@ var addEvent = H.addEvent,
20
22
  * This scrollbar provides smooth scrolling for the contents of the plot area,
21
23
  * whereas the title, legend and axes are fixed.
22
24
  *
23
- * @type {Object}
24
- * @sample {highcharts} highcharts/chart/scrollable-plotarea
25
- * Scrollable plot area
26
- * @since 6.1.0
27
- * @product highcharts
25
+ * @sample {highcharts} highcharts/chart/scrollable-plotarea
26
+ * Scrollable plot area
27
+ *
28
+ * @since 6.1.0
29
+ * @product highcharts gantt
28
30
  * @apioption chart.scrollablePlotArea
29
31
  */
30
32
 
@@ -32,7 +34,7 @@ var addEvent = H.addEvent,
32
34
  * The minimum width for the plot area. If it gets smaller than this, the plot
33
35
  * area will become scrollable.
34
36
  *
35
- * @type {Number}
37
+ * @type {number}
36
38
  * @apioption chart.scrollablePlotArea.minWidth
37
39
  */
38
40
 
@@ -41,7 +43,7 @@ var addEvent = H.addEvent,
41
43
  * 1, where 0 aligns the plot area to the left and 1 aligns it to the right.
42
44
  * Typically we would use 1 if the chart has right aligned Y axes.
43
45
  *
44
- * @type {Number}
46
+ * @type {number}
45
47
  * @apioption chart.scrollablePlotArea.scrollPositionX
46
48
  */
47
49
 
@@ -105,6 +107,10 @@ addEvent(Chart, 'render', function () {
105
107
  }
106
108
  });
107
109
 
110
+ /**
111
+ * @private
112
+ * @function Highcharts.Chart#setUpScrolling
113
+ */
108
114
  Chart.prototype.setUpScrolling = function () {
109
115
 
110
116
  // Add the necessary divs to provide scrolling
@@ -126,6 +132,10 @@ Chart.prototype.setUpScrolling = function () {
126
132
  this.setUpScrolling = null;
127
133
  };
128
134
 
135
+ /**
136
+ * @private
137
+ * @function Highcharts.Chart#applyFixed
138
+ */
129
139
  Chart.prototype.applyFixed = function () {
130
140
  var container = this.container,
131
141
  fixedRenderer,
@@ -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
  */
@@ -105,6 +105,9 @@ var defaultScrollbarOptions = {
105
105
  * @type {boolean}
106
106
  * @since 1.3
107
107
  * @product highstock
108
+ *
109
+ * @sample stock/scrollbar/liveredraw Setting live redraw to false
110
+ *
108
111
  * @apioption scrollbar.liveRedraw
109
112
  */
110
113
  liveRedraw: undefined,
@@ -1041,7 +1044,11 @@ Scrollbar.prototype = {
1041
1044
  addEvent(Axis, 'afterInit', function () {
1042
1045
  var axis = this;
1043
1046
 
1044
- if (axis.options.scrollbar && axis.options.scrollbar.enabled) {
1047
+ if (
1048
+ axis.options &&
1049
+ axis.options.scrollbar &&
1050
+ axis.options.scrollbar.enabled
1051
+ ) {
1045
1052
  // Predefined options:
1046
1053
  axis.options.scrollbar.vertical = !axis.horiz;
1047
1054
  axis.options.startOnTick = axis.options.endOnTick = false;
@@ -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
  */
@@ -439,7 +439,7 @@ H.Series = H.seriesType('line', null
439
439
  * @type {boolean}
440
440
  * @default false
441
441
  * @since 4.1.6
442
- * @product highcharts highstock
442
+ * @product highcharts highstock gantt
443
443
  * @apioption plotOptions.series.getExtremesFromAll
444
444
  */
445
445
 
@@ -464,6 +464,7 @@ H.Series = H.seriesType('line', null
464
464
  * The line cap used for line ends and line joins on the graph.
465
465
  *
466
466
  * @type {string}
467
+ * @default round
467
468
  * @product highcharts highstock
468
469
  * @validvalue ["round", "square"]
469
470
  * @apioption plotOptions.series.linecap
@@ -480,7 +481,7 @@ H.Series = H.seriesType('line', null
480
481
  *
481
482
  * @type {string}
482
483
  * @since 3.0
483
- * @product highcharts highstock
484
+ * @product highcharts highstock gantt
484
485
  * @apioption plotOptions.series.linkedTo
485
486
  */
486
487
 
@@ -559,7 +560,7 @@ H.Series = H.seriesType('line', null
559
560
  *
560
561
  * @type {number}
561
562
  * @default 1
562
- * @product highcharts highstock
563
+ * @product highcharts highstock gantt
563
564
  * @apioption plotOptions.series.pointInterval
564
565
  */
565
566
 
@@ -581,7 +582,7 @@ H.Series = H.seriesType('line', null
581
582
  *
582
583
  * @type {string}
583
584
  * @since 4.1.0
584
- * @product highcharts highstock
585
+ * @product highcharts highstock gantt
585
586
  * @validvalue ["day", "month", "year"]
586
587
  * @apioption plotOptions.series.pointIntervalUnit
587
588
  */
@@ -606,6 +607,10 @@ H.Series = H.seriesType('line', null
606
607
  * #plotOptions.series.pointRange) to work. For column series this is
607
608
  * computed, but for line-type series it needs to be set.
608
609
  *
610
+ * For the `xrange` series type and gantt charts, if the Y axis is a
611
+ * category axis, the `pointPlacement` applies to the Y axis rather than
612
+ * the (typically datetime) X axis.
613
+ *
609
614
  * Defaults to `undefined` in cartesian charts, `"between"` in polar charts.
610
615
  *
611
616
  * @see [xAxis.tickmarkPlacement](#xAxis.tickmarkPlacement)
@@ -617,7 +622,7 @@ H.Series = H.seriesType('line', null
617
622
  *
618
623
  * @type {string|number}
619
624
  * @since 2.3.0
620
- * @product highcharts highstock
625
+ * @product highcharts highstock gantt
621
626
  * @apioption plotOptions.series.pointPlacement
622
627
  */
623
628
 
@@ -635,7 +640,7 @@ H.Series = H.seriesType('line', null
635
640
  *
636
641
  * @type {number}
637
642
  * @default 0
638
- * @product highcharts highstock
643
+ * @product highcharts highstock gantt
639
644
  * @apioption plotOptions.series.pointStart
640
645
  */
641
646
 
@@ -1368,9 +1373,17 @@ H.Series = H.seriesType('line', null
1368
1373
  /**
1369
1374
  * Options for the series data labels, appearing next to each data point.
1370
1375
  *
1376
+ * Since v6.2.0, multiple data labels can be applied to each single point by
1377
+ * defining them as an array of configs.
1378
+ *
1371
1379
  * In styled mode, the data labels can be styled with the
1372
1380
  * `.highcharts-data-label-box` and `.highcharts-data-label` class names
1373
1381
  * ([see example](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/css/series-datalabels)).
1382
+ *
1383
+ * @sample highcharts/plotoptions/series-datalabels-enabled
1384
+ * Data labels enabled
1385
+ * @sample highcharts/plotoptions/series-datalabels-multiple
1386
+ * Multiple data labels on a bar series
1374
1387
  */
1375
1388
  dataLabels: {
1376
1389
 
@@ -1492,7 +1505,7 @@ H.Series = H.seriesType('line', null
1492
1505
  * @type {boolean}
1493
1506
  * @default true
1494
1507
  * @since 4.0
1495
- * @product highcharts highstock
1508
+ * @product highcharts highstock gantt
1496
1509
  * @apioption plotOptions.series.dataLabels.defer
1497
1510
  */
1498
1511
 
@@ -2129,7 +2142,7 @@ H.Series = H.seriesType('line', null
2129
2142
  * data checking and indexing in long series. Set it to `0` disable.
2130
2143
  *
2131
2144
  * @since 2.2
2132
- * @product highcharts highstock
2145
+ * @product highcharts highstock gantt
2133
2146
  */
2134
2147
  turboThreshold: 1000,
2135
2148
 
@@ -1,40 +1,62 @@
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 './Options.js';
10
12
  import './Series.js';
13
+
11
14
  var pick = H.pick,
12
15
  seriesType = H.seriesType;
13
16
 
14
17
  /**
15
- * A spline series is a special type of line series, where the segments between
16
- * the data points are smoothed.
18
+ * Spline series type.
17
19
  *
18
- * @sample {highcharts} highcharts/demo/spline-irregular-time/
19
- * Spline chart
20
- * @sample {highstock} stock/demo/spline/
21
- * Spline chart
22
- * @extends plotOptions.series
23
- * @excluding step
24
- * @product highcharts highstock
25
- * @apioption plotOptions.spline
20
+ * @private
21
+ * @class
22
+ * @name Highcharts.seriesTypes.spline
23
+ *
24
+ * @augments Highcarts.Series
26
25
  */
26
+ seriesType('spline', 'line'
27
27
 
28
28
  /**
29
- * Spline series type.
29
+ * A spline series is a special type of line series, where the segments
30
+ * between the data points are smoothed.
31
+ *
32
+ * @sample {highcharts} highcharts/demo/spline-irregular-time/
33
+ * Spline chart
34
+ * @sample {highstock} stock/demo/spline/
35
+ * Spline chart
30
36
  *
31
- * @constructor seriesTypes.spline
32
- * @extends {Series}
37
+ * @extends plotOptions.series
38
+ * @excluding step
39
+ * @product highcharts highstock
40
+ * @optionparent plotOptions.spline
33
41
  */
34
- seriesType('spline', 'line', {}, /** @lends seriesTypes.spline.prototype */ {
42
+ , {
43
+
44
+ }, /** @lends seriesTypes.spline.prototype */ {
45
+
35
46
  /**
36
47
  * Get the spline segment from a given point's previous neighbour to the
37
- * given point
48
+ * given point.
49
+ *
50
+ * @private
51
+ * @function Highcharts.seriesTypes.spline#getPointSpline
52
+ *
53
+ * @param {Array<Highcharts.Point>}
54
+ *
55
+ * @param {Highcharts.Point} point
56
+ *
57
+ * @param {number} i
58
+ *
59
+ * @return {Highcharts.SVGPathArray}
38
60
  */
39
61
  getPointSpline: function (points, point, i) {
40
62
  var
@@ -175,9 +197,8 @@ seriesType('spline', 'line', {}, /** @lends seriesTypes.spline.prototype */ {
175
197
  * A `spline` series. If the [type](#series.spline.type) option is
176
198
  * not specified, it is inherited from [chart.type](#chart.type).
177
199
  *
178
- * @type {Object}
179
200
  * @extends series,plotOptions.spline
180
- * @excluding dataParser,dataURL,step
201
+ * @excluding dataParser, dataURL, step
181
202
  * @product highcharts highstock
182
203
  * @apioption series.spline
183
204
  */
@@ -227,18 +248,19 @@ seriesType('spline', 'line', {}, /** @lends seriesTypes.spline.prototype */ {
227
248
  * }]
228
249
  * ```
229
250
  *
230
- * @type {Array<Object|Array|Number>}
251
+ * @sample {highcharts} highcharts/chart/reflow-true/
252
+ * Numerical values
253
+ * @sample {highcharts} highcharts/series/data-array-of-arrays/
254
+ * Arrays of numeric x and y
255
+ * @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
256
+ * Arrays of datetime x and y
257
+ * @sample {highcharts} highcharts/series/data-array-of-name-value/
258
+ * Arrays of point.name and y
259
+ * @sample {highcharts} highcharts/series/data-array-of-objects/
260
+ * Config objects
261
+ *
262
+ * @type {Array<number|Array<number>|*>}
231
263
  * @extends series.line.data
232
- * @sample {highcharts} highcharts/chart/reflow-true/
233
- * Numerical values
234
- * @sample {highcharts} highcharts/series/data-array-of-arrays/
235
- * Arrays of numeric x and y
236
- * @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
237
- * Arrays of datetime x and y
238
- * @sample {highcharts} highcharts/series/data-array-of-name-value/
239
- * Arrays of point.name and y
240
- * @sample {highcharts} highcharts/series/data-array-of-objects/
241
- * Config objects
242
264
  * @product highcharts highstock
243
265
  * @apioption series.spline.data
244
266
  */
@@ -1,14 +1,17 @@
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 './Axis.js';
10
12
  import './Chart.js';
11
13
  import './Series.js';
14
+
12
15
  var Axis = H.Axis,
13
16
  Chart = H.Chart,
14
17
  correctFloat = H.correctFloat,
@@ -24,7 +27,19 @@ var Axis = H.Axis,
24
27
  * The class for stacks. Each stack, on a specific X value and either negative
25
28
  * or positive, has its own stack item.
26
29
  *
30
+ * @private
27
31
  * @class
32
+ * @name Highcharts.StackItem
33
+ *
34
+ * @param {Highcharts.Axis} axis
35
+ *
36
+ * @param {Highcharts.Options} options
37
+ *
38
+ * @param {boolean} isNegative
39
+ *
40
+ * @param {number} x
41
+ *
42
+ * @param {string|*} stackOption
28
43
  */
29
44
  H.StackItem = function (axis, options, isNegative, x, stackOption) {
30
45
 
@@ -71,12 +86,22 @@ H.StackItem = function (axis, options, isNegative, x, stackOption) {
71
86
  };
72
87
 
73
88
  H.StackItem.prototype = {
89
+
90
+ /**
91
+ * @private
92
+ * @function Highcharts.StackItem#destroy
93
+ */
74
94
  destroy: function () {
75
95
  destroyObjectProperties(this, this.axis);
76
96
  },
77
97
 
78
98
  /**
79
99
  * Renders the stack total label and adds it to the stack label group.
100
+ *
101
+ * @private
102
+ * @function Highcharts.StackItem#render
103
+ *
104
+ * @param {Highcharts.SVGElement} group
80
105
  */
81
106
  render: function (group) {
82
107
  var chart = this.axis.chart,
@@ -110,6 +135,13 @@ H.StackItem.prototype = {
110
135
  /**
111
136
  * Sets the offset that the stack has from the x value and repositions the
112
137
  * label.
138
+ *
139
+ * @private
140
+ * @function Highcarts.StackItem#setOffset
141
+ *
142
+ * @param {number} xOffset
143
+ *
144
+ * @param {number} xWidth
113
145
  */
114
146
  setOffset: function (xOffset, xWidth) {
115
147
  var stackItem = this,
@@ -151,6 +183,27 @@ H.StackItem.prototype = {
151
183
  ) ? 'show' : 'hide'](true);
152
184
  }
153
185
  },
186
+
187
+ /**
188
+ * @private
189
+ * @function Highcharts.StackItem#getStackBox
190
+ *
191
+ * @param {Highcharts.Chart} chart
192
+ *
193
+ * @param {Highcharts.StackItem} stackItem
194
+ *
195
+ * @param {number} x
196
+ *
197
+ * @param {number} y
198
+ *
199
+ * @param {number} xWidth
200
+ *
201
+ * @param {number} h
202
+ *
203
+ * @param {Highcharts.Axis} axis
204
+ *
205
+ * @return {*}
206
+ */
154
207
  getStackBox: function (chart, stackItem, x, y, xWidth, h, axis) {
155
208
  var reversed = stackItem.axis.reversed,
156
209
  inverted = chart.inverted,
@@ -175,6 +228,9 @@ H.StackItem.prototype = {
175
228
 
176
229
  /**
177
230
  * Generate stacks for each series and calculate stacks total values
231
+ *
232
+ * @private
233
+ * @function Highcharts.Chart#getStacks
178
234
  */
179
235
  Chart.prototype.getStacks = function () {
180
236
  var chart = this;
@@ -200,7 +256,8 @@ Chart.prototype.getStacks = function () {
200
256
  /**
201
257
  * Build the stacks from top down
202
258
  *
203
- * @ignore
259
+ * @private
260
+ * @function Highcharts.Axis#buildStacks
204
261
  */
205
262
  Axis.prototype.buildStacks = function () {
206
263
  var axisSeries = this.series,
@@ -221,6 +278,10 @@ Axis.prototype.buildStacks = function () {
221
278
  }
222
279
  };
223
280
 
281
+ /**
282
+ * @private
283
+ * @function Highcharts.Axis#renderStackTotals
284
+ */
224
285
  Axis.prototype.renderStackTotals = function () {
225
286
  var axis = this,
226
287
  chart = axis.chart,
@@ -254,7 +315,8 @@ Axis.prototype.renderStackTotals = function () {
254
315
  /**
255
316
  * Set all the stacks to initial states and destroy unused ones.
256
317
  *
257
- * @ignore
318
+ * @private
319
+ * @function Highcharts.Axis#resetStacks
258
320
  */
259
321
  Axis.prototype.resetStacks = function () {
260
322
  var axis = this,
@@ -277,6 +339,10 @@ Axis.prototype.resetStacks = function () {
277
339
  }
278
340
  };
279
341
 
342
+ /**
343
+ * @private
344
+ * @function Highcharts.Axis#cleanStacks
345
+ */
280
346
  Axis.prototype.cleanStacks = function () {
281
347
  var stacks;
282
348
 
@@ -299,6 +365,9 @@ Axis.prototype.cleanStacks = function () {
299
365
 
300
366
  /**
301
367
  * Adds series' points value to corresponding stack
368
+ *
369
+ * @private
370
+ * @function Highcharts.Series#setStackedPoints
302
371
  */
303
372
  Series.prototype.setStackedPoints = function () {
304
373
  if (!this.options.stacking || (this.visible !== true &&
@@ -437,6 +506,9 @@ Series.prototype.setStackedPoints = function () {
437
506
 
438
507
  /**
439
508
  * Iterate over all stacks and compute the absolute values to percent
509
+ *
510
+ * @private
511
+ * @function Highcharts.Series#modifyStacks
440
512
  */
441
513
  Series.prototype.modifyStacks = function () {
442
514
  var series = this,
@@ -473,6 +545,15 @@ Series.prototype.modifyStacks = function () {
473
545
 
474
546
  /**
475
547
  * Modifier function for percent stacks. Blows up the stack to 100%.
548
+ *
549
+ * @private
550
+ * @function Highcharts.Series#percentStacker
551
+ *
552
+ * @param {Array<number>} pointExtremes
553
+ *
554
+ * @param {Highcharts.StackItem} stack
555
+ *
556
+ * @param {number} i
476
557
  */
477
558
  Series.prototype.percentStacker = function (pointExtremes, stack, i) {
478
559
  var totalFactor = stack.total ? 100 / stack.total : 0;
@@ -484,9 +565,22 @@ Series.prototype.percentStacker = function (pointExtremes, stack, i) {
484
565
  };
485
566
 
486
567
  /**
487
- * Get stack indicator, according to it's x-value, to determine points with the
488
- * same x-value
489
- */
568
+ * Get stack indicator, according to it's x-value, to determine points with the
569
+ * same x-value
570
+ *
571
+ * @private
572
+ * @function Highcharts.Series#getStackIndicator
573
+ *
574
+ * @param {*} stackIndicator
575
+ *
576
+ * @param {number} x
577
+ *
578
+ * @param {number} index
579
+ *
580
+ * @param {string} key
581
+ *
582
+ * @return {*}
583
+ */
490
584
  Series.prototype.getStackIndicator = function (stackIndicator, x, index, key) {
491
585
  // Update stack indicator, when:
492
586
  // first point in a stack || x changed || stack type (negative vs positive)