highcharts 10.3.1 → 10.3.2

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 (625) hide show
  1. package/bower.json +1 -1
  2. package/es-modules/Accessibility/Accessibility.js +1 -1
  3. package/es-modules/Accessibility/Components/ZoomComponent.js +26 -32
  4. package/es-modules/Accessibility/KeyboardNavigation.js +5 -4
  5. package/es-modules/Accessibility/Utils/HTMLUtilities.js +14 -2
  6. package/es-modules/Core/Axis/Stacking/StackingAxis.js +5 -3
  7. package/es-modules/Core/Axis/WaterfallAxis.js +14 -11
  8. package/es-modules/Core/Chart/Chart.js +3 -1
  9. package/es-modules/Core/Chart/ChartDefaults.js +2 -0
  10. package/es-modules/Core/Globals.js +1 -1
  11. package/es-modules/Core/Pointer.js +4 -3
  12. package/es-modules/Core/Renderer/HTML/AST.js +6 -0
  13. package/es-modules/Core/Renderer/SVG/SVGElement.js +13 -60
  14. package/es-modules/Core/Renderer/SVG/SVGLabel.js +3 -4
  15. package/es-modules/Core/Renderer/SVG/SVGRenderer.js +1 -1
  16. package/es-modules/Core/Series/DataLabel.js +4 -7
  17. package/es-modules/Core/Series/Point.js +8 -9
  18. package/es-modules/Core/Series/Series.js +33 -78
  19. package/es-modules/Core/Series/SeriesDefaults.js +4 -1
  20. package/es-modules/Core/Tooltip.js +35 -19
  21. package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +1 -1
  22. package/es-modules/Extensions/Annotations/Popup/Popup.js +6 -1
  23. package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +1 -1
  24. package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
  25. package/es-modules/Extensions/Oldie/Oldie.js +1 -1
  26. package/es-modules/Extensions/PatternFill.js +12 -10
  27. package/es-modules/Extensions/ScrollablePlotArea.js +5 -0
  28. package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +116 -89
  29. package/es-modules/Gantt/Pathfinder.js +8 -7
  30. package/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +3 -1
  31. package/es-modules/Series/AreaRange/AreaRangeSeries.js +10 -0
  32. package/es-modules/Series/Bubble/BubbleSeries.js +3 -6
  33. package/es-modules/Series/Column/ColumnSeries.js +3 -3
  34. package/es-modules/Series/Flags/FlagsSeries.js +1 -6
  35. package/es-modules/Series/Line/LineSeries.js +5 -2
  36. package/es-modules/Series/Map/MapPoint.js +34 -10
  37. package/es-modules/Series/Map/MapSeries.js +7 -6
  38. package/es-modules/Series/OnSeriesComposition.js +2 -2
  39. package/es-modules/Series/Sankey/SankeySeries.js +4 -0
  40. package/es-modules/Series/Scatter/ScatterSeriesDefaults.js +1 -1
  41. package/es-modules/Series/Treegraph/TreegraphPoint.js +1 -3
  42. package/es-modules/Series/Treegraph/TreegraphSeries.js +9 -0
  43. package/es-modules/Series/Waterfall/WaterfallSeries.js +91 -89
  44. package/es-modules/Series/Windbarb/WindbarbSeries.js +1 -2
  45. package/es-modules/Series/XRange/XRangeSeries.js +6 -0
  46. package/es-modules/Stock/Navigator/Navigator.js +9 -3
  47. package/es-modules/Stock/StockTools/StockToolbar.js +1 -1
  48. package/es-modules/masters/highcharts-3d.src.d.ts +4 -0
  49. package/es-modules/masters/highcharts-3d.src.js +1 -1
  50. package/es-modules/masters/highcharts-gantt.src.d.ts +3 -0
  51. package/es-modules/masters/highcharts-gantt.src.js +1 -1
  52. package/es-modules/masters/highcharts-more.src.d.ts +10 -0
  53. package/es-modules/masters/highcharts-more.src.js +1 -1
  54. package/es-modules/masters/highcharts.src.d.ts +10 -0
  55. package/es-modules/masters/highcharts.src.js +1 -1
  56. package/es-modules/masters/highmaps.src.d.ts +3 -0
  57. package/es-modules/masters/highmaps.src.js +1 -1
  58. package/es-modules/masters/highstock.src.d.ts +3 -0
  59. package/es-modules/masters/highstock.src.js +1 -1
  60. package/es-modules/masters/indicators/acceleration-bands.src.d.ts +1 -0
  61. package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
  62. package/es-modules/masters/indicators/accumulation-distribution.src.d.ts +1 -0
  63. package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
  64. package/es-modules/masters/indicators/ao.src.d.ts +1 -0
  65. package/es-modules/masters/indicators/ao.src.js +1 -1
  66. package/es-modules/masters/indicators/apo.src.d.ts +1 -0
  67. package/es-modules/masters/indicators/apo.src.js +1 -1
  68. package/es-modules/masters/indicators/aroon-oscillator.src.d.ts +1 -0
  69. package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
  70. package/es-modules/masters/indicators/aroon.src.d.ts +1 -0
  71. package/es-modules/masters/indicators/aroon.src.js +1 -1
  72. package/es-modules/masters/indicators/atr.src.d.ts +1 -0
  73. package/es-modules/masters/indicators/atr.src.js +1 -1
  74. package/es-modules/masters/indicators/bollinger-bands.src.d.ts +1 -0
  75. package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
  76. package/es-modules/masters/indicators/cci.src.d.ts +1 -0
  77. package/es-modules/masters/indicators/cci.src.js +1 -1
  78. package/es-modules/masters/indicators/chaikin.src.d.ts +1 -0
  79. package/es-modules/masters/indicators/chaikin.src.js +1 -1
  80. package/es-modules/masters/indicators/cmf.src.d.ts +1 -0
  81. package/es-modules/masters/indicators/cmf.src.js +1 -1
  82. package/es-modules/masters/indicators/cmo.src.d.ts +1 -0
  83. package/es-modules/masters/indicators/cmo.src.js +1 -1
  84. package/es-modules/masters/indicators/dema.src.d.ts +1 -0
  85. package/es-modules/masters/indicators/dema.src.js +1 -1
  86. package/es-modules/masters/indicators/disparity-index.src.d.ts +1 -0
  87. package/es-modules/masters/indicators/disparity-index.src.js +1 -1
  88. package/es-modules/masters/indicators/dmi.src.d.ts +1 -0
  89. package/es-modules/masters/indicators/dmi.src.js +1 -1
  90. package/es-modules/masters/indicators/dpo.src.d.ts +1 -0
  91. package/es-modules/masters/indicators/dpo.src.js +1 -1
  92. package/es-modules/masters/indicators/ema.src.d.ts +0 -0
  93. package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.d.ts +1 -0
  94. package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
  95. package/es-modules/masters/indicators/indicators-all.src.d.ts +60 -0
  96. package/es-modules/masters/indicators/indicators-all.src.js +1 -1
  97. package/es-modules/masters/indicators/indicators.src.d.ts +2 -0
  98. package/es-modules/masters/indicators/indicators.src.js +1 -1
  99. package/es-modules/masters/indicators/keltner-channels.src.d.ts +1 -0
  100. package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
  101. package/es-modules/masters/indicators/klinger.src.d.ts +1 -0
  102. package/es-modules/masters/indicators/klinger.src.js +1 -1
  103. package/es-modules/masters/indicators/macd.src.d.ts +1 -0
  104. package/es-modules/masters/indicators/macd.src.js +1 -1
  105. package/es-modules/masters/indicators/mfi.src.d.ts +1 -0
  106. package/es-modules/masters/indicators/mfi.src.js +1 -1
  107. package/es-modules/masters/indicators/momentum.src.d.ts +1 -0
  108. package/es-modules/masters/indicators/momentum.src.js +1 -1
  109. package/es-modules/masters/indicators/natr.src.d.ts +1 -0
  110. package/es-modules/masters/indicators/natr.src.js +1 -1
  111. package/es-modules/masters/indicators/obv.src.d.ts +1 -0
  112. package/es-modules/masters/indicators/obv.src.js +1 -1
  113. package/es-modules/masters/indicators/pivot-points.src.d.ts +1 -0
  114. package/es-modules/masters/indicators/pivot-points.src.js +1 -1
  115. package/es-modules/masters/indicators/ppo.src.d.ts +1 -0
  116. package/es-modules/masters/indicators/ppo.src.js +1 -1
  117. package/es-modules/masters/indicators/price-channel.src.d.ts +1 -0
  118. package/es-modules/masters/indicators/price-channel.src.js +1 -1
  119. package/es-modules/masters/indicators/price-envelopes.src.d.ts +1 -0
  120. package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
  121. package/es-modules/masters/indicators/psar.src.d.ts +1 -0
  122. package/es-modules/masters/indicators/psar.src.js +1 -1
  123. package/es-modules/masters/indicators/regressions.src.d.ts +4 -0
  124. package/es-modules/masters/indicators/regressions.src.js +1 -1
  125. package/es-modules/masters/indicators/roc.src.d.ts +1 -0
  126. package/es-modules/masters/indicators/roc.src.js +1 -1
  127. package/es-modules/masters/indicators/rsi.src.d.ts +1 -0
  128. package/es-modules/masters/indicators/rsi.src.js +1 -1
  129. package/es-modules/masters/indicators/slow-stochastic.src.d.ts +1 -0
  130. package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
  131. package/es-modules/masters/indicators/stochastic.src.d.ts +1 -0
  132. package/es-modules/masters/indicators/stochastic.src.js +1 -1
  133. package/es-modules/masters/indicators/supertrend.src.d.ts +1 -0
  134. package/es-modules/masters/indicators/supertrend.src.js +1 -1
  135. package/es-modules/masters/indicators/tema.src.d.ts +1 -0
  136. package/es-modules/masters/indicators/tema.src.js +1 -1
  137. package/es-modules/masters/indicators/trendline.src.d.ts +1 -0
  138. package/es-modules/masters/indicators/trendline.src.js +1 -1
  139. package/es-modules/masters/indicators/trix.src.d.ts +1 -0
  140. package/es-modules/masters/indicators/trix.src.js +1 -1
  141. package/es-modules/masters/indicators/volume-by-price.src.d.ts +1 -0
  142. package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
  143. package/es-modules/masters/indicators/vwap.src.d.ts +1 -0
  144. package/es-modules/masters/indicators/vwap.src.js +1 -1
  145. package/es-modules/masters/indicators/williams-r.src.d.ts +1 -0
  146. package/es-modules/masters/indicators/williams-r.src.js +1 -1
  147. package/es-modules/masters/indicators/wma.src.d.ts +1 -0
  148. package/es-modules/masters/indicators/wma.src.js +1 -1
  149. package/es-modules/masters/indicators/zigzag.src.d.ts +1 -0
  150. package/es-modules/masters/indicators/zigzag.src.js +1 -1
  151. package/es-modules/masters/modules/accessibility.src.d.ts +13 -0
  152. package/es-modules/masters/modules/accessibility.src.js +2 -2
  153. package/es-modules/masters/modules/annotations-advanced.src.d.ts +11 -0
  154. package/es-modules/masters/modules/annotations-advanced.src.js +1 -1
  155. package/es-modules/masters/modules/annotations.src.d.ts +1 -0
  156. package/es-modules/masters/modules/annotations.src.js +1 -1
  157. package/es-modules/masters/modules/arc-diagram.src.d.ts +1 -0
  158. package/es-modules/masters/modules/arc-diagram.src.js +1 -1
  159. package/es-modules/masters/modules/arrow-symbols.src.d.ts +1 -0
  160. package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
  161. package/es-modules/masters/modules/boost-canvas.src.d.ts +1 -0
  162. package/es-modules/masters/modules/boost-canvas.src.js +1 -1
  163. package/es-modules/masters/modules/boost.src.d.ts +14 -0
  164. package/es-modules/masters/modules/boost.src.js +1 -1
  165. package/es-modules/masters/modules/broken-axis.src.d.ts +1 -0
  166. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  167. package/es-modules/masters/modules/bullet.src.d.ts +1 -0
  168. package/es-modules/masters/modules/bullet.src.js +1 -1
  169. package/es-modules/masters/modules/coloraxis.src.d.ts +1 -0
  170. package/es-modules/masters/modules/coloraxis.src.js +1 -1
  171. package/es-modules/masters/modules/current-date-indicator.src.d.ts +1 -0
  172. package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
  173. package/es-modules/masters/modules/cylinder.src.d.ts +1 -0
  174. package/es-modules/masters/modules/cylinder.src.js +1 -1
  175. package/es-modules/masters/modules/data.src.d.ts +1 -0
  176. package/es-modules/masters/modules/data.src.js +1 -1
  177. package/es-modules/masters/modules/datagrouping.src.d.ts +1 -0
  178. package/es-modules/masters/modules/datagrouping.src.js +1 -1
  179. package/es-modules/masters/modules/debugger.src.d.ts +12 -0
  180. package/es-modules/masters/modules/debugger.src.js +1 -1
  181. package/es-modules/masters/modules/dependency-wheel.src.d.ts +1 -0
  182. package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
  183. package/es-modules/masters/modules/dotplot.src.d.ts +1 -0
  184. package/es-modules/masters/modules/dotplot.src.js +1 -1
  185. package/es-modules/masters/modules/drag-panes.src.d.ts +1 -0
  186. package/es-modules/masters/modules/drag-panes.src.js +1 -1
  187. package/es-modules/masters/modules/draggable-points.src.d.ts +1 -0
  188. package/es-modules/masters/modules/draggable-points.src.js +1 -1
  189. package/es-modules/masters/modules/drilldown.src.d.ts +2 -0
  190. package/es-modules/masters/modules/drilldown.src.js +1 -1
  191. package/es-modules/masters/modules/dumbbell.src.d.ts +1 -0
  192. package/es-modules/masters/modules/dumbbell.src.js +1 -1
  193. package/es-modules/masters/modules/export-data.src.d.ts +1 -0
  194. package/es-modules/masters/modules/export-data.src.js +1 -1
  195. package/es-modules/masters/modules/exporting.src.d.ts +1 -0
  196. package/es-modules/masters/modules/exporting.src.js +1 -1
  197. package/es-modules/masters/modules/full-screen.src.d.ts +1 -0
  198. package/es-modules/masters/modules/full-screen.src.js +1 -1
  199. package/es-modules/masters/modules/funnel.src.d.ts +2 -0
  200. package/es-modules/masters/modules/funnel.src.js +1 -1
  201. package/es-modules/masters/modules/funnel3d.src.d.ts +2 -0
  202. package/es-modules/masters/modules/funnel3d.src.js +1 -1
  203. package/es-modules/masters/modules/gantt.src.d.ts +1 -0
  204. package/es-modules/masters/modules/gantt.src.js +1 -1
  205. package/es-modules/masters/modules/grid-axis.src.d.ts +1 -0
  206. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  207. package/es-modules/masters/modules/heatmap.src.d.ts +1 -0
  208. package/es-modules/masters/modules/heatmap.src.js +1 -1
  209. package/es-modules/masters/modules/heikinashi.src.d.ts +1 -0
  210. package/es-modules/masters/modules/heikinashi.src.js +1 -1
  211. package/es-modules/masters/modules/histogram-bellcurve.src.d.ts +2 -0
  212. package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
  213. package/es-modules/masters/modules/hollowcandlestick.src.d.ts +1 -0
  214. package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
  215. package/es-modules/masters/modules/item-series.src.d.ts +1 -0
  216. package/es-modules/masters/modules/item-series.src.js +1 -1
  217. package/es-modules/masters/modules/lollipop.src.d.ts +1 -0
  218. package/es-modules/masters/modules/lollipop.src.js +1 -1
  219. package/es-modules/masters/modules/map.src.d.ts +7 -0
  220. package/es-modules/masters/modules/map.src.js +1 -1
  221. package/es-modules/masters/modules/marker-clusters.src.d.ts +1 -0
  222. package/es-modules/masters/modules/marker-clusters.src.js +1 -1
  223. package/es-modules/masters/modules/networkgraph.src.d.ts +1 -0
  224. package/es-modules/masters/modules/networkgraph.src.js +1 -1
  225. package/es-modules/masters/modules/no-data-to-display.src.d.ts +1 -0
  226. package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
  227. package/es-modules/masters/modules/offline-exporting.src.d.ts +1 -0
  228. package/es-modules/masters/modules/offline-exporting.src.js +1 -1
  229. package/es-modules/masters/modules/oldie-polyfills.src.d.ts +1 -0
  230. package/es-modules/masters/modules/oldie-polyfills.src.js +1 -1
  231. package/es-modules/masters/modules/oldie.src.d.ts +1 -0
  232. package/es-modules/masters/modules/oldie.src.js +1 -1
  233. package/es-modules/masters/modules/organization.src.d.ts +1 -0
  234. package/es-modules/masters/modules/organization.src.js +1 -1
  235. package/es-modules/masters/modules/overlapping-datalabels.src.d.ts +1 -0
  236. package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  237. package/es-modules/masters/modules/parallel-coordinates.src.d.ts +1 -0
  238. package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
  239. package/es-modules/masters/modules/pareto.src.d.ts +1 -0
  240. package/es-modules/masters/modules/pareto.src.js +1 -1
  241. package/es-modules/masters/modules/pathfinder.src.d.ts +1 -0
  242. package/es-modules/masters/modules/pathfinder.src.js +1 -1
  243. package/es-modules/masters/modules/pattern-fill.src.d.ts +1 -0
  244. package/es-modules/masters/modules/pattern-fill.src.js +1 -1
  245. package/es-modules/masters/modules/price-indicator.src.d.ts +1 -0
  246. package/es-modules/masters/modules/price-indicator.src.js +1 -1
  247. package/es-modules/masters/modules/pyramid3d.src.d.ts +1 -0
  248. package/es-modules/masters/modules/pyramid3d.src.js +1 -1
  249. package/es-modules/masters/modules/sankey.src.d.ts +1 -0
  250. package/es-modules/masters/modules/sankey.src.js +1 -1
  251. package/es-modules/masters/modules/series-label.src.d.ts +1 -0
  252. package/es-modules/masters/modules/series-label.src.js +1 -1
  253. package/es-modules/masters/modules/series-on-point.src.d.ts +13 -0
  254. package/es-modules/masters/modules/series-on-point.src.js +1 -1
  255. package/es-modules/masters/modules/solid-gauge.src.d.ts +1 -0
  256. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  257. package/es-modules/masters/modules/sonification.src.d.ts +12 -0
  258. package/es-modules/masters/modules/sonification.src.js +1 -1
  259. package/es-modules/masters/modules/static-scale.src.d.ts +1 -0
  260. package/es-modules/masters/modules/static-scale.src.js +1 -1
  261. package/es-modules/masters/modules/stock-tools.src.d.ts +1 -0
  262. package/es-modules/masters/modules/stock-tools.src.js +1 -1
  263. package/es-modules/masters/modules/stock.src.d.ts +4 -0
  264. package/es-modules/masters/modules/stock.src.js +1 -1
  265. package/es-modules/masters/modules/streamgraph.src.d.ts +1 -0
  266. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  267. package/es-modules/masters/modules/sunburst.src.d.ts +2 -0
  268. package/es-modules/masters/modules/sunburst.src.js +1 -1
  269. package/es-modules/masters/modules/tilemap.src.d.ts +1 -0
  270. package/es-modules/masters/modules/tilemap.src.js +1 -1
  271. package/es-modules/masters/modules/timeline.src.d.ts +1 -0
  272. package/es-modules/masters/modules/timeline.src.js +1 -1
  273. package/es-modules/masters/modules/treegraph.src.d.ts +1 -0
  274. package/es-modules/masters/modules/treegraph.src.js +1 -1
  275. package/es-modules/masters/modules/treegrid.src.d.ts +1 -0
  276. package/es-modules/masters/modules/treegrid.src.js +1 -1
  277. package/es-modules/masters/modules/treemap.src.d.ts +1 -0
  278. package/es-modules/masters/modules/treemap.src.js +1 -1
  279. package/es-modules/masters/modules/variable-pie.src.d.ts +1 -0
  280. package/es-modules/masters/modules/variable-pie.src.js +1 -1
  281. package/es-modules/masters/modules/variwide.src.d.ts +1 -0
  282. package/es-modules/masters/modules/variwide.src.js +1 -1
  283. package/es-modules/masters/modules/vector.src.d.ts +1 -0
  284. package/es-modules/masters/modules/vector.src.js +1 -1
  285. package/es-modules/masters/modules/venn.src.d.ts +1 -0
  286. package/es-modules/masters/modules/venn.src.js +1 -1
  287. package/es-modules/masters/modules/windbarb.src.d.ts +1 -0
  288. package/es-modules/masters/modules/windbarb.src.js +1 -1
  289. package/es-modules/masters/modules/wordcloud.src.d.ts +1 -0
  290. package/es-modules/masters/modules/wordcloud.src.js +1 -1
  291. package/es-modules/masters/modules/xrange.src.d.ts +1 -0
  292. package/es-modules/masters/modules/xrange.src.js +1 -1
  293. package/es-modules/masters/themes/avocado.src.d.ts +1 -0
  294. package/es-modules/masters/themes/avocado.src.js +1 -1
  295. package/es-modules/masters/themes/brand-dark.src.d.ts +1 -0
  296. package/es-modules/masters/themes/brand-dark.src.js +1 -1
  297. package/es-modules/masters/themes/brand-light.src.d.ts +1 -0
  298. package/es-modules/masters/themes/brand-light.src.js +1 -1
  299. package/es-modules/masters/themes/dark-blue.src.d.ts +1 -0
  300. package/es-modules/masters/themes/dark-blue.src.js +1 -1
  301. package/es-modules/masters/themes/dark-green.src.d.ts +1 -0
  302. package/es-modules/masters/themes/dark-green.src.js +1 -1
  303. package/es-modules/masters/themes/dark-unica.src.d.ts +1 -0
  304. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  305. package/es-modules/masters/themes/gray.src.d.ts +1 -0
  306. package/es-modules/masters/themes/gray.src.js +1 -1
  307. package/es-modules/masters/themes/grid-light.src.d.ts +1 -0
  308. package/es-modules/masters/themes/grid-light.src.js +1 -1
  309. package/es-modules/masters/themes/grid.src.d.ts +1 -0
  310. package/es-modules/masters/themes/grid.src.js +1 -1
  311. package/es-modules/masters/themes/high-contrast-dark.src.d.ts +1 -0
  312. package/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
  313. package/es-modules/masters/themes/high-contrast-light.src.d.ts +1 -0
  314. package/es-modules/masters/themes/high-contrast-light.src.js +1 -1
  315. package/es-modules/masters/themes/sand-signika.src.d.ts +1 -0
  316. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  317. package/es-modules/masters/themes/skies.src.d.ts +1 -0
  318. package/es-modules/masters/themes/skies.src.js +1 -1
  319. package/es-modules/masters/themes/sunset.src.d.ts +1 -0
  320. package/es-modules/masters/themes/sunset.src.js +1 -1
  321. package/gfx/dashboard-icons/add.svg +8 -0
  322. package/gfx/dashboard-icons/close.svg +1 -0
  323. package/gfx/dashboard-icons/computer.svg +1 -0
  324. package/gfx/dashboard-icons/destroy.svg +1 -0
  325. package/gfx/dashboard-icons/drag.svg +1 -0
  326. package/gfx/dashboard-icons/menu.svg +8 -0
  327. package/gfx/dashboard-icons/settings.svg +1 -0
  328. package/gfx/dashboard-icons/smartphone.svg +46 -0
  329. package/gfx/dashboard-icons/tablet.svg +71 -0
  330. package/highcharts-3d.js +1 -1
  331. package/highcharts-3d.src.js +1 -1
  332. package/highcharts-gantt.js +809 -809
  333. package/highcharts-gantt.js.map +1 -1
  334. package/highcharts-gantt.src.js +180 -218
  335. package/highcharts-more.d.ts +6 -0
  336. package/highcharts-more.js +174 -174
  337. package/highcharts-more.js.map +1 -1
  338. package/highcharts-more.src.d.ts +6 -0
  339. package/highcharts-more.src.js +128 -116
  340. package/highcharts.d.ts +2356 -25971
  341. package/highcharts.js +587 -587
  342. package/highcharts.js.map +1 -1
  343. package/highcharts.src.d.ts +2356 -25971
  344. package/highcharts.src.js +155 -208
  345. package/highmaps.js +756 -756
  346. package/highmaps.js.map +1 -1
  347. package/highmaps.src.js +207 -232
  348. package/highstock.js +795 -796
  349. package/highstock.js.map +1 -1
  350. package/highstock.src.js +169 -219
  351. package/indicators/acceleration-bands.js +1 -1
  352. package/indicators/acceleration-bands.src.js +1 -1
  353. package/indicators/accumulation-distribution.js +1 -1
  354. package/indicators/accumulation-distribution.src.js +1 -1
  355. package/indicators/ao.js +1 -1
  356. package/indicators/ao.src.js +1 -1
  357. package/indicators/apo.js +1 -1
  358. package/indicators/apo.src.js +1 -1
  359. package/indicators/aroon-oscillator.js +1 -1
  360. package/indicators/aroon-oscillator.src.js +1 -1
  361. package/indicators/aroon.js +1 -1
  362. package/indicators/aroon.src.js +1 -1
  363. package/indicators/atr.js +1 -1
  364. package/indicators/atr.src.js +1 -1
  365. package/indicators/bollinger-bands.js +1 -1
  366. package/indicators/bollinger-bands.src.js +1 -1
  367. package/indicators/cci.js +1 -1
  368. package/indicators/cci.src.js +1 -1
  369. package/indicators/chaikin.js +1 -1
  370. package/indicators/chaikin.src.js +1 -1
  371. package/indicators/cmf.js +1 -1
  372. package/indicators/cmf.src.js +1 -1
  373. package/indicators/cmo.js +1 -1
  374. package/indicators/cmo.src.js +1 -1
  375. package/indicators/dema.js +1 -1
  376. package/indicators/dema.src.js +1 -1
  377. package/indicators/disparity-index.js +1 -1
  378. package/indicators/disparity-index.src.js +1 -1
  379. package/indicators/dmi.js +1 -1
  380. package/indicators/dmi.src.js +1 -1
  381. package/indicators/dpo.js +1 -1
  382. package/indicators/dpo.src.js +1 -1
  383. package/indicators/ichimoku-kinko-hyo.js +1 -1
  384. package/indicators/ichimoku-kinko-hyo.src.js +1 -1
  385. package/indicators/indicators-all.js +1 -1
  386. package/indicators/indicators-all.src.js +1 -1
  387. package/indicators/indicators.js +1 -1
  388. package/indicators/indicators.src.js +1 -1
  389. package/indicators/keltner-channels.js +1 -1
  390. package/indicators/keltner-channels.src.js +1 -1
  391. package/indicators/klinger.js +1 -1
  392. package/indicators/klinger.src.js +1 -1
  393. package/indicators/macd.js +1 -1
  394. package/indicators/macd.src.js +1 -1
  395. package/indicators/mfi.js +1 -1
  396. package/indicators/mfi.src.js +1 -1
  397. package/indicators/momentum.js +1 -1
  398. package/indicators/momentum.src.js +1 -1
  399. package/indicators/natr.js +1 -1
  400. package/indicators/natr.src.js +1 -1
  401. package/indicators/obv.js +1 -1
  402. package/indicators/obv.src.js +1 -1
  403. package/indicators/pivot-points.js +1 -1
  404. package/indicators/pivot-points.src.js +1 -1
  405. package/indicators/ppo.js +1 -1
  406. package/indicators/ppo.src.js +1 -1
  407. package/indicators/price-channel.js +1 -1
  408. package/indicators/price-channel.src.js +1 -1
  409. package/indicators/price-envelopes.js +1 -1
  410. package/indicators/price-envelopes.src.js +1 -1
  411. package/indicators/psar.js +1 -1
  412. package/indicators/psar.src.js +1 -1
  413. package/indicators/regressions.js +1 -1
  414. package/indicators/regressions.src.js +1 -1
  415. package/indicators/roc.js +1 -1
  416. package/indicators/roc.src.js +1 -1
  417. package/indicators/rsi.js +1 -1
  418. package/indicators/rsi.src.js +1 -1
  419. package/indicators/slow-stochastic.js +1 -1
  420. package/indicators/slow-stochastic.src.js +1 -1
  421. package/indicators/stochastic.js +1 -1
  422. package/indicators/stochastic.src.js +1 -1
  423. package/indicators/supertrend.js +1 -1
  424. package/indicators/supertrend.src.js +1 -1
  425. package/indicators/tema.js +1 -1
  426. package/indicators/tema.src.js +1 -1
  427. package/indicators/trendline.js +1 -1
  428. package/indicators/trendline.src.js +1 -1
  429. package/indicators/trix.js +1 -1
  430. package/indicators/trix.src.js +1 -1
  431. package/indicators/volume-by-price.js +1 -1
  432. package/indicators/volume-by-price.src.js +1 -1
  433. package/indicators/vwap.js +1 -1
  434. package/indicators/vwap.src.js +1 -1
  435. package/indicators/williams-r.js +1 -1
  436. package/indicators/williams-r.src.js +1 -1
  437. package/indicators/wma.js +1 -1
  438. package/indicators/wma.src.js +1 -1
  439. package/indicators/zigzag.js +1 -1
  440. package/indicators/zigzag.src.js +1 -1
  441. package/modules/accessibility.js +233 -232
  442. package/modules/accessibility.js.map +1 -1
  443. package/modules/accessibility.src.js +58 -43
  444. package/modules/annotations-advanced.js +166 -165
  445. package/modules/annotations-advanced.js.map +1 -1
  446. package/modules/annotations-advanced.src.js +9 -4
  447. package/modules/annotations.js +41 -40
  448. package/modules/annotations.js.map +1 -1
  449. package/modules/annotations.src.js +9 -4
  450. package/modules/arc-diagram.js +3 -3
  451. package/modules/arc-diagram.js.map +1 -1
  452. package/modules/arc-diagram.src.js +4 -2
  453. package/modules/arrow-symbols.js +1 -1
  454. package/modules/arrow-symbols.src.js +1 -1
  455. package/modules/boost-canvas.js +1 -1
  456. package/modules/boost-canvas.src.js +1 -1
  457. package/modules/boost.js +1 -1
  458. package/modules/boost.src.js +1 -1
  459. package/modules/broken-axis.js +1 -1
  460. package/modules/broken-axis.src.js +1 -1
  461. package/modules/bullet.js +1 -1
  462. package/modules/bullet.src.js +1 -1
  463. package/modules/coloraxis.js +1 -1
  464. package/modules/coloraxis.src.js +1 -1
  465. package/modules/current-date-indicator.js +1 -1
  466. package/modules/current-date-indicator.src.js +1 -1
  467. package/modules/cylinder.js +1 -1
  468. package/modules/cylinder.src.js +1 -1
  469. package/modules/data.js +1 -1
  470. package/modules/data.src.js +1 -1
  471. package/modules/datagrouping.js +1 -1
  472. package/modules/datagrouping.src.js +1 -1
  473. package/modules/debugger.js +1 -1
  474. package/modules/debugger.src.js +1 -1
  475. package/modules/dependency-wheel.js +1 -1
  476. package/modules/dependency-wheel.src.js +1 -1
  477. package/modules/dotplot.js +1 -1
  478. package/modules/dotplot.src.js +1 -1
  479. package/modules/drag-panes.js +1 -1
  480. package/modules/drag-panes.src.js +1 -1
  481. package/modules/draggable-points.js +1 -1
  482. package/modules/draggable-points.src.js +1 -1
  483. package/modules/drilldown.js +1 -1
  484. package/modules/drilldown.src.js +1 -1
  485. package/modules/dumbbell.js +1 -1
  486. package/modules/dumbbell.src.js +1 -1
  487. package/modules/export-data.js +1 -1
  488. package/modules/export-data.src.js +1 -1
  489. package/modules/exporting.js +1 -1
  490. package/modules/exporting.src.js +1 -1
  491. package/modules/full-screen.js +1 -1
  492. package/modules/full-screen.src.js +1 -1
  493. package/modules/funnel.js +1 -1
  494. package/modules/funnel.src.js +1 -1
  495. package/modules/funnel3d.js +1 -1
  496. package/modules/funnel3d.src.js +1 -1
  497. package/modules/gantt.js +220 -219
  498. package/modules/gantt.js.map +1 -1
  499. package/modules/gantt.src.js +26 -11
  500. package/modules/grid-axis.js +1 -1
  501. package/modules/grid-axis.src.js +1 -1
  502. package/modules/heatmap.js +1 -1
  503. package/modules/heatmap.src.js +1 -1
  504. package/modules/heikinashi.js +1 -1
  505. package/modules/heikinashi.src.js +1 -1
  506. package/modules/histogram-bellcurve.js +1 -1
  507. package/modules/histogram-bellcurve.src.js +1 -1
  508. package/modules/hollowcandlestick.js +1 -1
  509. package/modules/hollowcandlestick.src.js +1 -1
  510. package/modules/item-series.js +1 -1
  511. package/modules/item-series.src.js +1 -1
  512. package/modules/lollipop.js +1 -1
  513. package/modules/lollipop.src.js +1 -1
  514. package/modules/map.js +171 -170
  515. package/modules/map.js.map +1 -1
  516. package/modules/map.src.js +53 -25
  517. package/modules/marker-clusters.js +1 -1
  518. package/modules/marker-clusters.src.js +1 -1
  519. package/modules/networkgraph.js +1 -1
  520. package/modules/networkgraph.src.js +1 -1
  521. package/modules/no-data-to-display.js +1 -1
  522. package/modules/no-data-to-display.src.js +1 -1
  523. package/modules/offline-exporting.js +2 -2
  524. package/modules/offline-exporting.src.js +2 -2
  525. package/modules/oldie-polyfills.js +1 -1
  526. package/modules/oldie-polyfills.src.js +1 -1
  527. package/modules/oldie.js +2 -2
  528. package/modules/oldie.src.js +2 -2
  529. package/modules/organization.js +1 -1
  530. package/modules/organization.src.js +1 -1
  531. package/modules/overlapping-datalabels.js +1 -1
  532. package/modules/overlapping-datalabels.src.js +1 -1
  533. package/modules/parallel-coordinates.js +1 -1
  534. package/modules/parallel-coordinates.src.js +1 -1
  535. package/modules/pareto.js +1 -1
  536. package/modules/pareto.src.js +1 -1
  537. package/modules/pathfinder.js +27 -27
  538. package/modules/pathfinder.js.map +1 -1
  539. package/modules/pathfinder.src.js +9 -8
  540. package/modules/pattern-fill.js +2 -2
  541. package/modules/pattern-fill.js.map +1 -1
  542. package/modules/pattern-fill.src.js +13 -11
  543. package/modules/price-indicator.js +1 -1
  544. package/modules/price-indicator.src.js +1 -1
  545. package/modules/pyramid3d.js +1 -1
  546. package/modules/pyramid3d.src.js +1 -1
  547. package/modules/sankey.js +20 -20
  548. package/modules/sankey.js.map +1 -1
  549. package/modules/sankey.src.js +5 -1
  550. package/modules/series-label.js +19 -18
  551. package/modules/series-label.js.map +1 -1
  552. package/modules/series-label.src.js +134 -98
  553. package/modules/series-on-point.js +1 -1
  554. package/modules/series-on-point.src.js +1 -1
  555. package/modules/solid-gauge.js +1 -1
  556. package/modules/solid-gauge.src.js +1 -1
  557. package/modules/sonification.js +1 -1
  558. package/modules/sonification.src.js +1 -1
  559. package/modules/static-scale.js +1 -1
  560. package/modules/static-scale.src.js +1 -1
  561. package/modules/stock-tools.js +2 -2
  562. package/modules/stock-tools.src.js +3 -3
  563. package/modules/stock.js +205 -205
  564. package/modules/stock.js.map +1 -1
  565. package/modules/stock.src.js +15 -12
  566. package/modules/streamgraph.js +1 -1
  567. package/modules/streamgraph.src.js +1 -1
  568. package/modules/sunburst.js +1 -1
  569. package/modules/sunburst.src.js +1 -1
  570. package/modules/tilemap.js +1 -1
  571. package/modules/tilemap.src.js +1 -1
  572. package/modules/timeline.js +1 -1
  573. package/modules/timeline.src.js +1 -1
  574. package/modules/treegraph.js +32 -31
  575. package/modules/treegraph.js.map +1 -1
  576. package/modules/treegraph.src.js +11 -4
  577. package/modules/treegrid.js +1 -1
  578. package/modules/treegrid.src.js +1 -1
  579. package/modules/treemap.js +1 -1
  580. package/modules/treemap.src.js +1 -1
  581. package/modules/variable-pie.js +1 -1
  582. package/modules/variable-pie.src.js +1 -1
  583. package/modules/variwide.js +1 -1
  584. package/modules/variwide.src.js +1 -1
  585. package/modules/vector.js +1 -1
  586. package/modules/vector.src.js +1 -1
  587. package/modules/venn.js +1 -1
  588. package/modules/venn.src.js +1 -1
  589. package/modules/windbarb.js +15 -15
  590. package/modules/windbarb.js.map +1 -1
  591. package/modules/windbarb.src.js +4 -5
  592. package/modules/wordcloud.js +1 -1
  593. package/modules/wordcloud.src.js +1 -1
  594. package/modules/xrange.js +9 -8
  595. package/modules/xrange.js.map +1 -1
  596. package/modules/xrange.src.js +7 -1
  597. package/package.json +1 -1
  598. package/themes/avocado.js +1 -1
  599. package/themes/avocado.src.js +1 -1
  600. package/themes/brand-dark.js +1 -1
  601. package/themes/brand-dark.src.js +1 -1
  602. package/themes/brand-light.js +1 -1
  603. package/themes/brand-light.src.js +1 -1
  604. package/themes/dark-blue.js +1 -1
  605. package/themes/dark-blue.src.js +1 -1
  606. package/themes/dark-green.js +1 -1
  607. package/themes/dark-green.src.js +1 -1
  608. package/themes/dark-unica.js +1 -1
  609. package/themes/dark-unica.src.js +1 -1
  610. package/themes/gray.js +1 -1
  611. package/themes/gray.src.js +1 -1
  612. package/themes/grid-light.js +1 -1
  613. package/themes/grid-light.src.js +1 -1
  614. package/themes/grid.js +1 -1
  615. package/themes/grid.src.js +1 -1
  616. package/themes/high-contrast-dark.js +1 -1
  617. package/themes/high-contrast-dark.src.js +1 -1
  618. package/themes/high-contrast-light.js +1 -1
  619. package/themes/high-contrast-light.src.js +1 -1
  620. package/themes/sand-signika.js +1 -1
  621. package/themes/sand-signika.src.js +1 -1
  622. package/themes/skies.js +1 -1
  623. package/themes/skies.src.js +1 -1
  624. package/themes/sunset.js +1 -1
  625. package/themes/sunset.src.js +1 -1
