highcharts 12.2.0 → 12.3.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 (1253) hide show
  1. package/bower.json +1 -1
  2. package/css/annotations/popup.css +86 -45
  3. package/css/highcharts.css +40 -30
  4. package/css/stocktools/gui.css +28 -11
  5. package/es-modules/Accessibility/Components/InfoRegionsComponent.js +3 -3
  6. package/es-modules/Accessibility/Components/LegendComponent.js +10 -1
  7. package/es-modules/Accessibility/Components/MenuComponent.js +23 -22
  8. package/es-modules/Accessibility/HighContrastMode.js +0 -5
  9. package/es-modules/Core/Axis/AxisDefaults.js +5 -0
  10. package/es-modules/Core/Axis/OrdinalAxis.js +19 -11
  11. package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +14 -1
  12. package/es-modules/Core/Axis/RadialAxis.js +3 -4
  13. package/es-modules/Core/Axis/Tick.js +1 -1
  14. package/es-modules/Core/Axis/WaterfallAxis.js +4 -4
  15. package/es-modules/Core/Chart/Chart.js +31 -25
  16. package/es-modules/Core/Chart/ChartDefaults.js +13 -0
  17. package/es-modules/Core/Chart/GanttChart.js +4 -2
  18. package/es-modules/Core/Chart/StockChart.js +1 -1
  19. package/es-modules/Core/Color/Color.js +4 -8
  20. package/es-modules/Core/Defaults.js +4 -0
  21. package/es-modules/Core/Globals.js +1 -1
  22. package/es-modules/Core/HttpUtilities.js +45 -38
  23. package/es-modules/Core/Pointer.js +3 -4
  24. package/es-modules/Core/Renderer/HTML/AST.js +14 -14
  25. package/es-modules/Core/Renderer/HTML/HTMLElement.js +6 -2
  26. package/es-modules/Core/Renderer/SVG/SVGRenderer.js +4 -1
  27. package/es-modules/Core/Series/DataLabel.js +4 -2
  28. package/es-modules/Core/Series/Series.js +16 -6
  29. package/es-modules/Core/Series/SeriesDefaults.js +1 -3
  30. package/es-modules/Core/Templating.js +6 -5
  31. package/es-modules/Core/Tooltip.js +3 -1
  32. package/es-modules/Data/Connectors/CSVConnector.js +32 -15
  33. package/es-modules/Data/Connectors/DataConnector.js +107 -12
  34. package/es-modules/Data/Connectors/GoogleSheetsConnector.js +29 -17
  35. package/es-modules/Data/Connectors/HTMLTableConnector.js +3 -3
  36. package/es-modules/Data/Connectors/JSONConnector.js +37 -16
  37. package/es-modules/Data/Converters/HTMLTableConverter.js +1 -1
  38. package/es-modules/Data/DataPool.js +15 -4
  39. package/es-modules/Extensions/Annotations/Annotation.js +10 -7
  40. package/es-modules/Extensions/Annotations/AnnotationChart.js +7 -3
  41. package/es-modules/Extensions/Annotations/AnnotationDefaults.js +38 -12
  42. package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +10 -3
  43. package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +1 -1
  44. package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +10 -4
  45. package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +1 -1
  46. package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +0 -3
  47. package/es-modules/Extensions/Annotations/Types/CrookedLine.js +97 -94
  48. package/es-modules/Extensions/Annotations/Types/ElliottWave.js +43 -36
  49. package/es-modules/Extensions/Annotations/Types/Fibonacci.js +86 -82
  50. package/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +74 -71
  51. package/es-modules/Extensions/Annotations/Types/InfinityLine.js +17 -3
  52. package/es-modules/Extensions/Annotations/Types/Measure.js +229 -226
  53. package/es-modules/Extensions/Annotations/Types/Pitchfork.js +39 -40
  54. package/es-modules/Extensions/Annotations/Types/TimeCycles.js +56 -52
  55. package/es-modules/Extensions/Annotations/Types/Tunnel.js +80 -76
  56. package/es-modules/Extensions/Annotations/Types/VerticalLine.js +57 -53
  57. package/es-modules/Extensions/Boost/BoostSeries.js +22 -3
  58. package/es-modules/Extensions/DownloadURL.js +41 -8
  59. package/es-modules/Extensions/ExportData/ExportData.js +876 -780
  60. package/es-modules/Extensions/ExportData/ExportDataDefaults.js +67 -13
  61. package/es-modules/Extensions/Exporting/Exporting.js +1091 -546
  62. package/es-modules/Extensions/Exporting/ExportingDefaults.js +52 -36
  63. package/es-modules/Extensions/Exporting/Fullscreen.js +2 -2
  64. package/es-modules/Extensions/NonCartesianSeriesZoom/NonCartesianSeriesZoom.js +311 -0
  65. package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +254 -575
  66. package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +9 -38
  67. package/es-modules/Extensions/Pane/Pane.js +1 -1
  68. package/es-modules/Extensions/Pane/PaneDefaults.js +9 -1
  69. package/es-modules/Extensions/Themes/Adaptive.js +1009 -0
  70. package/es-modules/Maps/MapNavigation.js +1 -1
  71. package/es-modules/Series/Bubble/BubblePoint.js +2 -2
  72. package/es-modules/Series/Column/ColumnSeriesDefaults.js +1 -2
  73. package/es-modules/Series/DragNodesComposition.js +4 -0
  74. package/es-modules/Series/Flags/FlagsSeriesDefaults.js +2 -0
  75. package/es-modules/Series/GraphLayoutComposition.js +2 -1
  76. package/es-modules/Series/Heatmap/HeatmapSeriesDefaults.js +1 -2
  77. package/es-modules/Series/Item/ItemSeries.js +1 -1
  78. package/es-modules/Series/PackedBubble/PackedBubblePoint.js +5 -0
  79. package/es-modules/Series/Pie/PieSeriesDefaults.js +1 -2
  80. package/es-modules/Series/PolarComposition.js +1 -1
  81. package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +7 -2
  82. package/es-modules/Series/Treegraph/TreegraphSeries.js +3 -1
  83. package/es-modules/Series/Variwide/VariwideSeries.js +8 -1
  84. package/es-modules/Series/Waterfall/WaterfallSeries.js +6 -8
  85. package/es-modules/Series/Wordcloud/WordcloudSeries.js +87 -10
  86. package/es-modules/Shared/BaseForm.js +6 -3
  87. package/es-modules/Shared/TimeBase.js +5 -1
  88. package/es-modules/Stock/Navigator/NavigatorComposition.js +2 -2
  89. package/es-modules/Stock/Scrollbar/Scrollbar.js +5 -7
  90. package/es-modules/Stock/StockTools/StockToolbar.js +1 -1
  91. package/es-modules/Stock/StockTools/StockToolsBindings.js +34 -113
  92. package/es-modules/masters/highcharts-3d.src.js +3 -1
  93. package/es-modules/masters/highcharts-gantt.src.js +1 -1
  94. package/es-modules/masters/highcharts-more.src.js +1 -1
  95. package/es-modules/masters/highcharts.src.js +1 -1
  96. package/es-modules/masters/highmaps.src.js +1 -1
  97. package/es-modules/masters/highstock.src.js +1 -1
  98. package/es-modules/masters/i18n/fr-FR.src.d.ts +1 -1
  99. package/es-modules/masters/i18n/fr-FR.src.js +1 -1
  100. package/es-modules/masters/i18n/nb-NO.src.d.ts +1 -1
  101. package/es-modules/masters/i18n/nb-NO.src.js +1 -1
  102. package/es-modules/masters/i18n/zh-CN.src.d.ts +1 -1
  103. package/es-modules/masters/i18n/zh-CN.src.js +1 -1
  104. package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
  105. package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
  106. package/es-modules/masters/indicators/ao.src.js +1 -1
  107. package/es-modules/masters/indicators/apo.src.js +1 -1
  108. package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
  109. package/es-modules/masters/indicators/aroon.src.js +1 -1
  110. package/es-modules/masters/indicators/atr.src.js +1 -1
  111. package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
  112. package/es-modules/masters/indicators/cci.src.js +1 -1
  113. package/es-modules/masters/indicators/chaikin.src.js +1 -1
  114. package/es-modules/masters/indicators/cmf.src.js +1 -1
  115. package/es-modules/masters/indicators/cmo.src.js +1 -1
  116. package/es-modules/masters/indicators/dema.src.js +1 -1
  117. package/es-modules/masters/indicators/disparity-index.src.js +1 -1
  118. package/es-modules/masters/indicators/dmi.src.js +1 -1
  119. package/es-modules/masters/indicators/dpo.src.js +1 -1
  120. package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
  121. package/es-modules/masters/indicators/indicators-all.src.js +1 -1
  122. package/es-modules/masters/indicators/indicators.src.js +1 -1
  123. package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
  124. package/es-modules/masters/indicators/klinger.src.js +1 -1
  125. package/es-modules/masters/indicators/macd.src.js +1 -1
  126. package/es-modules/masters/indicators/mfi.src.js +1 -1
  127. package/es-modules/masters/indicators/momentum.src.js +1 -1
  128. package/es-modules/masters/indicators/natr.src.js +1 -1
  129. package/es-modules/masters/indicators/obv.src.js +1 -1
  130. package/es-modules/masters/indicators/pivot-points.src.js +1 -1
  131. package/es-modules/masters/indicators/ppo.src.js +1 -1
  132. package/es-modules/masters/indicators/price-channel.src.js +1 -1
  133. package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
  134. package/es-modules/masters/indicators/psar.src.js +1 -1
  135. package/es-modules/masters/indicators/regressions.src.js +1 -1
  136. package/es-modules/masters/indicators/roc.src.js +1 -1
  137. package/es-modules/masters/indicators/rsi.src.js +1 -1
  138. package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
  139. package/es-modules/masters/indicators/stochastic.src.js +1 -1
  140. package/es-modules/masters/indicators/supertrend.src.js +1 -1
  141. package/es-modules/masters/indicators/tema.src.js +1 -1
  142. package/es-modules/masters/indicators/trendline.src.js +1 -1
  143. package/es-modules/masters/indicators/trix.src.js +1 -1
  144. package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
  145. package/es-modules/masters/indicators/vwap.src.js +1 -1
  146. package/es-modules/masters/indicators/williams-r.src.js +1 -1
  147. package/es-modules/masters/indicators/wma.src.js +1 -1
  148. package/es-modules/masters/indicators/zigzag.src.js +1 -1
  149. package/es-modules/masters/modules/accessibility.src.js +1 -1
  150. package/es-modules/masters/modules/annotations-advanced.src.js +1 -1
  151. package/es-modules/masters/modules/annotations.src.js +1 -1
  152. package/es-modules/masters/modules/arc-diagram.src.js +1 -1
  153. package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
  154. package/es-modules/masters/modules/boost-canvas.src.js +1 -1
  155. package/es-modules/masters/modules/boost.src.js +1 -1
  156. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  157. package/es-modules/masters/modules/bullet.src.js +1 -1
  158. package/es-modules/masters/modules/coloraxis.src.js +1 -1
  159. package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
  160. package/es-modules/masters/modules/cylinder.src.js +1 -1
  161. package/es-modules/masters/modules/data-tools.src.js +1 -1
  162. package/es-modules/masters/modules/data.src.js +1 -1
  163. package/es-modules/masters/modules/datagrouping.src.js +1 -1
  164. package/es-modules/masters/modules/debugger.src.js +1 -1
  165. package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
  166. package/es-modules/masters/modules/dotplot.src.js +1 -1
  167. package/es-modules/masters/modules/drag-panes.src.js +1 -1
  168. package/es-modules/masters/modules/draggable-points.src.js +1 -1
  169. package/es-modules/masters/modules/drilldown.src.js +3 -1
  170. package/es-modules/masters/modules/dumbbell.src.js +1 -1
  171. package/es-modules/masters/modules/export-data.src.js +3 -3
  172. package/es-modules/masters/modules/exporting.src.js +5 -1
  173. package/es-modules/masters/modules/flowmap.src.js +1 -1
  174. package/es-modules/masters/modules/full-screen.src.js +1 -1
  175. package/es-modules/masters/modules/funnel.src.js +1 -1
  176. package/es-modules/masters/modules/funnel3d.src.js +1 -1
  177. package/es-modules/masters/modules/gantt.src.js +1 -1
  178. package/es-modules/masters/modules/geoheatmap.src.js +1 -1
  179. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  180. package/es-modules/masters/modules/heatmap.src.js +1 -1
  181. package/es-modules/masters/modules/heikinashi.src.js +1 -1
  182. package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
  183. package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
  184. package/es-modules/masters/modules/item-series.src.js +1 -1
  185. package/es-modules/masters/modules/lollipop.src.js +1 -1
  186. package/es-modules/masters/modules/map.src.js +1 -1
  187. package/es-modules/masters/modules/marker-clusters.src.js +1 -1
  188. package/es-modules/masters/modules/mouse-wheel-zoom.src.js +1 -1
  189. package/es-modules/masters/modules/navigator.src.js +1 -1
  190. package/es-modules/masters/modules/networkgraph.src.js +1 -1
  191. package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
  192. package/es-modules/masters/modules/non-cartesian-zoom.src.d.ts +2 -0
  193. package/es-modules/masters/modules/non-cartesian-zoom.src.js +18 -0
  194. package/es-modules/masters/modules/offline-exporting.src.js +2 -2
  195. package/es-modules/masters/modules/organization.src.js +1 -1
  196. package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
  197. package/es-modules/masters/modules/pareto.src.js +1 -1
  198. package/es-modules/masters/modules/pathfinder.src.js +1 -1
  199. package/es-modules/masters/modules/pattern-fill.src.js +1 -1
  200. package/es-modules/masters/modules/pictorial.src.js +1 -1
  201. package/es-modules/masters/modules/pointandfigure.src.js +1 -1
  202. package/es-modules/masters/modules/price-indicator.src.js +1 -1
  203. package/es-modules/masters/modules/pyramid3d.src.js +1 -1
  204. package/es-modules/masters/modules/renko.src.js +1 -1
  205. package/es-modules/masters/modules/sankey.src.js +1 -1
  206. package/es-modules/masters/modules/series-label.src.js +1 -1
  207. package/es-modules/masters/modules/series-on-point.src.js +1 -1
  208. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  209. package/es-modules/masters/modules/sonification.src.js +1 -1
  210. package/es-modules/masters/modules/static-scale.src.js +1 -1
  211. package/es-modules/masters/modules/stock-tools.src.js +1 -1
  212. package/es-modules/masters/modules/stock.src.js +1 -1
  213. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  214. package/es-modules/masters/modules/sunburst.src.js +1 -1
  215. package/es-modules/masters/modules/textpath.src.js +1 -1
  216. package/es-modules/masters/modules/tiledwebmap.src.js +1 -1
  217. package/es-modules/masters/modules/tilemap.src.js +1 -1
  218. package/es-modules/masters/modules/timeline.src.js +1 -1
  219. package/es-modules/masters/modules/treegraph.src.js +1 -1
  220. package/es-modules/masters/modules/treegrid.src.js +1 -1
  221. package/es-modules/masters/modules/treemap.src.js +1 -1
  222. package/es-modules/masters/modules/variable-pie.src.js +1 -1
  223. package/es-modules/masters/modules/variwide.src.js +1 -1
  224. package/es-modules/masters/modules/vector.src.js +1 -1
  225. package/es-modules/masters/modules/venn.src.js +1 -1
  226. package/es-modules/masters/modules/windbarb.src.js +1 -1
  227. package/es-modules/masters/modules/wordcloud.src.js +1 -1
  228. package/es-modules/masters/modules/xrange.src.js +1 -1
  229. package/es-modules/masters/themes/adaptive.src.d.ts +2 -0
  230. package/es-modules/masters/themes/adaptive.src.js +15 -0
  231. package/es-modules/masters/themes/avocado.src.js +1 -1
  232. package/es-modules/masters/themes/brand-dark.src.js +1 -1
  233. package/es-modules/masters/themes/brand-light.src.js +1 -1
  234. package/es-modules/masters/themes/dark-blue.src.js +1 -1
  235. package/es-modules/masters/themes/dark-green.src.js +1 -1
  236. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  237. package/es-modules/masters/themes/gray.src.js +1 -1
  238. package/es-modules/masters/themes/grid-light.src.js +1 -1
  239. package/es-modules/masters/themes/grid.src.js +1 -1
  240. package/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
  241. package/es-modules/masters/themes/high-contrast-light.src.js +1 -1
  242. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  243. package/es-modules/masters/themes/skies.src.js +1 -1
  244. package/es-modules/masters/themes/sunset.src.js +1 -1
  245. package/es-modules/tsconfig.tsbuildinfo +1 -1
  246. package/esm/highcharts-3d.js +11 -1
  247. package/esm/highcharts-3d.src.js +3 -1
  248. package/esm/highcharts-gantt.js +8 -1
  249. package/esm/highcharts-gantt.src.js +1 -1
  250. package/esm/highcharts-more.js +9 -1
  251. package/esm/highcharts-more.src.js +44 -29
  252. package/esm/highcharts.js +9 -2
  253. package/esm/highcharts.src.js +138 -80
  254. package/esm/highmaps.js +8 -1
  255. package/esm/highmaps.src.js +1 -1
  256. package/esm/highstock.js +8 -1
  257. package/esm/highstock.src.js +1 -1
  258. package/esm/i18n/fr-FR.js +13 -1
  259. package/esm/i18n/fr-FR.src.js +1 -1
  260. package/esm/i18n/nb-NO.js +13 -1
  261. package/esm/i18n/nb-NO.src.js +1 -1
  262. package/esm/i18n/zh-CN.js +13 -1
  263. package/esm/i18n/zh-CN.src.js +1 -1
  264. package/esm/indicators/acceleration-bands.js +12 -1
  265. package/esm/indicators/acceleration-bands.src.js +1 -1
  266. package/esm/indicators/accumulation-distribution.js +12 -1
  267. package/esm/indicators/accumulation-distribution.src.js +1 -1
  268. package/esm/indicators/ao.js +12 -1
  269. package/esm/indicators/ao.src.js +1 -1
  270. package/esm/indicators/apo.js +12 -1
  271. package/esm/indicators/apo.src.js +1 -1
  272. package/esm/indicators/aroon-oscillator.js +12 -1
  273. package/esm/indicators/aroon-oscillator.src.js +1 -1
  274. package/esm/indicators/aroon.js +12 -1
  275. package/esm/indicators/aroon.src.js +1 -1
  276. package/esm/indicators/atr.js +12 -1
  277. package/esm/indicators/atr.src.js +1 -1
  278. package/esm/indicators/bollinger-bands.js +12 -1
  279. package/esm/indicators/bollinger-bands.src.js +1 -1
  280. package/esm/indicators/cci.js +12 -1
  281. package/esm/indicators/cci.src.js +1 -1
  282. package/esm/indicators/chaikin.js +12 -1
  283. package/esm/indicators/chaikin.src.js +1 -1
  284. package/esm/indicators/cmf.js +11 -1
  285. package/esm/indicators/cmf.src.js +1 -1
  286. package/esm/indicators/cmo.js +12 -1
  287. package/esm/indicators/cmo.src.js +1 -1
  288. package/esm/indicators/dema.js +12 -1
  289. package/esm/indicators/dema.src.js +1 -1
  290. package/esm/indicators/disparity-index.js +12 -1
  291. package/esm/indicators/disparity-index.src.js +1 -1
  292. package/esm/indicators/dmi.js +12 -1
  293. package/esm/indicators/dmi.src.js +1 -1
  294. package/esm/indicators/dpo.js +12 -1
  295. package/esm/indicators/dpo.src.js +1 -1
  296. package/esm/indicators/ichimoku-kinko-hyo.js +12 -1
  297. package/esm/indicators/ichimoku-kinko-hyo.src.js +1 -1
  298. package/esm/indicators/indicators-all.js +12 -1
  299. package/esm/indicators/indicators-all.src.js +1 -1
  300. package/esm/indicators/indicators.js +12 -1
  301. package/esm/indicators/indicators.src.js +1 -1
  302. package/esm/indicators/keltner-channels.js +12 -1
  303. package/esm/indicators/keltner-channels.src.js +1 -1
  304. package/esm/indicators/klinger.js +12 -1
  305. package/esm/indicators/klinger.src.js +1 -1
  306. package/esm/indicators/macd.js +12 -1
  307. package/esm/indicators/macd.src.js +1 -1
  308. package/esm/indicators/mfi.js +12 -1
  309. package/esm/indicators/mfi.src.js +1 -1
  310. package/esm/indicators/momentum.js +12 -1
  311. package/esm/indicators/momentum.src.js +1 -1
  312. package/esm/indicators/natr.js +12 -1
  313. package/esm/indicators/natr.src.js +1 -1
  314. package/esm/indicators/obv.js +12 -1
  315. package/esm/indicators/obv.src.js +1 -1
  316. package/esm/indicators/pivot-points.js +12 -1
  317. package/esm/indicators/pivot-points.src.js +1 -1
  318. package/esm/indicators/ppo.js +12 -1
  319. package/esm/indicators/ppo.src.js +1 -1
  320. package/esm/indicators/price-channel.js +12 -1
  321. package/esm/indicators/price-channel.src.js +1 -1
  322. package/esm/indicators/price-envelopes.js +12 -1
  323. package/esm/indicators/price-envelopes.src.js +1 -1
  324. package/esm/indicators/psar.js +12 -1
  325. package/esm/indicators/psar.src.js +1 -1
  326. package/esm/indicators/regressions.js +12 -1
  327. package/esm/indicators/regressions.src.js +1 -1
  328. package/esm/indicators/roc.js +12 -1
  329. package/esm/indicators/roc.src.js +1 -1
  330. package/esm/indicators/rsi.js +12 -1
  331. package/esm/indicators/rsi.src.js +1 -1
  332. package/esm/indicators/slow-stochastic.js +12 -1
  333. package/esm/indicators/slow-stochastic.src.js +1 -1
  334. package/esm/indicators/stochastic.js +12 -1
  335. package/esm/indicators/stochastic.src.js +1 -1
  336. package/esm/indicators/supertrend.js +12 -1
  337. package/esm/indicators/supertrend.src.js +1 -1
  338. package/esm/indicators/tema.js +12 -1
  339. package/esm/indicators/tema.src.js +1 -1
  340. package/esm/indicators/trendline.js +12 -1
  341. package/esm/indicators/trendline.src.js +1 -1
  342. package/esm/indicators/trix.js +12 -1
  343. package/esm/indicators/trix.src.js +1 -1
  344. package/esm/indicators/volume-by-price.js +12 -1
  345. package/esm/indicators/volume-by-price.src.js +1 -1
  346. package/esm/indicators/vwap.js +12 -1
  347. package/esm/indicators/vwap.src.js +1 -1
  348. package/esm/indicators/williams-r.js +12 -1
  349. package/esm/indicators/williams-r.src.js +1 -1
  350. package/esm/indicators/wma.js +12 -1
  351. package/esm/indicators/wma.src.js +1 -1
  352. package/esm/indicators/zigzag.js +12 -1
  353. package/esm/indicators/zigzag.src.js +1 -1
  354. package/esm/modules/accessibility.js +12 -1
  355. package/esm/modules/accessibility.src.js +46 -43
  356. package/esm/modules/annotations-advanced.js +11 -1
  357. package/esm/modules/annotations-advanced.src.js +866 -775
  358. package/esm/modules/annotations.js +11 -1
  359. package/esm/modules/annotations.src.js +89 -40
  360. package/esm/modules/arc-diagram.js +11 -1
  361. package/esm/modules/arc-diagram.src.js +1 -1
  362. package/esm/modules/arrow-symbols.js +11 -1
  363. package/esm/modules/arrow-symbols.src.js +1 -1
  364. package/esm/modules/boost-canvas.js +12 -1
  365. package/esm/modules/boost-canvas.src.js +23 -4
  366. package/esm/modules/boost.js +13 -1
  367. package/esm/modules/boost.src.js +23 -4
  368. package/esm/modules/broken-axis.js +9 -1
  369. package/esm/modules/broken-axis.src.js +1 -1
  370. package/esm/modules/bullet.js +11 -1
  371. package/esm/modules/bullet.src.js +1 -1
  372. package/esm/modules/coloraxis.js +11 -1
  373. package/esm/modules/coloraxis.src.js +1 -1
  374. package/esm/modules/current-date-indicator.js +11 -1
  375. package/esm/modules/current-date-indicator.src.js +1 -1
  376. package/esm/modules/cylinder.js +12 -1
  377. package/esm/modules/cylinder.src.js +1 -1
  378. package/esm/modules/data-tools.js +11 -1
  379. package/esm/modules/data-tools.src.js +225 -69
  380. package/esm/modules/data.js +11 -1
  381. package/esm/modules/data.src.js +46 -39
  382. package/esm/modules/datagrouping.js +11 -1
  383. package/esm/modules/datagrouping.src.js +1 -1
  384. package/esm/modules/debugger.js +11 -1
  385. package/esm/modules/debugger.src.js +1 -1
  386. package/esm/modules/dependency-wheel.js +12 -1
  387. package/esm/modules/dependency-wheel.src.js +1 -1
  388. package/esm/modules/dotplot.js +11 -1
  389. package/esm/modules/dotplot.src.js +1 -1
  390. package/esm/modules/drag-panes.js +13 -1
  391. package/esm/modules/drag-panes.src.js +1 -1
  392. package/esm/modules/draggable-points.js +9 -1
  393. package/esm/modules/draggable-points.src.js +1 -1
  394. package/esm/modules/drilldown.js +13 -1
  395. package/esm/modules/drilldown.src.js +3 -1
  396. package/esm/modules/dumbbell.js +9 -1
  397. package/esm/modules/dumbbell.src.js +1 -1
  398. package/esm/modules/export-data.js +12 -1
  399. package/esm/modules/export-data.src.js +984 -798
  400. package/esm/modules/exporting.js +11 -1
  401. package/esm/modules/exporting.src.js +1373 -642
  402. package/esm/modules/flowmap.js +9 -1
  403. package/esm/modules/flowmap.src.js +1 -1
  404. package/esm/modules/full-screen.js +12 -1
  405. package/esm/modules/full-screen.src.js +3 -3
  406. package/esm/modules/funnel.js +11 -1
  407. package/esm/modules/funnel.src.js +1 -1
  408. package/esm/modules/funnel3d.js +13 -1
  409. package/esm/modules/funnel3d.src.js +1 -1
  410. package/esm/modules/gantt.js +11 -1
  411. package/esm/modules/gantt.src.js +33 -25
  412. package/esm/modules/geoheatmap.js +9 -1
  413. package/esm/modules/geoheatmap.src.js +1 -1
  414. package/esm/modules/grid-axis.js +11 -1
  415. package/esm/modules/grid-axis.src.js +1 -1
  416. package/esm/modules/heatmap.js +9 -1
  417. package/esm/modules/heatmap.src.js +2 -3
  418. package/esm/modules/heikinashi.js +12 -1
  419. package/esm/modules/heikinashi.src.js +1 -1
  420. package/esm/modules/histogram-bellcurve.js +10 -1
  421. package/esm/modules/histogram-bellcurve.src.js +1 -1
  422. package/esm/modules/hollowcandlestick.js +12 -1
  423. package/esm/modules/hollowcandlestick.src.js +1 -1
  424. package/esm/modules/item-series.js +11 -1
  425. package/esm/modules/item-series.src.js +3 -5
  426. package/esm/modules/lollipop.js +9 -1
  427. package/esm/modules/lollipop.src.js +1 -1
  428. package/esm/modules/map.js +11 -1
  429. package/esm/modules/map.src.js +5 -6
  430. package/esm/modules/marker-clusters.js +11 -1
  431. package/esm/modules/marker-clusters.src.js +1 -1
  432. package/esm/modules/mouse-wheel-zoom.js +11 -1
  433. package/esm/modules/mouse-wheel-zoom.src.js +1 -1
  434. package/esm/modules/navigator.js +11 -1
  435. package/esm/modules/navigator.src.js +10 -12
  436. package/esm/modules/networkgraph.js +11 -1
  437. package/esm/modules/networkgraph.src.js +7 -2
  438. package/esm/modules/no-data-to-display.js +12 -1
  439. package/esm/modules/no-data-to-display.src.js +1 -1
  440. package/esm/modules/non-cartesian-zoom.d.ts +2 -0
  441. package/esm/modules/non-cartesian-zoom.js +11 -0
  442. package/esm/modules/non-cartesian-zoom.src.d.ts +2 -0
  443. package/esm/modules/non-cartesian-zoom.src.js +374 -0
  444. package/esm/modules/offline-exporting.js +12 -1
  445. package/esm/modules/offline-exporting.src.js +334 -3360
  446. package/esm/modules/organization.js +11 -1
  447. package/esm/modules/organization.src.js +1 -1
  448. package/esm/modules/parallel-coordinates.js +11 -1
  449. package/esm/modules/parallel-coordinates.src.js +1 -1
  450. package/esm/modules/pareto.js +11 -1
  451. package/esm/modules/pareto.src.js +1 -1
  452. package/esm/modules/pathfinder.js +11 -1
  453. package/esm/modules/pathfinder.src.js +1 -1
  454. package/esm/modules/pattern-fill.js +12 -1
  455. package/esm/modules/pattern-fill.src.js +1 -1
  456. package/esm/modules/pictorial.js +11 -1
  457. package/esm/modules/pictorial.src.js +1 -1
  458. package/esm/modules/pointandfigure.js +12 -1
  459. package/esm/modules/pointandfigure.src.js +1 -1
  460. package/esm/modules/price-indicator.js +13 -1
  461. package/esm/modules/price-indicator.src.js +1 -1
  462. package/esm/modules/pyramid3d.js +14 -1
  463. package/esm/modules/pyramid3d.src.js +1 -1
  464. package/esm/modules/renko.js +12 -1
  465. package/esm/modules/renko.src.js +1 -1
  466. package/esm/modules/sankey.js +11 -1
  467. package/esm/modules/sankey.src.js +1 -1
  468. package/esm/modules/series-label.js +9 -1
  469. package/esm/modules/series-label.src.js +1 -1
  470. package/esm/modules/series-on-point.js +12 -1
  471. package/esm/modules/series-on-point.src.js +1 -1
  472. package/esm/modules/solid-gauge.js +12 -1
  473. package/esm/modules/solid-gauge.src.js +8 -3
  474. package/esm/modules/sonification.js +12 -1
  475. package/esm/modules/sonification.src.js +42 -9
  476. package/esm/modules/static-scale.js +11 -1
  477. package/esm/modules/static-scale.src.js +1 -1
  478. package/esm/modules/stock-tools.js +13 -1
  479. package/esm/modules/stock-tools.src.js +37 -116
  480. package/esm/modules/stock.js +11 -1
  481. package/esm/modules/stock.src.js +32 -24
  482. package/esm/modules/streamgraph.js +11 -1
  483. package/esm/modules/streamgraph.src.js +1 -1
  484. package/esm/modules/sunburst.js +10 -1
  485. package/esm/modules/sunburst.src.js +1 -1
  486. package/esm/modules/textpath.js +9 -1
  487. package/esm/modules/textpath.src.js +1 -1
  488. package/esm/modules/tiledwebmap.js +10 -2
  489. package/esm/modules/tiledwebmap.src.js +1 -1
  490. package/esm/modules/tilemap.js +12 -1
  491. package/esm/modules/tilemap.src.js +1 -1
  492. package/esm/modules/timeline.js +12 -1
  493. package/esm/modules/timeline.src.js +1 -1
  494. package/esm/modules/treegraph.js +11 -1
  495. package/esm/modules/treegraph.src.js +4 -2
  496. package/esm/modules/treegrid.js +11 -1
  497. package/esm/modules/treegrid.src.js +1 -1
  498. package/esm/modules/treemap.js +10 -1
  499. package/esm/modules/treemap.src.js +1 -1
  500. package/esm/modules/variable-pie.js +11 -1
  501. package/esm/modules/variable-pie.src.js +1 -1
  502. package/esm/modules/variwide.js +11 -1
  503. package/esm/modules/variwide.src.js +9 -2
  504. package/esm/modules/vector.js +11 -1
  505. package/esm/modules/vector.src.js +1 -1
  506. package/esm/modules/venn.js +10 -1
  507. package/esm/modules/venn.src.js +1 -1
  508. package/esm/modules/windbarb.js +11 -1
  509. package/esm/modules/windbarb.src.js +1 -1
  510. package/esm/modules/wordcloud.js +10 -1
  511. package/esm/modules/wordcloud.src.js +88 -11
  512. package/esm/modules/xrange.js +11 -1
  513. package/esm/modules/xrange.src.js +1 -1
  514. package/esm/standalone-navigator.js +9 -2
  515. package/esm/standalone-navigator.src.js +146 -90
  516. package/esm/themes/adaptive.d.ts +2 -0
  517. package/esm/themes/adaptive.js +130 -0
  518. package/esm/themes/adaptive.src.d.ts +2 -0
  519. package/esm/themes/adaptive.src.js +1069 -0
  520. package/esm/themes/avocado.js +9 -1
  521. package/esm/themes/avocado.src.js +1 -1
  522. package/esm/themes/brand-dark.js +9 -1
  523. package/esm/themes/brand-dark.src.js +1 -1
  524. package/esm/themes/brand-light.js +9 -1
  525. package/esm/themes/brand-light.src.js +1 -1
  526. package/esm/themes/dark-blue.js +9 -1
  527. package/esm/themes/dark-blue.src.js +1 -1
  528. package/esm/themes/dark-green.js +9 -1
  529. package/esm/themes/dark-green.src.js +1 -1
  530. package/esm/themes/dark-unica.js +9 -1
  531. package/esm/themes/dark-unica.src.js +1 -1
  532. package/esm/themes/gray.js +9 -1
  533. package/esm/themes/gray.src.js +1 -1
  534. package/esm/themes/grid-light.js +9 -1
  535. package/esm/themes/grid-light.src.js +1 -1
  536. package/esm/themes/grid.js +9 -1
  537. package/esm/themes/grid.src.js +1 -1
  538. package/esm/themes/high-contrast-dark.js +9 -1
  539. package/esm/themes/high-contrast-dark.src.js +1 -1
  540. package/esm/themes/high-contrast-light.js +9 -1
  541. package/esm/themes/high-contrast-light.src.js +1 -1
  542. package/esm/themes/sand-signika.js +9 -1
  543. package/esm/themes/sand-signika.src.js +1 -1
  544. package/esm/themes/skies.js +9 -1
  545. package/esm/themes/skies.src.js +1 -1
  546. package/esm/themes/sunset.js +9 -1
  547. package/esm/themes/sunset.src.js +1 -1
  548. package/highcharts-3d.d.ts +1 -9
  549. package/highcharts-3d.js +11 -1
  550. package/highcharts-3d.src.d.ts +1 -9
  551. package/highcharts-3d.src.js +3 -1
  552. package/highcharts-gantt.js +16 -2
  553. package/highcharts-gantt.src.js +173 -107
  554. package/highcharts-more.d.ts +1 -9
  555. package/highcharts-more.js +9 -1
  556. package/highcharts-more.src.d.ts +1 -9
  557. package/highcharts-more.src.js +44 -29
  558. package/highcharts.d.ts +4499 -1477
  559. package/highcharts.js +9 -2
  560. package/highcharts.src.d.ts +4499 -1477
  561. package/highcharts.src.js +138 -80
  562. package/highmaps.js +16 -2
  563. package/highmaps.src.js +145 -88
  564. package/highstock.js +16 -2
  565. package/highstock.src.js +172 -106
  566. package/i18n/fr-FR.js +13 -1
  567. package/i18n/fr-FR.src.js +8 -8
  568. package/i18n/nb-NO.js +13 -1
  569. package/i18n/nb-NO.src.js +8 -8
  570. package/i18n/zh-CN.js +13 -1
  571. package/i18n/zh-CN.src.js +8 -8
  572. package/indicators/acceleration-bands.d.ts +1 -9
  573. package/indicators/acceleration-bands.js +12 -1
  574. package/indicators/acceleration-bands.src.d.ts +1 -9
  575. package/indicators/acceleration-bands.src.js +1 -1
  576. package/indicators/accumulation-distribution.d.ts +1 -9
  577. package/indicators/accumulation-distribution.js +12 -1
  578. package/indicators/accumulation-distribution.src.d.ts +1 -9
  579. package/indicators/accumulation-distribution.src.js +1 -1
  580. package/indicators/ao.d.ts +1 -9
  581. package/indicators/ao.js +12 -1
  582. package/indicators/ao.src.d.ts +1 -9
  583. package/indicators/ao.src.js +1 -1
  584. package/indicators/apo.d.ts +1 -9
  585. package/indicators/apo.js +12 -1
  586. package/indicators/apo.src.d.ts +1 -9
  587. package/indicators/apo.src.js +1 -1
  588. package/indicators/aroon-oscillator.d.ts +1 -9
  589. package/indicators/aroon-oscillator.js +12 -1
  590. package/indicators/aroon-oscillator.src.d.ts +1 -9
  591. package/indicators/aroon-oscillator.src.js +1 -1
  592. package/indicators/aroon.d.ts +1 -9
  593. package/indicators/aroon.js +12 -1
  594. package/indicators/aroon.src.d.ts +1 -9
  595. package/indicators/aroon.src.js +1 -1
  596. package/indicators/atr.d.ts +1 -9
  597. package/indicators/atr.js +12 -1
  598. package/indicators/atr.src.d.ts +1 -9
  599. package/indicators/atr.src.js +1 -1
  600. package/indicators/bollinger-bands.d.ts +1 -9
  601. package/indicators/bollinger-bands.js +12 -1
  602. package/indicators/bollinger-bands.src.d.ts +1 -9
  603. package/indicators/bollinger-bands.src.js +1 -1
  604. package/indicators/cci.d.ts +1 -9
  605. package/indicators/cci.js +12 -1
  606. package/indicators/cci.src.d.ts +1 -9
  607. package/indicators/cci.src.js +1 -1
  608. package/indicators/chaikin.d.ts +1 -9
  609. package/indicators/chaikin.js +12 -1
  610. package/indicators/chaikin.src.d.ts +1 -9
  611. package/indicators/chaikin.src.js +1 -1
  612. package/indicators/cmf.d.ts +1 -9
  613. package/indicators/cmf.js +11 -1
  614. package/indicators/cmf.src.d.ts +1 -9
  615. package/indicators/cmf.src.js +1 -1
  616. package/indicators/cmo.d.ts +1 -9
  617. package/indicators/cmo.js +12 -1
  618. package/indicators/cmo.src.d.ts +1 -9
  619. package/indicators/cmo.src.js +1 -1
  620. package/indicators/dema.d.ts +1 -9
  621. package/indicators/dema.js +12 -1
  622. package/indicators/dema.src.d.ts +1 -9
  623. package/indicators/dema.src.js +1 -1
  624. package/indicators/disparity-index.d.ts +1 -9
  625. package/indicators/disparity-index.js +12 -1
  626. package/indicators/disparity-index.src.d.ts +1 -9
  627. package/indicators/disparity-index.src.js +1 -1
  628. package/indicators/dmi.d.ts +1 -9
  629. package/indicators/dmi.js +12 -1
  630. package/indicators/dmi.src.d.ts +1 -9
  631. package/indicators/dmi.src.js +1 -1
  632. package/indicators/dpo.d.ts +1 -9
  633. package/indicators/dpo.js +12 -1
  634. package/indicators/dpo.src.d.ts +1 -9
  635. package/indicators/dpo.src.js +1 -1
  636. package/indicators/ema.d.ts +1 -9
  637. package/indicators/ema.src.d.ts +1 -9
  638. package/indicators/ema.src.js +3 -3
  639. package/indicators/ichimoku-kinko-hyo.d.ts +1 -9
  640. package/indicators/ichimoku-kinko-hyo.js +12 -1
  641. package/indicators/ichimoku-kinko-hyo.src.d.ts +1 -9
  642. package/indicators/ichimoku-kinko-hyo.src.js +1 -1
  643. package/indicators/indicators-all.d.ts +1 -9
  644. package/indicators/indicators-all.js +12 -1
  645. package/indicators/indicators-all.src.d.ts +1 -9
  646. package/indicators/indicators-all.src.js +1 -1
  647. package/indicators/indicators.d.ts +1 -9
  648. package/indicators/indicators.js +12 -1
  649. package/indicators/indicators.src.d.ts +1 -9
  650. package/indicators/indicators.src.js +1 -1
  651. package/indicators/keltner-channels.d.ts +1 -9
  652. package/indicators/keltner-channels.js +12 -1
  653. package/indicators/keltner-channels.src.d.ts +1 -9
  654. package/indicators/keltner-channels.src.js +1 -1
  655. package/indicators/klinger.d.ts +1 -9
  656. package/indicators/klinger.js +12 -1
  657. package/indicators/klinger.src.d.ts +1 -9
  658. package/indicators/klinger.src.js +1 -1
  659. package/indicators/macd.d.ts +1 -9
  660. package/indicators/macd.js +12 -1
  661. package/indicators/macd.src.d.ts +1 -9
  662. package/indicators/macd.src.js +1 -1
  663. package/indicators/mfi.d.ts +1 -9
  664. package/indicators/mfi.js +12 -1
  665. package/indicators/mfi.src.d.ts +1 -9
  666. package/indicators/mfi.src.js +1 -1
  667. package/indicators/momentum.d.ts +1 -9
  668. package/indicators/momentum.js +12 -1
  669. package/indicators/momentum.src.d.ts +1 -9
  670. package/indicators/momentum.src.js +1 -1
  671. package/indicators/natr.d.ts +1 -9
  672. package/indicators/natr.js +12 -1
  673. package/indicators/natr.src.d.ts +1 -9
  674. package/indicators/natr.src.js +1 -1
  675. package/indicators/obv.d.ts +1 -9
  676. package/indicators/obv.js +12 -1
  677. package/indicators/obv.src.d.ts +1 -9
  678. package/indicators/obv.src.js +1 -1
  679. package/indicators/pivot-points.d.ts +1 -9
  680. package/indicators/pivot-points.js +12 -1
  681. package/indicators/pivot-points.src.d.ts +1 -9
  682. package/indicators/pivot-points.src.js +1 -1
  683. package/indicators/ppo.d.ts +1 -9
  684. package/indicators/ppo.js +12 -1
  685. package/indicators/ppo.src.d.ts +1 -9
  686. package/indicators/ppo.src.js +1 -1
  687. package/indicators/price-channel.d.ts +1 -9
  688. package/indicators/price-channel.js +12 -1
  689. package/indicators/price-channel.src.d.ts +1 -9
  690. package/indicators/price-channel.src.js +1 -1
  691. package/indicators/price-envelopes.d.ts +1 -9
  692. package/indicators/price-envelopes.js +12 -1
  693. package/indicators/price-envelopes.src.d.ts +1 -9
  694. package/indicators/price-envelopes.src.js +1 -1
  695. package/indicators/psar.d.ts +1 -9
  696. package/indicators/psar.js +12 -1
  697. package/indicators/psar.src.d.ts +1 -9
  698. package/indicators/psar.src.js +1 -1
  699. package/indicators/regressions.d.ts +1 -9
  700. package/indicators/regressions.js +12 -1
  701. package/indicators/regressions.src.d.ts +1 -9
  702. package/indicators/regressions.src.js +1 -1
  703. package/indicators/roc.d.ts +1 -9
  704. package/indicators/roc.js +12 -1
  705. package/indicators/roc.src.d.ts +1 -9
  706. package/indicators/roc.src.js +1 -1
  707. package/indicators/rsi.d.ts +1 -9
  708. package/indicators/rsi.js +12 -1
  709. package/indicators/rsi.src.d.ts +1 -9
  710. package/indicators/rsi.src.js +1 -1
  711. package/indicators/slow-stochastic.d.ts +1 -9
  712. package/indicators/slow-stochastic.js +12 -1
  713. package/indicators/slow-stochastic.src.d.ts +1 -9
  714. package/indicators/slow-stochastic.src.js +1 -1
  715. package/indicators/stochastic.d.ts +1 -9
  716. package/indicators/stochastic.js +12 -1
  717. package/indicators/stochastic.src.d.ts +1 -9
  718. package/indicators/stochastic.src.js +1 -1
  719. package/indicators/supertrend.d.ts +1 -9
  720. package/indicators/supertrend.js +12 -1
  721. package/indicators/supertrend.src.d.ts +1 -9
  722. package/indicators/supertrend.src.js +1 -1
  723. package/indicators/tema.d.ts +1 -9
  724. package/indicators/tema.js +12 -1
  725. package/indicators/tema.src.d.ts +1 -9
  726. package/indicators/tema.src.js +1 -1
  727. package/indicators/trendline.d.ts +1 -9
  728. package/indicators/trendline.js +12 -1
  729. package/indicators/trendline.src.d.ts +1 -9
  730. package/indicators/trendline.src.js +1 -1
  731. package/indicators/trix.d.ts +1 -9
  732. package/indicators/trix.js +12 -1
  733. package/indicators/trix.src.d.ts +1 -9
  734. package/indicators/trix.src.js +1 -1
  735. package/indicators/volume-by-price.d.ts +1 -9
  736. package/indicators/volume-by-price.js +12 -1
  737. package/indicators/volume-by-price.src.d.ts +1 -9
  738. package/indicators/volume-by-price.src.js +1 -1
  739. package/indicators/vwap.d.ts +1 -9
  740. package/indicators/vwap.js +12 -1
  741. package/indicators/vwap.src.d.ts +1 -9
  742. package/indicators/vwap.src.js +1 -1
  743. package/indicators/williams-r.d.ts +1 -9
  744. package/indicators/williams-r.js +12 -1
  745. package/indicators/williams-r.src.d.ts +1 -9
  746. package/indicators/williams-r.src.js +1 -1
  747. package/indicators/wma.d.ts +1 -9
  748. package/indicators/wma.js +12 -1
  749. package/indicators/wma.src.d.ts +1 -9
  750. package/indicators/wma.src.js +1 -1
  751. package/indicators/zigzag.d.ts +1 -9
  752. package/indicators/zigzag.js +12 -1
  753. package/indicators/zigzag.src.d.ts +1 -9
  754. package/indicators/zigzag.src.js +1 -1
  755. package/modules/accessibility.d.ts +1 -9
  756. package/modules/accessibility.js +12 -1
  757. package/modules/accessibility.src.d.ts +1 -9
  758. package/modules/accessibility.src.js +46 -43
  759. package/modules/annotations-advanced.d.ts +1 -9
  760. package/modules/annotations-advanced.js +21 -1
  761. package/modules/annotations-advanced.src.d.ts +1 -9
  762. package/modules/annotations-advanced.src.js +879 -788
  763. package/modules/annotations.d.ts +1 -9
  764. package/modules/annotations.js +11 -1
  765. package/modules/annotations.src.d.ts +1 -9
  766. package/modules/annotations.src.js +89 -40
  767. package/modules/arc-diagram.d.ts +1 -9
  768. package/modules/arc-diagram.js +11 -1
  769. package/modules/arc-diagram.src.d.ts +1 -9
  770. package/modules/arc-diagram.src.js +1 -1
  771. package/modules/arrow-symbols.d.ts +1 -9
  772. package/modules/arrow-symbols.js +11 -1
  773. package/modules/arrow-symbols.src.d.ts +1 -9
  774. package/modules/arrow-symbols.src.js +1 -1
  775. package/modules/boost-canvas.d.ts +1 -9
  776. package/modules/boost-canvas.js +12 -1
  777. package/modules/boost-canvas.src.d.ts +1 -9
  778. package/modules/boost-canvas.src.js +23 -4
  779. package/modules/boost.d.ts +1 -9
  780. package/modules/boost.js +13 -1
  781. package/modules/boost.src.d.ts +1 -9
  782. package/modules/boost.src.js +23 -4
  783. package/modules/broken-axis.d.ts +1 -9
  784. package/modules/broken-axis.js +9 -1
  785. package/modules/broken-axis.src.d.ts +1 -9
  786. package/modules/broken-axis.src.js +1 -1
  787. package/modules/bullet.d.ts +1 -9
  788. package/modules/bullet.js +11 -1
  789. package/modules/bullet.src.d.ts +1 -9
  790. package/modules/bullet.src.js +1 -1
  791. package/modules/coloraxis.d.ts +1 -9
  792. package/modules/coloraxis.js +11 -1
  793. package/modules/coloraxis.src.d.ts +1 -9
  794. package/modules/coloraxis.src.js +1 -1
  795. package/modules/current-date-indicator.d.ts +1 -9
  796. package/modules/current-date-indicator.js +11 -1
  797. package/modules/current-date-indicator.src.d.ts +1 -9
  798. package/modules/current-date-indicator.src.js +1 -1
  799. package/modules/cylinder.d.ts +1 -9
  800. package/modules/cylinder.js +12 -1
  801. package/modules/cylinder.src.d.ts +1 -9
  802. package/modules/cylinder.src.js +1 -1
  803. package/modules/data-tools.js +11 -1
  804. package/modules/data-tools.src.js +225 -69
  805. package/modules/data.d.ts +1 -9
  806. package/modules/data.js +11 -1
  807. package/modules/data.src.d.ts +1 -9
  808. package/modules/data.src.js +46 -39
  809. package/modules/datagrouping.d.ts +1 -9
  810. package/modules/datagrouping.js +11 -1
  811. package/modules/datagrouping.src.d.ts +1 -9
  812. package/modules/datagrouping.src.js +1 -1
  813. package/modules/debugger.d.ts +1 -9
  814. package/modules/debugger.js +11 -1
  815. package/modules/debugger.src.d.ts +1 -9
  816. package/modules/debugger.src.js +1 -1
  817. package/modules/dependency-wheel.d.ts +1 -9
  818. package/modules/dependency-wheel.js +12 -1
  819. package/modules/dependency-wheel.src.d.ts +1 -9
  820. package/modules/dependency-wheel.src.js +1 -1
  821. package/modules/dotplot.d.ts +1 -9
  822. package/modules/dotplot.js +11 -1
  823. package/modules/dotplot.src.d.ts +1 -9
  824. package/modules/dotplot.src.js +1 -1
  825. package/modules/drag-panes.d.ts +1 -9
  826. package/modules/drag-panes.js +13 -1
  827. package/modules/drag-panes.src.d.ts +1 -9
  828. package/modules/drag-panes.src.js +1 -1
  829. package/modules/draggable-points.d.ts +1 -9
  830. package/modules/draggable-points.js +9 -1
  831. package/modules/draggable-points.src.d.ts +1 -9
  832. package/modules/draggable-points.src.js +1 -1
  833. package/modules/drilldown.d.ts +1 -9
  834. package/modules/drilldown.js +13 -1
  835. package/modules/drilldown.src.d.ts +1 -9
  836. package/modules/drilldown.src.js +3 -1
  837. package/modules/dumbbell.d.ts +1 -9
  838. package/modules/dumbbell.js +9 -1
  839. package/modules/dumbbell.src.d.ts +1 -9
  840. package/modules/dumbbell.src.js +1 -1
  841. package/modules/export-data.d.ts +2 -79
  842. package/modules/export-data.js +12 -1
  843. package/modules/export-data.src.d.ts +2 -79
  844. package/modules/export-data.src.js +996 -803
  845. package/modules/exporting.d.ts +35 -21
  846. package/modules/exporting.js +11 -1
  847. package/modules/exporting.src.d.ts +35 -21
  848. package/modules/exporting.src.js +1372 -636
  849. package/modules/flowmap.d.ts +1 -9
  850. package/modules/flowmap.js +9 -1
  851. package/modules/flowmap.src.d.ts +1 -9
  852. package/modules/flowmap.src.js +1 -1
  853. package/modules/full-screen.d.ts +1 -9
  854. package/modules/full-screen.js +12 -1
  855. package/modules/full-screen.src.d.ts +1 -9
  856. package/modules/full-screen.src.js +3 -3
  857. package/modules/funnel.d.ts +1 -9
  858. package/modules/funnel.js +11 -1
  859. package/modules/funnel.src.d.ts +1 -9
  860. package/modules/funnel.src.js +1 -1
  861. package/modules/funnel3d.d.ts +1 -9
  862. package/modules/funnel3d.js +13 -1
  863. package/modules/funnel3d.src.d.ts +1 -9
  864. package/modules/funnel3d.src.js +1 -1
  865. package/modules/gantt.d.ts +1 -9
  866. package/modules/gantt.js +31 -1
  867. package/modules/gantt.src.d.ts +1 -9
  868. package/modules/gantt.src.js +36 -28
  869. package/modules/geoheatmap.d.ts +1 -9
  870. package/modules/geoheatmap.js +9 -1
  871. package/modules/geoheatmap.src.d.ts +1 -9
  872. package/modules/geoheatmap.src.js +1 -1
  873. package/modules/grid-axis.d.ts +1 -9
  874. package/modules/grid-axis.js +11 -1
  875. package/modules/grid-axis.src.d.ts +1 -9
  876. package/modules/grid-axis.src.js +1 -1
  877. package/modules/heatmap.d.ts +1 -9
  878. package/modules/heatmap.js +19 -1
  879. package/modules/heatmap.src.d.ts +1 -9
  880. package/modules/heatmap.src.js +3 -4
  881. package/modules/heikinashi.d.ts +1 -9
  882. package/modules/heikinashi.js +12 -1
  883. package/modules/heikinashi.src.d.ts +1 -9
  884. package/modules/heikinashi.src.js +1 -1
  885. package/modules/histogram-bellcurve.d.ts +1 -9
  886. package/modules/histogram-bellcurve.js +10 -1
  887. package/modules/histogram-bellcurve.src.d.ts +1 -9
  888. package/modules/histogram-bellcurve.src.js +1 -1
  889. package/modules/hollowcandlestick.d.ts +1 -9
  890. package/modules/hollowcandlestick.js +12 -1
  891. package/modules/hollowcandlestick.src.d.ts +1 -9
  892. package/modules/hollowcandlestick.src.js +1 -1
  893. package/modules/item-series.d.ts +1 -9
  894. package/modules/item-series.js +11 -1
  895. package/modules/item-series.src.d.ts +1 -9
  896. package/modules/item-series.src.js +3 -5
  897. package/modules/lollipop.d.ts +1 -9
  898. package/modules/lollipop.js +9 -1
  899. package/modules/lollipop.src.d.ts +1 -9
  900. package/modules/lollipop.src.js +1 -1
  901. package/modules/map.d.ts +1 -9
  902. package/modules/map.js +21 -1
  903. package/modules/map.src.d.ts +1 -9
  904. package/modules/map.src.js +6 -7
  905. package/modules/marker-clusters.d.ts +1 -9
  906. package/modules/marker-clusters.js +11 -1
  907. package/modules/marker-clusters.src.d.ts +1 -9
  908. package/modules/marker-clusters.src.js +1 -1
  909. package/modules/mouse-wheel-zoom.d.ts +1 -9
  910. package/modules/mouse-wheel-zoom.js +11 -1
  911. package/modules/mouse-wheel-zoom.src.d.ts +1 -9
  912. package/modules/mouse-wheel-zoom.src.js +1 -1
  913. package/modules/navigator.d.ts +1 -9
  914. package/modules/navigator.js +11 -1
  915. package/modules/navigator.src.d.ts +1 -9
  916. package/modules/navigator.src.js +10 -12
  917. package/modules/networkgraph.d.ts +1 -9
  918. package/modules/networkgraph.js +11 -1
  919. package/modules/networkgraph.src.d.ts +1 -9
  920. package/modules/networkgraph.src.js +7 -2
  921. package/modules/no-data-to-display.d.ts +1 -9
  922. package/modules/no-data-to-display.js +12 -1
  923. package/modules/no-data-to-display.src.d.ts +1 -9
  924. package/modules/no-data-to-display.src.js +1 -1
  925. package/modules/non-cartesian-zoom.d.ts +9 -0
  926. package/modules/non-cartesian-zoom.js +11 -0
  927. package/modules/non-cartesian-zoom.src.d.ts +9 -0
  928. package/modules/non-cartesian-zoom.src.js +427 -0
  929. package/modules/offline-exporting.d.ts +2 -90
  930. package/modules/offline-exporting.js +12 -1
  931. package/modules/offline-exporting.src.d.ts +2 -90
  932. package/modules/offline-exporting.src.js +353 -3380
  933. package/modules/organization.d.ts +1 -9
  934. package/modules/organization.js +11 -1
  935. package/modules/organization.src.d.ts +1 -9
  936. package/modules/organization.src.js +1 -1
  937. package/modules/parallel-coordinates.d.ts +1 -9
  938. package/modules/parallel-coordinates.js +11 -1
  939. package/modules/parallel-coordinates.src.d.ts +1 -9
  940. package/modules/parallel-coordinates.src.js +1 -1
  941. package/modules/pareto.d.ts +1 -9
  942. package/modules/pareto.js +11 -1
  943. package/modules/pareto.src.d.ts +1 -9
  944. package/modules/pareto.src.js +1 -1
  945. package/modules/pathfinder.d.ts +1 -9
  946. package/modules/pathfinder.js +11 -1
  947. package/modules/pathfinder.src.d.ts +1 -9
  948. package/modules/pathfinder.src.js +1 -1
  949. package/modules/pattern-fill.d.ts +1 -9
  950. package/modules/pattern-fill.js +12 -1
  951. package/modules/pattern-fill.src.d.ts +1 -9
  952. package/modules/pattern-fill.src.js +1 -1
  953. package/modules/pictorial.d.ts +1 -9
  954. package/modules/pictorial.js +11 -1
  955. package/modules/pictorial.src.d.ts +1 -9
  956. package/modules/pictorial.src.js +1 -1
  957. package/modules/pointandfigure.d.ts +1 -9
  958. package/modules/pointandfigure.js +12 -1
  959. package/modules/pointandfigure.src.d.ts +1 -9
  960. package/modules/pointandfigure.src.js +1 -1
  961. package/modules/price-indicator.d.ts +1 -9
  962. package/modules/price-indicator.js +13 -1
  963. package/modules/price-indicator.src.d.ts +1 -9
  964. package/modules/price-indicator.src.js +1 -1
  965. package/modules/pyramid3d.d.ts +1 -9
  966. package/modules/pyramid3d.js +14 -1
  967. package/modules/pyramid3d.src.d.ts +1 -9
  968. package/modules/pyramid3d.src.js +1 -1
  969. package/modules/renko.d.ts +1 -9
  970. package/modules/renko.js +12 -1
  971. package/modules/renko.src.d.ts +1 -9
  972. package/modules/renko.src.js +1 -1
  973. package/modules/sankey.d.ts +1 -9
  974. package/modules/sankey.js +11 -1
  975. package/modules/sankey.src.d.ts +1 -9
  976. package/modules/sankey.src.js +1 -1
  977. package/modules/series-label.d.ts +1 -9
  978. package/modules/series-label.js +9 -1
  979. package/modules/series-label.src.d.ts +1 -9
  980. package/modules/series-label.src.js +1 -1
  981. package/modules/series-on-point.d.ts +1 -9
  982. package/modules/series-on-point.js +12 -1
  983. package/modules/series-on-point.src.d.ts +1 -9
  984. package/modules/series-on-point.src.js +1 -1
  985. package/modules/solid-gauge.d.ts +1 -9
  986. package/modules/solid-gauge.js +12 -1
  987. package/modules/solid-gauge.src.d.ts +1 -9
  988. package/modules/solid-gauge.src.js +8 -3
  989. package/modules/sonification.d.ts +1 -9
  990. package/modules/sonification.js +12 -1
  991. package/modules/sonification.src.d.ts +1 -9
  992. package/modules/sonification.src.js +42 -9
  993. package/modules/static-scale.d.ts +1 -9
  994. package/modules/static-scale.js +11 -1
  995. package/modules/static-scale.src.d.ts +1 -9
  996. package/modules/static-scale.src.js +1 -1
  997. package/modules/stock-tools.d.ts +1 -9
  998. package/modules/stock-tools.js +13 -1
  999. package/modules/stock-tools.src.d.ts +1 -9
  1000. package/modules/stock-tools.src.js +37 -116
  1001. package/modules/stock.d.ts +1 -9
  1002. package/modules/stock.js +29 -1
  1003. package/modules/stock.src.d.ts +1 -9
  1004. package/modules/stock.src.js +35 -27
  1005. package/modules/streamgraph.d.ts +1 -9
  1006. package/modules/streamgraph.js +11 -1
  1007. package/modules/streamgraph.src.d.ts +1 -9
  1008. package/modules/streamgraph.src.js +1 -1
  1009. package/modules/sunburst.d.ts +1 -9
  1010. package/modules/sunburst.js +10 -1
  1011. package/modules/sunburst.src.d.ts +1 -9
  1012. package/modules/sunburst.src.js +1 -1
  1013. package/modules/textpath.d.ts +1 -9
  1014. package/modules/textpath.js +9 -1
  1015. package/modules/textpath.src.d.ts +1 -9
  1016. package/modules/textpath.src.js +1 -1
  1017. package/modules/tiledwebmap.d.ts +1 -9
  1018. package/modules/tiledwebmap.js +10 -2
  1019. package/modules/tiledwebmap.src.d.ts +1 -9
  1020. package/modules/tiledwebmap.src.js +1 -1
  1021. package/modules/tilemap.d.ts +1 -9
  1022. package/modules/tilemap.js +12 -1
  1023. package/modules/tilemap.src.d.ts +1 -9
  1024. package/modules/tilemap.src.js +1 -1
  1025. package/modules/timeline.d.ts +1 -9
  1026. package/modules/timeline.js +12 -1
  1027. package/modules/timeline.src.d.ts +1 -9
  1028. package/modules/timeline.src.js +1 -1
  1029. package/modules/treegraph.d.ts +1 -9
  1030. package/modules/treegraph.js +11 -1
  1031. package/modules/treegraph.src.d.ts +1 -9
  1032. package/modules/treegraph.src.js +4 -2
  1033. package/modules/treegrid.d.ts +1 -9
  1034. package/modules/treegrid.js +11 -1
  1035. package/modules/treegrid.src.d.ts +1 -9
  1036. package/modules/treegrid.src.js +1 -1
  1037. package/modules/treemap.d.ts +1 -9
  1038. package/modules/treemap.js +10 -1
  1039. package/modules/treemap.src.d.ts +1 -9
  1040. package/modules/treemap.src.js +1 -1
  1041. package/modules/variable-pie.d.ts +1 -9
  1042. package/modules/variable-pie.js +11 -1
  1043. package/modules/variable-pie.src.d.ts +1 -9
  1044. package/modules/variable-pie.src.js +1 -1
  1045. package/modules/variwide.d.ts +1 -9
  1046. package/modules/variwide.js +11 -1
  1047. package/modules/variwide.src.d.ts +1 -9
  1048. package/modules/variwide.src.js +9 -2
  1049. package/modules/vector.d.ts +1 -9
  1050. package/modules/vector.js +11 -1
  1051. package/modules/vector.src.d.ts +1 -9
  1052. package/modules/vector.src.js +1 -1
  1053. package/modules/venn.d.ts +1 -9
  1054. package/modules/venn.js +10 -1
  1055. package/modules/venn.src.d.ts +1 -9
  1056. package/modules/venn.src.js +1 -1
  1057. package/modules/windbarb.d.ts +1 -9
  1058. package/modules/windbarb.js +11 -1
  1059. package/modules/windbarb.src.d.ts +1 -9
  1060. package/modules/windbarb.src.js +1 -1
  1061. package/modules/wordcloud.d.ts +1 -9
  1062. package/modules/wordcloud.js +10 -1
  1063. package/modules/wordcloud.src.d.ts +1 -9
  1064. package/modules/wordcloud.src.js +88 -11
  1065. package/modules/xrange.d.ts +1 -9
  1066. package/modules/xrange.js +11 -1
  1067. package/modules/xrange.src.d.ts +1 -9
  1068. package/modules/xrange.src.js +1 -1
  1069. package/options/abands.d.ts +8 -0
  1070. package/options/abands.src.d.ts +8 -0
  1071. package/options/ao.d.ts +8 -0
  1072. package/options/ao.src.d.ts +8 -0
  1073. package/options/arcdiagram.d.ts +8 -0
  1074. package/options/arcdiagram.src.d.ts +8 -0
  1075. package/options/area.d.ts +9 -0
  1076. package/options/area.src.d.ts +9 -0
  1077. package/options/arearange.d.ts +9 -0
  1078. package/options/arearange.src.d.ts +9 -0
  1079. package/options/areaspline.d.ts +9 -0
  1080. package/options/areaspline.src.d.ts +9 -0
  1081. package/options/areasplinerange.d.ts +9 -0
  1082. package/options/areasplinerange.src.d.ts +9 -0
  1083. package/options/aroon.d.ts +8 -0
  1084. package/options/aroon.src.d.ts +8 -0
  1085. package/options/atr.d.ts +8 -0
  1086. package/options/atr.src.d.ts +8 -0
  1087. package/options/bellcurve.d.ts +8 -0
  1088. package/options/bellcurve.src.d.ts +8 -0
  1089. package/options/boxplot.d.ts +8 -0
  1090. package/options/boxplot.src.d.ts +8 -0
  1091. package/options/bullet.d.ts +8 -0
  1092. package/options/bullet.src.d.ts +8 -0
  1093. package/options/chaikin.d.ts +8 -0
  1094. package/options/chaikin.src.d.ts +8 -0
  1095. package/options/cmo.d.ts +8 -0
  1096. package/options/cmo.src.d.ts +8 -0
  1097. package/options/columnpyramid.d.ts +9 -0
  1098. package/options/columnpyramid.src.d.ts +9 -0
  1099. package/options/columnrange.d.ts +9 -0
  1100. package/options/columnrange.src.d.ts +9 -0
  1101. package/options/dmi.d.ts +8 -0
  1102. package/options/dmi.src.d.ts +8 -0
  1103. package/options/errorbar.d.ts +8 -0
  1104. package/options/errorbar.src.d.ts +8 -0
  1105. package/options/flags.d.ts +8 -0
  1106. package/options/flags.src.d.ts +8 -0
  1107. package/options/funnel.d.ts +8 -0
  1108. package/options/funnel.src.d.ts +8 -0
  1109. package/options/gauge.d.ts +8 -0
  1110. package/options/gauge.src.d.ts +8 -0
  1111. package/options/item.d.ts +8 -0
  1112. package/options/item.src.d.ts +8 -0
  1113. package/options/keltnerchannels.d.ts +8 -0
  1114. package/options/keltnerchannels.src.d.ts +8 -0
  1115. package/options/line.d.ts +9 -0
  1116. package/options/line.src.d.ts +9 -0
  1117. package/options/linearregressionangle.d.ts +8 -0
  1118. package/options/linearregressionangle.src.d.ts +8 -0
  1119. package/options/linearregressionintercept.d.ts +8 -0
  1120. package/options/linearregressionintercept.src.d.ts +8 -0
  1121. package/options/map.d.ts +8 -0
  1122. package/options/map.src.d.ts +8 -0
  1123. package/options/mfi.d.ts +8 -0
  1124. package/options/mfi.src.d.ts +8 -0
  1125. package/options/natr.d.ts +8 -0
  1126. package/options/natr.src.d.ts +8 -0
  1127. package/options/ohlc.d.ts +8 -0
  1128. package/options/ohlc.src.d.ts +8 -0
  1129. package/options/packedbubble.d.ts +8 -0
  1130. package/options/packedbubble.src.d.ts +8 -0
  1131. package/options/pictorial.d.ts +8 -0
  1132. package/options/pictorial.src.d.ts +8 -0
  1133. package/options/pointandfigure.d.ts +8 -0
  1134. package/options/pointandfigure.src.d.ts +8 -0
  1135. package/options/polygon.d.ts +9 -0
  1136. package/options/polygon.src.d.ts +9 -0
  1137. package/options/ppo.d.ts +8 -0
  1138. package/options/ppo.src.d.ts +8 -0
  1139. package/options/psar.d.ts +8 -0
  1140. package/options/psar.src.d.ts +8 -0
  1141. package/options/pyramid.d.ts +8 -0
  1142. package/options/pyramid.src.d.ts +8 -0
  1143. package/options/renko.d.ts +8 -0
  1144. package/options/renko.src.d.ts +8 -0
  1145. package/options/roc.d.ts +8 -0
  1146. package/options/roc.src.d.ts +8 -0
  1147. package/options/sankey.d.ts +8 -0
  1148. package/options/sankey.src.d.ts +8 -0
  1149. package/options/scatter.d.ts +9 -0
  1150. package/options/scatter.src.d.ts +9 -0
  1151. package/options/series.d.ts +9 -0
  1152. package/options/series.src.d.ts +9 -0
  1153. package/options/sma.d.ts +8 -0
  1154. package/options/sma.src.d.ts +8 -0
  1155. package/options/solidgauge.d.ts +8 -0
  1156. package/options/solidgauge.src.d.ts +8 -0
  1157. package/options/spline.d.ts +9 -0
  1158. package/options/spline.src.d.ts +9 -0
  1159. package/options/stochastic.d.ts +8 -0
  1160. package/options/stochastic.src.d.ts +8 -0
  1161. package/options/tema.d.ts +8 -0
  1162. package/options/tema.src.d.ts +8 -0
  1163. package/options/tiledwebmap.d.ts +8 -0
  1164. package/options/tiledwebmap.src.d.ts +8 -0
  1165. package/options/timeline.d.ts +8 -0
  1166. package/options/timeline.src.d.ts +8 -0
  1167. package/options/treegraph.d.ts +8 -0
  1168. package/options/treegraph.src.d.ts +8 -0
  1169. package/options/trix.d.ts +8 -0
  1170. package/options/trix.src.d.ts +8 -0
  1171. package/options/variablepie.d.ts +8 -0
  1172. package/options/variablepie.src.d.ts +8 -0
  1173. package/options/variwide.d.ts +8 -0
  1174. package/options/variwide.src.d.ts +8 -0
  1175. package/options/vbp.d.ts +8 -0
  1176. package/options/vbp.src.d.ts +8 -0
  1177. package/options/vector.d.ts +9 -0
  1178. package/options/vector.src.d.ts +9 -0
  1179. package/options/venn.d.ts +8 -0
  1180. package/options/venn.src.d.ts +8 -0
  1181. package/options/vwap.d.ts +8 -0
  1182. package/options/vwap.src.d.ts +8 -0
  1183. package/options/windbarb.d.ts +9 -0
  1184. package/options/windbarb.src.d.ts +9 -0
  1185. package/options/wma.d.ts +8 -0
  1186. package/options/wma.src.d.ts +8 -0
  1187. package/options/wordcloud.d.ts +8 -0
  1188. package/options/wordcloud.src.d.ts +8 -0
  1189. package/options/zigzag.d.ts +8 -0
  1190. package/options/zigzag.src.d.ts +8 -0
  1191. package/package.json +1 -1
  1192. package/standalone-navigator.js +9 -2
  1193. package/standalone-navigator.src.js +146 -90
  1194. package/themes/adaptive.d.ts +18 -0
  1195. package/themes/adaptive.js +130 -0
  1196. package/themes/adaptive.src.d.ts +18 -0
  1197. package/themes/adaptive.src.js +1122 -0
  1198. package/themes/avocado.d.ts +1 -9
  1199. package/themes/avocado.js +9 -1
  1200. package/themes/avocado.src.d.ts +1 -9
  1201. package/themes/avocado.src.js +1 -1
  1202. package/themes/brand-dark.d.ts +1 -9
  1203. package/themes/brand-dark.js +9 -1
  1204. package/themes/brand-dark.src.d.ts +1 -9
  1205. package/themes/brand-dark.src.js +1 -1
  1206. package/themes/brand-light.d.ts +1 -9
  1207. package/themes/brand-light.js +9 -1
  1208. package/themes/brand-light.src.d.ts +1 -9
  1209. package/themes/brand-light.src.js +1 -1
  1210. package/themes/dark-blue.d.ts +1 -9
  1211. package/themes/dark-blue.js +9 -1
  1212. package/themes/dark-blue.src.d.ts +1 -9
  1213. package/themes/dark-blue.src.js +1 -1
  1214. package/themes/dark-green.d.ts +1 -9
  1215. package/themes/dark-green.js +9 -1
  1216. package/themes/dark-green.src.d.ts +1 -9
  1217. package/themes/dark-green.src.js +1 -1
  1218. package/themes/dark-unica.d.ts +1 -9
  1219. package/themes/dark-unica.js +9 -1
  1220. package/themes/dark-unica.src.d.ts +1 -9
  1221. package/themes/dark-unica.src.js +1 -1
  1222. package/themes/gray.d.ts +1 -9
  1223. package/themes/gray.js +9 -1
  1224. package/themes/gray.src.d.ts +1 -9
  1225. package/themes/gray.src.js +1 -1
  1226. package/themes/grid-light.d.ts +1 -9
  1227. package/themes/grid-light.js +9 -1
  1228. package/themes/grid-light.src.d.ts +1 -9
  1229. package/themes/grid-light.src.js +1 -1
  1230. package/themes/grid.d.ts +1 -9
  1231. package/themes/grid.js +9 -1
  1232. package/themes/grid.src.d.ts +1 -9
  1233. package/themes/grid.src.js +1 -1
  1234. package/themes/high-contrast-dark.d.ts +1 -9
  1235. package/themes/high-contrast-dark.js +9 -1
  1236. package/themes/high-contrast-dark.src.d.ts +1 -9
  1237. package/themes/high-contrast-dark.src.js +1 -1
  1238. package/themes/high-contrast-light.d.ts +1 -9
  1239. package/themes/high-contrast-light.js +9 -1
  1240. package/themes/high-contrast-light.src.d.ts +1 -9
  1241. package/themes/high-contrast-light.src.js +1 -1
  1242. package/themes/sand-signika.d.ts +1 -9
  1243. package/themes/sand-signika.js +9 -1
  1244. package/themes/sand-signika.src.d.ts +1 -9
  1245. package/themes/sand-signika.src.js +1 -1
  1246. package/themes/skies.d.ts +1 -9
  1247. package/themes/skies.js +9 -1
  1248. package/themes/skies.src.d.ts +1 -9
  1249. package/themes/skies.src.js +1 -1
  1250. package/themes/sunset.d.ts +1 -9
  1251. package/themes/sunset.js +9 -1
  1252. package/themes/sunset.src.d.ts +1 -9
  1253. package/themes/sunset.src.js +1 -1