@@ -56,7 +56,7 @@ var ScatterSeriesDefaults = {
56
56
  * https://api.highcharts.com/highcharts/plotOptions.column.pointPadding)
57
57
  * settings.
58
58
  *
59
- * @sample {highcharts} highcharts/series-scatter/jitter
59
+ * @sample {highcharts} highcharts/demo/scatter-jitter
60
60
  * Jitter on a scatter plot
61
61
  *
62
62
  * @sample {highcharts} highcharts/series-scatter/jitter-boxplot
@@ -50,6 +50,7 @@ var TreegraphPoint = /** @class */ (function (_super) {
50
50
  _this.isLink = false;
51
51
  _this.series = void 0;
52
52
  _this.node = void 0;
53
+ _this.setState = Point.prototype.setState;
53
54
  return _this;
54
55
  }
55
56
  /* *
@@ -147,9 +148,6 @@ var TreegraphPoint = /** @class */ (function (_super) {
147
148
  y: y + height / 2 - btnHeight / 2 + btnOptions.y
148
149
  };
149
150
  };
150
- TreegraphPoint.prototype.setState = function () {
151
- Point.prototype.setState.apply(this, arguments);
152
- };
153
151
  return TreegraphPoint;
154
152
  }(TreemapPoint));
155
153
  addEvent(TreegraphPoint, 'mouseOut', function () {
@@ -167,6 +167,11 @@ var TreegraphSeries = /** @class */ (function (_super) {
167
167
  level = (point && point.level) || level;
168
168
  return _super.prototype.buildTree.call(this, id, index, level, list, parent);
169
169
  };
170
+ TreegraphSeries.prototype.markerAttribs = function () {
171
+ // The super Series.markerAttribs returns { width: NaN, height: NaN },
172
+ // so just disable this for now.
173
+ return {};
174
+ };
170
175
  TreegraphSeries.prototype.setCollapsedStatus = function (node, visibility) {
171
176
  var _this = this;
172
177
  var point = node.point;
@@ -180,6 +185,10 @@ var TreegraphSeries = /** @class */ (function (_super) {
180
185
  _this.setCollapsedStatus(childNode, visibility);
181
186
  });
182
187
  };
188
+ TreegraphSeries.prototype.drawTracker = function () {
189
+ ColumnSeries.prototype.drawTracker.apply(this, arguments);
190
+ ColumnSeries.prototype.drawTracker.call(this, this.links);
191
+ };
183
192
  /**
184
193
  * Run pre-translation by generating the nodeColumns.
185
194
  * @private
@@ -84,34 +84,30 @@ var WaterfallSeries = /** @class */ (function (_super) {
84
84
  * */
85
85
  // After generating points, set y-values for all sums.
86
86
  WaterfallSeries.prototype.generatePoints = function () {
87
- var point, len, i, y;
88
87
  // Parent call:
89
88
  ColumnSeries.prototype.generatePoints.apply(this);
90
- for (i = 0, len = this.points.length; i < len; i++) {
91
- point = this.points[i];
92
- y = this.processedYData[i];
93
- // override point value for sums
94
- // #3710 Update point does not propagate to sum
95
- if (point.isIntermediateSum || point.isSum) {
89
+ for (var i = 0, len = this.points.length; i < len; i++) {
90
+ var point = this.points[i], y = this.processedYData[i];
91
+ // Override point value for sums. #3710 Update point does not
92
+ // propagate to sum
93
+ if (isNumber(y) && (point.isIntermediateSum || point.isSum)) {
96
94
  point.y = correctFloat(y);
97
95
  }
98
96
  }
99
97
  };
100
98
  // Translate data points from raw values
101
99
  WaterfallSeries.prototype.translate = function () {
102
- var series = this, options = series.options, yAxis = series.yAxis, y, minPointLength = pick(options.minPointLength, 5), halfMinPointLength = minPointLength / 2, threshold = options.threshold || 0, previousY = threshold, previousIntermediate = threshold, stacking = options.stacking, actualStack = yAxis.waterfall.stacks[series.stackKey], total, yPos, hPos;
100
+ var series = this, options = series.options, yAxis = series.yAxis, minPointLength = pick(options.minPointLength, 5), halfMinPointLength = minPointLength / 2, threshold = options.threshold || 0, stacking = options.stacking, actualStack = yAxis.waterfall.stacks[series.stackKey];
101
+ var previousIntermediate = threshold, previousY = threshold, y, total, yPos, hPos;
103
102
  // run column series translate
104
103
  ColumnSeries.prototype.translate.apply(series);
105
104
  var points = series.points;
106
105
  for (var i = 0; i < points.length; i++) {
107
- var point = points[i];
108
- var yValue = series.processedYData[i];
109
- var shapeArgs = point.shapeArgs;
106
+ var point = points[i], yValue = series.processedYData[i], shapeArgs = point.shapeArgs;
110
107
  if (!shapeArgs || !isNumber(yValue)) {
111
108
  continue;
112
109
  }
113
- var range = [0, yValue];
114
- var pointY = point.y;
110
+ var range = [0, yValue], pointY = point.y;
115
111
  // code responsible for correct positions of stacked points
116
112
  // starts here
117
113
  if (stacking) {
@@ -142,14 +138,16 @@ var WaterfallSeries = /** @class */ (function (_super) {
142
138
  y = total - pointY;
143
139
  }
144
140
  if (!actualStackX.posTotal) {
145
- if (ownProp(actualStackX, 'absolutePos')) {
141
+ if (isNumber(actualStackX.absolutePos) &&
142
+ ownProp(actualStackX, 'absolutePos')) {
146
143
  actualStackX.posTotal =
147
144
  actualStackX.absolutePos;
148
145
  delete actualStackX.absolutePos;
149
146
  }
150
147
  }
151
148
  if (!actualStackX.negTotal) {
152
- if (ownProp(actualStackX, 'absoluteNeg')) {
149
+ if (isNumber(actualStackX.absoluteNeg) &&
150
+ ownProp(actualStackX, 'absoluteNeg')) {
153
151
  actualStackX.negTotal =
154
152
  actualStackX.absoluteNeg;
155
153
  delete actualStackX.absoluteNeg;
@@ -321,12 +319,12 @@ var WaterfallSeries = /** @class */ (function (_super) {
321
319
  };
322
320
  // Postprocess mapping between options and SVG attributes
323
321
  WaterfallSeries.prototype.pointAttribs = function (point, state) {
324
- var upColor = this.options.upColor, attr;
322
+ var upColor = this.options.upColor;
325
323
  // Set or reset up color (#3710, update to negative)
326
324
  if (upColor && !point.options.color) {
327
- point.color = point.y > 0 ? upColor : null;
325
+ point.color = point.y > 0 ? upColor : void 0;
328
326
  }
329
- attr = ColumnSeries.prototype.pointAttribs.call(this, point, state);
327
+ var attr = ColumnSeries.prototype.pointAttribs.call(this, point, state);
330
328
  // The dashStyle option in waterfall applies to the graph, not
331
329
  // the points
332
330
  delete attr.dashstyle;
@@ -353,7 +351,7 @@ var WaterfallSeries = /** @class */ (function (_super) {
353
351
  // value
354
352
  if (stacking) {
355
353
  connectorThreshold = prevStackX.connectorThreshold;
356
- yPos = Math.round((yAxis.translate(connectorThreshold, 0, 1, 0, 1) +
354
+ yPos = Math.round((yAxis.translate(connectorThreshold, false, true, false, true) +
357
355
  (reversedYAxis ? isPos : 0))) - graphNormalizer;
358
356
  }
359
357
  else {
@@ -395,14 +393,16 @@ var WaterfallSeries = /** @class */ (function (_super) {
395
393
  // crisp rendering.
396
394
  WaterfallSeries.prototype.drawGraph = function () {
397
395
  LineSeries.prototype.drawGraph.call(this);
398
- this.graph.attr({
399
- d: this.getCrispPath()
400
- });
396
+ if (this.graph) {
397
+ this.graph.attr({
398
+ d: this.getCrispPath()
399
+ });
400
+ }
401
401
  };
402
402
  // Waterfall has stacking along the x-values too.
403
403
  WaterfallSeries.prototype.setStackedPoints = function () {
404
- var series = this, options = series.options, waterfallStacks = series.yAxis.waterfall.stacks, seriesThreshold = options.threshold, stackThreshold = seriesThreshold || 0, interSum = stackThreshold, stackKey = series.stackKey, xData = series.xData, xLength = xData.length, actualStack, actualStackX, totalYVal, actualSum, prevSum, statesLen, posTotal, negTotal, xPoint, yVal, x, alreadyChanged, changed;
405
- // function responsible for calculating correct values for stackState
404
+ var series = this, options = series.options, waterfallStacks = series.yAxis.waterfall.stacks, seriesThreshold = options.threshold || 0, stackThreshold = seriesThreshold, interSum = stackThreshold, stackKey = series.stackKey, xData = series.xData, xLength = xData.length, actualStackX, totalYVal, actualSum, prevSum, statesLen, posTotal, negTotal, xPoint, yVal, x, alreadyChanged, changed;
405
+ // Function responsible for calculating correct values for stackState
406
406
  // array of each stack item. The arguments are: firstS - the value for
407
407
  // the first state, nextS - the difference between the previous and the
408
408
  // newest state, sInx - counter used in the for that updates each state
@@ -410,16 +410,18 @@ var WaterfallSeries = /** @class */ (function (_super) {
410
410
  // they need to be updated (if point isn't a total sum)
411
411
  // eslint-disable-next-line require-jsdoc
412
412
  function calculateStackState(firstS, nextS, sInx, sOff) {
413
- if (!statesLen) {
414
- actualStackX.stackState[0] = firstS;
415
- statesLen = actualStackX.stackState.length;
416
- }
417
- else {
418
- for (sInx; sInx < statesLen; sInx++) {
419
- actualStackX.stackState[sInx] += sOff;
413
+ if (actualStackX) {
414
+ if (!statesLen) {
415
+ actualStackX.stackState[0] = firstS;
416
+ statesLen = actualStackX.stackState.length;
417
+ }
418
+ else {
419
+ for (sInx; sInx < statesLen; sInx++) {
420
+ actualStackX.stackState[sInx] += sOff;
421
+ }
420
422
  }
423
+ actualStackX.stackState.push(actualStackX.stackState[statesLen - 1] + nextS);
421
424
  }
422
- actualStackX.stackState.push(actualStackX.stackState[statesLen - 1] + nextS);
423
425
  }
424
426
  series.yAxis.stacking.usePercentage = false;
425
427
  totalYVal = actualSum = prevSum = stackThreshold;
@@ -428,9 +430,9 @@ var WaterfallSeries = /** @class */ (function (_super) {
428
430
  !series.chart.options.chart.ignoreHiddenSeries) {
429
431
  changed = waterfallStacks.changed;
430
432
  alreadyChanged = waterfallStacks.alreadyChanged;
431
- // in case of a redraw, stack for each x value must be
432
- // emptied (only for the first series in a specific stack)
433
- // and recalculated once more
433
+ // In case of a redraw, stack for each x value must be emptied (only
434
+ // for the first series in a specific stack) and recalculated once
435
+ // more
434
436
  if (alreadyChanged &&
435
437
  alreadyChanged.indexOf(stackKey) < 0) {
436
438
  changed = true;
@@ -438,62 +440,62 @@ var WaterfallSeries = /** @class */ (function (_super) {
438
440
  if (!waterfallStacks[stackKey]) {
439
441
  waterfallStacks[stackKey] = {};
440
442
  }
441
- actualStack = waterfallStacks[stackKey];
442
- for (var i = 0; i < xLength; i++) {
443
- x = xData[i];
444
- if (!actualStack[x] || changed) {
445
- actualStack[x] = {
446
- negTotal: 0,
447
- posTotal: 0,
448
- stackTotal: 0,
449
- threshold: 0,
450
- stateIndex: 0,
451
- stackState: [],
452
- label: ((changed &&
453
- actualStack[x]) ?
454
- actualStack[x].label :
455
- void 0)
456
- };
457
- }
458
- actualStackX = actualStack[x];
459
- yVal = series.yData[i];
460
- if (yVal >= 0) {
461
- actualStackX.posTotal += yVal;
462
- }
463
- else {
464
- actualStackX.negTotal += yVal;
465
- }
466
- // points do not exist yet, so raw data is used
467
- xPoint = options.data[i];
468
- posTotal = actualStackX.absolutePos =
469
- actualStackX.posTotal;
470
- negTotal = actualStackX.absoluteNeg =
471
- actualStackX.negTotal;
472
- actualStackX.stackTotal = posTotal + negTotal;
473
- statesLen = actualStackX.stackState.length;
474
- if (xPoint && xPoint.isIntermediateSum) {
475
- calculateStackState(prevSum, actualSum, 0, prevSum);
476
- prevSum = actualSum;
477
- actualSum = seriesThreshold;
478
- // swapping values
479
- stackThreshold ^= interSum;
480
- interSum ^= stackThreshold;
481
- stackThreshold ^= interSum;
482
- }
483
- else if (xPoint && xPoint.isSum) {
484
- calculateStackState(seriesThreshold, totalYVal, statesLen);
485
- stackThreshold = seriesThreshold;
486
- }
487
- else {
488
- calculateStackState(stackThreshold, yVal, 0, totalYVal);
489
- if (xPoint) {
490
- totalYVal += yVal;
491
- actualSum += yVal;
443
+ var actualStack = waterfallStacks[stackKey];
444
+ if (actualStack) {
445
+ for (var i = 0; i < xLength; i++) {
446
+ x = xData[i];
447
+ if (!actualStack[x] || changed) {
448
+ actualStack[x] = {
449
+ negTotal: 0,
450
+ posTotal: 0,
451
+ stackTotal: 0,
452
+ threshold: 0,
453
+ stateIndex: 0,
454
+ stackState: [],
455
+ label: ((changed &&
456
+ actualStack[x]) ?
457
+ actualStack[x].label :
458
+ void 0)
459
+ };
460
+ }
461
+ actualStackX = actualStack[x];
462
+ yVal = series.yData[i];
463
+ if (yVal >= 0) {
464
+ actualStackX.posTotal += yVal;
465
+ }
466
+ else {
467
+ actualStackX.negTotal += yVal;
468
+ }
469
+ // points do not exist yet, so raw data is used
470
+ xPoint = options.data[i];
471
+ posTotal = actualStackX.absolutePos = actualStackX.posTotal;
472
+ negTotal = actualStackX.absoluteNeg = actualStackX.negTotal;
473
+ actualStackX.stackTotal = posTotal + negTotal;
474
+ statesLen = actualStackX.stackState.length;
475
+ if (xPoint && xPoint.isIntermediateSum) {
476
+ calculateStackState(prevSum, actualSum, 0, prevSum);
477
+ prevSum = actualSum;
478
+ actualSum = seriesThreshold;
479
+ // swapping values
480
+ stackThreshold ^= interSum;
481
+ interSum ^= stackThreshold;
482
+ stackThreshold ^= interSum;
483
+ }
484
+ else if (xPoint && xPoint.isSum) {
485
+ calculateStackState(seriesThreshold, totalYVal, statesLen, 0);
486
+ stackThreshold = seriesThreshold;
487
+ }
488
+ else {
489
+ calculateStackState(stackThreshold, yVal, 0, totalYVal);
490
+ if (xPoint) {
491
+ totalYVal += yVal;
492
+ actualSum += yVal;
493
+ }
492
494
  }
495
+ actualStackX.stateIndex++;
496
+ actualStackX.threshold = stackThreshold;
497
+ stackThreshold += actualStackX.stackTotal;
493
498
  }
494
- actualStackX.stateIndex++;
495
- actualStackX.threshold = stackThreshold;
496
- stackThreshold += actualStackX.stackTotal;
497
499
  }
498
500
  waterfallStacks.changed = false;
499
501
  if (!waterfallStacks.alreadyChanged) {
@@ -29,7 +29,6 @@ import A from '../../Core/Animation/AnimationUtilities.js';
29
29
  var animObject = A.animObject;
30
30
  import ApproximationRegistry from '../../Extensions/DataGrouping/ApproximationRegistry.js';
31
31
  import H from '../../Core/Globals.js';
32
- var noop = H.noop;
33
32
  import OnSeriesComposition from '../OnSeriesComposition.js';
34
33
  import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
35
34
  var Series = SeriesRegistry.series, ColumnSeries = SeriesRegistry.seriesTypes.column;
@@ -351,11 +350,11 @@ extend(WindbarbSeries.prototype, {
351
350
  'Gentle breeze', 'Moderate breeze', 'Fresh breeze',
352
351
  'Strong breeze', 'Near gale', 'Gale', 'Strong gale', 'Storm',
353
352
  'Violent storm', 'Hurricane'],
353
+ invertible: false,
354
354
  parallelArrays: ['x', 'value', 'direction'],
355
355
  pointArrayMap: ['value', 'direction'],
356
356
  pointClass: WindbarbPoint,
357
357
  trackerGroups: ['markerGroup'],
358
- invertGroups: noop,
359
358
  translate: function () {
360
359
  var beaufortFloor = this.beaufortFloor, beaufortName = this.beaufortName;
361
360
  OnSeriesComposition.translate.call(this);
@@ -205,6 +205,12 @@ var XRangeSeries = /** @class */ (function (_super) {
205
205
  }
206
206
  return pointIndex;
207
207
  };
208
+ XRangeSeries.prototype.alignDataLabel = function (point) {
209
+ var oldPlotX = point.plotX;
210
+ point.plotX = pick(point.dlBox && point.dlBox.centerX, point.plotX);
211
+ _super.prototype.alignDataLabel.apply(this, arguments);
212
+ point.plotX = oldPlotX;
213
+ };
208
214
  /**
209
215
  * @private
210
216
  */
@@ -329,10 +329,16 @@ var Navigator = /** @class */ (function () {
329
329
  }
330
330
  // Create the handlers:
331
331
  if (navigatorOptions.handles && navigatorOptions.handles.enabled) {
332
- var handlesOptions_1 = navigatorOptions.handles;
332
+ var handlesOptions_1 = navigatorOptions.handles, height_1 = handlesOptions_1.height, width_1 = handlesOptions_1.width;
333
333
  [0, 1].forEach(function (index) {
334
- handlesOptions_1.inverted = !!chart.inverted;
335
- navigator.handles[index] = renderer.symbol(handlesOptions_1.symbols[index], -handlesOptions_1.width / 2 - 1, 0, handlesOptions_1.width, handlesOptions_1.height, navigatorOptions.handles);
334
+ navigator.handles[index] = renderer.symbol(handlesOptions_1.symbols[index], -width_1 / 2 - 1, 0, width_1, height_1, handlesOptions_1);
335
+ if (chart.inverted) {
336
+ navigator.handles[index].attr({
337
+ rotation: 90,
338
+ rotationOriginX: Math.floor(-width_1 / 2),
339
+ rotationOriginY: (height_1 + width_1) / 2
340
+ });
341
+ }
336
342
  // zIndex = 6 for right handle, 7 for left.
337
343
  // Can't be 10, because of the tooltip in inverted chart #2908
338
344
  navigator.handles[index].attr({ zIndex: 7 - index })
@@ -508,7 +508,7 @@ var Toolbar = /** @class */ (function () {
508
508
  Toolbar.prototype.getIconsURL = function () {
509
509
  return this.chart.options.navigation.iconsURL ||
510
510
  this.options.iconsURL ||
511
- 'https://code.highcharts.com/10.3.1/gfx/stock-icons/';
511
+ 'https://code.highcharts.com/10.3.2/gfx/stock-icons/';
512
512
  };
513
513
  return Toolbar;
514
514
  }());
@@ -0,0 +1,4 @@
1
+ import '../Core/Series/Series3D.js';
2
+ import '../Series/Column3D/Column3DComposition.js';
3
+ import '../Series/Pie3D/Pie3DComposition.js';
4
+ import '../Series/Scatter3D/Scatter3DSeries.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v10.3.1 (2022-10-31)
2
+ * @license Highcharts JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/highcharts-3d
4
4
  * @requires highcharts
5
5
  *
@@ -0,0 +1,3 @@
1
+ import Highcharts from './highcharts.src.js';
2
+ import './modules/gantt.src.js';
3
+ export default Highcharts;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts Gantt JS v10.3.1 (2022-10-31)
2
+ * @license Highcharts Gantt JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/highcharts-gantt
4
4
  *
5
5
  * (c) 2017-2021 Lars Cabrera, Torstein Honsi, Jon Arild Nygard & Oystein Moseng
@@ -0,0 +1,10 @@
1
+ import '../Extensions/Pane.js';
2
+ import '../Series/AreaRange/AreaRangeSeries.js';
3
+ import '../Series/AreaSplineRange/AreaSplineRangeSeries.js';
4
+ import '../Series/BoxPlot/BoxPlotSeries.js';
5
+ import '../Series/ColumnRange/ColumnRangeSeries.js';
6
+ import '../Series/ColumnPyramid/ColumnPyramidSeries.js';
7
+ import '../Series/ErrorBar/ErrorBarSeries.js';
8
+ import '../Series/Gauge/GaugeSeries.js';
9
+ import '../Series/Polygon/PolygonSeries.js';
10
+ import '../Series/Waterfall/WaterfallSeries.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v10.3.1 (2022-10-31)
2
+ * @license Highcharts JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/highcharts-more
4
4
  * @requires highcharts
5
5
  *
@@ -0,0 +1,10 @@
1
+ import '../Extensions/ScrollablePlotArea.js';
2
+ import '../Series/Line/LineSeries.js';
3
+ import '../Series/Area/AreaSeries.js';
4
+ import '../Series/Spline/SplineSeries.js';
5
+ import '../Series/AreaSpline/AreaSplineSeries.js';
6
+ import '../Series/Bar/BarSeries.js';
7
+ import '../Series/Scatter/ScatterSeries.js';
8
+ import '../Extensions/OverlappingDataLabels.js';
9
+ declare const G: AnyRecord;
10
+ export default G;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v10.3.1 (2022-10-31)
2
+ * @license Highcharts JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/highcharts
4
4
  *
5
5
  * (c) 2009-2021 Torstein Honsi
@@ -0,0 +1,3 @@
1
+ import Highcharts from './highcharts.src.js';
2
+ import './modules/map.src.js';
3
+ export default Highcharts;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highmaps JS v10.3.1 (2022-10-31)
2
+ * @license Highmaps JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/highmaps
4
4
  *
5
5
  * (c) 2011-2021 Torstein Honsi
@@ -0,0 +1,3 @@
1
+ import Highcharts from './highcharts.src.js';
2
+ import './modules/stock.src.js';
3
+ export default Highcharts;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/highstock
4
4
  *
5
5
  * (c) 2009-2021 Torstein Honsi
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/ABands/ABandsIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/acceleration-bands
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/AD/ADIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/accumulation-distribution
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/AO/AOIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/ao
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/APO/APOIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/apo
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/AroonOscillator/AroonOscillatorIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/aroon-oscillator
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/Aroon/AroonIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/aroon
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/ATR/ATRIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/atr
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/BB/BBIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/bollinger-bands
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/CCI/CCIIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/cci
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/Chaikin/ChaikinIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/chaikin
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/CMF/CMFIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/cmf
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/CMO/CMOIndicator.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v10.3.1 (2022-10-31)
2
+ * @license Highstock JS v10.3.2 (2022-11-28)
3
3
  * @module highcharts/indicators/cmo
4
4
  * @requires highcharts
5
5
  * @requires highcharts/modules/stock
@@ -0,0 +1 @@
1
+ import '../../Stock/Indicators/DEMA/DEMAIndicator.js';