package/modules/boost.js CHANGED
@@ -1 +1,13 @@
1
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(e._Highcharts,e._Highcharts.Color):"function"==typeof define&&define.amd?define("highcharts/modules/boost",["highcharts/highcharts"],function(e){return t(e,e.Color)}):"object"==typeof exports?exports["highcharts/modules/boost"]=t(e._Highcharts,e._Highcharts.Color):e.Highcharts=t(e.Highcharts,e.Highcharts.Color)}("undefined"==typeof window?this:window,(e,t)=>(()=>{"use strict";let i,s;var r,o={620:e=>{e.exports=t},944:t=>{t.exports=e}},n={};function a(e){var t=n[e];if(void 0!==t)return t.exports;var i=n[e]={exports:{}};return o[e](i,i.exports,a),i.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var i in t)a.o(t,i)&&!a.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var l={};a.d(l,{default:()=>eI});var h=a(944),d=a.n(h);let f=["area","areaspline","arearange","column","columnrange","bar","line","scatter","heatmap","bubble","treemap"],u={};f.forEach(e=>{u[e]=!0});let{composed:g}=d(),{addEvent:m,pick:c,pushUnique:p}=d();function b(e){let t=e.series,i=e.boost=e.boost||{},s=e.options.boost||{},r=c(s.seriesThreshold,50);if(t.length>=r)return!0;if(1===t.length)return!1;let o=s.allowForce;if(void 0===o){for(let t of(o=!0,e.xAxis))if(c(t.min,-1/0)>c(t.dataMin,-1/0)||c(t.max,1/0)<c(t.dataMax,1/0)){o=!1;break}}if(void 0!==i.forceChartBoost){if(o)return i.forceChartBoost;i.forceChartBoost=void 0}let n=0,a=0,l;for(let e of t)0!==(l=e.options).boostThreshold&&!1!==e.visible&&"heatmap"!==e.type&&(u[e.type]&&++n,function(...e){let t=-Number.MAX_VALUE;return e.forEach(e=>{if(null!=e&&void 0!==e.length&&e.length>0)return t=e.length,!0}),t}(e.getColumn("x",!0),l.data,e.points)>=(l.boostThreshold||Number.MAX_VALUE)&&++a);return i.forceChartBoost=o&&(n===t.length&&a===n||a>5),i.forceChartBoost}function x(e){function t(){e.boost&&e.boost.wgl&&b(e)&&e.boost.wgl.render(e)}m(e,"predraw",function(){e.boost=e.boost||{},e.boost.forceChartBoost=void 0,e.boosted=!1,e.axes.some(e=>e.isPanning)||e.boost.clear?.(),e.boost.canvas&&e.boost.wgl&&b(e)&&e.boost.wgl.allocateBuffer(e),e.boost.markerGroup&&e.xAxis&&e.xAxis.length>0&&e.yAxis&&e.yAxis.length>0&&e.boost.markerGroup.translate(e.xAxis[0].pos,e.yAxis[0].pos)}),m(e,"load",t,{order:-1}),m(e,"redraw",t);let i=-1,s=-1;m(e.pointer,"afterGetHoverData",t=>{let r=t.hoverPoint?.series;if(e.boost=e.boost||{},e.boost.markerGroup&&r){let t=e.inverted?r.yAxis:r.xAxis,o=e.inverted?r.xAxis:r.yAxis;(t&&t.pos!==i||o&&o.pos!==s)&&(e.series.forEach(e=>{e.halo?.hide()}),e.boost.markerGroup.translate(t.pos,o.pos),i=t.pos,s=o.pos)}})}let A={compose:function(e,t){return t&&p(g,"Boost.Chart")&&e.prototype.callbacks.push(x),e},getBoostClipRect:function(e,t){let i=e.navigator,s={x:e.plotLeft,y:e.plotTop,width:e.plotWidth,height:e.plotHeight};if(i&&e.inverted?(s.width+=i.top+i.height,i.opposite||(s.x=i.left)):i&&!e.inverted&&(s.height=i.top+i.height-e.plotTop),t.is){let{xAxis:i,yAxis:r}=t;if(s=e.getClipBox(t),e.inverted){let e=s.width;s.width=s.height,s.height=e,s.x=r.pos,s.y=i.pos}else s.x=i.pos,s.y=r.pos}if(t===e){let t=e.inverted?e.xAxis:e.yAxis;t.length<=1&&(s.y=Math.min(t[0].pos,s.y),s.height=t[0].pos-e.plotTop+t[0].len)}return s},isChartSeriesBoosting:b};var y=a(620),v=a.n(y);let P={area:"LINES",arearange:"LINES",areaspline:"LINES",column:"LINES",columnrange:"LINES",bar:"LINES",line:"LINE_STRIP",scatter:"POINTS",heatmap:"TRIANGLES",treemap:"TRIANGLES",bubble:"POINTS"},{clamp:T,error:C,pick:k}=d(),M=class{constructor(e){if(this.errors=[],this.uLocations={},this.gl=e,e&&!this.createShader())return}bind(){this.gl&&this.shaderProgram&&this.gl.useProgram(this.shaderProgram)}createShader(){let e=this.stringToProgram("#version 100\n#define LN10 2.302585092994046\nprecision highp float;\nattribute vec4 aVertexPosition;\nattribute vec4 aColor;\nvarying highp vec2 position;\nvarying highp vec4 vColor;\nuniform mat4 uPMatrix;\nuniform float pSize;\nuniform float translatedThreshold;\nuniform bool hasThreshold;\nuniform bool skipTranslation;\nuniform float xAxisTrans;\nuniform float xAxisMin;\nuniform float xAxisMinPad;\nuniform float xAxisPointRange;\nuniform float xAxisLen;\nuniform bool xAxisPostTranslate;\nuniform float xAxisOrdinalSlope;\nuniform float xAxisOrdinalOffset;\nuniform float xAxisPos;\nuniform bool xAxisCVSCoord;\nuniform bool xAxisIsLog;\nuniform bool xAxisReversed;\nuniform float yAxisTrans;\nuniform float yAxisMin;\nuniform float yAxisMinPad;\nuniform float yAxisPointRange;\nuniform float yAxisLen;\nuniform bool yAxisPostTranslate;\nuniform float yAxisOrdinalSlope;\nuniform float yAxisOrdinalOffset;\nuniform float yAxisPos;\nuniform bool yAxisCVSCoord;\nuniform bool yAxisIsLog;\nuniform bool yAxisReversed;\nuniform bool isBubble;\nuniform bool bubbleSizeByArea;\nuniform float bubbleZMin;\nuniform float bubbleZMax;\nuniform float bubbleZThreshold;\nuniform float bubbleMinSize;\nuniform float bubbleMaxSize;\nuniform bool bubbleSizeAbs;\nuniform bool isInverted;\nfloat bubbleRadius(){\nfloat value = aVertexPosition.w;\nfloat zMax = bubbleZMax;\nfloat zMin = bubbleZMin;\nfloat radius = 0.0;\nfloat pos = 0.0;\nfloat zRange = zMax - zMin;\nif (bubbleSizeAbs){\nvalue = value - bubbleZThreshold;\nzMax = max(zMax - bubbleZThreshold, zMin - bubbleZThreshold);\nzMin = 0.0;\n}\nif (value < zMin){\nradius = bubbleZMin / 2.0 - 1.0;\n} else {\npos = zRange > 0.0 ? (value - zMin) / zRange : 0.5;\nif (bubbleSizeByArea && pos > 0.0){\npos = sqrt(pos);\n}\nradius = ceil(bubbleMinSize + pos * (bubbleMaxSize - bubbleMinSize)) / 2.0;\n}\nreturn radius * 2.0;\n}\nfloat translate(float val,\nfloat pointPlacement,\nfloat localA,\nfloat localMin,\nfloat minPixelPadding,\nfloat pointRange,\nfloat len,\nbool cvsCoord,\nbool isLog,\nbool reversed\n){\nfloat sign = 1.0;\nfloat cvsOffset = 0.0;\nif (cvsCoord) {\nsign *= -1.0;\ncvsOffset = len;\n}\nif (isLog) {\nval = log(val) / LN10;\n}\nif (reversed) {\nsign *= -1.0;\ncvsOffset -= sign * len;\n}\nreturn sign * (val - localMin) * localA + cvsOffset + \n(sign * minPixelPadding);\n}\nfloat xToPixels(float value) {\nif (skipTranslation){\nreturn value;// + xAxisPos;\n}\nreturn translate(value, 0.0, xAxisTrans, xAxisMin, xAxisMinPad, xAxisPointRange, xAxisLen, xAxisCVSCoord, xAxisIsLog, xAxisReversed);// + xAxisPos;\n}\nfloat yToPixels(float value, float checkTreshold) {\nfloat v;\nif (skipTranslation){\nv = value;// + yAxisPos;\n} else {\nv = translate(value, 0.0, yAxisTrans, yAxisMin, yAxisMinPad, yAxisPointRange, yAxisLen, yAxisCVSCoord, yAxisIsLog, yAxisReversed);// + yAxisPos;\nif (v > yAxisLen) {\nv = yAxisLen;\n}\n}\nif (checkTreshold > 0.0 && hasThreshold) {\nv = min(v, translatedThreshold);\n}\nreturn v;\n}\nvoid main(void) {\nif (isBubble){\ngl_PointSize = bubbleRadius();\n} else {\ngl_PointSize = pSize;\n}\nvColor = aColor;\nif (skipTranslation && isInverted) {\ngl_Position = uPMatrix * vec4(aVertexPosition.y + yAxisPos, aVertexPosition.x + xAxisPos, 0.0, 1.0);\n} else if (isInverted) {\ngl_Position = uPMatrix * vec4(yToPixels(aVertexPosition.y, aVertexPosition.z) + yAxisPos, xToPixels(aVertexPosition.x) + xAxisPos, 0.0, 1.0);\n} else {\ngl_Position = uPMatrix * vec4(xToPixels(aVertexPosition.x) + xAxisPos, yToPixels(aVertexPosition.y, aVertexPosition.z) + yAxisPos, 0.0, 1.0);\n}\n}","vertex"),t=this.stringToProgram("precision highp float;\nuniform vec4 fillColor;\nvarying highp vec2 position;\nvarying highp vec4 vColor;\nuniform sampler2D uSampler;\nuniform bool isCircle;\nuniform bool hasColor;\nvoid main(void) {\nvec4 col = fillColor;\nvec4 tcol = texture2D(uSampler, gl_PointCoord.st);\nif (hasColor) {\ncol = vColor;\n}\nif (isCircle) {\ncol *= tcol;\nif (tcol.r < 0.0) {\ndiscard;\n} else {\ngl_FragColor = col;\n}\n} else {\ngl_FragColor = col;\n}\n}","fragment"),i=e=>this.gl.getUniformLocation(this.shaderProgram,e);return e&&t?(this.shaderProgram=this.gl.createProgram(),this.gl.attachShader(this.shaderProgram,e),this.gl.attachShader(this.shaderProgram,t),this.gl.linkProgram(this.shaderProgram),this.gl.getProgramParameter(this.shaderProgram,this.gl.LINK_STATUS))?(this.gl.useProgram(this.shaderProgram),this.gl.bindAttribLocation(this.shaderProgram,0,"aVertexPosition"),this.pUniform=i("uPMatrix"),this.psUniform=i("pSize"),this.fcUniform=i("fillColor"),this.isBubbleUniform=i("isBubble"),this.bubbleSizeAbsUniform=i("bubbleSizeAbs"),this.bubbleSizeAreaUniform=i("bubbleSizeByArea"),this.uSamplerUniform=i("uSampler"),this.skipTranslationUniform=i("skipTranslation"),this.isCircleUniform=i("isCircle"),this.isInverted=i("isInverted"),!0):(this.errors.push(this.gl.getProgramInfoLog(this.shaderProgram)),this.handleErrors(),this.shaderProgram=!1,!1):(this.shaderProgram=!1,this.handleErrors(),!1)}handleErrors(){this.errors.length&&C("[highcharts boost] shader error - "+this.errors.join("\n"))}stringToProgram(e,t){let i=this.gl.createShader("vertex"===t?this.gl.VERTEX_SHADER:this.gl.FRAGMENT_SHADER);return(this.gl.shaderSource(i,e),this.gl.compileShader(i),this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))?i:(this.errors.push("when compiling "+t+" shader:\n"+this.gl.getShaderInfoLog(i)),!1)}destroy(){this.gl&&this.shaderProgram&&(this.gl.deleteProgram(this.shaderProgram),this.shaderProgram=!1)}fillColorUniform(){return this.fcUniform}getProgram(){return this.shaderProgram}pointSizeUniform(){return this.psUniform}perspectiveUniform(){return this.pUniform}reset(){this.gl&&this.shaderProgram&&(this.gl.uniform1i(this.isBubbleUniform,0),this.gl.uniform1i(this.isCircleUniform,0))}setBubbleUniforms(e,t,i,s=1){let r=e.options,o=Number.MAX_VALUE,n=-Number.MAX_VALUE;if(this.gl&&this.shaderProgram&&e.is("bubble")){let a=e.getPxExtremes();o=k(r.zMin,T(t,!1===r.displayNegative?r.zThreshold:-Number.MAX_VALUE,o)),n=k(r.zMax,Math.max(n,i)),this.gl.uniform1i(this.isBubbleUniform,1),this.gl.uniform1i(this.isCircleUniform,1),this.gl.uniform1i(this.bubbleSizeAreaUniform,"width"!==e.options.sizeBy),this.gl.uniform1i(this.bubbleSizeAbsUniform,e.options.sizeByAbsoluteValue),this.setUniform("bubbleMinSize",a.minPxSize*s),this.setUniform("bubbleMaxSize",a.maxPxSize*s),this.setUniform("bubbleZMin",o),this.setUniform("bubbleZMax",n),this.setUniform("bubbleZThreshold",e.options.zThreshold)}}setColor(e){this.gl&&this.shaderProgram&&this.gl.uniform4f(this.fcUniform,e[0]/255,e[1]/255,e[2]/255,e[3])}setDrawAsCircle(e){this.gl&&this.shaderProgram&&this.gl.uniform1i(this.isCircleUniform,+!!e)}setInverted(e){this.gl&&this.shaderProgram&&this.gl.uniform1i(this.isInverted,e)}setPMatrix(e){this.gl&&this.shaderProgram&&this.gl.uniformMatrix4fv(this.pUniform,!1,e)}setPointSize(e){this.gl&&this.shaderProgram&&this.gl.uniform1f(this.psUniform,e)}setSkipTranslation(e){this.gl&&this.shaderProgram&&this.gl.uniform1i(this.skipTranslationUniform,+(!0===e))}setTexture(e){this.gl&&this.shaderProgram&&this.gl.uniform1i(this.uSamplerUniform,e)}setUniform(e,t){if(this.gl&&this.shaderProgram){let i=this.uLocations[e]=this.uLocations[e]||this.gl.getUniformLocation(this.shaderProgram,e);this.gl.uniform1f(i,t)}}},E=class{constructor(e,t,i){this.buffer=!1,this.iterator=0,this.preAllocated=!1,this.vertAttribute=!1,this.components=i||2,this.dataComponents=i,this.gl=e,this.shader=t}allocate(e){this.iterator=-1,this.preAllocated=new Float32Array(4*e)}bind(){if(!this.buffer)return!1;this.gl.vertexAttribPointer(this.vertAttribute,this.components,this.gl.FLOAT,!1,0,0)}build(e,t,i){let s;return(this.data=e||[],this.data&&0!==this.data.length||this.preAllocated)?(this.components=i||this.components,this.buffer&&this.gl.deleteBuffer(this.buffer),this.preAllocated||(s=new Float32Array(this.data)),this.buffer=this.gl.createBuffer(),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.buffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,this.preAllocated||s,this.gl.STATIC_DRAW),this.vertAttribute=this.gl.getAttribLocation(this.shader.getProgram(),t),this.gl.enableVertexAttribArray(this.vertAttribute),s=!1,!0):(this.destroy(),!1)}destroy(){this.buffer&&(this.gl.deleteBuffer(this.buffer),this.buffer=!1,this.vertAttribute=!1),this.iterator=0,this.components=this.dataComponents||2,this.data=[]}push(e,t,i,s){this.preAllocated&&(this.preAllocated[++this.iterator]=e,this.preAllocated[++this.iterator]=t,this.preAllocated[++this.iterator]=i,this.preAllocated[++this.iterator]=s)}render(e,t,i){let s=this.preAllocated?this.preAllocated.length:this.data.length;return!!this.buffer&&!!s&&((!e||e>s||e<0)&&(e=0),(!t||t>s)&&(t=s),!(e>=t)&&(i=i||"POINTS",this.gl.drawArrays(this.gl[i],e/this.components,(t-e)/this.components),!0))}},{parse:S}=v(),{doc:w,win:U}=d(),{isNumber:R,isObject:L,merge:_,objectEach:z,pick:D}=d(),N={column:!0,columnrange:!0,bar:!0,area:!0,areaspline:!0,arearange:!0},I={scatter:!0,bubble:!0},G=["webgl","experimental-webgl","moz-webgl","webkit-3d"];class B{static orthoMatrix(e,t){return[2/e,0,0,0,0,-(2/t),0,0,0,0,-2,0,-1,1,-1,1]}static seriesPointCount(e){let t,i,s;return e.boosted?(t=!!e.options.stacking,i=(e.getColumn("x").length?e.getColumn("x"):void 0)||e.options.xData||e.getColumn("x",!0),s=(t?e.data:i||e.options.data).length,"treemap"===e.type?s*=12:"heatmap"===e.type?s*=6:N[e.type]&&(s*=2),s):0}constructor(e){this.data=[],this.height=0,this.isInited=!1,this.markerData=[],this.series=[],this.textureHandles={},this.width=0,this.postRenderCallback=e,this.settings={pointSize:1,lineWidth:1,fillColor:"#AA00AA",useAlpha:!0,usePreallocated:!1,useGPUTranslations:!1,debug:{timeRendering:!1,timeSeriesProcessing:!1,timeSetup:!1,timeBufferCopy:!1,timeKDTree:!1,showSkipSummary:!1}}}getPixelRatio(){return this.settings.pixelRatio||U.devicePixelRatio||1}setOptions(e){"pixelRatio"in e||(e.pixelRatio=1),_(!0,this.settings,e)}allocateBuffer(e){let t=this.vbuffer,i=0;this.settings.usePreallocated&&(e.series.forEach(e=>{e.boosted&&(i+=B.seriesPointCount(e))}),t&&t.allocate(i))}allocateBufferForSingleSeries(e){let t=this.vbuffer,i=0;this.settings.usePreallocated&&(e.boosted&&(i=B.seriesPointCount(e)),t&&t.allocate(i))}clear(){let e=this.gl;e&&e.clear(e.COLOR_BUFFER_BIT|e.DEPTH_BUFFER_BIT)}pushSeriesData(e,t){let i=this.data,s=this.settings,r=this.vbuffer,o=e.pointArrayMap&&"low,high"===e.pointArrayMap.join(","),{chart:n,options:a,sorted:l,xAxis:h,yAxis:d}=e,f=!!a.stacking,u=a.data,g=e.xAxis.getExtremes(),m=g.min-(e.xAxis.minPointOffset||0),c=g.max+(e.xAxis.minPointOffset||0),p=e.yAxis.getExtremes(),b=p.min-(e.yAxis.minPointOffset||0),x=p.max+(e.yAxis.minPointOffset||0),A=(e.getColumn("x").length?e.getColumn("x"):void 0)||a.xData||e.getColumn("x",!0),y=(e.getColumn("y").length?e.getColumn("y"):void 0)||a.yData||e.getColumn("y",!0),v=(e.getColumn("z").length?e.getColumn("z"):void 0)||a.zData||e.getColumn("z",!0),P=!A||0===A.length,T=a.connectNulls,C=e.points||!1,k=f?e.data:A||u,M={x:Number.MAX_VALUE,y:0},E={x:-Number.MAX_VALUE,y:0},w=void 0===n.index,U=N[e.type],R=a.zoneAxis||"y",_=a.zones||!1,z=a.threshold,D=this.getPixelRatio(),I=e.chart.plotWidth,G=!1,B=!1,O,V,X=0,F=!1,H,W,j,q,Y=-1,Z=!1,K=!1,Q,J=!1,$=!1,ee=!1,et=!1,ei=!0,es=!0,er,eo=!1,en=!1,ea=0;if(a.boostData&&a.boostData.length>0)return;a.gapSize&&(en="value"!==a.gapUnit?a.gapSize*e.closestPointRange:a.gapSize),_&&(er=[],_.forEach((e,t)=>{if(e.color){let i=S(e.color).rgba;i[0]/=255,i[1]/=255,i[2]/=255,er[t]=i,eo||void 0!==e.value||(eo=i)}}),eo||(eo=S(e.pointAttribs&&e.pointAttribs().fill||e.color).rgba,eo[0]/=255,eo[1]/=255,eo[2]/=255)),n.inverted&&(I=e.chart.plotHeight),e.closestPointRangePx=Number.MAX_VALUE;let el=e=>{e&&(t.colorData.push(e[0]),t.colorData.push(e[1]),t.colorData.push(e[2]),t.colorData.push(e[3]))},eh=(e,o,n,a=1,l)=>{el(l),1!==D&&(!s.useGPUTranslations||t.skipTranslation)&&(e*=D,o*=D,a*=D),s.usePreallocated&&r?(r.push(e,o,+!!n,a),ea+=4):(i.push(e),i.push(o),i.push(n?D:0),i.push(a))},ed=()=>{t.segments.length&&(t.segments[t.segments.length-1].to=i.length||ea)},ef=()=>{(!t.segments.length||t.segments[t.segments.length-1].from!==(i.length||ea))&&(ed(),t.segments.push({from:i.length||ea}))},eu=(e,t,i,s,r)=>{el(r),eh(e+i,t),el(r),eh(e,t),el(r),eh(e,t+s),el(r),eh(e,t+s),el(r),eh(e+i,t+s),el(r),eh(e+i,t)};if(ef(),C&&C.length>0){t.skipTranslation=!0,t.drawMode="TRIANGLES",C[0].node&&C[0].node.levelDynamic&&C.sort((e,t)=>{if(e.node){if(e.node.levelDynamic>t.node.levelDynamic)return 1;if(e.node.levelDynamic<t.node.levelDynamic)return -1}return 0}),C.forEach(t=>{let i,s,r=t.plotY;if(void 0!==r&&!isNaN(r)&&null!==t.y&&t.shapeArgs){let{x:r=0,y:o=0,width:a=0,height:l=0}=t.shapeArgs;i=(s=n.styledMode?t.series.colorAttribs(t):s=t.series.pointAttribs(t))["stroke-width"]||0,ee=S(s.fill).rgba,ee[0]/=255,ee[1]/=255,ee[2]/=255,e.is("treemap")&&(i=i||1,V=S(s.stroke).rgba,V[0]/=255,V[1]/=255,V[2]/=255,eu(r,o,a,l,V),i/=2),e.is("heatmap")&&n.inverted&&(r=h.len-r,o=d.len-o,a=-a,l=-l),eu(r+i,o+i,a-2*i,l-2*i,ee)}}),ed();return}for(;Y<k.length-1;){if(void 0===(j=k[++Y]))continue;if(w)break;let i=u&&u[Y];if(!P&&L(i,!0)&&i.color&&(ee=S(i.color).rgba,ee[0]/=255,ee[1]/=255,ee[2]/=255),P?(H=j[0],W=j[1],k[Y+1]&&(K=k[Y+1][0]),k[Y-1]&&(Z=k[Y-1][0]),j.length>=3&&(q=j[2],j[2]>t.zMax&&(t.zMax=j[2]),j[2]<t.zMin&&(t.zMin=j[2]))):(H=j,W=y?.[Y],k[Y+1]&&(K=k[Y+1]),k[Y-1]&&(Z=k[Y-1]),v&&v.length&&(q=v[Y],v[Y]>t.zMax&&(t.zMax=v[Y]),v[Y]<t.zMin&&(t.zMin=v[Y]))),!T&&(null===H||null===W)){ef();continue}if(K&&K>=m&&K<=c&&(J=!0),Z&&Z>=m&&Z<=c&&($=!0),o?(P&&(W=j.slice(1,3)),Q=e.getColumn("low",!0)?.[Y],W=e.getColumn("high",!0)?.[Y]||0):f&&(H=j.x,Q=(W=j.stackY)-j.y),null!=b&&null!=x&&(ei=W>=b&&W<=x),!l&&!ei||(H>c&&E.x<c&&(E.x=H,E.y=W),H<m&&M.x>m&&(M.x=H,M.y=W),null===W&&T))continue;if(null===W||!ei&&k.length>1&&!J&&!$){ef();continue}if((l&&(K>=m||H>=m)&&(Z<=c||H<=c)||!l&&H>=m&&H<=c)&&(et=!0),et||J||$){if(en&&H-Z>en&&ef(),_){let e;_.some((t,i)=>{let s=_[i-1];return"x"===R?void 0!==t.value&&H<=t.value&&(er[i]&&(!s||H>=s.value)&&(e=er[i]),!0):void 0!==t.value&&W<=t.value&&(er[i]&&(!s||W>=s.value)&&(e=er[i]),!0)}),ee=e||eo||ee}if(s.useGPUTranslations||(t.skipTranslation=!0,H=h.toPixels(H,!0),W=d.toPixels(W,!0),!(H>I)||"POINTS"!==t.drawMode)){if(t.hasMarkers&&et&&!1!==G&&(e.closestPointRangePx=Math.min(e.closestPointRangePx,Math.abs(H-G))),!s.useGPUTranslations&&!s.usePreallocated&&G&&1>Math.abs(H-G)&&B&&1>Math.abs(W-B)){s.debug.showSkipSummary&&++X;continue}U&&(O=Q||0,(!1===Q||void 0===Q)&&(O=W<0?W:0),(o||f)&&!d.logarithmic||(O=Math.max(null===z?b:z,b)),s.useGPUTranslations||(O=d.toPixels(O,!0)),eh(H,O,0,0,ee)),a.step&&!es&&eh(H,B,0,2,ee),eh(H,W,0,"bubble"===e.type?q||1:2,ee),G=H,B=W,F=!0,es=!1}}}s.debug.showSkipSummary&&console.log("skipped points:",X);let eg=(e,i)=>{if(s.useGPUTranslations||(t.skipTranslation=!0,e.x=h.toPixels(e.x,!0),e.y=d.toPixels(e.y,!0)),i){this.data=[e.x,e.y,0,2].concat(this.data);return}eh(e.x,e.y,0,2)};!F&&!1!==T&&"line_strip"===e.drawMode&&(M.x<Number.MAX_VALUE&&eg(M,!0),E.x>-Number.MAX_VALUE&&eg(E)),ed()}pushSeries(e){let t=this.markerData,i=this.series,s=this.settings;i.length>0&&i[i.length-1].hasMarkers&&(i[i.length-1].markerTo=t.length),s.debug.timeSeriesProcessing&&console.time("building "+e.type+" series");let r={segments:[],markerFrom:t.length,colorData:[],series:e,zMin:Number.MAX_VALUE,zMax:-Number.MAX_VALUE,hasMarkers:!!e.options.marker&&!1!==e.options.marker.enabled,showMarkers:!0,drawMode:P[e.type]||"LINE_STRIP"};e.index>=i.length?i.push(r):i[e.index]=r,this.pushSeriesData(e,r),s.debug.timeSeriesProcessing&&console.timeEnd("building "+e.type+" series")}flush(){let e=this.vbuffer;this.data=[],this.markerData=[],this.series=[],e&&e.destroy()}setXAxis(e){let t=this.shader;if(!t)return;let i=this.getPixelRatio();t.setUniform("xAxisTrans",e.transA*i),t.setUniform("xAxisMin",e.min),t.setUniform("xAxisMinPad",e.minPixelPadding*i),t.setUniform("xAxisPointRange",e.pointRange),t.setUniform("xAxisLen",e.len*i),t.setUniform("xAxisPos",e.pos*i),t.setUniform("xAxisCVSCoord",!e.horiz),t.setUniform("xAxisIsLog",!!e.logarithmic),t.setUniform("xAxisReversed",!!e.reversed)}setYAxis(e){let t=this.shader;if(!t)return;let i=this.getPixelRatio();t.setUniform("yAxisTrans",e.transA*i),t.setUniform("yAxisMin",e.min),t.setUniform("yAxisMinPad",e.minPixelPadding*i),t.setUniform("yAxisPointRange",e.pointRange),t.setUniform("yAxisLen",e.len*i),t.setUniform("yAxisPos",e.pos*i),t.setUniform("yAxisCVSCoord",!e.horiz),t.setUniform("yAxisIsLog",!!e.logarithmic),t.setUniform("yAxisReversed",!!e.reversed)}setThreshold(e,t){let i=this.shader;i&&(i.setUniform("hasThreshold",e),i.setUniform("translatedThreshold",t))}renderChart(e){let t=this.gl,i=this.settings,s=this.shader,r=this.vbuffer,o=this.getPixelRatio();if(!e)return!1;this.width=e.chartWidth*o,this.height=e.chartHeight*o;let n=this.height,a=this.width;if(!t||!s||!a||!n)return!1;i.debug.timeRendering&&console.time("gl rendering"),t.canvas.width=a,t.canvas.height=n,s.bind(),t.viewport(0,0,a,n),s.setPMatrix(B.orthoMatrix(a,n)),i.lineWidth>1&&!d().isMS&&t.lineWidth(i.lineWidth),r&&(r.build(this.data,"aVertexPosition",4),r.bind()),s.setInverted(e.inverted),this.series.forEach((n,a)=>{let l=n.series.options,h=l.marker,d=void 0!==l.lineWidth?l.lineWidth:1,f=l.threshold,u=R(f),g=n.series.yAxis.getThreshold(f),m=D(l.marker?l.marker.enabled:null,!!n.series.xAxis.isRadial||null,n.series.closestPointRangePx>2*((l.marker?l.marker.radius:10)||10)),c=this.textureHandles[h&&h.symbol||n.series.symbol]||this.textureHandles.circle,p,b,x,A=[];if(0!==n.segments.length&&n.segments[0].from!==n.segments[0].to){if(c.isReady&&(t.bindTexture(t.TEXTURE_2D,c.handle),s.setTexture(c.handle)),e.styledMode?n.series.markerGroup===n.series.chart.boost?.markerGroup?(delete n.series.markerGroup,n.series.markerGroup=n.series.plotGroup("markerGroup","markers","visible",1,e.seriesGroup).addClass("highcharts-tracker"),x=n.series.markerGroup.getStyle("fill"),n.series.markerGroup.destroy(),n.series.markerGroup=n.series.chart.boost?.markerGroup):x=n.series.markerGroup?.getStyle("fill"):(x="POINTS"===n.drawMode&&n.series.pointAttribs&&n.series.pointAttribs().fill||n.series.color,l.colorByPoint&&(x=n.series.chart.options.colors[a])),n.series.fillOpacity&&l.fillOpacity&&(x=new(v())(x).setOpacity(D(l.fillOpacity,1)).get()),A=S(x).rgba,i.useAlpha||(A[3]=1),"add"===l.boostBlending?(t.blendFunc(t.SRC_ALPHA,t.ONE),t.blendEquation(t.FUNC_ADD)):"mult"===l.boostBlending||"multiply"===l.boostBlending?t.blendFunc(t.DST_COLOR,t.ZERO):"darken"===l.boostBlending?(t.blendFunc(t.ONE,t.ONE),t.blendEquation(t.FUNC_MIN)):t.blendFuncSeparate(t.SRC_ALPHA,t.ONE_MINUS_SRC_ALPHA,t.ONE,t.ONE_MINUS_SRC_ALPHA),s.reset(),n.colorData.length>0?(s.setUniform("hasColor",1),(b=new E(t,s)).build(Array(n.segments[0].from).concat(n.colorData),"aColor",4),b.bind()):(s.setUniform("hasColor",0),t.disableVertexAttribArray(t.getAttribLocation(s.getProgram(),"aColor"))),s.setColor(A),this.setXAxis(n.series.xAxis),this.setYAxis(n.series.yAxis),this.setThreshold(u,g),"POINTS"===n.drawMode&&s.setPointSize(2*D(l.marker&&l.marker.radius,.5)*o),s.setSkipTranslation(n.skipTranslation),"bubble"===n.series.type&&s.setBubbleUniforms(n.series,n.zMin,n.zMax,o),s.setDrawAsCircle(I[n.series.type]||!1),r){if(d>0||"LINE_STRIP"!==n.drawMode)for(p=0;p<n.segments.length;p++)r.render(n.segments[p].from,n.segments[p].to,n.drawMode);if(n.hasMarkers&&m)for(s.setPointSize(2*D(l.marker&&l.marker.radius,5)*o),s.setDrawAsCircle(!0),p=0;p<n.segments.length;p++)r.render(n.segments[p].from,n.segments[p].to,"POINTS")}}}),i.debug.timeRendering&&console.timeEnd("gl rendering"),this.postRenderCallback&&this.postRenderCallback(this),this.flush()}render(e){if(this.clear(),e.renderer.forExport)return this.renderChart(e);this.isInited?this.renderChart(e):setTimeout(()=>{this.render(e)},1)}setSize(e,t){let i=this.shader;i&&(this.width!==e||this.height!==t)&&(this.width=e,this.height=t,i.bind(),i.setPMatrix(B.orthoMatrix(e,t)))}init(e,t){let i=this.settings;if(this.isInited=!1,!e)return!1;i.debug.timeSetup&&console.time("gl setup");for(let t=0;t<G.length&&(this.gl=e.getContext(G[t],{}),!this.gl);++t);let s=this.gl;if(!s)return!1;t||this.flush(),s.enable(s.BLEND),s.blendFunc(s.SRC_ALPHA,s.ONE_MINUS_SRC_ALPHA),s.disable(s.DEPTH_TEST),s.depthFunc(s.LESS);let r=this.shader=new M(s);if(!r)return!1;this.vbuffer=new E(s,r);let o=(e,t)=>{let i={isReady:!1,texture:w.createElement("canvas"),handle:s.createTexture()},r=i.texture.getContext("2d");this.textureHandles[e]=i,i.texture.width=512,i.texture.height=512,r.mozImageSmoothingEnabled=!1,r.webkitImageSmoothingEnabled=!1,r.msImageSmoothingEnabled=!1,r.imageSmoothingEnabled=!1,r.strokeStyle="rgba(255, 255, 255, 0)",r.fillStyle="#FFF",t(r);try{s.activeTexture(s.TEXTURE0),s.bindTexture(s.TEXTURE_2D,i.handle),s.texImage2D(s.TEXTURE_2D,0,s.RGBA,s.RGBA,s.UNSIGNED_BYTE,i.texture),s.texParameteri(s.TEXTURE_2D,s.TEXTURE_WRAP_S,s.CLAMP_TO_EDGE),s.texParameteri(s.TEXTURE_2D,s.TEXTURE_WRAP_T,s.CLAMP_TO_EDGE),s.texParameteri(s.TEXTURE_2D,s.TEXTURE_MAG_FILTER,s.LINEAR),s.texParameteri(s.TEXTURE_2D,s.TEXTURE_MIN_FILTER,s.LINEAR),s.bindTexture(s.TEXTURE_2D,null),i.isReady=!0}catch(e){}};return o("circle",e=>{e.beginPath(),e.arc(256,256,256,0,2*Math.PI),e.stroke(),e.fill()}),o("square",e=>{e.fillRect(0,0,512,512)}),o("diamond",e=>{e.beginPath(),e.moveTo(256,0),e.lineTo(512,256),e.lineTo(256,512),e.lineTo(0,256),e.lineTo(256,0),e.fill()}),o("triangle",e=>{e.beginPath(),e.moveTo(0,512),e.lineTo(256,0),e.lineTo(512,512),e.lineTo(0,512),e.fill()}),o("triangle-down",e=>{e.beginPath(),e.moveTo(0,0),e.lineTo(256,512),e.lineTo(512,0),e.lineTo(0,0),e.fill()}),this.isInited=!0,i.debug.timeSetup&&console.timeEnd("gl setup"),!0}destroy(){let e=this.gl,t=this.shader,i=this.vbuffer;this.flush(),i&&i.destroy(),t&&t.destroy(),e&&(z(this.textureHandles,t=>{t.handle&&e.deleteTexture(t.handle)}),e.canvas.width=1,e.canvas.height=1)}}!function(e){e.setLength=function(e,t,i){return Array.isArray(e)?(e.length=t,e):e[i?"subarray":"slice"](0,t)},e.splice=function(e,t,i,s,r=[]){if(Array.isArray(e))return Array.isArray(r)||(r=Array.from(r)),{removed:e.splice(t,i,...r),array:e};let o=Object.getPrototypeOf(e).constructor,n=e[s?"subarray":"slice"](t,t+i),a=new o(e.length-i+r.length);return a.set(e.subarray(0,t),0),a.set(r,t),a.set(e.subarray(t+i),t+r.length),{removed:n,array:a}}}(r||(r={}));let{setLength:O,splice:V}=r,{fireEvent:X,objectEach:F,uniqueKey:H}=d(),W=class{constructor(e={}){this.autoId=!e.id,this.columns={},this.id=e.id||H(),this.modified=this,this.rowCount=0,this.versionTag=H();let t=0;F(e.columns||{},(e,i)=>{this.columns[i]=e.slice(),t=Math.max(t,e.length)}),this.applyRowCount(t)}applyRowCount(e){this.rowCount=e,F(this.columns,(t,i)=>{t.length!==e&&(this.columns[i]=O(t,e))})}deleteRows(e,t=1){if(t>0&&e<this.rowCount){let i=0;F(this.columns,(s,r)=>{this.columns[r]=V(s,e,t).array,i=s.length}),this.rowCount=i}X(this,"afterDeleteRows",{rowIndex:e,rowCount:t}),this.versionTag=H()}getColumn(e,t){return this.columns[e]}getColumns(e,t){return(e||Object.keys(this.columns)).reduce((e,t)=>(e[t]=this.columns[t],e),{})}getRow(e,t){return(t||Object.keys(this.columns)).map(t=>this.columns[t]?.[e])}setColumn(e,t=[],i=0,s){this.setColumns({[e]:t},i,s)}setColumns(e,t,i){let s=this.rowCount;F(e,(e,t)=>{this.columns[t]=e.slice(),s=e.length}),this.applyRowCount(s),i?.silent||(X(this,"afterSetColumns"),this.versionTag=H())}setRow(e,t=this.rowCount,i,s){let{columns:r}=this,o=i?this.rowCount+1:t+1;F(e,(e,n)=>{let a=r[n]||s?.addColumns!==!1&&Array(o);a&&(i?a=V(a,t,0,!0,[e]).array:a[t]=e,r[n]=a)}),o>this.rowCount&&this.applyRowCount(o),s?.silent||(X(this,"afterSetRows"),this.versionTag=H())}},{getBoostClipRect:j,isChartSeriesBoosting:q}=A,{getOptions:Y}=d(),{composed:Z,doc:K,noop:Q,win:J}=d(),{addEvent:$,destroyObjectProperties:ee,error:et,extend:ei,fireEvent:es,isArray:er,isNumber:eo,pick:en,pushUnique:ea,wrap:el,defined:eh}=d();function ed(e,t){let i=t.boost;e&&i&&i.target&&i.canvas&&!q(t.chart)&&e.allocateBufferForSingleSeries(t)}function ef(e){return en(e&&e.options&&e.options.boost&&e.options.boost.enabled,!0)}function eu(e,t){let i=e.constructor,r=e.seriesGroup||t.group,o=e.chartWidth,n=e.chartHeight,a=e,l="undefined"!=typeof SVGForeignObjectElement,h=!1;q(e)?a=e:(a=t,h=!!(t.options.events?.click||t.options.point?.events?.click));let d=a.boost=a.boost||{};if(l=!1,s||(s=K.createElement("canvas")),!d.target&&(d.canvas=s,e.renderer.forExport||!l?(a.renderTarget=d.target=e.renderer.image("",0,0,o,n).addClass("highcharts-boost-canvas").add(r),d.clear=function(){d.target.attr({href:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="})},d.copy=function(){d.resize(),d.target.attr({href:d.canvas.toDataURL("image/png")})}):(d.targetFo=e.renderer.createElement("foreignObject").add(r),a.renderTarget=d.target=K.createElement("canvas"),d.targetCtx=d.target.getContext("2d"),d.targetFo.element.appendChild(d.target),d.clear=function(){d.target.width=d.canvas.width,d.target.height=d.canvas.height},d.copy=function(){d.target.width=d.canvas.width,d.target.height=d.canvas.height,d.targetCtx.drawImage(d.canvas,0,0)}),d.resize=function(){o=e.chartWidth,n=e.chartHeight,(d.targetFo||d.target).attr({x:0,y:0,width:o,height:n}).css({pointerEvents:h?void 0:"none",mixedBlendMode:"normal",opacity:1}).addClass(h?"highcharts-tracker":""),a instanceof i&&a.boost?.markerGroup?.translate(e.plotLeft,e.plotTop)},d.clipRect=e.renderer.clipRect(),(d.targetFo||d.target).attr({zIndex:t.options.zIndex}),a instanceof i&&(a.boost.markerGroup=a.renderer.g().add(r).translate(t.xAxis.pos,t.yAxis.pos))),d.canvas.width=o,d.canvas.height=n,d.clipRect){let t=j(e,a),i=t.width===e.clipBox.width&&t.height===e.clipBox.height?r:d.targetFo||d.target;d.clipRect.attr(t),i?.clip(d.clipRect)}return d.resize(),d.clear(),!d.wgl&&(d.wgl=new B(e=>{e.settings.debug.timeBufferCopy&&console.time("buffer copy"),d.copy(),e.settings.debug.timeBufferCopy&&console.timeEnd("buffer copy")}),d.wgl.init(d.canvas)||et("[highcharts boost] - unable to init WebGL renderer"),d.wgl.setOptions(e.options.boost||{}),a instanceof i&&d.wgl.allocateBuffer(e)),d.wgl.setSize(o,n),d.wgl}function eg(e){let t=e.points;if(t){let e,i;for(i=0;i<t.length;i+=1)(e=t[i])&&e.destroyElements&&e.destroyElements()}for(let t of(["graph","area","tracker"].forEach(t=>{let i=e[t];i&&(e[t]=i.destroy())}),e.zones))ee(t,void 0,!0)}function em(e,t,i,s,r,o){let n=(r=r||0)+(s=s||3e3),a=!0;for(;a&&r<n&&r<e.length;)a=t(e[r],r),++r;a&&(r<e.length?o?em(e,t,i,s,r,o):J.requestAnimationFrame?J.requestAnimationFrame(function(){em(e,t,i,s,r)}):setTimeout(em,0,e,t,i,s,r):i&&i())}function ec(e,t){let i=e.options,s=e.dataTable.modified.rowCount,r=e.xAxis&&e.xAxis.options,o=e.yAxis&&e.yAxis.options,n=e.colorAxis&&e.colorAxis.options;return s>(i.boostThreshold||Number.MAX_VALUE)&&eo(o.min)&&eo(o.max)&&(!t||eo(r.min)&&eo(r.max))&&(!n||eo(n.min)&&eo(n.max))}let ep=(e,t)=>!e.forceCrop&&(q(e.chart)||(t?t.length:0)>=(e.options.boostThreshold||Number.MAX_VALUE));function eb(){let e=this,t=e.chart;t.boost&&t.boost.markerGroup===e.markerGroup&&(e.markerGroup=null),t.hoverPoints&&(t.hoverPoints=t.hoverPoints.filter(function(t){return t.series===e})),t.hoverPoint&&t.hoverPoint.series===e&&(t.hoverPoint=null)}function ex(){let e=this.boost;e&&e.canvas&&e.target&&(e.wgl&&e.wgl.clear(),e.clear&&e.clear())}function eA(e){let t=e.boost;t&&t.canvas&&t.target&&t.wgl&&!q(e.chart)&&t.wgl.render(e.chart)}function ey(e,t){let i=e.options,s=e.xAxis,r=e.pointClass;if(t instanceof r)return t;let o=e.is("scatter"),n=(o&&e.getColumn("x",!0).length?e.getColumn("x",!0):void 0)||(e.getColumn("x").length?e.getColumn("x"):void 0)||i.xData||e.getColumn("x",!0)||!1,a=e.getColumn("y",!0)||i.yData||!1,l=new r(e,o&&n&&a?[n[t.i],a[t.i]]:(er(e.options.data)?e.options.data:[])[t.i],n?n[t.i]:void 0);return l.category=en(s.categories?s.categories[l.x]:l.x,l.x),l.key=l.name??l.category,l.dist=t.dist,l.distX=t.distX,l.plotX=t.plotX,l.plotY=t.plotY,l.index=t.i,l.percentage=t.percentage,l.isInside=e.isPointInside(l),l}function ev(e){let{options:t,xAxis:i,yAxis:s}=this;if(!this.isDirty&&!i.isDirty&&!s.isDirty&&!e)return!1;this.yAxis.setTickInterval();let r=t.boostThreshold||0,o=t.cropThreshold,n=this.getColumn("x"),a=i.getExtremes(),l=a.max??Number.MAX_VALUE,h=a.min??-Number.MAX_VALUE,d=this.getColumn("y"),f=s.getExtremes(),u=f.max??Number.MAX_VALUE,g=f.min??-Number.MAX_VALUE;if(!this.boosted&&i.old&&s.old&&h>=(i.old.min??-Number.MAX_VALUE)&&l<=(i.old.max??Number.MAX_VALUE)&&g>=(s.old.min??-Number.MAX_VALUE)&&u<=(s.old.max??Number.MAX_VALUE))return this.dataTable.modified.setColumns({x:n,y:d}),!0;let m=this.dataTable.rowCount;if(!r||m<r||o&&!this.forceCrop&&!this.getExtremesFromAll&&!t.getExtremesFromAll&&m<o)return this.dataTable.modified.setColumns({x:n,y:d}),!0;let c=[],p=[],b=[],x=!(eo(a.max)||eo(a.min)),A=!(eo(f.max)||eo(f.min)),y=!1,v,P=n[0],T=n[0],C,k=d?.[0],M=d?.[0];for(let e=0,t=n.length;e<t;++e)v=n[e],C=d?.[e],v>=h&&v<=l&&C>=g&&C<=u?(c.push({x:v,y:C}),p.push(v),b.push(C),x&&(P=Math.max(P,v),T=Math.min(T,v)),A&&(k=Math.max(k,C),M=Math.min(M,C))):y=!0;return x&&(i.dataMax=Math.max(P,i.dataMax||0),i.dataMin=Math.min(T,i.dataMin||0)),A&&(s.dataMax=Math.max(k,s.dataMax||0),s.dataMin=Math.min(M,s.dataMin||0)),this.cropped=y,this.cropStart=0,y&&this.dataTable.modified===this.dataTable&&(this.dataTable.modified=new W),this.dataTable.modified.setColumns({x:p,y:b}),ep(this,p)||(this.processedData=c),!0}function eP(){let e=this.options||{},t=this.chart,s=t.boost,r=this.boost,o=this.xAxis,n=this.yAxis,a=e.xData||this.getColumn("x",!0),l=e.yData||this.getColumn("y",!0),h=this.getColumn("low",!0),d=this.getColumn("high",!0),f=this.processedData||e.data,u=o.getExtremes(),g=u.min-(o.minPointOffset||0),m=u.max+(o.minPointOffset||0),c=n.getExtremes(),p=c.min-(n.minPointOffset||0),b=c.max+(n.minPointOffset||0),x={},A=!!this.sampling,y=e.enableMouseTracking,v=e.threshold,P=this.pointArrayMap&&"low,high"===this.pointArrayMap.join(","),T=!!e.stacking,C=this.cropStart||0,k=this.requireSorting,M=!a,E="x"===e.findNearestPointBy,S=(this.getColumn("x").length?this.getColumn("x"):void 0)||this.options.xData||this.getColumn("x",!0),w=en(e.lineWidth,1),U=e.nullInteraction&&p,R=!1,L,_=n.getThreshold(v),z,D,N,I;if(o.isPanning||n.isPanning||(R=eu(t,this),t.boosted=!0,!this.visible))return;(this.points||this.graph)&&eg(this),q(t)?(this.markerGroup&&this.markerGroup!==s?.markerGroup&&this.markerGroup.destroy(),this.markerGroup=s?.markerGroup,r&&r.target&&(this.renderTarget=r.target=r.target.destroy())):(this.markerGroup===s?.markerGroup&&(this.markerGroup=void 0),this.markerGroup=this.plotGroup("markerGroup","markers","visible",1,t.seriesGroup).addClass("highcharts-tracker"));let G=this.points=[],B=(e,s,r,a)=>{let l=!!S&&S[C+r],h=e=>{t.inverted&&(e=o.len-e,s=n.len-s),G.push({destroy:Q,x:l,clientX:e,plotX:e,plotY:s,i:C+r,percentage:a})};e=Math.ceil(e),i=E?e:e+","+s,y&&(x[i]?l===S[S.length-1]&&(G.length--,h(e)):(x[i]=!0,h(e)))};this.buildKDTree=Q,es(this,"renderCanvas"),this.is("line")&&w>1&&r?.target&&s&&!s.lineWidthFilter&&(s.lineWidthFilter=t.renderer.definition({tagName:"filter",children:[{tagName:"feMorphology",attributes:{operator:"dilate",radius:.25*w}}],attributes:{id:"linewidth"}}),r.target.attr({filter:"url(#linewidth)"})),R&&(ed(R,this),R.pushSeries(this),eA(this));let O=R.settings;t.renderer.forExport||(O.debug.timeKDTree&&console.time("kd tree building"),em(T?this.data.slice(C):a||f,function(e,i){let s=void 0===t.index,r,a,f,u,c,x=!1,y=!0;return!eh(e)||(!s&&(M?(r=e[0],a=e[1]):(r=e,a=l[i]??U??null),P?(M&&(a=e.slice(1,3)),x=h[i],a=d[i]):T&&(r=e.x,x=(a=e.stackY)-e.y,c=e.percentage),k||(y=(a||0)>=p&&a<=b),null!==a&&r>=g&&r<=m&&y&&(f=o.toPixels(r,!0),A?((void 0===N||f===L)&&(P||(x=a),(void 0===I||a>D)&&(D=a,I=i),(void 0===N||x<z)&&(z=x,N=i)),E&&f===L||(void 0!==N&&(u=n.toPixels(D,!0),_=n.toPixels(z,!0),B(f,u,I,c),_!==u&&B(f,_,N,c)),N=I=void 0,L=f)):B(f,u=Math.ceil(n.toPixels(a,!0)),i,c))),!s)},()=>{es(this,"renderedCanvas"),delete this.buildKDTree,this.options&&this.buildKDTree(),O.debug.timeKDTree&&console.timeEnd("kd tree building")}))}function eT(e){let t=!0;if(this.chart.options&&this.chart.options.boost&&(t=void 0===this.chart.options.boost.enabled||this.chart.options.boost.enabled),!t||!this.boosted)return e.call(this);this.chart.boosted=!0;let i=eu(this.chart,this);i&&(ed(i,this),i.pushSeries(this)),eA(this)}function eC(e){if(this.boosted){if(ec(this))return{};if(this.xAxis.isPanning||this.yAxis.isPanning)return this}return e.apply(this,[].slice.call(arguments,1))}function ek(e){let t=this.options.data;if(ef(this.chart)&&u[this.type]){let i=this.is("scatter")&&!this.is("bubble")&&!this.is("treemap")&&!this.is("heatmap");if(!ep(this,t)||i||this.is("treemap")||this.options.stacking||!ec(this,!0)){if(this.boosted&&(this.xAxis?.isPanning||this.yAxis?.isPanning))return;i&&"treegrid"!==this.yAxis.type?ev.call(this,arguments[1]):e.apply(this,[].slice.call(arguments,1)),t=this.getColumn("x",!0)}if(this.boosted=ep(this,t),this.boosted){let e;!this.options.data?.length||eo(e=this.getFirstValidPoint(this.options.data))||er(e)||this.is("treemap")||et(12,!1,this.chart),function(e){e.boost=e.boost||{getPoint:t=>ey(e,t)};let t=e.boost.altered=[];if(["allowDG","directTouch","stickyTracking"].forEach(i=>{t.push({prop:i,val:e[i],own:Object.hasOwnProperty.call(e,i)})}),e.allowDG=!1,e.directTouch=!1,e.stickyTracking=!0,e.finishedAnimating=!0,e.labelBySeries&&(e.labelBySeries=e.labelBySeries.destroy()),e.is("scatter")&&!e.is("treemap")&&e.data.length){for(let t of e.data)t?.destroy?.();e.data.length=0,e.points.length=0,delete e.processedData}}(this)}else!function(e){let t=e.boost,i=e.chart,s=i.boost;if(s?.markerGroup)for(let e of(s.markerGroup.destroy(),s.markerGroup=void 0,i.series))e.markerGroup=void 0,e.markerGroup=e.plotGroup("markerGroup","markers","visible",1,i.seriesGroup).addClass("highcharts-tracker");t&&((t.altered||[]).forEach(t=>{t.own?e[t.prop]=t.val:delete e[t.prop]}),t.clear&&t.clear()),(i.seriesGroup||e.group)?.clip()}(this)}else e.apply(this,[].slice.call(arguments,1))}function eM(e){let t=e.apply(this,[].slice.call(arguments,1));return this.boost&&t?this.boost.getPoint(t):t}let eE={compose:function(e,t,i,s){if(ea(Z,"Boost.Series")){let r=Y().plotOptions,o=e.prototype;if($(e,"destroy",eb),$(e,"hide",ex),s&&(o.renderCanvas=eP),el(o,"getExtremes",eC),el(o,"processData",ek),el(o,"searchPoint",eM),["translate","generatePoints","drawTracker","drawPoints","render"].forEach(e=>(function(e,t,i){function s(e){let t=this.options.stacking&&("translate"===i||"generatePoints"===i);this.boosted&&!t&&ef(this.chart)&&"heatmap"!==this.type&&"treemap"!==this.type&&u[this.type]&&0!==this.options.boostThreshold?"render"===i&&this.renderCanvas&&this.renderCanvas():e.call(this)}if(el(e,i,s),"translate"===i)for(let e of["column","arearange","columnrange","heatmap","treemap"])t[e]&&el(t[e].prototype,i,s)})(o,t,e)),el(i.prototype,"firePointEvent",function(e,t,i){if("click"===t&&this.series.boosted){let e=i.point;if((e.dist||e.distX)>=(e.series.options.marker?.radius??10))return}return e.apply(this,[].slice.call(arguments,1))}),f.forEach(e=>{let i=r[e];i&&(i.boostThreshold=5e3,i.boostData=[],t[e].prototype.fillOpacity=!0)}),s){let{area:e,areaspline:i,bubble:s,column:r,heatmap:o,scatter:n,treemap:a}=t;if(e&&ei(e.prototype,{fill:!0,fillOpacity:!0,sampling:!0}),i&&ei(i.prototype,{fill:!0,fillOpacity:!0,sampling:!0}),s){let e=s.prototype;delete e.buildKDTree,el(e,"markerAttribs",function(e){return!this.boosted&&e.apply(this,[].slice.call(arguments,1))})}r&&ei(r.prototype,{fill:!0,sampling:!0}),n&&(n.prototype.fill=!0),[o,a].forEach(e=>{e&&el(e.prototype,"drawPoints",eT)})}}return e},destroyGraphics:eg,eachAsync:em,getPoint:ey},eS={defaultHTMLColorMap:{aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",feldspar:"#d19275",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",grey:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslateblue:"#8470ff",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",violetred:"#d02090",wheat:"#f5deb3",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}},{doc:ew,win:eU}=d(),{addEvent:eR,error:eL}=d(),e_=["webgl","experimental-webgl","moz-webgl","webkit-3d"];function ez(){let e,t=!1;if(void 0!==eU.WebGLRenderingContext){e=ew.createElement("canvas");for(let t=0;t<e_.length;++t)try{if(null!=e.getContext(e_[t]))return!0}catch(e){}}return!1}let eD={compose:function(e,t,i,s,r,o){let n=ez();n||(void 0!==d().initCanvasBoost?d().initCanvasBoost():eL(26)),o&&!o.names.lightgoldenrodyellow&&(o.names={...o.names,...eS.defaultHTMLColorMap}),A.compose(e,n),eE.compose(i,s,r,n),eR(t,"setExtremes",function(e){for(let t of[this.chart,...this.series].map(e=>e.renderTarget).filter(Boolean)){let{horiz:i,pos:s}=this,r=i?"scaleX":"scaleY",o=i?"translateX":"translateY",n=t?.[r]??1,a=1,l=0,h=1,d="none";this.isPanning&&(a=(e.scale??1)*n,l=(t?.[o]||0)-a*(e.move||0)+n*s-a*s,h=.7,d="blur(3px)"),t?.attr({[r]:a,[o]:l}).css({transition:"250ms filter, 250ms opacity",filter:d,opacity:h})}})},hasWebGLSupport:ez},eN=d();eN.hasWebGLSupport=eD.hasWebGLSupport,eD.compose(eN.Chart,eN.Axis,eN.Series,eN.seriesTypes,eN.Point,eN.Color);let eI=d();return l.default})());
1
+ !/**
2
+ * Highcharts JS v12.3.0 (2025-06-21)
3
+ * @module highcharts/modules/boost
4
+ * @requires highcharts
5
+ *
6
+ * Boost module
7
+ *
8
+ * (c) 2010-2025 Highsoft AS
9
+ * Author: Torstein Honsi
10
+ *
11
+ * License: www.highcharts.com/license
12
+ *
13
+ * */function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(e._Highcharts,e._Highcharts.Color):"function"==typeof define&&define.amd?define("highcharts/modules/boost",["highcharts/highcharts"],function(e){return t(e,e.Color)}):"object"==typeof exports?exports["highcharts/modules/boost"]=t(e._Highcharts,e._Highcharts.Color):e.Highcharts=t(e.Highcharts,e.Highcharts.Color)}("undefined"==typeof window?this:window,(e,t)=>(()=>{"use strict";let i,s;var r,o={620:e=>{e.exports=t},944:t=>{t.exports=e}},n={};function a(e){var t=n[e];if(void 0!==t)return t.exports;var i=n[e]={exports:{}};return o[e](i,i.exports,a),i.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var i in t)a.o(t,i)&&!a.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var l={};a.d(l,{default:()=>eI});var h=a(944),d=a.n(h);let f=["area","areaspline","arearange","column","columnrange","bar","line","scatter","heatmap","bubble","treemap"],u={};f.forEach(e=>{u[e]=!0});let{composed:g}=d(),{addEvent:m,pick:c,pushUnique:p}=d();function b(e){let t=e.series,i=e.boost=e.boost||{},s=e.options.boost||{},r=c(s.seriesThreshold,50);if(t.length>=r)return!0;if(1===t.length)return!1;let o=s.allowForce;if(void 0===o){for(let t of(o=!0,e.xAxis))if(c(t.min,-1/0)>c(t.dataMin,-1/0)||c(t.max,1/0)<c(t.dataMax,1/0)){o=!1;break}}if(void 0!==i.forceChartBoost){if(o)return i.forceChartBoost;i.forceChartBoost=void 0}let n=0,a=0,l;for(let e of t)0!==(l=e.options).boostThreshold&&!1!==e.visible&&"heatmap"!==e.type&&(u[e.type]&&++n,function(...e){let t=-Number.MAX_VALUE;return e.forEach(e=>{if(null!=e&&void 0!==e.length&&e.length>0)return t=e.length,!0}),t}(e.getColumn("x",!0),l.data,e.points)>=(l.boostThreshold||Number.MAX_VALUE)&&++a);return i.forceChartBoost=o&&(n===t.length&&a===n||a>5),i.forceChartBoost}function x(e){function t(){e.boost&&e.boost.wgl&&b(e)&&e.boost.wgl.render(e)}m(e,"predraw",function(){e.boost=e.boost||{},e.boost.forceChartBoost=void 0,e.boosted=!1,e.axes.some(e=>e.isPanning)||e.boost.clear?.(),e.boost.canvas&&e.boost.wgl&&b(e)&&e.boost.wgl.allocateBuffer(e),e.boost.markerGroup&&e.xAxis&&e.xAxis.length>0&&e.yAxis&&e.yAxis.length>0&&e.boost.markerGroup.translate(e.xAxis[0].pos,e.yAxis[0].pos)}),m(e,"load",t,{order:-1}),m(e,"redraw",t);let i=-1,s=-1;m(e.pointer,"afterGetHoverData",t=>{let r=t.hoverPoint?.series;if(e.boost=e.boost||{},e.boost.markerGroup&&r){let t=e.inverted?r.yAxis:r.xAxis,o=e.inverted?r.xAxis:r.yAxis;(t&&t.pos!==i||o&&o.pos!==s)&&(e.series.forEach(e=>{e.halo?.hide()}),e.boost.markerGroup.translate(t.pos,o.pos),i=t.pos,s=o.pos)}})}let A={compose:function(e,t){return t&&p(g,"Boost.Chart")&&e.prototype.callbacks.push(x),e},getBoostClipRect:function(e,t){let i=e.navigator,s={x:e.plotLeft,y:e.plotTop,width:e.plotWidth,height:e.plotHeight};if(i&&e.inverted?(s.width+=i.top+i.height,i.opposite||(s.x=i.left)):i&&!e.inverted&&(s.height=i.top+i.height-e.plotTop),t.is){let{xAxis:i,yAxis:r}=t;if(s=e.getClipBox(t),e.inverted){let e=s.width;s.width=s.height,s.height=e,s.x=r.pos,s.y=i.pos}else s.x=i.pos,s.y=r.pos}if(t===e){let t=e.inverted?e.xAxis:e.yAxis;t.length<=1&&(s.y=Math.min(t[0].pos,s.y),s.height=t[0].pos-e.plotTop+t[0].len)}return s},isChartSeriesBoosting:b};var y=a(620),v=a.n(y);let P={area:"LINES",arearange:"LINES",areaspline:"LINES",column:"LINES",columnrange:"LINES",bar:"LINES",line:"LINE_STRIP",scatter:"POINTS",heatmap:"TRIANGLES",treemap:"TRIANGLES",bubble:"POINTS"},{clamp:T,error:C,pick:k}=d(),E=class{constructor(e){if(this.errors=[],this.uLocations={},this.gl=e,e&&!this.createShader())return}bind(){this.gl&&this.shaderProgram&&this.gl.useProgram(this.shaderProgram)}createShader(){let e=this.stringToProgram("#version 100\n#define LN10 2.302585092994046\nprecision highp float;\nattribute vec4 aVertexPosition;\nattribute vec4 aColor;\nvarying highp vec2 position;\nvarying highp vec4 vColor;\nuniform mat4 uPMatrix;\nuniform float pSize;\nuniform float translatedThreshold;\nuniform bool hasThreshold;\nuniform bool skipTranslation;\nuniform float xAxisTrans;\nuniform float xAxisMin;\nuniform float xAxisMinPad;\nuniform float xAxisPointRange;\nuniform float xAxisLen;\nuniform bool xAxisPostTranslate;\nuniform float xAxisOrdinalSlope;\nuniform float xAxisOrdinalOffset;\nuniform float xAxisPos;\nuniform bool xAxisCVSCoord;\nuniform bool xAxisIsLog;\nuniform bool xAxisReversed;\nuniform float yAxisTrans;\nuniform float yAxisMin;\nuniform float yAxisMinPad;\nuniform float yAxisPointRange;\nuniform float yAxisLen;\nuniform bool yAxisPostTranslate;\nuniform float yAxisOrdinalSlope;\nuniform float yAxisOrdinalOffset;\nuniform float yAxisPos;\nuniform bool yAxisCVSCoord;\nuniform bool yAxisIsLog;\nuniform bool yAxisReversed;\nuniform bool isBubble;\nuniform bool bubbleSizeByArea;\nuniform float bubbleZMin;\nuniform float bubbleZMax;\nuniform float bubbleZThreshold;\nuniform float bubbleMinSize;\nuniform float bubbleMaxSize;\nuniform bool bubbleSizeAbs;\nuniform bool isInverted;\nfloat bubbleRadius(){\nfloat value = aVertexPosition.w;\nfloat zMax = bubbleZMax;\nfloat zMin = bubbleZMin;\nfloat radius = 0.0;\nfloat pos = 0.0;\nfloat zRange = zMax - zMin;\nif (bubbleSizeAbs){\nvalue = value - bubbleZThreshold;\nzMax = max(zMax - bubbleZThreshold, zMin - bubbleZThreshold);\nzMin = 0.0;\n}\nif (value < zMin){\nradius = bubbleZMin / 2.0 - 1.0;\n} else {\npos = zRange > 0.0 ? (value - zMin) / zRange : 0.5;\nif (bubbleSizeByArea && pos > 0.0){\npos = sqrt(pos);\n}\nradius = ceil(bubbleMinSize + pos * (bubbleMaxSize - bubbleMinSize)) / 2.0;\n}\nreturn radius * 2.0;\n}\nfloat translate(float val,\nfloat pointPlacement,\nfloat localA,\nfloat localMin,\nfloat minPixelPadding,\nfloat pointRange,\nfloat len,\nbool cvsCoord,\nbool isLog,\nbool reversed\n){\nfloat sign = 1.0;\nfloat cvsOffset = 0.0;\nif (cvsCoord) {\nsign *= -1.0;\ncvsOffset = len;\n}\nif (isLog) {\nval = log(val) / LN10;\n}\nif (reversed) {\nsign *= -1.0;\ncvsOffset -= sign * len;\n}\nreturn sign * (val - localMin) * localA + cvsOffset + \n(sign * minPixelPadding);\n}\nfloat xToPixels(float value) {\nif (skipTranslation){\nreturn value;// + xAxisPos;\n}\nreturn translate(value, 0.0, xAxisTrans, xAxisMin, xAxisMinPad, xAxisPointRange, xAxisLen, xAxisCVSCoord, xAxisIsLog, xAxisReversed);// + xAxisPos;\n}\nfloat yToPixels(float value, float checkTreshold) {\nfloat v;\nif (skipTranslation){\nv = value;// + yAxisPos;\n} else {\nv = translate(value, 0.0, yAxisTrans, yAxisMin, yAxisMinPad, yAxisPointRange, yAxisLen, yAxisCVSCoord, yAxisIsLog, yAxisReversed);// + yAxisPos;\nif (v > yAxisLen) {\nv = yAxisLen;\n}\n}\nif (checkTreshold > 0.0 && hasThreshold) {\nv = min(v, translatedThreshold);\n}\nreturn v;\n}\nvoid main(void) {\nif (isBubble){\ngl_PointSize = bubbleRadius();\n} else {\ngl_PointSize = pSize;\n}\nvColor = aColor;\nif (skipTranslation && isInverted) {\ngl_Position = uPMatrix * vec4(aVertexPosition.y + yAxisPos, aVertexPosition.x + xAxisPos, 0.0, 1.0);\n} else if (isInverted) {\ngl_Position = uPMatrix * vec4(yToPixels(aVertexPosition.y, aVertexPosition.z) + yAxisPos, xToPixels(aVertexPosition.x) + xAxisPos, 0.0, 1.0);\n} else {\ngl_Position = uPMatrix * vec4(xToPixels(aVertexPosition.x) + xAxisPos, yToPixels(aVertexPosition.y, aVertexPosition.z) + yAxisPos, 0.0, 1.0);\n}\n}","vertex"),t=this.stringToProgram("precision highp float;\nuniform vec4 fillColor;\nvarying highp vec2 position;\nvarying highp vec4 vColor;\nuniform sampler2D uSampler;\nuniform bool isCircle;\nuniform bool hasColor;\nvoid main(void) {\nvec4 col = fillColor;\nvec4 tcol = texture2D(uSampler, gl_PointCoord.st);\nif (hasColor) {\ncol = vColor;\n}\nif (isCircle) {\ncol *= tcol;\nif (tcol.r < 0.0) {\ndiscard;\n} else {\ngl_FragColor = col;\n}\n} else {\ngl_FragColor = col;\n}\n}","fragment"),i=e=>this.gl.getUniformLocation(this.shaderProgram,e);return e&&t?(this.shaderProgram=this.gl.createProgram(),this.gl.attachShader(this.shaderProgram,e),this.gl.attachShader(this.shaderProgram,t),this.gl.linkProgram(this.shaderProgram),this.gl.getProgramParameter(this.shaderProgram,this.gl.LINK_STATUS))?(this.gl.useProgram(this.shaderProgram),this.gl.bindAttribLocation(this.shaderProgram,0,"aVertexPosition"),this.pUniform=i("uPMatrix"),this.psUniform=i("pSize"),this.fcUniform=i("fillColor"),this.isBubbleUniform=i("isBubble"),this.bubbleSizeAbsUniform=i("bubbleSizeAbs"),this.bubbleSizeAreaUniform=i("bubbleSizeByArea"),this.uSamplerUniform=i("uSampler"),this.skipTranslationUniform=i("skipTranslation"),this.isCircleUniform=i("isCircle"),this.isInverted=i("isInverted"),!0):(this.errors.push(this.gl.getProgramInfoLog(this.shaderProgram)),this.handleErrors(),this.shaderProgram=!1,!1):(this.shaderProgram=!1,this.handleErrors(),!1)}handleErrors(){this.errors.length&&C("[highcharts boost] shader error - "+this.errors.join("\n"))}stringToProgram(e,t){let i=this.gl.createShader("vertex"===t?this.gl.VERTEX_SHADER:this.gl.FRAGMENT_SHADER);return(this.gl.shaderSource(i,e),this.gl.compileShader(i),this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))?i:(this.errors.push("when compiling "+t+" shader:\n"+this.gl.getShaderInfoLog(i)),!1)}destroy(){this.gl&&this.shaderProgram&&(this.gl.deleteProgram(this.shaderProgram),this.shaderProgram=!1)}fillColorUniform(){return this.fcUniform}getProgram(){return this.shaderProgram}pointSizeUniform(){return this.psUniform}perspectiveUniform(){return this.pUniform}reset(){this.gl&&this.shaderProgram&&(this.gl.uniform1i(this.isBubbleUniform,0),this.gl.uniform1i(this.isCircleUniform,0))}setBubbleUniforms(e,t,i,s=1){let r=e.options,o=Number.MAX_VALUE,n=-Number.MAX_VALUE;if(this.gl&&this.shaderProgram&&e.is("bubble")){let a=e.getPxExtremes();o=k(r.zMin,T(t,!1===r.displayNegative?r.zThreshold:-Number.MAX_VALUE,o)),n=k(r.zMax,Math.max(n,i)),this.gl.uniform1i(this.isBubbleUniform,1),this.gl.uniform1i(this.isCircleUniform,1),this.gl.uniform1i(this.bubbleSizeAreaUniform,"width"!==e.options.sizeBy),this.gl.uniform1i(this.bubbleSizeAbsUniform,e.options.sizeByAbsoluteValue),this.setUniform("bubbleMinSize",a.minPxSize*s),this.setUniform("bubbleMaxSize",a.maxPxSize*s),this.setUniform("bubbleZMin",o),this.setUniform("bubbleZMax",n),this.setUniform("bubbleZThreshold",e.options.zThreshold)}}setColor(e){this.gl&&this.shaderProgram&&this.gl.uniform4f(this.fcUniform,e[0]/255,e[1]/255,e[2]/255,e[3])}setDrawAsCircle(e){this.gl&&this.shaderProgram&&this.gl.uniform1i(this.isCircleUniform,+!!e)}setInverted(e){this.gl&&this.shaderProgram&&this.gl.uniform1i(this.isInverted,e)}setPMatrix(e){this.gl&&this.shaderProgram&&this.gl.uniformMatrix4fv(this.pUniform,!1,e)}setPointSize(e){this.gl&&this.shaderProgram&&this.gl.uniform1f(this.psUniform,e)}setSkipTranslation(e){this.gl&&this.shaderProgram&&this.gl.uniform1i(this.skipTranslationUniform,+(!0===e))}setTexture(e){this.gl&&this.shaderProgram&&this.gl.uniform1i(this.uSamplerUniform,e)}setUniform(e,t){if(this.gl&&this.shaderProgram){let i=this.uLocations[e]=this.uLocations[e]||this.gl.getUniformLocation(this.shaderProgram,e);this.gl.uniform1f(i,t)}}},M=class{constructor(e,t,i){this.buffer=!1,this.iterator=0,this.preAllocated=!1,this.vertAttribute=!1,this.components=i||2,this.dataComponents=i,this.gl=e,this.shader=t}allocate(e){this.iterator=-1,this.preAllocated=new Float32Array(4*e)}bind(){if(!this.buffer)return!1;this.gl.vertexAttribPointer(this.vertAttribute,this.components,this.gl.FLOAT,!1,0,0)}build(e,t,i){let s;return(this.data=e||[],this.data&&0!==this.data.length||this.preAllocated)?(this.components=i||this.components,this.buffer&&this.gl.deleteBuffer(this.buffer),this.preAllocated||(s=new Float32Array(this.data)),this.buffer=this.gl.createBuffer(),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.buffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,this.preAllocated||s,this.gl.STATIC_DRAW),this.vertAttribute=this.gl.getAttribLocation(this.shader.getProgram(),t),this.gl.enableVertexAttribArray(this.vertAttribute),s=!1,!0):(this.destroy(),!1)}destroy(){this.buffer&&(this.gl.deleteBuffer(this.buffer),this.buffer=!1,this.vertAttribute=!1),this.iterator=0,this.components=this.dataComponents||2,this.data=[]}push(e,t,i,s){this.preAllocated&&(this.preAllocated[++this.iterator]=e,this.preAllocated[++this.iterator]=t,this.preAllocated[++this.iterator]=i,this.preAllocated[++this.iterator]=s)}render(e,t,i){let s=this.preAllocated?this.preAllocated.length:this.data.length;return!!this.buffer&&!!s&&((!e||e>s||e<0)&&(e=0),(!t||t>s)&&(t=s),!(e>=t)&&(i=i||"POINTS",this.gl.drawArrays(this.gl[i],e/this.components,(t-e)/this.components),!0))}},{parse:S}=v(),{doc:w,win:U}=d(),{isNumber:R,isObject:L,merge:_,objectEach:z,pick:D}=d(),N={column:!0,columnrange:!0,bar:!0,area:!0,areaspline:!0,arearange:!0},I={scatter:!0,bubble:!0},G=["webgl","experimental-webgl","moz-webgl","webkit-3d"];class B{static orthoMatrix(e,t){return[2/e,0,0,0,0,-(2/t),0,0,0,0,-2,0,-1,1,-1,1]}static seriesPointCount(e){let t,i,s;return e.boosted?(t=!!e.options.stacking,i=(e.getColumn("x").length?e.getColumn("x"):void 0)||e.options.xData||e.getColumn("x",!0),s=(t?e.data:i||e.options.data).length,"treemap"===e.type?s*=12:"heatmap"===e.type?s*=6:N[e.type]&&(s*=2),s):0}constructor(e){this.data=[],this.height=0,this.isInited=!1,this.markerData=[],this.series=[],this.textureHandles={},this.width=0,this.postRenderCallback=e,this.settings={pointSize:1,lineWidth:1,fillColor:"#AA00AA",useAlpha:!0,usePreallocated:!1,useGPUTranslations:!1,debug:{timeRendering:!1,timeSeriesProcessing:!1,timeSetup:!1,timeBufferCopy:!1,timeKDTree:!1,showSkipSummary:!1}}}getPixelRatio(){return this.settings.pixelRatio||U.devicePixelRatio||1}setOptions(e){"pixelRatio"in e||(e.pixelRatio=1),_(!0,this.settings,e)}allocateBuffer(e){let t=this.vbuffer,i=0;this.settings.usePreallocated&&(e.series.forEach(e=>{e.boosted&&(i+=B.seriesPointCount(e))}),t&&t.allocate(i))}allocateBufferForSingleSeries(e){let t=this.vbuffer,i=0;this.settings.usePreallocated&&(e.boosted&&(i=B.seriesPointCount(e)),t&&t.allocate(i))}clear(){let e=this.gl;e&&e.clear(e.COLOR_BUFFER_BIT|e.DEPTH_BUFFER_BIT)}pushSeriesData(e,t){let i=this.data,s=this.settings,r=this.vbuffer,o=e.pointArrayMap&&"low,high"===e.pointArrayMap.join(","),{chart:n,options:a,sorted:l,xAxis:h,yAxis:d}=e,f=!!a.stacking,u=a.data,g=e.xAxis.getExtremes(),m=g.min-(e.xAxis.minPointOffset||0),c=g.max+(e.xAxis.minPointOffset||0),p=e.yAxis.getExtremes(),b=p.min-(e.yAxis.minPointOffset||0),x=p.max+(e.yAxis.minPointOffset||0),A=(e.getColumn("x").length?e.getColumn("x"):void 0)||a.xData||e.getColumn("x",!0),y=(e.getColumn("y").length?e.getColumn("y"):void 0)||a.yData||e.getColumn("y",!0),v=(e.getColumn("z").length?e.getColumn("z"):void 0)||a.zData||e.getColumn("z",!0),P=!A||0===A.length,T=a.connectNulls,C=e.points||!1,k=f?e.data:A||u,E={x:Number.MAX_VALUE,y:0},M={x:-Number.MAX_VALUE,y:0},w=void 0===n.index,U=N[e.type],R=a.zoneAxis||"y",_=a.zones||!1,z=a.threshold,D=this.getPixelRatio(),I=e.chart.plotWidth,G=!1,B=!1,O,V,X=0,F=!1,H,W,j,q,Y=-1,Z=!1,K=!1,Q,J=!1,$=!1,ee=!1,et=!1,ei=!0,es=!0,er,eo=!1,en=!1,ea=0;if(a.boostData&&a.boostData.length>0)return;a.gapSize&&(en="value"!==a.gapUnit?a.gapSize*e.closestPointRange:a.gapSize),_&&(er=[],_.forEach((e,t)=>{if(e.color){let i=S(e.color).rgba;i[0]/=255,i[1]/=255,i[2]/=255,er[t]=i,eo||void 0!==e.value||(eo=i)}}),eo||(eo=S(e.pointAttribs&&e.pointAttribs().fill||e.color).rgba,eo[0]/=255,eo[1]/=255,eo[2]/=255)),n.inverted&&(I=e.chart.plotHeight),e.closestPointRangePx=Number.MAX_VALUE;let el=e=>{e&&(t.colorData.push(e[0]),t.colorData.push(e[1]),t.colorData.push(e[2]),t.colorData.push(e[3]))},eh=(e,o,n,a=1,l)=>{el(l),1!==D&&(!s.useGPUTranslations||t.skipTranslation)&&(e*=D,o*=D,a*=D),s.usePreallocated&&r?(r.push(e,o,+!!n,a),ea+=4):(i.push(e),i.push(o),i.push(n?D:0),i.push(a))},ed=()=>{t.segments.length&&(t.segments[t.segments.length-1].to=i.length||ea)},ef=()=>{t.segments.length&&t.segments[t.segments.length-1].from===(i.length||ea)||(ed(),t.segments.push({from:i.length||ea}))},eu=(e,t,i,s,r)=>{el(r),eh(e+i,t),el(r),eh(e,t),el(r),eh(e,t+s),el(r),eh(e,t+s),el(r),eh(e+i,t+s),el(r),eh(e+i,t)};if(ef(),C&&C.length>0){t.skipTranslation=!0,t.drawMode="TRIANGLES",C[0].node&&C[0].node.levelDynamic&&C.sort((e,t)=>{if(e.node){if(e.node.levelDynamic>t.node.levelDynamic)return 1;if(e.node.levelDynamic<t.node.levelDynamic)return -1}return 0}),C.forEach(t=>{let i,s,r=t.plotY;if(void 0!==r&&!isNaN(r)&&null!==t.y&&t.shapeArgs){let{x:r=0,y:o=0,width:a=0,height:l=0}=t.shapeArgs;i=(s=n.styledMode?t.series.colorAttribs(t):s=t.series.pointAttribs(t))["stroke-width"]||0,ee=S(s.fill).rgba,ee[0]/=255,ee[1]/=255,ee[2]/=255,e.is("treemap")&&(i=i||1,V=S(s.stroke).rgba,V[0]/=255,V[1]/=255,V[2]/=255,eu(r,o,a,l,V),i/=2),e.is("heatmap")&&n.inverted&&(r=h.len-r,o=d.len-o,a=-a,l=-l),eu(r+i,o+i,a-2*i,l-2*i,ee)}}),ed();return}for(;Y<k.length-1;){if(void 0===(j=k[++Y]))continue;if(w)break;let i=u&&u[Y];if(!P&&L(i,!0)&&i.color&&(ee=S(i.color).rgba,ee[0]/=255,ee[1]/=255,ee[2]/=255),P?(H=j[0],W=j[1],k[Y+1]&&(K=k[Y+1][0]),k[Y-1]&&(Z=k[Y-1][0]),j.length>=3&&(q=j[2],j[2]>t.zMax&&(t.zMax=j[2]),j[2]<t.zMin&&(t.zMin=j[2]))):(H=j,W=y?.[Y],k[Y+1]&&(K=k[Y+1]),k[Y-1]&&(Z=k[Y-1]),v&&v.length&&(q=v[Y],v[Y]>t.zMax&&(t.zMax=v[Y]),v[Y]<t.zMin&&(t.zMin=v[Y]))),!T&&(null===H||null===W)){ef();continue}if(K&&K>=m&&K<=c&&(J=!0),Z&&Z>=m&&Z<=c&&($=!0),o?(P&&(W=j.slice(1,3)),Q=e.getColumn("low",!0)?.[Y],W=e.getColumn("high",!0)?.[Y]||0):f&&(H=j.x,Q=(W=j.stackY)-j.y),null!=b&&null!=x&&(ei=W>=b&&W<=x),!l&&!ei||(H>c&&M.x<c&&(M.x=H,M.y=W),H<m&&E.x>m&&(E.x=H,E.y=W),null===W&&T))continue;if(null===W||!ei&&k.length>1&&!J&&!$){ef();continue}if((l&&(K>=m||H>=m)&&(Z<=c||H<=c)||!l&&H>=m&&H<=c)&&(et=!0),et||J||$){if(en&&H-Z>en&&ef(),_){let e;_.some((t,i)=>{let s=_[i-1];return"x"===R?void 0!==t.value&&H<=t.value&&(er[i]&&(!s||H>=s.value)&&(e=er[i]),!0):void 0!==t.value&&W<=t.value&&(er[i]&&(!s||W>=s.value)&&(e=er[i]),!0)}),ee=e||eo||ee}if(s.useGPUTranslations||(t.skipTranslation=!0,H=h.toPixels(H,!0),W=d.toPixels(W,!0),!(H>I)||"POINTS"!==t.drawMode)){if(t.hasMarkers&&et&&!1!==G&&(e.closestPointRangePx=Math.min(e.closestPointRangePx,Math.abs(H-G))),!s.useGPUTranslations&&!s.usePreallocated&&G&&1>Math.abs(H-G)&&B&&1>Math.abs(W-B)){s.debug.showSkipSummary&&++X;continue}U&&(O=Q||0,(!1===Q||void 0===Q)&&(O=W<0?W:0),(o||f)&&!d.logarithmic||(O=Math.max(null===z?b:z,b)),s.useGPUTranslations||(O=d.toPixels(O,!0)),eh(H,O,0,0,ee)),a.step&&!es&&eh(H,B,0,2,ee),eh(H,W,0,"bubble"===e.type?q||1:2,ee),G=H,B=W,F=!0,es=!1}}}s.debug.showSkipSummary&&console.log("skipped points:",X);let eg=(e,i)=>{if(s.useGPUTranslations||(t.skipTranslation=!0,e.x=h.toPixels(e.x,!0),e.y=d.toPixels(e.y,!0)),i){this.data=[e.x,e.y,0,2].concat(this.data);return}eh(e.x,e.y,0,2)};!F&&!1!==T&&"line_strip"===e.drawMode&&(E.x<Number.MAX_VALUE&&eg(E,!0),M.x>-Number.MAX_VALUE&&eg(M)),ed()}pushSeries(e){let t=this.markerData,i=this.series,s=this.settings;i.length>0&&i[i.length-1].hasMarkers&&(i[i.length-1].markerTo=t.length),s.debug.timeSeriesProcessing&&console.time("building "+e.type+" series");let r={segments:[],markerFrom:t.length,colorData:[],series:e,zMin:Number.MAX_VALUE,zMax:-Number.MAX_VALUE,hasMarkers:!!e.options.marker&&!1!==e.options.marker.enabled,showMarkers:!0,drawMode:P[e.type]||"LINE_STRIP"};e.index>=i.length?i.push(r):i[e.index]=r,this.pushSeriesData(e,r),s.debug.timeSeriesProcessing&&console.timeEnd("building "+e.type+" series")}flush(){let e=this.vbuffer;this.data=[],this.markerData=[],this.series=[],e&&e.destroy()}setXAxis(e){let t=this.shader;if(!t)return;let i=this.getPixelRatio();t.setUniform("xAxisTrans",e.transA*i),t.setUniform("xAxisMin",e.min),t.setUniform("xAxisMinPad",e.minPixelPadding*i),t.setUniform("xAxisPointRange",e.pointRange),t.setUniform("xAxisLen",e.len*i),t.setUniform("xAxisPos",e.pos*i),t.setUniform("xAxisCVSCoord",!e.horiz),t.setUniform("xAxisIsLog",!!e.logarithmic),t.setUniform("xAxisReversed",!!e.reversed)}setYAxis(e){let t=this.shader;if(!t)return;let i=this.getPixelRatio();t.setUniform("yAxisTrans",e.transA*i),t.setUniform("yAxisMin",e.min),t.setUniform("yAxisMinPad",e.minPixelPadding*i),t.setUniform("yAxisPointRange",e.pointRange),t.setUniform("yAxisLen",e.len*i),t.setUniform("yAxisPos",e.pos*i),t.setUniform("yAxisCVSCoord",!e.horiz),t.setUniform("yAxisIsLog",!!e.logarithmic),t.setUniform("yAxisReversed",!!e.reversed)}setThreshold(e,t){let i=this.shader;i&&(i.setUniform("hasThreshold",e),i.setUniform("translatedThreshold",t))}renderChart(e){let t=this.gl,i=this.settings,s=this.shader,r=this.vbuffer,o=this.getPixelRatio();if(!e)return!1;this.width=e.chartWidth*o,this.height=e.chartHeight*o;let n=this.height,a=this.width;if(!t||!s||!a||!n)return!1;i.debug.timeRendering&&console.time("gl rendering"),t.canvas.width=a,t.canvas.height=n,s.bind(),t.viewport(0,0,a,n),s.setPMatrix(B.orthoMatrix(a,n)),i.lineWidth>1&&!d().isMS&&t.lineWidth(i.lineWidth),r&&(r.build(this.data,"aVertexPosition",4),r.bind()),s.setInverted(e.inverted),this.series.forEach((n,a)=>{let l=n.series.options,h=l.marker,d=void 0!==l.lineWidth?l.lineWidth:1,f=l.threshold,u=R(f),g=n.series.yAxis.getThreshold(f),m=D(l.marker?l.marker.enabled:null,!!n.series.xAxis.isRadial||null,n.series.closestPointRangePx>2*((l.marker?l.marker.radius:10)||10)),c=this.textureHandles[h&&h.symbol||n.series.symbol]||this.textureHandles.circle,p,b,x,A=[];if(0!==n.segments.length&&n.segments[0].from!==n.segments[0].to&&(c.isReady&&(t.bindTexture(t.TEXTURE_2D,c.handle),s.setTexture(c.handle)),e.styledMode?n.series.markerGroup===n.series.chart.boost?.markerGroup?(delete n.series.markerGroup,n.series.markerGroup=n.series.plotGroup("markerGroup","markers","visible",1,e.seriesGroup).addClass("highcharts-tracker"),x=n.series.markerGroup.getStyle("fill"),n.series.markerGroup.destroy(),n.series.markerGroup=n.series.chart.boost?.markerGroup):x=n.series.markerGroup?.getStyle("fill"):(x="POINTS"===n.drawMode&&n.series.pointAttribs&&n.series.pointAttribs().fill||n.series.color,l.colorByPoint&&(x=n.series.chart.options.colors[a])),n.series.fillOpacity&&l.fillOpacity&&(x=new(v())(x).setOpacity(D(l.fillOpacity,1)).get()),A=S(x).rgba,i.useAlpha||(A[3]=1),"add"===l.boostBlending?(t.blendFunc(t.SRC_ALPHA,t.ONE),t.blendEquation(t.FUNC_ADD)):"mult"===l.boostBlending||"multiply"===l.boostBlending?t.blendFunc(t.DST_COLOR,t.ZERO):"darken"===l.boostBlending?(t.blendFunc(t.ONE,t.ONE),t.blendEquation(t.FUNC_MIN)):t.blendFuncSeparate(t.SRC_ALPHA,t.ONE_MINUS_SRC_ALPHA,t.ONE,t.ONE_MINUS_SRC_ALPHA),s.reset(),n.colorData.length>0?(s.setUniform("hasColor",1),(b=new M(t,s)).build(Array(n.segments[0].from).concat(n.colorData),"aColor",4),b.bind()):(s.setUniform("hasColor",0),t.disableVertexAttribArray(t.getAttribLocation(s.getProgram(),"aColor"))),s.setColor(A),this.setXAxis(n.series.xAxis),this.setYAxis(n.series.yAxis),this.setThreshold(u,g),"POINTS"===n.drawMode&&s.setPointSize(2*D(l.marker&&l.marker.radius,.5)*o),s.setSkipTranslation(n.skipTranslation),"bubble"===n.series.type&&s.setBubbleUniforms(n.series,n.zMin,n.zMax,o),s.setDrawAsCircle(I[n.series.type]||!1),r)){if(d>0||"LINE_STRIP"!==n.drawMode)for(p=0;p<n.segments.length;p++)r.render(n.segments[p].from,n.segments[p].to,n.drawMode);if(n.hasMarkers&&m)for(s.setPointSize(2*D(l.marker&&l.marker.radius,5)*o),s.setDrawAsCircle(!0),p=0;p<n.segments.length;p++)r.render(n.segments[p].from,n.segments[p].to,"POINTS")}}),i.debug.timeRendering&&console.timeEnd("gl rendering"),this.postRenderCallback&&this.postRenderCallback(this),this.flush()}render(e){if(this.clear(),e.renderer.forExport)return this.renderChart(e);this.isInited?this.renderChart(e):setTimeout(()=>{this.render(e)},1)}setSize(e,t){let i=this.shader;i&&(this.width!==e||this.height!==t)&&(this.width=e,this.height=t,i.bind(),i.setPMatrix(B.orthoMatrix(e,t)))}init(e,t){let i=this.settings;if(this.isInited=!1,!e)return!1;i.debug.timeSetup&&console.time("gl setup");for(let t=0;t<G.length&&(this.gl=e.getContext(G[t],{}),!this.gl);++t);let s=this.gl;if(!s)return!1;t||this.flush(),s.enable(s.BLEND),s.blendFunc(s.SRC_ALPHA,s.ONE_MINUS_SRC_ALPHA),s.disable(s.DEPTH_TEST),s.depthFunc(s.LESS);let r=this.shader=new E(s);if(!r)return!1;this.vbuffer=new M(s,r);let o=(e,t)=>{let i={isReady:!1,texture:w.createElement("canvas"),handle:s.createTexture()},r=i.texture.getContext("2d");this.textureHandles[e]=i,i.texture.width=512,i.texture.height=512,r.mozImageSmoothingEnabled=!1,r.webkitImageSmoothingEnabled=!1,r.msImageSmoothingEnabled=!1,r.imageSmoothingEnabled=!1,r.strokeStyle="rgba(255, 255, 255, 0)",r.fillStyle="#FFF",t(r);try{s.activeTexture(s.TEXTURE0),s.bindTexture(s.TEXTURE_2D,i.handle),s.texImage2D(s.TEXTURE_2D,0,s.RGBA,s.RGBA,s.UNSIGNED_BYTE,i.texture),s.texParameteri(s.TEXTURE_2D,s.TEXTURE_WRAP_S,s.CLAMP_TO_EDGE),s.texParameteri(s.TEXTURE_2D,s.TEXTURE_WRAP_T,s.CLAMP_TO_EDGE),s.texParameteri(s.TEXTURE_2D,s.TEXTURE_MAG_FILTER,s.LINEAR),s.texParameteri(s.TEXTURE_2D,s.TEXTURE_MIN_FILTER,s.LINEAR),s.bindTexture(s.TEXTURE_2D,null),i.isReady=!0}catch(e){}};return o("circle",e=>{e.beginPath(),e.arc(256,256,256,0,2*Math.PI),e.stroke(),e.fill()}),o("square",e=>{e.fillRect(0,0,512,512)}),o("diamond",e=>{e.beginPath(),e.moveTo(256,0),e.lineTo(512,256),e.lineTo(256,512),e.lineTo(0,256),e.lineTo(256,0),e.fill()}),o("triangle",e=>{e.beginPath(),e.moveTo(0,512),e.lineTo(256,0),e.lineTo(512,512),e.lineTo(0,512),e.fill()}),o("triangle-down",e=>{e.beginPath(),e.moveTo(0,0),e.lineTo(256,512),e.lineTo(512,0),e.lineTo(0,0),e.fill()}),this.isInited=!0,i.debug.timeSetup&&console.timeEnd("gl setup"),!0}destroy(){let e=this.gl,t=this.shader,i=this.vbuffer;this.flush(),i&&i.destroy(),t&&t.destroy(),e&&(z(this.textureHandles,t=>{t.handle&&e.deleteTexture(t.handle)}),e.canvas.width=1,e.canvas.height=1)}}!function(e){e.setLength=function(e,t,i){return Array.isArray(e)?(e.length=t,e):e[i?"subarray":"slice"](0,t)},e.splice=function(e,t,i,s,r=[]){if(Array.isArray(e))return Array.isArray(r)||(r=Array.from(r)),{removed:e.splice(t,i,...r),array:e};let o=Object.getPrototypeOf(e).constructor,n=e[s?"subarray":"slice"](t,t+i),a=new o(e.length-i+r.length);return a.set(e.subarray(0,t),0),a.set(r,t),a.set(e.subarray(t+i),t+r.length),{removed:n,array:a}}}(r||(r={}));let{setLength:O,splice:V}=r,{fireEvent:X,objectEach:F,uniqueKey:H}=d(),W=class{constructor(e={}){this.autoId=!e.id,this.columns={},this.id=e.id||H(),this.modified=this,this.rowCount=0,this.versionTag=H();let t=0;F(e.columns||{},(e,i)=>{this.columns[i]=e.slice(),t=Math.max(t,e.length)}),this.applyRowCount(t)}applyRowCount(e){this.rowCount=e,F(this.columns,(t,i)=>{t.length!==e&&(this.columns[i]=O(t,e))})}deleteRows(e,t=1){if(t>0&&e<this.rowCount){let i=0;F(this.columns,(s,r)=>{this.columns[r]=V(s,e,t).array,i=s.length}),this.rowCount=i}X(this,"afterDeleteRows",{rowIndex:e,rowCount:t}),this.versionTag=H()}getColumn(e,t){return this.columns[e]}getColumns(e,t){return(e||Object.keys(this.columns)).reduce((e,t)=>(e[t]=this.columns[t],e),{})}getRow(e,t){return(t||Object.keys(this.columns)).map(t=>this.columns[t]?.[e])}setColumn(e,t=[],i=0,s){this.setColumns({[e]:t},i,s)}setColumns(e,t,i){let s=this.rowCount;F(e,(e,t)=>{this.columns[t]=e.slice(),s=e.length}),this.applyRowCount(s),i?.silent||(X(this,"afterSetColumns"),this.versionTag=H())}setRow(e,t=this.rowCount,i,s){let{columns:r}=this,o=i?this.rowCount+1:t+1;F(e,(e,n)=>{let a=r[n]||s?.addColumns!==!1&&Array(o);a&&(i?a=V(a,t,0,!0,[e]).array:a[t]=e,r[n]=a)}),o>this.rowCount&&this.applyRowCount(o),s?.silent||(X(this,"afterSetRows"),this.versionTag=H())}},{getBoostClipRect:j,isChartSeriesBoosting:q}=A,{getOptions:Y}=d(),{composed:Z,doc:K,noop:Q,win:J}=d(),{addEvent:$,destroyObjectProperties:ee,error:et,extend:ei,fireEvent:es,isArray:er,isNumber:eo,pick:en,pushUnique:ea,wrap:el,defined:eh}=d();function ed(e,t){let i=t.boost;e&&i&&i.target&&i.canvas&&!q(t.chart)&&e.allocateBufferForSingleSeries(t)}function ef(e){return en(e&&e.options&&e.options.boost&&e.options.boost.enabled,!0)}function eu(e,t){let i=e.constructor,r=e.seriesGroup||t.group,o=e.chartWidth,n=e.chartHeight,a=e,l="undefined"!=typeof SVGForeignObjectElement,h=!1;q(e)?a=e:(a=t,h=!!(t.options.events?.click||t.options.point?.events?.click));let d=a.boost=a.boost||{};if(l=!1,s||(s=K.createElement("canvas")),!d.target&&(d.canvas=s,e.renderer.forExport||!l?(a.renderTarget=d.target=e.renderer.image("",0,0,o,n).addClass("highcharts-boost-canvas").add(r),d.clear=function(){d.target.attr({href:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="})},d.copy=function(){d.resize(),d.target.attr({href:d.canvas.toDataURL("image/png")})}):(d.targetFo=e.renderer.createElement("foreignObject").add(r),a.renderTarget=d.target=K.createElement("canvas"),d.targetCtx=d.target.getContext("2d"),d.targetFo.element.appendChild(d.target),d.clear=function(){d.target.width=d.canvas.width,d.target.height=d.canvas.height},d.copy=function(){d.target.width=d.canvas.width,d.target.height=d.canvas.height,d.targetCtx.drawImage(d.canvas,0,0)}),d.resize=function(){o=e.chartWidth,n=e.chartHeight,(d.targetFo||d.target).attr({x:0,y:0,width:o,height:n}).css({pointerEvents:h?void 0:"none",mixedBlendMode:"normal",opacity:1}).addClass(h?"highcharts-tracker":""),a instanceof i&&a.boost?.markerGroup?.translate(e.plotLeft,e.plotTop)},d.clipRect=e.renderer.clipRect(),(d.targetFo||d.target).attr({zIndex:t.options.zIndex}),a instanceof i&&(a.boost.markerGroup=a.renderer.g().add(r).translate(t.xAxis.pos,t.yAxis.pos))),d.canvas.width=o,d.canvas.height=n,d.clipRect){let t=j(e,a),i=t.width===e.clipBox.width&&t.height===e.clipBox.height?r:d.targetFo||d.target;d.clipRect.attr(t),i?.clip(d.clipRect)}return d.resize(),d.clear(),!d.wgl&&(d.wgl=new B(e=>{e.settings.debug.timeBufferCopy&&console.time("buffer copy"),d.copy(),e.settings.debug.timeBufferCopy&&console.timeEnd("buffer copy")}),d.wgl.init(d.canvas)||et("[highcharts boost] - unable to init WebGL renderer"),d.wgl.setOptions(e.options.boost||{}),a instanceof i&&d.wgl.allocateBuffer(e)),d.wgl.setSize(o,n),d.wgl}function eg(e){let t=e.points;if(t){let e,i;for(i=0;i<t.length;i+=1)(e=t[i])&&e.destroyElements&&e.destroyElements()}for(let t of(["graph","area","tracker"].forEach(t=>{let i=e[t];i&&(e[t]=i.destroy())}),e.zones))ee(t,void 0,!0)}function em(e,t,i,s,r,o){let n=(r=r||0)+(s=s||3e3),a=!0;for(;a&&r<n&&r<e.length;)a=t(e[r],r),++r;a&&(r<e.length?o?em(e,t,i,s,r,o):J.requestAnimationFrame?J.requestAnimationFrame(function(){em(e,t,i,s,r)}):setTimeout(em,0,e,t,i,s,r):i&&i())}function ec(e,t){let i=e.options,s=e.dataTable.modified.rowCount,r=e.xAxis&&e.xAxis.options,o=e.yAxis&&e.yAxis.options,n=e.colorAxis&&e.colorAxis.options;return s>(i.boostThreshold||Number.MAX_VALUE)&&eo(o.min)&&eo(o.max)&&(!t||eo(r.min)&&eo(r.max))&&(!n||eo(n.min)&&eo(n.max))}let ep=(e,t)=>!e.forceCrop&&(q(e.chart)||(t?t.length:0)>=(e.options.boostThreshold||Number.MAX_VALUE));function eb(){let e=this,t=e.chart;t.boost&&t.boost.markerGroup===e.markerGroup&&(e.markerGroup=void 0),t.hoverPoints&&(t.hoverPoints=t.hoverPoints.filter(function(t){return t.series===e})),t.hoverPoint&&t.hoverPoint.series===e&&(t.hoverPoint=void 0)}function ex(){let e=this.boost;e&&e.canvas&&e.target&&(e.wgl&&e.wgl.clear(),e.clear&&e.clear())}function eA(e){let t=e.boost;t&&t.canvas&&t.target&&t.wgl&&!q(e.chart)&&t.wgl.render(e.chart)}function ey(e,t){let i=e.options,s=e.xAxis,r=e.pointClass;if(t instanceof r)return t;let o=e.is("scatter"),n=(o&&e.getColumn("x",!0).length?e.getColumn("x",!0):void 0)||(e.getColumn("x").length?e.getColumn("x"):void 0)||i.xData||e.getColumn("x",!0)||!1,a=e.getColumn("y",!0)||i.yData||!1,l=new r(e,o&&n&&a?[n[t.i],a[t.i]]:(er(e.options.data)?e.options.data:[])[t.i],n?n[t.i]:void 0);return l.category=en(s.categories?s.categories[l.x]:l.x,l.x),l.key=l.name??l.category,l.dist=t.dist,l.distX=t.distX,l.plotX=t.plotX,l.plotY=t.plotY,l.index=t.i,l.percentage=t.percentage,l.isInside=e.isPointInside(l),l}function ev(e){let{options:t,xAxis:i,yAxis:s}=this;if(!this.isDirty&&!i.isDirty&&!s.isDirty&&!e)return!1;this.yAxis.setTickInterval();let r=t.boostThreshold||0,o=t.cropThreshold,n=this.getColumn("x"),a=i.getExtremes(),l=a.max??Number.MAX_VALUE,h=a.min??-Number.MAX_VALUE,d=this.getColumn("y"),f=s.getExtremes(),u=f.max??Number.MAX_VALUE,g=f.min??-Number.MAX_VALUE;if(!this.boosted&&i.old&&s.old&&h>=(i.old.min??-Number.MAX_VALUE)&&l<=(i.old.max??Number.MAX_VALUE)&&g>=(s.old.min??-Number.MAX_VALUE)&&u<=(s.old.max??Number.MAX_VALUE))return this.dataTable.modified.setColumns({x:n,y:d}),!0;let m=this.dataTable.rowCount;if(!r||m<r||o&&!this.forceCrop&&!this.getExtremesFromAll&&!t.getExtremesFromAll&&m<o)return this.dataTable.modified.setColumns({x:n,y:d}),!0;let c=[],p=[],b=[],x=!(eo(a.max)||eo(a.min)),A=!(eo(f.max)||eo(f.min)),y=!1,v,P=n[0],T=n[0],C,k=d?.[0],E=d?.[0];for(let e=0,t=n.length;e<t;++e)v=n[e],C=d?.[e],v>=h&&v<=l&&C>=g&&C<=u?(c.push({x:v,y:C}),p.push(v),b.push(C),x&&(P=Math.max(P,v),T=Math.min(T,v)),A&&(k=Math.max(k,C),E=Math.min(E,C))):y=!0;return x&&(i.dataMax=Math.max(P,i.dataMax||0),i.dataMin=Math.min(T,i.dataMin||0)),A&&(s.dataMax=Math.max(k,s.dataMax||0),s.dataMin=Math.min(E,s.dataMin||0)),this.cropped=y,this.cropStart=0,y&&this.dataTable.modified===this.dataTable&&(this.dataTable.modified=new W),this.dataTable.modified.setColumns({x:p,y:b}),ep(this,p)||(this.processedData=c),!0}function eP(){let e=this.options||{},t=this.chart,s=t.boost,r=this.boost,o=this.xAxis,n=this.yAxis,a=e.xData||this.getColumn("x",!0),l=e.yData||this.getColumn("y",!0),h=this.getColumn("low",!0),d=this.getColumn("high",!0),f=this.processedData||e.data,u=o.getExtremes(),g=u.min-(o.minPointOffset||0),m=u.max+(o.minPointOffset||0),c=n.getExtremes(),p=c.min-(n.minPointOffset||0),b=c.max+(n.minPointOffset||0),x={},A=!!this.sampling,y=e.enableMouseTracking,v=e.threshold,P=this.pointArrayMap&&"low,high"===this.pointArrayMap.join(","),T=!!e.stacking,C=this.cropStart||0,k=this.requireSorting,E=!a,M="x"===e.findNearestPointBy,S=(this.getColumn("x").length?this.getColumn("x"):void 0)||this.options.xData||this.getColumn("x",!0),w=en(e.lineWidth,1),U=e.nullInteraction&&p,R=t.tooltip,L=!1,_,z=n.getThreshold(v),D,N,I,G;if(!this.boosted||(this.points?.forEach(e=>{e?.destroyElements?.()}),this.points=[],R&&!R.isHidden?(t.hoverPoint?.series===this||t.hoverPoints?.some(e=>e.series===this))&&(t.hoverPoint=t.hoverPoints=void 0,R.hide(0)):t.hoverPoints&&(t.hoverPoints=t.hoverPoints.filter(e=>e.series!==this)),o.isPanning||n.isPanning)||(L=eu(t,this),t.boosted=!0,!this.visible))return;(this.points||this.graph)&&eg(this),q(t)?(this.markerGroup&&this.markerGroup!==s?.markerGroup&&this.markerGroup.destroy(),this.markerGroup=s?.markerGroup,r&&r.target&&(this.renderTarget=r.target=r.target.destroy())):(this.markerGroup===s?.markerGroup&&(this.markerGroup=void 0),this.markerGroup=this.plotGroup("markerGroup","markers","visible",1,t.seriesGroup).addClass("highcharts-tracker"));let B=this.points=[],O=(e,s,r,a)=>{let l=!!S&&S[C+r],h=e=>{t.inverted&&(e=o.len-e,s=n.len-s),B.push({destroy:Q,x:l,clientX:e,plotX:e,plotY:s,i:C+r,percentage:a})};e=Math.ceil(e),i=M?e:e+","+s,y&&(x[i]?l===S[S.length-1]&&(B.length--,h(e)):(x[i]=!0,h(e)))};this.buildKDTree=Q,es(this,"renderCanvas"),this.is("line")&&w>1&&r?.target&&s&&!s.lineWidthFilter&&(s.lineWidthFilter=t.renderer.definition({tagName:"filter",children:[{tagName:"feMorphology",attributes:{operator:"dilate",radius:.25*w}}],attributes:{id:"linewidth"}}),r.target.attr({filter:"url(#linewidth)"})),L&&(ed(L,this),L.pushSeries(this),eA(this));let V=L.settings;t.renderer.forExport||(V.debug.timeKDTree&&console.time("kd tree building"),em(T?this.data.slice(C):a||f,function(e,i){let s=void 0===t.index,r,a,f,u,c,x=!1,y=!0;return!eh(e)||(!s&&(E?(r=e[0],a=e[1]):(r=e,a=l[i]??U??null),P?(E&&(a=e.slice(1,3)),x=h[i],a=d[i]):T&&(r=e.x,x=(a=e.stackY)-e.y,c=e.percentage),k||(y=(a||0)>=p&&a<=b),null!==a&&r>=g&&r<=m&&y&&(f=o.toPixels(r,!0),A?((void 0===I||f===_)&&(P||(x=a),(void 0===G||a>N)&&(N=a,G=i),(void 0===I||x<D)&&(D=x,I=i)),M&&f===_||(void 0!==I&&(u=n.toPixels(N,!0),z=n.toPixels(D,!0),O(f,u,G,c),z!==u&&O(f,z,I,c)),I=G=void 0,_=f)):O(f,u=Math.ceil(n.toPixels(a,!0)),i,c))),!s)},()=>{es(this,"renderedCanvas"),delete this.buildKDTree,this.options&&this.buildKDTree(),V.debug.timeKDTree&&console.timeEnd("kd tree building")}))}function eT(e){let t=!0;if(this.chart.options&&this.chart.options.boost&&(t=void 0===this.chart.options.boost.enabled||this.chart.options.boost.enabled),!t||!this.boosted)return e.call(this);this.chart.boosted=!0;let i=eu(this.chart,this);i&&(ed(i,this),i.pushSeries(this)),eA(this)}function eC(e){if(this.boosted){if(ec(this))return{};if(this.xAxis.isPanning||this.yAxis.isPanning)return this}return e.apply(this,[].slice.call(arguments,1))}function ek(e){let t=this.options.data;if(ef(this.chart)&&u[this.type]){let s=this.is("scatter")&&!this.is("bubble")&&!this.is("treemap")&&!this.is("heatmap");if(!ep(this,t)||s||this.is("treemap")||this.options.stacking||!ec(this,!0)){if(this.boosted&&(this.xAxis?.isPanning||this.yAxis?.isPanning))return;s&&"treegrid"!==this.yAxis.type?ev.call(this,arguments[1]):e.apply(this,[].slice.call(arguments,1)),t=this.getColumn("x",!0)}if(this.boosted=ep(this,t),this.boosted){let e;this.options.data?.length&&(eo(e=this.getFirstValidPoint(this.options.data))||er(e)||this.is("treemap")||et(12,!1,this.chart));var i=this;i.boost=i.boost||{getPoint:e=>ey(i,e)};let t=i.boost.altered=[];if(["allowDG","directTouch","stickyTracking"].forEach(e=>{t.push({prop:e,val:i[e],own:Object.hasOwnProperty.call(i,e)})}),i.allowDG=!1,i.directTouch=!1,i.stickyTracking=!0,i.finishedAnimating=!0,i.labelBySeries&&(i.labelBySeries=i.labelBySeries.destroy()),i.is("scatter")&&!i.is("treemap")&&i.data.length){for(let e of i.data)e?.destroy?.();i.data.length=0,i.points.length=0,delete i.processedData}}else!function(e){let t=e.boost,i=e.chart,s=i.boost;if(s?.markerGroup)for(let e of(s.markerGroup.destroy(),s.markerGroup=void 0,i.series))e.markerGroup=void 0,e.markerGroup=e.plotGroup("markerGroup","markers","visible",1,i.seriesGroup).addClass("highcharts-tracker");t&&((t.altered||[]).forEach(t=>{t.own?e[t.prop]=t.val:delete e[t.prop]}),t.clear&&t.clear()),(i.seriesGroup||e.group)?.clip()}(this)}else e.apply(this,[].slice.call(arguments,1))}function eE(e){let t=e.apply(this,[].slice.call(arguments,1));return this.boost&&t?this.boost.getPoint(t):t}let eM={compose:function(e,t,i,s){if(ea(Z,"Boost.Series")){let r=Y().plotOptions,o=e.prototype;if($(e,"destroy",eb),$(e,"hide",ex),s&&(o.renderCanvas=eP),el(o,"getExtremes",eC),el(o,"processData",ek),el(o,"searchPoint",eE),["translate","generatePoints","drawTracker","drawPoints","render"].forEach(e=>(function(e,t,i){function s(e){let t=this.options.stacking&&("translate"===i||"generatePoints"===i);this.boosted&&!t&&ef(this.chart)&&"heatmap"!==this.type&&"treemap"!==this.type&&u[this.type]&&0!==this.options.boostThreshold?"render"===i&&this.renderCanvas&&this.renderCanvas():e.call(this)}if(el(e,i,s),"translate"===i)for(let e of["column","arearange","columnrange","heatmap","treemap"])t[e]&&el(t[e].prototype,i,s)})(o,t,e)),el(i.prototype,"firePointEvent",function(e,t,i){if("click"===t&&this.series.boosted){let e=i.point;if((e.dist||e.distX)>=(e.series.options.marker?.radius??10))return}return e.apply(this,[].slice.call(arguments,1))}),f.forEach(e=>{let i=r[e];i&&(i.boostThreshold=5e3,i.boostData=[],t[e].prototype.fillOpacity=!0)}),s){let{area:e,areaspline:i,bubble:s,column:r,heatmap:o,scatter:n,treemap:a}=t;if(e&&ei(e.prototype,{fill:!0,fillOpacity:!0,sampling:!0}),i&&ei(i.prototype,{fill:!0,fillOpacity:!0,sampling:!0}),s){let e=s.prototype;delete e.buildKDTree,el(e,"markerAttribs",function(e){return!this.boosted&&e.apply(this,[].slice.call(arguments,1))})}r&&ei(r.prototype,{fill:!0,sampling:!0}),n&&(n.prototype.fill=!0),[o,a].forEach(e=>{e&&el(e.prototype,"drawPoints",eT)})}}return e},destroyGraphics:eg,eachAsync:em,getPoint:ey},eS={defaultHTMLColorMap:{aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",feldspar:"#d19275",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",grey:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslateblue:"#8470ff",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",violetred:"#d02090",wheat:"#f5deb3",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}},{doc:ew,win:eU}=d(),{addEvent:eR,error:eL}=d(),e_=["webgl","experimental-webgl","moz-webgl","webkit-3d"];function ez(){let e,t=!1;if(void 0!==eU.WebGLRenderingContext){e=ew.createElement("canvas");for(let t=0;t<e_.length;++t)try{if(null!=e.getContext(e_[t]))return!0}catch(e){}}return!1}let eD={compose:function(e,t,i,s,r,o){let n=ez();n||(void 0!==d().initCanvasBoost?d().initCanvasBoost():eL(26)),o&&!o.names.lightgoldenrodyellow&&(o.names={...o.names,...eS.defaultHTMLColorMap}),A.compose(e,n),eM.compose(i,s,r,n),eR(t,"setExtremes",function(e){for(let t of[this.chart,...this.series].map(e=>e.renderTarget).filter(Boolean)){let{horiz:i,pos:s}=this,r=i?"scaleX":"scaleY",o=i?"translateX":"translateY",n=t?.[r]??1,a=1,l=0,h=1,d="none";this.isPanning&&(a=(e.scale??1)*n,l=(t?.[o]||0)-a*(e.move||0)+n*s-a*s,h=.7,d="blur(3px)"),t?.attr({[r]:a,[o]:l}).css({transition:"250ms filter, 250ms opacity",filter:d,opacity:h})}})},hasWebGLSupport:ez},eN=d();eN.hasWebGLSupport=eD.hasWebGLSupport,eD.compose(eN.Chart,eN.Axis,eN.Series,eN.seriesTypes,eN.Point,eN.Color);let eI=d();return l.default})());
@@ -5,13 +5,6 @@
5
5
  *!*/
6
6
  import * as globals from "../globals.src";
7
7
  import * as _Highcharts from "../highcharts.src";
8
- /**
9
- * Adds the module to the imported Highcharts namespace.
10
- *
11
- * @param highcharts
12
- * The imported Highcharts namespace to extend.
13
- */
14
- export function factory(highcharts: typeof Highcharts): void;
15
8
  declare module "../highcharts.src" {
16
9
  interface DataTableOptions {
17
10
  columns?: DataTableColumnCollection;
@@ -32,5 +25,4 @@ declare module "../highcharts.src" {
32
25
  */
33
26
  function wrapSeriesFunctions(): void;
34
27
  }
35
- export default factory;
36
- export let Highcharts: typeof _Highcharts;
28
+ export default _Highcharts;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v12.2.0 (2025-04-07)
2
+ * @license Highcharts JS v12.3.0 (2025-06-21)
3
3
  * @module highcharts/modules/boost
4
4
  * @requires highcharts
5
5
  *
@@ -3278,7 +3278,7 @@ function onSeriesDestroy() {
3278
3278
  const series = this, chart = series.chart;
3279
3279
  if (chart.boost &&
3280
3280
  chart.boost.markerGroup === series.markerGroup) {
3281
- series.markerGroup = null;
3281
+ series.markerGroup = void 0;
3282
3282
  }
3283
3283
  if (chart.hoverPoints) {
3284
3284
  chart.hoverPoints = chart.hoverPoints.filter(function (point) {
@@ -3286,7 +3286,7 @@ function onSeriesDestroy() {
3286
3286
  });
3287
3287
  }
3288
3288
  if (chart.hoverPoint && chart.hoverPoint.series === series) {
3289
- chart.hoverPoint = null;
3289
+ chart.hoverPoint = void 0;
3290
3290
  }
3291
3291
  }
3292
3292
  /**
@@ -3464,8 +3464,27 @@ function seriesRenderCanvas() {
3464
3464
  this.getColumn('x') :
3465
3465
  void 0) ||
3466
3466
  this.options.xData ||
3467
- this.getColumn('x', true)), lineWidth = BoostSeries_pick(options.lineWidth, 1), nullYSubstitute = options.nullInteraction && yMin;
3467
+ this.getColumn('x', true)), lineWidth = BoostSeries_pick(options.lineWidth, 1), nullYSubstitute = options.nullInteraction && yMin, tooltip = chart.tooltip;
3468
3468
  let renderer = false, lastClientX, yBottom = yAxis.getThreshold(threshold), minVal, maxVal, minI, maxI;
3469
+ // Clear mock points and tooltip after zoom (#20330)
3470
+ if (!this.boosted) {
3471
+ return;
3472
+ }
3473
+ this.points?.forEach((point) => {
3474
+ point?.destroyElements?.();
3475
+ });
3476
+ this.points = [];
3477
+ if (tooltip && !tooltip.isHidden) {
3478
+ const isSeriesHovered = chart.hoverPoint?.series === this ||
3479
+ chart.hoverPoints?.some((point) => point.series === this);
3480
+ if (isSeriesHovered) {
3481
+ chart.hoverPoint = chart.hoverPoints = void 0;
3482
+ tooltip.hide(0);
3483
+ }
3484
+ }
3485
+ else if (chart.hoverPoints) {
3486
+ chart.hoverPoints = chart.hoverPoints.filter((point) => point.series !== this);
3487
+ }
3469
3488
  // When touch-zooming or mouse-panning, re-rendering the canvas would not
3470
3489
  // perform fast enough. Instead, let the axes redraw, but not the series.
3471
3490
  // The series is scale-translated in an event handler for an approximate
@@ -5,13 +5,5 @@
5
5
  *!*/
6
6
  import * as globals from "../globals";
7
7
  import * as _Highcharts from "../highcharts";
8
- /**
9
- * Adds the module to the imported Highcharts namespace.
10
- *
11
- * @param highcharts
12
- * The imported Highcharts namespace to extend.
13
- */
14
- export function factory(highcharts: typeof Highcharts): void;
15
8
  declare module "../highcharts" {}
16
- export default factory;
17
- export let Highcharts: typeof _Highcharts;
9
+ export default _Highcharts;
@@ -1 +1,9 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.StackItem):"function"==typeof define&&define.amd?define("highcharts/modules/broken-axis",["highcharts/highcharts"],function(t){return e(t,t.StackItem)}):"object"==typeof exports?exports["highcharts/modules/broken-axis"]=e(t._Highcharts,t._Highcharts.StackItem):t.Highcharts=e(t.Highcharts,t.Highcharts.StackItem)}("undefined"==typeof window?this:window,(t,e)=>(()=>{"use strict";var i,s={184:t=>{t.exports=e},944:e=>{e.exports=t}},r={};function n(t){var e=r[t];if(void 0!==e)return e.exports;var i=r[t]={exports:{}};return s[t](i,i.exports,n),i.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var o={};n.d(o,{default:()=>v});var a=n(944),f=n.n(a),l=n(184),h=n.n(l);let{addEvent:c,find:u,fireEvent:k,isArray:p,isNumber:x,pick:m}=f();!function(t){function e(){void 0!==this.brokenAxis&&this.brokenAxis.setBreaks(this.options.breaks,!1)}function i(){this.brokenAxis?.hasBreaks&&(this.options.ordinal=!1)}function s(){let t=this.brokenAxis;if(t?.hasBreaks){let e=this.tickPositions,i=this.tickPositions.info,s=[];for(let i=0;i<e.length;i++)t.isInAnyBreak(e[i])||s.push(e[i]);this.tickPositions=s,this.tickPositions.info=i}}function r(){this.brokenAxis||(this.brokenAxis=new l(this))}function n(){let{isDirty:t,options:{connectNulls:e},points:i,xAxis:s,yAxis:r}=this;if(t){let t=i.length;for(;t--;){let n=i[t],o=(null!==n.y||!1!==e)&&(s?.brokenAxis?.isInAnyBreak(n.x,!0)||r?.brokenAxis?.isInAnyBreak(n.y,!0));n.visible=!o&&!1!==n.options.visible}}}function o(){this.drawBreaks(this.xAxis,["x"]),this.drawBreaks(this.yAxis,m(this.pointArrayMap,["y"]))}function a(t,e){let i,s,r,n=this,o=n.points;if(t?.brokenAxis?.hasBreaks){let a=t.brokenAxis;e.forEach(function(e){i=a?.breakArray||[],s=t.isXAxis?t.min:m(n.options.threshold,t.min);let f=t?.options?.breaks?.filter(function(t){let e=!0;for(let s=0;s<i.length;s++){let r=i[s];if(r.from===t.from&&r.to===t.to){e=!1;break}}return e});o.forEach(function(n){r=m(n["stack"+e.toUpperCase()],n[e]),i.forEach(function(e){if(x(s)&&x(r)){let i="";s<e.from&&r>e.to||s>e.from&&r<e.from?i="pointBreak":(s<e.from&&r>e.from&&r<e.to||s>e.from&&r>e.to&&r<e.from)&&(i="pointInBreak"),i&&k(t,i,{point:n,brk:e})}}),f?.forEach(function(e){k(t,"pointOutsideOfBreak",{point:n,brk:e})})})})}}function f(){let t=this.currentDataGrouping,e=t?.gapSize,i=this.points.slice(),s=this.yAxis,r=this.options.gapSize,n=i.length-1;if(r&&n>0){let t,o;for("value"!==this.options.gapUnit&&(r*=this.basePointRange),e&&e>r&&e>=this.basePointRange&&(r=e);n--;)if(o&&!1!==o.visible||(o=i[n+1]),t=i[n],!1!==o.visible&&!1!==t.visible){if(o.x-t.x>r){let e=(t.x+o.x)/2;i.splice(n+1,0,{isNull:!0,x:e}),s.stacking&&this.options.stacking&&((s.stacking.stacks[this.stackKey][e]=new(h())(s,s.options.stackLabels,!1,e,this.stack)).total=0)}o=t}}return this.getGraphPath(i)}t.compose=function(t,l){if(!t.keepProps.includes("brokenAxis")){t.keepProps.push("brokenAxis"),c(t,"init",r),c(t,"afterInit",e),c(t,"afterSetTickPositions",s),c(t,"afterSetOptions",i);let h=l.prototype;h.drawBreaks=a,h.gappedPath=f,c(l,"afterGeneratePoints",n),c(l,"afterRender",o)}return t};class l{static isInBreak(t,e){let i,s=t.repeat||1/0,r=t.from,n=t.to-t.from,o=e>=r?(e-r)%s:s-(r-e)%s;return t.inclusive?o<=n:o<n&&0!==o}static lin2Val(t){let e=this.brokenAxis,i=e?.breakArray;if(!i||!x(t))return t;let s=t,r,n;for(n=0;n<i.length&&!((r=i[n]).from>=s);n++)r.to<s?s+=r.len:l.isInBreak(r,s)&&(s+=r.len);return s}static val2Lin(t){let e=this.brokenAxis,i=e?.breakArray;if(!i||!x(t))return t;let s=t,r,n;for(n=0;n<i.length;n++)if((r=i[n]).to<=t)s-=r.len;else if(r.from>=t)break;else if(l.isInBreak(r,t)){s-=t-r.from;break}return s}constructor(t){this.hasBreaks=!1,this.axis=t}findBreakAt(t,e){return u(e,function(e){return e.from<t&&t<e.to})}isInAnyBreak(t,e){let i=this.axis,s=i.options.breaks||[],r=s.length,n,o,a;if(r&&x(t)){for(;r--;)l.isInBreak(s[r],t)&&(n=!0,o||(o=m(s[r].showPoints,!i.isXAxis)));a=n&&e?n&&!o:n}return a}setBreaks(t,e){let i=this,s=i.axis,r=s.chart.time,n=p(t)&&!!t.length&&!!Object.keys(t[0]).length;s.isDirty=i.hasBreaks!==n,i.hasBreaks=n,t?.forEach(t=>{t.from=r.parse(t.from)||0,t.to=r.parse(t.to)||0}),t!==s.options.breaks&&(s.options.breaks=s.userOptions.breaks=t),s.forceRedraw=!0,s.series.forEach(function(t){t.isDirty=!0}),n||s.val2lin!==l.val2Lin||(delete s.val2lin,delete s.lin2val),n&&(s.userOptions.ordinal=!1,s.lin2val=l.lin2Val,s.val2lin=l.val2Lin,s.setExtremes=function(t,e,r,n,o){if(i.hasBreaks){let s,r=this.options.breaks||[];for(;s=i.findBreakAt(t,r);)t=s.to;for(;s=i.findBreakAt(e,r);)e=s.from;e<t&&(e=t)}s.constructor.prototype.setExtremes.call(this,t,e,r,n,o)},s.setAxisTranslation=function(){if(s.constructor.prototype.setAxisTranslation.call(this),i.unitLength=void 0,i.hasBreaks){let t=s.options.breaks||[],e=[],r=[],n=m(s.pointRangePadding,0),o=0,a,f,h=s.userMin||s.min,c=s.userMax||s.max,u,p;t.forEach(function(t){f=t.repeat||1/0,x(h)&&x(c)&&(l.isInBreak(t,h)&&(h+=t.to%f-h%f),l.isInBreak(t,c)&&(c-=c%f-t.from%f))}),t.forEach(function(t){if(u=t.from,f=t.repeat||1/0,x(h)&&x(c)){for(;u-f>h;)u-=f;for(;u<h;)u+=f;for(p=u;p<c;p+=f)e.push({value:p,move:"in"}),e.push({value:p+t.to-t.from,move:"out",size:t.breakSize})}}),e.sort(function(t,e){return t.value===e.value?+("in"!==t.move)-+("in"!==e.move):t.value-e.value}),a=0,u=h,e.forEach(function(t){1===(a+="in"===t.move?1:-1)&&"in"===t.move&&(u=t.value),0===a&&x(u)&&(r.push({from:u,to:t.value,len:t.value-u-(t.size||0)}),o+=t.value-u-(t.size||0))}),i.breakArray=r,x(h)&&x(c)&&x(s.min)&&(i.unitLength=c-h-o+n,k(s,"afterBreaks"),s.staticScale?s.transA=s.staticScale:i.unitLength&&(s.transA*=(c-s.min+n)/i.unitLength),n&&(s.minPixelPadding=s.transA*(s.minPointOffset||0)),s.min=h,s.max=c)}}),m(e,!0)&&s.chart.redraw()}}t.Additions=l}(i||(i={}));let b=i,d=f();d.BrokenAxis=d.BrokenAxis||b,d.BrokenAxis.compose(d.Axis,d.Series);let v=f();return o.default})());
1
+ !/**
2
+ * Highcharts JS v12.3.0 (2025-06-21)
3
+ * @module highcharts/modules/broken-axis
4
+ * @requires highcharts
5
+ *
6
+ * (c) 2009-2025 Torstein Honsi
7
+ *
8
+ * License: www.highcharts.com/license
9
+ */function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.StackItem):"function"==typeof define&&define.amd?define("highcharts/modules/broken-axis",["highcharts/highcharts"],function(t){return e(t,t.StackItem)}):"object"==typeof exports?exports["highcharts/modules/broken-axis"]=e(t._Highcharts,t._Highcharts.StackItem):t.Highcharts=e(t.Highcharts,t.Highcharts.StackItem)}("undefined"==typeof window?this:window,(t,e)=>(()=>{"use strict";var i,s={184:t=>{t.exports=e},944:e=>{e.exports=t}},r={};function n(t){var e=r[t];if(void 0!==e)return e.exports;var i=r[t]={exports:{}};return s[t](i,i.exports,n),i.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var o={};n.d(o,{default:()=>v});var a=n(944),f=n.n(a),l=n(184),h=n.n(l);let{addEvent:c,find:u,fireEvent:k,isArray:p,isNumber:x,pick:m}=f();!function(t){function e(){void 0!==this.brokenAxis&&this.brokenAxis.setBreaks(this.options.breaks,!1)}function i(){this.brokenAxis?.hasBreaks&&(this.options.ordinal=!1)}function s(){let t=this.brokenAxis;if(t?.hasBreaks){let e=this.tickPositions,i=this.tickPositions.info,s=[];for(let i=0;i<e.length;i++)t.isInAnyBreak(e[i])||s.push(e[i]);this.tickPositions=s,this.tickPositions.info=i}}function r(){this.brokenAxis||(this.brokenAxis=new l(this))}function n(){let{isDirty:t,options:{connectNulls:e},points:i,xAxis:s,yAxis:r}=this;if(t){let t=i.length;for(;t--;){let n=i[t],o=(null!==n.y||!1!==e)&&(s?.brokenAxis?.isInAnyBreak(n.x,!0)||r?.brokenAxis?.isInAnyBreak(n.y,!0));n.visible=!o&&!1!==n.options.visible}}}function o(){this.drawBreaks(this.xAxis,["x"]),this.drawBreaks(this.yAxis,m(this.pointArrayMap,["y"]))}function a(t,e){let i,s,r,n=this,o=n.points;if(t?.brokenAxis?.hasBreaks){let a=t.brokenAxis;e.forEach(function(e){i=a?.breakArray||[],s=t.isXAxis?t.min:m(n.options.threshold,t.min);let f=t?.options?.breaks?.filter(function(t){let e=!0;for(let s=0;s<i.length;s++){let r=i[s];if(r.from===t.from&&r.to===t.to){e=!1;break}}return e});o.forEach(function(n){r=m(n["stack"+e.toUpperCase()],n[e]),i.forEach(function(e){if(x(s)&&x(r)){let i="";s<e.from&&r>e.to||s>e.from&&r<e.from?i="pointBreak":(s<e.from&&r>e.from&&r<e.to||s>e.from&&r>e.to&&r<e.from)&&(i="pointInBreak"),i&&k(t,i,{point:n,brk:e})}}),f?.forEach(function(e){k(t,"pointOutsideOfBreak",{point:n,brk:e})})})})}}function f(){let t=this.currentDataGrouping,e=t?.gapSize,i=this.points.slice(),s=this.yAxis,r=this.options.gapSize,n=i.length-1;if(r&&n>0){let t,o;for("value"!==this.options.gapUnit&&(r*=this.basePointRange),e&&e>r&&e>=this.basePointRange&&(r=e);n--;)if(o&&!1!==o.visible||(o=i[n+1]),t=i[n],!1!==o.visible&&!1!==t.visible){if(o.x-t.x>r){let e=(t.x+o.x)/2;i.splice(n+1,0,{isNull:!0,x:e}),s.stacking&&this.options.stacking&&((s.stacking.stacks[this.stackKey][e]=new(h())(s,s.options.stackLabels,!1,e,this.stack)).total=0)}o=t}}return this.getGraphPath(i)}t.compose=function(t,l){if(!t.keepProps.includes("brokenAxis")){t.keepProps.push("brokenAxis"),c(t,"init",r),c(t,"afterInit",e),c(t,"afterSetTickPositions",s),c(t,"afterSetOptions",i);let h=l.prototype;h.drawBreaks=a,h.gappedPath=f,c(l,"afterGeneratePoints",n),c(l,"afterRender",o)}return t};class l{static isInBreak(t,e){let i,s=t.repeat||1/0,r=t.from,n=t.to-t.from,o=e>=r?(e-r)%s:s-(r-e)%s;return t.inclusive?o<=n:o<n&&0!==o}static lin2Val(t){let e=this.brokenAxis,i=e?.breakArray;if(!i||!x(t))return t;let s=t,r,n;for(n=0;n<i.length&&!((r=i[n]).from>=s);n++)r.to<s?s+=r.len:l.isInBreak(r,s)&&(s+=r.len);return s}static val2Lin(t){let e=this.brokenAxis,i=e?.breakArray;if(!i||!x(t))return t;let s=t,r,n;for(n=0;n<i.length;n++)if((r=i[n]).to<=t)s-=r.len;else if(r.from>=t)break;else if(l.isInBreak(r,t)){s-=t-r.from;break}return s}constructor(t){this.hasBreaks=!1,this.axis=t}findBreakAt(t,e){return u(e,function(e){return e.from<t&&t<e.to})}isInAnyBreak(t,e){let i=this.axis,s=i.options.breaks||[],r=s.length,n,o,a;if(r&&x(t)){for(;r--;)l.isInBreak(s[r],t)&&(n=!0,o||(o=m(s[r].showPoints,!i.isXAxis)));a=n&&e?n&&!o:n}return a}setBreaks(t,e){let i=this,s=i.axis,r=s.chart.time,n=p(t)&&!!t.length&&!!Object.keys(t[0]).length;s.isDirty=i.hasBreaks!==n,i.hasBreaks=n,t?.forEach(t=>{t.from=r.parse(t.from)||0,t.to=r.parse(t.to)||0}),t!==s.options.breaks&&(s.options.breaks=s.userOptions.breaks=t),s.forceRedraw=!0,s.series.forEach(function(t){t.isDirty=!0}),n||s.val2lin!==l.val2Lin||(delete s.val2lin,delete s.lin2val),n&&(s.userOptions.ordinal=!1,s.lin2val=l.lin2Val,s.val2lin=l.val2Lin,s.setExtremes=function(t,e,r,n,o){if(i.hasBreaks){let s,r=this.options.breaks||[];for(;s=i.findBreakAt(t,r);)t=s.to;for(;s=i.findBreakAt(e,r);)e=s.from;e<t&&(e=t)}s.constructor.prototype.setExtremes.call(this,t,e,r,n,o)},s.setAxisTranslation=function(){if(s.constructor.prototype.setAxisTranslation.call(this),i.unitLength=void 0,i.hasBreaks){let t=s.options.breaks||[],e=[],r=[],n=m(s.pointRangePadding,0),o=0,a,f,h=s.userMin||s.min,c=s.userMax||s.max,u,p;t.forEach(function(t){f=t.repeat||1/0,x(h)&&x(c)&&(l.isInBreak(t,h)&&(h+=t.to%f-h%f),l.isInBreak(t,c)&&(c-=c%f-t.from%f))}),t.forEach(function(t){if(u=t.from,f=t.repeat||1/0,x(h)&&x(c)){for(;u-f>h;)u-=f;for(;u<h;)u+=f;for(p=u;p<c;p+=f)e.push({value:p,move:"in"}),e.push({value:p+t.to-t.from,move:"out",size:t.breakSize})}}),e.sort(function(t,e){return t.value===e.value?("in"!==t.move)-("in"!==e.move):t.value-e.value}),a=0,u=h,e.forEach(function(t){1===(a+="in"===t.move?1:-1)&&"in"===t.move&&(u=t.value),0===a&&x(u)&&(r.push({from:u,to:t.value,len:t.value-u-(t.size||0)}),o+=t.value-u-(t.size||0))}),i.breakArray=r,x(h)&&x(c)&&x(s.min)&&(i.unitLength=c-h-o+n,k(s,"afterBreaks"),s.staticScale?s.transA=s.staticScale:i.unitLength&&(s.transA*=(c-s.min+n)/i.unitLength),n&&(s.minPixelPadding=s.transA*(s.minPointOffset||0)),s.min=h,s.max=c)}}),m(e,!0)&&s.chart.redraw()}}t.Additions=l}(i||(i={}));let b=i,d=f();d.BrokenAxis=d.BrokenAxis||b,d.BrokenAxis.compose(d.Axis,d.Series);let v=f();return o.default})());
@@ -5,13 +5,5 @@
5
5
  *!*/
6
6
  import * as globals from "../globals.src";
7
7
  import * as _Highcharts from "../highcharts.src";
8
- /**
9
- * Adds the module to the imported Highcharts namespace.
10
- *
11
- * @param highcharts
12
- * The imported Highcharts namespace to extend.
13
- */
14
- export function factory(highcharts: typeof Highcharts): void;
15
8
  declare module "../highcharts.src" {}
16
- export default factory;
17
- export let Highcharts: typeof _Highcharts;
9
+ export default _Highcharts;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v12.2.0 (2025-04-07)
2
+ * @license Highcharts JS v12.3.0 (2025-06-21)
3
3
  * @module highcharts/modules/broken-axis
4
4
  * @requires highcharts
5
5
  *
@@ -5,13 +5,5 @@
5
5
  *!*/
6
6
  import * as globals from "../globals";
7
7
  import * as _Highcharts from "../highcharts";
8
- /**
9
- * Adds the module to the imported Highcharts namespace.
10
- *
11
- * @param highcharts
12
- * The imported Highcharts namespace to extend.
13
- */
14
- export function factory(highcharts: typeof Highcharts): void;
15
8
  declare module "../highcharts" {}
16
- export default factory;
17
- export let Highcharts: typeof _Highcharts;
9
+ export default _Highcharts;
package/modules/bullet.js CHANGED
@@ -1 +1,11 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.Series.types.column,t._Highcharts.SeriesRegistry):"function"==typeof define&&define.amd?define("highcharts/modules/bullet",["highcharts/highcharts"],function(t){return e(t,t.Series,["types"],["column"],t.SeriesRegistry)}):"object"==typeof exports?exports["highcharts/modules/bullet"]=e(t._Highcharts,t._Highcharts.Series.types.column,t._Highcharts.SeriesRegistry):t.Highcharts=e(t.Highcharts,t.Highcharts.Series.types.column,t.Highcharts.SeriesRegistry)}("undefined"==typeof window?this:window,(t,e,r)=>(()=>{"use strict";var s={448:t=>{t.exports=e},512:t=>{t.exports=r},944:e=>{e.exports=t}},i={};function o(t){var e=i[t];if(void 0!==e)return e.exports;var r=i[t]={exports:{}};return s[t](r,r.exports,o),r.exports}o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var r in e)o.o(e,r)&&!o.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var a={};o.d(a,{default:()=>w});var h=o(944),l=o.n(h),n=o(448),p=o.n(n);class d extends p().prototype.pointClass{destroy(){this.targetGraphic&&(this.targetGraphic=this.targetGraphic.destroy()),super.destroy.apply(this,arguments)}}var c=o(512),g=o.n(c);let{extend:u,isNumber:y,merge:x,pick:f,relativeLength:b}=l();class m extends p(){drawPoints(){let t=this.chart,e=this.options,r=e.animationLimit||250;for(let s of(super.drawPoints.apply(this,arguments),this.points)){let i=s.options,o=s.target,a=s.y,h,l=s.targetGraphic,n,p,d,c;if(y(o)&&null!==o){p=(d=x(e.targetOptions,i.targetOptions)).height;let g=s.shapeArgs;s.dlBox&&g&&!y(g.width)&&(g=s.dlBox),n=b(d.width,g.width),c=this.yAxis.translate(o,!1,!0,!1,!0)-d.height/2-.5,h=this.crispCol.apply({chart:t,borderWidth:d.borderWidth,options:{crisp:e.crisp}},[g.x+g.width/2-n/2,c,n,p]),l?(l[t.pointCount<r?"animate":"attr"](h),y(a)&&null!==a?l.element.point=s:l.element.point=void 0):s.targetGraphic=l=t.renderer.rect().attr(h).add(this.group),t.styledMode||l.attr({fill:f(d.color,i.color,this.zones.length&&(s.getZone.call({series:this,x:s.x,y:o,options:{}}).color||this.color)||void 0,s.color,this.color),stroke:f(d.borderColor,s.borderColor,this.options.borderColor),"stroke-width":d.borderWidth,r:d.borderRadius}),y(a)&&null!==a&&(l.element.point=s),l.addClass(s.getClassName()+" highcharts-bullet-target",!0)}else l&&(s.targetGraphic=l.destroy())}}getExtremes(t){let e=super.getExtremes.call(this,t),r=this.targetData;if(r&&r.length){let t=super.getExtremes.call(this,r);y(t.dataMin)&&(e.dataMin=Math.min(f(e.dataMin,1/0),t.dataMin)),y(t.dataMax)&&(e.dataMax=Math.max(f(e.dataMax,-1/0),t.dataMax))}return e}}m.defaultOptions=x(p().defaultOptions,{targetOptions:{width:"140%",height:3,borderWidth:0,borderRadius:0},tooltip:{pointFormat:'<span style="color:{series.color}">●</span> {series.name}: <b>{point.y}</b>. Target: <b>{point.target}</b><br/>'}}),u(m.prototype,{parallelArrays:["x","y","target"],pointArrayMap:["y","target"]}),m.prototype.pointClass=d,g().registerSeriesType("bullet",m);let w=l();return a.default})());
1
+ !/**
2
+ * Highcharts JS v12.3.0 (2025-06-21)
3
+ * @module highcharts/modules/bullet
4
+ * @requires highcharts
5
+ *
6
+ * Bullet graph series type for Highcharts
7
+ *
8
+ * (c) 2010-2025 Kacper Madej
9
+ *
10
+ * License: www.highcharts.com/license
11
+ */function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.Series.types.column,t._Highcharts.SeriesRegistry):"function"==typeof define&&define.amd?define("highcharts/modules/bullet",["highcharts/highcharts"],function(t){return e(t,t.Series,["types"],["column"],t.SeriesRegistry)}):"object"==typeof exports?exports["highcharts/modules/bullet"]=e(t._Highcharts,t._Highcharts.Series.types.column,t._Highcharts.SeriesRegistry):t.Highcharts=e(t.Highcharts,t.Highcharts.Series.types.column,t.Highcharts.SeriesRegistry)}("undefined"==typeof window?this:window,(t,e,r)=>(()=>{"use strict";var s={448:t=>{t.exports=e},512:t=>{t.exports=r},944:e=>{e.exports=t}},i={};function o(t){var e=i[t];if(void 0!==e)return e.exports;var r=i[t]={exports:{}};return s[t](r,r.exports,o),r.exports}o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var r in e)o.o(e,r)&&!o.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var a={};o.d(a,{default:()=>w});var h=o(944),l=o.n(h),n=o(448),p=o.n(n);class d extends p().prototype.pointClass{destroy(){this.targetGraphic&&(this.targetGraphic=this.targetGraphic.destroy()),super.destroy.apply(this,arguments)}}var c=o(512),g=o.n(c);let{extend:u,isNumber:y,merge:x,pick:f,relativeLength:b}=l();class m extends p(){drawPoints(){let t=this.chart,e=this.options,r=e.animationLimit||250;for(let s of(super.drawPoints.apply(this,arguments),this.points)){let i=s.options,o=s.target,a=s.y,h,l=s.targetGraphic,n,p,d,c;if(y(o)&&null!==o){p=(d=x(e.targetOptions,i.targetOptions)).height;let g=s.shapeArgs;s.dlBox&&g&&!y(g.width)&&(g=s.dlBox),n=b(d.width,g.width),c=this.yAxis.translate(o,!1,!0,!1,!0)-d.height/2-.5,h=this.crispCol.apply({chart:t,borderWidth:d.borderWidth,options:{crisp:e.crisp}},[g.x+g.width/2-n/2,c,n,p]),l?(l[t.pointCount<r?"animate":"attr"](h),y(a)&&null!==a?l.element.point=s:l.element.point=void 0):s.targetGraphic=l=t.renderer.rect().attr(h).add(this.group),t.styledMode||l.attr({fill:f(d.color,i.color,this.zones.length&&(s.getZone.call({series:this,x:s.x,y:o,options:{}}).color||this.color)||void 0,s.color,this.color),stroke:f(d.borderColor,s.borderColor,this.options.borderColor),"stroke-width":d.borderWidth,r:d.borderRadius}),y(a)&&null!==a&&(l.element.point=s),l.addClass(s.getClassName()+" highcharts-bullet-target",!0)}else l&&(s.targetGraphic=l.destroy())}}getExtremes(t){let e=super.getExtremes.call(this,t),r=this.targetData;if(r&&r.length){let t=super.getExtremes.call(this,r);y(t.dataMin)&&(e.dataMin=Math.min(f(e.dataMin,1/0),t.dataMin)),y(t.dataMax)&&(e.dataMax=Math.max(f(e.dataMax,-1/0),t.dataMax))}return e}}m.defaultOptions=x(p().defaultOptions,{targetOptions:{width:"140%",height:3,borderWidth:0,borderRadius:0},tooltip:{pointFormat:'<span style="color:{series.color}">●</span> {series.name}: <b>{point.y}</b>. Target: <b>{point.target}</b><br/>'}}),u(m.prototype,{parallelArrays:["x","y","target"],pointArrayMap:["y","target"]}),m.prototype.pointClass=d,g().registerSeriesType("bullet",m);let w=l();return a.default})());
@@ -5,13 +5,5 @@
5
5
  *!*/
6
6
  import * as globals from "../globals.src";
7
7
  import * as _Highcharts from "../highcharts.src";
8
- /**
9
- * Adds the module to the imported Highcharts namespace.
10
- *
11
- * @param highcharts
12
- * The imported Highcharts namespace to extend.
13
- */
14
- export function factory(highcharts: typeof Highcharts): void;
15
8
  declare module "../highcharts.src" {}
16
- export default factory;
17
- export let Highcharts: typeof _Highcharts;
9
+ export default _Highcharts;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v12.2.0 (2025-04-07)
2
+ * @license Highcharts JS v12.3.0 (2025-06-21)
3
3
  * @module highcharts/modules/bullet
4
4
  * @requires highcharts
5
5
  *
@@ -5,13 +5,6 @@
5
5
  *!*/
6
6
  import * as globals from "../globals";
7
7
  import * as _Highcharts from "../highcharts";
8
- /**
9
- * Adds the module to the imported Highcharts namespace.
10
- *
11
- * @param highcharts
12
- * The imported Highcharts namespace to extend.
13
- */
14
- export function factory(highcharts: typeof Highcharts): void;
15
8
  declare module "../highcharts" {
16
9
  /**
17
10
  * The ColorAxis object for inclusion in gradient legends.
@@ -81,5 +74,4 @@ declare module "../highcharts" {
81
74
  update(newOptions: ColorAxisOptions, redraw?: boolean): void;
82
75
  }
83
76
  }
84
- export default factory;
85
- export let Highcharts: typeof _Highcharts;
77
+ export default _Highcharts;
@@ -1 +1,11 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.Axis,t._Highcharts.Color,t._Highcharts.LegendSymbol,t._Highcharts.SeriesRegistry):"function"==typeof define&&define.amd?define("highcharts/modules/coloraxis",["highcharts/highcharts"],function(t){return e(t,t.Axis,t.Color,t.LegendSymbol,t.SeriesRegistry)}):"object"==typeof exports?exports["highcharts/modules/coloraxis"]=e(t._Highcharts,t._Highcharts.Axis,t._Highcharts.Color,t._Highcharts.LegendSymbol,t._Highcharts.SeriesRegistry):t.Highcharts=e(t.Highcharts,t.Highcharts.Axis,t.Highcharts.Color,t.Highcharts.LegendSymbol,t.Highcharts.SeriesRegistry)}("undefined"==typeof window?this:window,(t,e,s,i,o)=>(()=>{"use strict";var r,l,a={500:t=>{t.exports=i},512:t=>{t.exports=o},532:t=>{t.exports=e},620:t=>{t.exports=s},944:e=>{e.exports=t}},h={};function n(t){var e=h[t];if(void 0!==e)return e.exports;var s=h[t]={exports:{}};return a[t](s,s.exports,n),s.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var s in e)n.o(e,s)&&!n.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var d={};n.d(d,{default:()=>N});var c=n(944),p=n.n(c),g=n(532),f=n.n(g),u=n(620),m=n.n(u);let{parse:x}=m(),{addEvent:y,extend:b,merge:C,pick:v,splat:A}=p();!function(t){let e;function s(){let{userOptions:t}=this;this.colorAxis=[],t.colorAxis&&(t.colorAxis=A(t.colorAxis),t.colorAxis.map(t=>new e(this,t)))}function i(t){let e=this.chart.colorAxis||[],s=e=>{let s=t.allItems.indexOf(e);-1!==s&&(this.destroyItem(t.allItems[s]),t.allItems.splice(s,1))},i=[],o,r;for(e.forEach(function(t){o=t.options,o?.showInLegend&&(o.dataClasses&&o.visible?i=i.concat(t.getDataClassLegendSymbols()):o.visible&&i.push(t),t.series.forEach(function(t){(!t.options.showInLegend||o.dataClasses)&&("point"===t.options.legendType?t.points.forEach(function(t){s(t)}):s(t))}))}),r=i.length;r--;)t.allItems.unshift(i[r])}function o(t){t.visible&&t.item.legendColor&&t.item.legendItem.symbol.attr({fill:t.item.legendColor})}function r(t){this.chart.colorAxis?.forEach(e=>{e.update({},t.redraw)})}function l(){(this.chart.colorAxis?.length||this.colorAttribs)&&this.translateColors()}function a(){let t=this.axisTypes;t?-1===t.indexOf("colorAxis")&&t.push("colorAxis"):this.axisTypes=["colorAxis"]}function h(t){let e=this,s=t?"show":"hide";e.visible=e.options.visible=!!t,["graphic","dataLabel"].forEach(function(t){e[t]&&e[t][s]()}),this.series.buildKDTree()}function n(){let t=this,e=this.getPointsCollection(),s=this.options.nullColor,i=this.colorAxis,o=this.colorKey;e.forEach(e=>{let r=e.getNestedProperty(o),l=e.options.color||(e.isNull||null===e.value?s:i&&void 0!==r?i.toColor(r,e):e.color||t.color);l&&e.color!==l&&(e.color=l,"point"===t.options.legendType&&e.legendItem&&e.legendItem.label&&t.chart.legend.colorizeItem(e,e.visible))})}function d(){this.elem.attr("fill",x(this.start).tweenTo(x(this.end),this.pos),void 0,!0)}function c(){this.elem.attr("stroke",x(this.start).tweenTo(x(this.end),this.pos),void 0,!0)}t.compose=function(t,p,g,f,u){let m=p.prototype,x=g.prototype,A=u.prototype;m.collectionsWithUpdate.includes("colorAxis")||(e=t,m.collectionsWithUpdate.push("colorAxis"),m.collectionsWithInit.colorAxis=[m.addColorAxis],y(p,"afterCreateAxes",s),function(t){let s=t.prototype.createAxis;t.prototype.createAxis=function(t,i){if("colorAxis"!==t)return s.apply(this,arguments);let o=new e(this,C(i.axis,{index:this[t].length,isX:!1}));return this.isDirtyLegend=!0,this.axes.forEach(t=>{t.series=[]}),this.series.forEach(t=>{t.bindAxes(),t.isDirtyData=!0}),v(i.redraw,!0)&&this.redraw(i.animation),o}}(p),x.fillSetter=d,x.strokeSetter=c,y(f,"afterGetAllItems",i),y(f,"afterColorizeItem",o),y(f,"afterUpdate",r),b(A,{optionalAxis:"colorAxis",translateColors:n}),b(A.pointClass.prototype,{setVisible:h}),y(u,"afterTranslate",l,{order:1}),y(u,"bindAxes",a))},t.pointSetVisible=h}(r||(r={}));let I=r,{parse:L}=m(),{merge:w}=p();!function(t){t.initDataClasses=function(t){let e=this.chart,s=this.legendItem=this.legendItem||{},i=this.options,o=t.dataClasses||[],r,l,a=e.options.chart.colorCount,h=0,n;this.dataClasses=l=[],s.labels=[];for(let t=0,s=o.length;t<s;++t)r=w(r=o[t]),l.push(r),(e.styledMode||!r.color)&&("category"===i.dataClassColor?(e.styledMode||(a=(n=e.options.colors||[]).length,r.color=n[h]),r.colorIndex=h,++h===a&&(h=0)):r.color=L(i.minColor).tweenTo(L(i.maxColor),s<2?.5:t/(s-1)))},t.initStops=function(){let t=this.options,e=this.stops=t.stops||[[0,t.minColor||""],[1,t.maxColor||""]];for(let t=0,s=e.length;t<s;++t)e[t].color=L(e[t][1])},t.normalizedValue=function(t){let e=this.max||0,s=this.min||0;return this.logarithmic&&(t=this.logarithmic.log2lin(t)),1-(e-t)/(e-s||1)},t.toColor=function(t,e){let s,i,o,r,l,a,h=this.dataClasses,n=this.stops;if(h){for(a=h.length;a--;)if(i=(l=h[a]).from,o=l.to,(void 0===i||t>=i)&&(void 0===o||t<=o)){r=l.color,e&&(e.dataClass=a,e.colorIndex=l.colorIndex);break}}else{for(s=this.normalizedValue(t),a=n.length;a--&&!(s>n[a][0]););i=n[a]||n[a+1],s=1-((o=n[a+1]||i)[0]-s)/(o[0]-i[0]||1),r=i.color.tweenTo(o.color,s)}return r}}(l||(l={}));let S=l;var M=n(500),P=n.n(M),D=n(512),H=n.n(D);let{defaultOptions:k}=p(),{series:z}=H(),{defined:E,extend:O,fireEvent:V,isArray:T,isNumber:_,merge:W,pick:j,relativeLength:K}=p();k.colorAxis=W(k.xAxis,{lineWidth:0,minPadding:0,maxPadding:0,gridLineColor:"#ffffff",gridLineWidth:1,tickPixelInterval:72,startOnTick:!0,endOnTick:!0,offset:0,marker:{animation:{duration:50},width:.01,color:"#999999"},labels:{distance:8,overflow:"justify",rotation:0},minColor:"#e6e9ff",maxColor:"#0022ff",tickLength:5,showInLegend:!0});class R extends f(){static compose(t,e,s,i){I.compose(R,t,e,s,i)}constructor(t,e){super(t,e),this.coll="colorAxis",this.visible=!0,this.init(t,e)}init(t,e){let s=t.options.legend||{},i=e.layout?"vertical"!==e.layout:"vertical"!==s.layout;this.side=e.side||i?2:1,this.reversed=e.reversed||!i,this.opposite=!i,super.init(t,e,"colorAxis"),this.userOptions=e,T(t.userOptions.colorAxis)&&(t.userOptions.colorAxis[this.index]=e),e.dataClasses&&this.initDataClasses(e),this.initStops(),this.horiz=i,this.zoomEnabled=!1}hasData(){return!!(this.tickPositions||[]).length}setTickPositions(){if(!this.dataClasses)return super.setTickPositions()}setOptions(t){let e=W(k.colorAxis,t,{showEmpty:!1,title:null,visible:this.chart.options.legend.enabled&&!1!==t.visible});super.setOptions(e),this.options.crosshair=this.options.marker}setAxisSize(){let t=this.chart,e=this.legendItem?.symbol,{width:s,height:i}=this.getSize();e&&(this.left=+e.attr("x"),this.top=+e.attr("y"),this.width=s=+e.attr("width"),this.height=i=+e.attr("height"),this.right=t.chartWidth-this.left-s,this.bottom=t.chartHeight-this.top-i,this.pos=this.horiz?this.left:this.top),this.len=(this.horiz?s:i)||R.defaultLegendLength}getOffset(){let t=this.legendItem?.group,e=this.chart.axisOffset[this.side];if(t){this.axisParent=t,super.getOffset();let s=this.chart.legend;s.allItems.forEach(function(t){t instanceof R&&t.drawLegendSymbol(s,t)}),s.render(),this.chart.getMargins(!0),this.chart.series.some(t=>t.isDrilling)||(this.isDirty=!0),this.added||(this.added=!0,this.labelLeft=0,this.labelRight=this.width),this.chart.axisOffset[this.side]=e}}setLegendColor(){let t=this.horiz,e=this.reversed,s=+!!e,i=+!e,o=t?[s,0,i,0]:[0,i,0,s];this.legendColor={linearGradient:{x1:o[0],y1:o[1],x2:o[2],y2:o[3]},stops:this.stops}}drawLegendSymbol(t,e){let s=e.legendItem||{},i=t.padding,o=t.options,r=this.options.labels,l=j(o.itemDistance,10),a=this.horiz,{width:h,height:n}=this.getSize(),d=j(o.labelPadding,a?16:30);this.setLegendColor(),s.symbol||(s.symbol=this.chart.renderer.symbol("roundedRect").attr({r:o.symbolRadius??3,zIndex:1}).add(s.group)),s.symbol.attr({x:0,y:(t.baseline||0)-11,width:h,height:n}),s.labelWidth=h+i+(a?l:j(r.x,r.distance)+(this.maxLabelLength||0)),s.labelHeight=n+i+(a?d:0)}setState(t){this.series.forEach(function(e){e.setState(t)})}setVisible(){}getSeriesExtremes(){let t=this.series,e,s,i,o,r=t.length;for(this.dataMin=1/0,this.dataMax=-1/0;r--;){for(let l of(s=(o=t[r]).colorKey=j(o.options.colorKey,o.colorKey,o.pointValKey,o.zoneAxis,"y"),i=o[s+"Min"]&&o[s+"Max"],[s,"value","y"]))if((e=o.getColumn(l)).length)break;if(i)o.minColorValue=o[s+"Min"],o.maxColorValue=o[s+"Max"];else{let t=z.prototype.getExtremes.call(o,e);o.minColorValue=t.dataMin,o.maxColorValue=t.dataMax}E(o.minColorValue)&&E(o.maxColorValue)&&(this.dataMin=Math.min(this.dataMin,o.minColorValue),this.dataMax=Math.max(this.dataMax,o.maxColorValue)),i||z.prototype.applyExtremes.call(o)}}drawCrosshair(t,e){let s,i=this.legendItem||{},o=e?.plotX,r=e?.plotY,l=this.pos,a=this.len;e&&((s=this.toPixels(e.getNestedProperty(e.series.colorKey)))<l?s=l-2:s>l+a&&(s=l+a+2),e.plotX=s,e.plotY=this.len-s,super.drawCrosshair(t,e),e.plotX=o,e.plotY=r,this.cross&&!this.cross.addedToColorAxis&&i.group&&(this.cross.addClass("highcharts-coloraxis-marker").add(i.group),this.cross.addedToColorAxis=!0,this.chart.styledMode||"object"!=typeof this.crosshair||this.cross.attr({fill:this.crosshair.color})))}getPlotLinePath(t){let e=this.left,s=t.translatedValue,i=this.top;return _(s)?this.horiz?[["M",s-4,i-6],["L",s+4,i-6],["L",s,i],["Z"]]:[["M",e,s],["L",e-6,s+6],["L",e-6,s-6],["Z"]]:super.getPlotLinePath(t)}update(t,e){let s=this.chart.legend;this.series.forEach(t=>{t.isDirtyData=!0}),(t.dataClasses&&s.allItems||this.dataClasses)&&this.destroyItems(),super.update(t,e),this.legendItem?.label&&(this.setLegendColor(),s.colorizeItem(this,!0))}destroyItems(){let t=this.chart,e=this.legendItem||{};if(e.label)t.legend.destroyItem(this);else if(e.labels)for(let s of e.labels)t.legend.destroyItem(s);t.isDirtyLegend=!0}destroy(){this.chart.isDirtyLegend=!0,this.destroyItems(),super.destroy(...[].slice.call(arguments))}remove(t){this.destroyItems(),super.remove(t)}getDataClassLegendSymbols(){let t,e=this,s=e.chart,i=e.legendItem&&e.legendItem.labels||[],o=s.options.legend,r=j(o.valueDecimals,-1),l=j(o.valueSuffix,""),a=t=>e.series.reduce((e,s)=>(e.push(...s.points.filter(e=>e.dataClass===t)),e),[]);return i.length||e.dataClasses.forEach((o,h)=>{let n=o.from,d=o.to,{numberFormatter:c}=s,p=!0;t="",void 0===n?t="< ":void 0===d&&(t="> "),void 0!==n&&(t+=c(n,r)+l),void 0!==n&&void 0!==d&&(t+=" - "),void 0!==d&&(t+=c(d,r)+l),i.push(O({chart:s,name:t,options:{},drawLegendSymbol:P().rectangle,visible:!0,isDataClass:!0,setState:t=>{for(let e of a(h))e.setState(t)},setVisible:function(){this.visible=p=e.visible=!p;let t=[];for(let e of a(h))e.setVisible(p),e.hiddenInDataClass=!p,-1===t.indexOf(e.series)&&t.push(e.series);s.legend.colorizeItem(this,p),t.forEach(t=>{V(t,"afterDataClassLegendClick")})}},o))}),i}getSize(){let{chart:t,horiz:e}=this,{height:s,width:i}=this.options,{legend:o}=t.options;return{width:j(E(i)?K(i,t.chartWidth):void 0,o?.symbolWidth,e?R.defaultLegendLength:12),height:j(E(s)?K(s,t.chartHeight):void 0,o?.symbolHeight,e?12:R.defaultLegendLength)}}}R.defaultLegendLength=200,R.keepProps=["legendItem"],O(R.prototype,S),Array.prototype.push.apply(f().keepProps,R.keepProps);let X=p();X.ColorAxis=X.ColorAxis||R,X.ColorAxis.compose(X.Chart,X.Fx,X.Legend,X.Series);let N=p();return d.default})());
1
+ !/**
2
+ * Highcharts JS v12.3.0 (2025-06-21)
3
+ * @module highcharts/modules/color-axis
4
+ * @requires highcharts
5
+ *
6
+ * ColorAxis module
7
+ *
8
+ * (c) 2012-2025 Pawel Potaczek
9
+ *
10
+ * License: www.highcharts.com/license
11
+ */function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.Axis,t._Highcharts.Color,t._Highcharts.LegendSymbol,t._Highcharts.SeriesRegistry):"function"==typeof define&&define.amd?define("highcharts/modules/coloraxis",["highcharts/highcharts"],function(t){return e(t,t.Axis,t.Color,t.LegendSymbol,t.SeriesRegistry)}):"object"==typeof exports?exports["highcharts/modules/coloraxis"]=e(t._Highcharts,t._Highcharts.Axis,t._Highcharts.Color,t._Highcharts.LegendSymbol,t._Highcharts.SeriesRegistry):t.Highcharts=e(t.Highcharts,t.Highcharts.Axis,t.Highcharts.Color,t.Highcharts.LegendSymbol,t.Highcharts.SeriesRegistry)}("undefined"==typeof window?this:window,(t,e,s,i,o)=>(()=>{"use strict";var r,l,a={500:t=>{t.exports=i},512:t=>{t.exports=o},532:t=>{t.exports=e},620:t=>{t.exports=s},944:e=>{e.exports=t}},h={};function n(t){var e=h[t];if(void 0!==e)return e.exports;var s=h[t]={exports:{}};return a[t](s,s.exports,n),s.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var s in e)n.o(e,s)&&!n.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var d={};n.d(d,{default:()=>N});var c=n(944),p=n.n(c),g=n(532),f=n.n(g),u=n(620),m=n.n(u);let{parse:x}=m(),{addEvent:y,extend:b,merge:C,pick:v,splat:A}=p();!function(t){let e;function s(){let{userOptions:t}=this;this.colorAxis=[],t.colorAxis&&(t.colorAxis=A(t.colorAxis),t.colorAxis.map(t=>new e(this,t)))}function i(t){let e=this.chart.colorAxis||[],s=e=>{let s=t.allItems.indexOf(e);-1!==s&&(this.destroyItem(t.allItems[s]),t.allItems.splice(s,1))},i=[],o,r;for(e.forEach(function(t){o=t.options,o?.showInLegend&&(o.dataClasses&&o.visible?i=i.concat(t.getDataClassLegendSymbols()):o.visible&&i.push(t),t.series.forEach(function(t){(!t.options.showInLegend||o.dataClasses)&&("point"===t.options.legendType?t.points.forEach(function(t){s(t)}):s(t))}))}),r=i.length;r--;)t.allItems.unshift(i[r])}function o(t){t.visible&&t.item.legendColor&&t.item.legendItem.symbol.attr({fill:t.item.legendColor})}function r(t){this.chart.colorAxis?.forEach(e=>{e.update({},t.redraw)})}function l(){(this.chart.colorAxis?.length||this.colorAttribs)&&this.translateColors()}function a(){let t=this.axisTypes;t?-1===t.indexOf("colorAxis")&&t.push("colorAxis"):this.axisTypes=["colorAxis"]}function h(t){let e=this,s=t?"show":"hide";e.visible=e.options.visible=!!t,["graphic","dataLabel"].forEach(function(t){e[t]&&e[t][s]()}),this.series.buildKDTree()}function n(){let t=this,e=this.getPointsCollection(),s=this.options.nullColor,i=this.colorAxis,o=this.colorKey;e.forEach(e=>{let r=e.getNestedProperty(o),l=e.options.color||(e.isNull||null===e.value?s:i&&void 0!==r?i.toColor(r,e):e.color||t.color);l&&e.color!==l&&(e.color=l,"point"===t.options.legendType&&e.legendItem&&e.legendItem.label&&t.chart.legend.colorizeItem(e,e.visible))})}function d(){this.elem.attr("fill",x(this.start).tweenTo(x(this.end),this.pos),void 0,!0)}function c(){this.elem.attr("stroke",x(this.start).tweenTo(x(this.end),this.pos),void 0,!0)}t.compose=function(t,p,g,f,u){let m=p.prototype,x=g.prototype,A=u.prototype;m.collectionsWithUpdate.includes("colorAxis")||(e=t,m.collectionsWithUpdate.push("colorAxis"),m.collectionsWithInit.colorAxis=[m.addColorAxis],y(p,"afterCreateAxes",s),function(t){let s=t.prototype.createAxis;t.prototype.createAxis=function(t,i){if("colorAxis"!==t)return s.apply(this,arguments);let o=new e(this,C(i.axis,{index:this[t].length,isX:!1}));return this.isDirtyLegend=!0,this.axes.forEach(t=>{t.series=[]}),this.series.forEach(t=>{t.bindAxes(),t.isDirtyData=!0}),v(i.redraw,!0)&&this.redraw(i.animation),o}}(p),x.fillSetter=d,x.strokeSetter=c,y(f,"afterGetAllItems",i),y(f,"afterColorizeItem",o),y(f,"afterUpdate",r),b(A,{optionalAxis:"colorAxis",translateColors:n}),b(A.pointClass.prototype,{setVisible:h}),y(u,"afterTranslate",l,{order:1}),y(u,"bindAxes",a))},t.pointSetVisible=h}(r||(r={}));let I=r,{parse:L}=m(),{merge:w}=p();!function(t){t.initDataClasses=function(t){let e=this.chart,s=this.legendItem=this.legendItem||{},i=this.options,o=t.dataClasses||[],r,l,a=e.options.chart.colorCount,h=0,n;this.dataClasses=l=[],s.labels=[];for(let t=0,s=o.length;t<s;++t)r=w(r=o[t]),l.push(r),(e.styledMode||!r.color)&&("category"===i.dataClassColor?(e.styledMode||(a=(n=e.options.colors||[]).length,r.color=n[h]),r.colorIndex=h,++h===a&&(h=0)):r.color=L(i.minColor).tweenTo(L(i.maxColor),s<2?.5:t/(s-1)))},t.initStops=function(){let t=this.options,e=this.stops=t.stops||[[0,t.minColor||""],[1,t.maxColor||""]];for(let t=0,s=e.length;t<s;++t)e[t].color=L(e[t][1])},t.normalizedValue=function(t){let e=this.max||0,s=this.min||0;return this.logarithmic&&(t=this.logarithmic.log2lin(t)),1-(e-t)/(e-s||1)},t.toColor=function(t,e){let s,i,o,r,l,a,h=this.dataClasses,n=this.stops;if(h){for(a=h.length;a--;)if(i=(l=h[a]).from,o=l.to,(void 0===i||t>=i)&&(void 0===o||t<=o)){r=l.color,e&&(e.dataClass=a,e.colorIndex=l.colorIndex);break}}else{for(s=this.normalizedValue(t),a=n.length;a--&&!(s>n[a][0]););i=n[a]||n[a+1],s=1-((o=n[a+1]||i)[0]-s)/(o[0]-i[0]||1),r=i.color.tweenTo(o.color,s)}return r}}(l||(l={}));let S=l;var M=n(500),P=n.n(M),D=n(512),H=n.n(D);let{defaultOptions:k}=p(),{series:z}=H(),{defined:E,extend:O,fireEvent:V,isArray:T,isNumber:_,merge:W,pick:j,relativeLength:K}=p();k.colorAxis=W(k.xAxis,{lineWidth:0,minPadding:0,maxPadding:0,gridLineColor:"#ffffff",gridLineWidth:1,tickPixelInterval:72,startOnTick:!0,endOnTick:!0,offset:0,marker:{animation:{duration:50},width:.01,color:"#999999"},labels:{distance:8,overflow:"justify",rotation:0},minColor:"#e6e9ff",maxColor:"#0022ff",tickLength:5,showInLegend:!0});class R extends f(){static compose(t,e,s,i){I.compose(R,t,e,s,i)}constructor(t,e){super(t,e),this.coll="colorAxis",this.visible=!0,this.init(t,e)}init(t,e){let s=t.options.legend||{},i=e.layout?"vertical"!==e.layout:"vertical"!==s.layout;this.side=e.side||i?2:1,this.reversed=e.reversed||!i,this.opposite=!i,super.init(t,e,"colorAxis"),this.userOptions=e,T(t.userOptions.colorAxis)&&(t.userOptions.colorAxis[this.index]=e),e.dataClasses&&this.initDataClasses(e),this.initStops(),this.horiz=i,this.zoomEnabled=!1}hasData(){return!!(this.tickPositions||[]).length}setTickPositions(){if(!this.dataClasses)return super.setTickPositions()}setOptions(t){let e=W(k.colorAxis,t,{showEmpty:!1,title:null,visible:this.chart.options.legend.enabled&&!1!==t.visible});super.setOptions(e),this.options.crosshair=this.options.marker}setAxisSize(){let t=this.chart,e=this.legendItem?.symbol,{width:s,height:i}=this.getSize();e&&(this.left=+e.attr("x"),this.top=+e.attr("y"),this.width=s=+e.attr("width"),this.height=i=+e.attr("height"),this.right=t.chartWidth-this.left-s,this.bottom=t.chartHeight-this.top-i,this.pos=this.horiz?this.left:this.top),this.len=(this.horiz?s:i)||R.defaultLegendLength}getOffset(){let t=this.legendItem?.group,e=this.chart.axisOffset[this.side];if(t){this.axisParent=t,super.getOffset();let s=this.chart.legend;s.allItems.forEach(function(t){t instanceof R&&t.drawLegendSymbol(s,t)}),s.render(),this.chart.getMargins(!0),this.chart.series.some(t=>t.isDrilling)||(this.isDirty=!0),this.added||(this.added=!0,this.labelLeft=0,this.labelRight=this.width),this.chart.axisOffset[this.side]=e}}setLegendColor(){let t=this.horiz,e=this.reversed,s=+!!e,i=+!e,o=t?[s,0,i,0]:[0,i,0,s];this.legendColor={linearGradient:{x1:o[0],y1:o[1],x2:o[2],y2:o[3]},stops:this.stops}}drawLegendSymbol(t,e){let s=e.legendItem||{},i=t.padding,o=t.options,r=this.options.labels,l=j(o.itemDistance,10),a=this.horiz,{width:h,height:n}=this.getSize(),d=j(o.labelPadding,a?16:30);this.setLegendColor(),s.symbol||(s.symbol=this.chart.renderer.symbol("roundedRect").attr({r:o.symbolRadius??3,zIndex:1}).add(s.group)),s.symbol.attr({x:0,y:(t.baseline||0)-11,width:h,height:n}),s.labelWidth=h+i+(a?l:j(r.x,r.distance)+(this.maxLabelLength||0)),s.labelHeight=n+i+(a?d:0)}setState(t){this.series.forEach(function(e){e.setState(t)})}setVisible(){}getSeriesExtremes(){let t=this.series,e,s,i,o,r=t.length;for(this.dataMin=1/0,this.dataMax=-1/0;r--;){for(let l of(s=(o=t[r]).colorKey=j(o.options.colorKey,o.colorKey,o.pointValKey,o.zoneAxis,"y"),i=o[s+"Min"]&&o[s+"Max"],[s,"value","y"]))if((e=o.getColumn(l)).length)break;if(i)o.minColorValue=o[s+"Min"],o.maxColorValue=o[s+"Max"];else{let t=z.prototype.getExtremes.call(o,e);o.minColorValue=t.dataMin,o.maxColorValue=t.dataMax}E(o.minColorValue)&&E(o.maxColorValue)&&(this.dataMin=Math.min(this.dataMin,o.minColorValue),this.dataMax=Math.max(this.dataMax,o.maxColorValue)),i||z.prototype.applyExtremes.call(o)}}drawCrosshair(t,e){let s,i=this.legendItem||{},o=e?.plotX,r=e?.plotY,l=this.pos,a=this.len;e&&((s=this.toPixels(e.getNestedProperty(e.series.colorKey)))<l?s=l-2:s>l+a&&(s=l+a+2),e.plotX=s,e.plotY=this.len-s,super.drawCrosshair(t,e),e.plotX=o,e.plotY=r,this.cross&&!this.cross.addedToColorAxis&&i.group&&(this.cross.addClass("highcharts-coloraxis-marker").add(i.group),this.cross.addedToColorAxis=!0,this.chart.styledMode||"object"!=typeof this.crosshair||this.cross.attr({fill:this.crosshair.color})))}getPlotLinePath(t){let e=this.left,s=t.translatedValue,i=this.top;return _(s)?this.horiz?[["M",s-4,i-6],["L",s+4,i-6],["L",s,i],["Z"]]:[["M",e,s],["L",e-6,s+6],["L",e-6,s-6],["Z"]]:super.getPlotLinePath(t)}update(t,e){let s=this.chart.legend;this.series.forEach(t=>{t.isDirtyData=!0}),(t.dataClasses&&s.allItems||this.dataClasses)&&this.destroyItems(),super.update(t,e),this.legendItem?.label&&(this.setLegendColor(),s.colorizeItem(this,!0))}destroyItems(){let t=this.chart,e=this.legendItem||{};if(e.label)t.legend.destroyItem(this);else if(e.labels)for(let s of e.labels)t.legend.destroyItem(s);t.isDirtyLegend=!0}destroy(){this.chart.isDirtyLegend=!0,this.destroyItems(),super.destroy(...[].slice.call(arguments))}remove(t){this.destroyItems(),super.remove(t)}getDataClassLegendSymbols(){let t,e=this,s=e.chart,i=e.legendItem&&e.legendItem.labels||[],o=s.options.legend,r=j(o.valueDecimals,-1),l=j(o.valueSuffix,""),a=t=>e.series.reduce((e,s)=>(e.push(...s.points.filter(e=>e.dataClass===t)),e),[]);return i.length||e.dataClasses.forEach((o,h)=>{let n=o.from,d=o.to,{numberFormatter:c}=s,p=!0;t="",void 0===n?t="< ":void 0===d&&(t="> "),void 0!==n&&(t+=c(n,r)+l),void 0!==n&&void 0!==d&&(t+=" - "),void 0!==d&&(t+=c(d,r)+l),i.push(O({chart:s,name:t,options:{},drawLegendSymbol:P().rectangle,visible:!0,isDataClass:!0,setState:t=>{for(let e of a(h))e.setState(t)},setVisible:function(){this.visible=p=e.visible=!p;let t=[];for(let e of a(h))e.setVisible(p),e.hiddenInDataClass=!p,-1===t.indexOf(e.series)&&t.push(e.series);s.legend.colorizeItem(this,p),t.forEach(t=>{V(t,"afterDataClassLegendClick")})}},o))}),i}getSize(){let{chart:t,horiz:e}=this,{height:s,width:i}=this.options,{legend:o}=t.options;return{width:j(E(i)?K(i,t.chartWidth):void 0,o?.symbolWidth,e?R.defaultLegendLength:12),height:j(E(s)?K(s,t.chartHeight):void 0,o?.symbolHeight,e?12:R.defaultLegendLength)}}}R.defaultLegendLength=200,R.keepProps=["legendItem"],O(R.prototype,S),Array.prototype.push.apply(f().keepProps,R.keepProps);let X=p();X.ColorAxis=X.ColorAxis||R,X.ColorAxis.compose(X.Chart,X.Fx,X.Legend,X.Series);let N=p();return d.default})());
@@ -5,13 +5,6 @@
5
5
  *!*/
6
6
  import * as globals from "../globals.src";
7
7
  import * as _Highcharts from "../highcharts.src";
8
- /**
9
- * Adds the module to the imported Highcharts namespace.
10
- *
11
- * @param highcharts
12
- * The imported Highcharts namespace to extend.
13
- */
14
- export function factory(highcharts: typeof Highcharts): void;
15
8
  declare module "../highcharts.src" {
16
9
  /**
17
10
  * The ColorAxis object for inclusion in gradient legends.
@@ -81,5 +74,4 @@ declare module "../highcharts.src" {
81
74
  update(newOptions: ColorAxisOptions, redraw?: boolean): void;
82
75
  }
83
76
  }
84
- export default factory;
85
- export let Highcharts: typeof _Highcharts;
77
+ export default _Highcharts;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v12.2.0 (2025-04-07)
2
+ * @license Highcharts JS v12.3.0 (2025-06-21)
3
3
  * @module highcharts/modules/color-axis
4
4
  * @requires highcharts
5
5
  *
@@ -5,13 +5,5 @@
5
5
  *!*/
6
6
  import * as globals from "../globals";
7
7
  import * as _Highcharts from "../highcharts";
8
- /**
9
- * Adds the module to the imported Highcharts namespace.
10
- *
11
- * @param highcharts
12
- * The imported Highcharts namespace to extend.
13
- */
14
- export function factory(highcharts: typeof Highcharts): void;
15
8
  declare module "../highcharts" {}
16
- export default factory;
17
- export let Highcharts: typeof _Highcharts;
9
+ export default _Highcharts;