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
@@ -1 +1,9 @@
1
- import*as t from"../highcharts.js";var o={};o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var i in e)o.o(e,i)&&!o.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},o.o=(t,o)=>Object.prototype.hasOwnProperty.call(t,o);let e=t.default;var i=o.n(e);let s=t.default.SeriesRegistry;var r=o.n(s);let{seriesTypes:{mapline:{prototype:{pointClass:n}}}}=r(),{pick:a,isString:p,isNumber:l}=i(),h=class extends n{isValid(){let t=!!(this.options.to&&this.options.from);return[this.options.to,this.options.from].forEach(function(o){t=!!(t&&o&&(p(o)||l(a(o[0],o.lat))&&l(a(o[1],o.lon))))}),t}},{series:{prototype:{pointClass:d}},seriesTypes:{column:f,map:m,mapline:g}}=r(),{addEvent:y,arrayMax:c,arrayMin:u,defined:w,extend:x,isArray:P,merge:b,pick:L,relativeLength:W}=i();class k extends g{static getLength(t,o){return Math.sqrt(t*t+o*o)}static normalize(t,o){let e=this.getLength(t,o);return[t/e,o/e]}static markerEndPath(t,o,e,i){let s=W(i.width||0,this.getLength(o[0]-t[0],o[1]-t[1])),r=i.markerType||"arrow",[n,a]=this.normalize(o[0]-t[0],o[1]-t[1]),p=[];if("arrow"===r){let[i,r]=t;i-=n*s,r-=a*s,p.push(["L",i,r]),p.push(["L",e[0],e[1]]),[i,r]=o,i+=n*s,r+=a*s,p.push(["L",i,r])}if("mushroom"===r){let[i,r]=t,[l,h]=o,[d,f]=e,m=(l-i)/2+i,g=(h-r)/2+r;i-=n*s,r-=a*s,p.push(["L",i,r]),l+=n*s,h+=a*s,p.push(["Q",(d-m)*2+m,(f-g)*2+g,l,h])}return p}animate(t){let o=this.points;t||o.forEach(t=>{if(t.shapeArgs&&P(t.shapeArgs.d)&&t.shapeArgs.d.length){let o=t.shapeArgs.d,e=o[0][1],i=o[0][2];if(e&&i){let s=[];for(let t=0;t<o.length;t++){s.push([...o[t]]);for(let r=1;r<o[t].length;r++)s[t][r]=r%2?e:i}t.graphic&&(t.graphic.attr({d:s}),t.graphic.animate({d:o}))}}})}getLinkWidth(t){let o=this.options.width,e=t.options.weight||this.options.weight;if(t.options.weight=e,o&&!e)return o;let i=this.smallestWeight,s=this.greatestWeight;if(!w(e)||!i||!s)return 0;let r=this.options.minWidth;return(e-i)*(this.options.maxWidth-r)/(s-i||1)+r}autoCurve(t,o,e,i,s,r){let n={x:e-t,y:i-o},a={x:(e-t)/2+t,y:(i-o)/2+o},p={x:a.x-s,y:a.y-r},l=n.x*p.x+n.y*p.y,h=Math.atan2(n.x*p.y-n.y*p.x,l),d=180*h/Math.PI;return d<0&&(d=360+d),-(.7*Math.sin(h=d*Math.PI/180))}pointAttribs(t,o){let e=m.prototype.pointAttribs.call(this,t,o);return e.fill=L(t.options.fillColor,t.options.color,"none"===this.options.fillColor?null:this.options.fillColor,this.color),e["fill-opacity"]=L(t.options.fillOpacity,this.options.fillOpacity),e["stroke-width"]=L(t.options.lineWidth,this.options.lineWidth,1),t.options.opacity&&(e.opacity=t.options.opacity),e}translate(){this.chart.hasRendered&&(this.isDirtyData||!this.hasRendered)&&(this.processData(),this.generatePoints());let t=[],o=0,e=0;this.points.forEach(i=>{let s,r,n=this.chart,a=n.mapView,p=i.options,l=()=>{i.series.isDirty=!0},h=t=>{let o=n.get(t);if(o instanceof d&&o.plotX&&o.plotY)return y(o,"update",l),{x:o.plotX,y:o.plotY}},f=t=>P(t)?{lon:t[0],lat:t[1]}:t;"string"==typeof p.from?s=h(p.from):"object"==typeof p.from&&a&&(s=a.lonLatToPixels(f(p.from))),"string"==typeof p.to?r=h(p.to):"object"==typeof p.to&&a&&(r=a.lonLatToPixels(f(p.to))),i.fromPos=s,i.toPos=r,s&&r&&(o+=(s.x+r.x)/2,e+=(s.y+r.y)/2),L(i.options.weight,this.options.weight)&&t.push(L(i.options.weight,this.options.weight))}),this.smallestWeight=u(t),this.greatestWeight=c(t),this.centerOfPoints={x:o/this.points.length,y:e/this.points.length},this.points.forEach(t=>{if(!this.getLinkWidth(t)){t.shapeArgs={d:[]};return}t.fromPos&&(t.plotX=t.fromPos.x,t.plotY=t.fromPos.y),t.shapeType="path",t.shapeArgs=this.getPointShapeArgs(t),t.color=L(t.options.color,t.series.color)})}getPointShapeArgs(t){let{fromPos:o,toPos:e}=t;if(!o||!e)return{};let i=this.getLinkWidth(t)/2,s=t.options,r=b(this.options.markerEnd,s.markerEnd),n=L(s.growTowards,this.options.growTowards),a=o.x||0,p=o.y||0,l=e.x||0,h=e.y||0,d=L(s.curveFactor,this.options.curveFactor),f=r&&r.enabled&&r.height||0;if(w(d)||(d=this.autoCurve(a,p,l,h,this.centerOfPoints.x,this.centerOfPoints.y)),f){f=W(f,4*i);let t=l-a,o=h-p,e=a+(t*=.5),s=p+(o*=.5),r=t,n=e+(t=o)*d,m=s+(o=-r)*d,[g,y]=k.normalize(n-l,m-h);g*=f,y*=f,l+=g,h+=y}let m=l-a,g=h-p,y=a+(m*=.5),c=p+(g*=.5),u=m;m=g,g=-u;let[x,P]=k.normalize(m,g),A=1+.25*Math.sqrt(d*d);x*=i*A,P*=i*A;let O=y+m*d,v=c+g*d,[C,M]=k.normalize(O-a,v-p);u=C,C=M,M=-u,C*=i,M*=i;let[T,E]=k.normalize(O-l,v-h);u=T,T=-E,E=u,T*=i,E*=i,n&&(C/=i,M/=i,x/=4,P/=4);let z={d:[["M",a-C,p-M],["Q",O-x,v-P,l-T,h-E],["L",l+T,h+E],["Q",O+x,v+P,a+C,p+M],["Z"]]};if(r&&r.enabled&&z.d){let t=k.markerEndPath([l-T,h-E],[l+T,h+E],[e.x,e.y],r);z.d.splice(2,0,...t)}let j=t.options.from,D=t.options.to,F=j.lat,S=j.lon,$=D.lat,Q=D.lon;return F&&S&&(t.options.from=`${+F}, ${+S}`),$&&Q&&(t.options.to=`${+$}, ${+Q}`),z}}k.defaultOptions=b(g.defaultOptions,{animation:!0,dataLabels:{enabled:!1},fillOpacity:.5,markerEnd:{enabled:!0,height:"40%",width:"40%",markerType:"arrow"},width:1,maxWidth:25,minWidth:5,lineWidth:void 0,tooltip:{headerFormat:'<span style="font-size: 0.8em">{series.name}</span><br/>',pointFormat:"{point.options.from} → {point.options.to}: <b>{point.options.weight}</b>"}}),x(k.prototype,{pointClass:h,pointArrayMap:["from","to","weight"],drawPoints:f.prototype.drawPoints,dataColumnKeys:f.prototype.dataColumnKeys,useMapGeometry:!0}),r().registerSeriesType("flowmap",k);let A=i();export{A as default};
1
+ /**
2
+ * Highcharts JS v12.3.0 (2025-06-21)
3
+ * @module highcharts/modules/flowmap
4
+ * @requires highcharts
5
+ *
6
+ * (c) 2009-2025
7
+ *
8
+ * License: www.highcharts.com/license
9
+ */import*as t from"../highcharts.js";var o={};o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var i in e)o.o(e,i)&&!o.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},o.o=(t,o)=>Object.prototype.hasOwnProperty.call(t,o);let e=t.default;var i=o.n(e);let s=t.default.SeriesRegistry;var r=o.n(s);let{seriesTypes:{mapline:{prototype:{pointClass:n}}}}=r(),{pick:a,isString:p,isNumber:l}=i(),h=class extends n{isValid(){let t=!!(this.options.to&&this.options.from);return[this.options.to,this.options.from].forEach(function(o){t=!!(t&&o&&(p(o)||l(a(o[0],o.lat))&&l(a(o[1],o.lon))))}),t}},{series:{prototype:{pointClass:d}},seriesTypes:{column:f,map:m,mapline:g}}=r(),{addEvent:y,arrayMax:c,arrayMin:u,defined:w,extend:x,isArray:P,merge:b,pick:L,relativeLength:W}=i();class k extends g{static getLength(t,o){return Math.sqrt(t*t+o*o)}static normalize(t,o){let e=this.getLength(t,o);return[t/e,o/e]}static markerEndPath(t,o,e,i){let s=W(i.width||0,this.getLength(o[0]-t[0],o[1]-t[1])),r=i.markerType||"arrow",[n,a]=this.normalize(o[0]-t[0],o[1]-t[1]),p=[];if("arrow"===r){let[i,r]=t;i-=n*s,r-=a*s,p.push(["L",i,r]),p.push(["L",e[0],e[1]]),[i,r]=o,i+=n*s,r+=a*s,p.push(["L",i,r])}if("mushroom"===r){let[i,r]=t,[l,h]=o,[d,f]=e,m=(l-i)/2+i,g=(h-r)/2+r;i-=n*s,r-=a*s,p.push(["L",i,r]),l+=n*s,h+=a*s,p.push(["Q",(d-m)*2+m,(f-g)*2+g,l,h])}return p}animate(t){let o=this.points;t||o.forEach(t=>{if(t.shapeArgs&&P(t.shapeArgs.d)&&t.shapeArgs.d.length){let o=t.shapeArgs.d,e=o[0][1],i=o[0][2];if(e&&i){let s=[];for(let t=0;t<o.length;t++){s.push([...o[t]]);for(let r=1;r<o[t].length;r++)s[t][r]=r%2?e:i}t.graphic&&(t.graphic.attr({d:s}),t.graphic.animate({d:o}))}}})}getLinkWidth(t){let o=this.options.width,e=t.options.weight||this.options.weight;if(t.options.weight=e,o&&!e)return o;let i=this.smallestWeight,s=this.greatestWeight;if(!w(e)||!i||!s)return 0;let r=this.options.minWidth;return(e-i)*(this.options.maxWidth-r)/(s-i||1)+r}autoCurve(t,o,e,i,s,r){let n={x:e-t,y:i-o},a={x:(e-t)/2+t,y:(i-o)/2+o},p={x:a.x-s,y:a.y-r},l=n.x*p.x+n.y*p.y,h=Math.atan2(n.x*p.y-n.y*p.x,l),d=180*h/Math.PI;return d<0&&(d=360+d),-(.7*Math.sin(h=d*Math.PI/180))}pointAttribs(t,o){let e=m.prototype.pointAttribs.call(this,t,o);return e.fill=L(t.options.fillColor,t.options.color,"none"===this.options.fillColor?null:this.options.fillColor,this.color),e["fill-opacity"]=L(t.options.fillOpacity,this.options.fillOpacity),e["stroke-width"]=L(t.options.lineWidth,this.options.lineWidth,1),t.options.opacity&&(e.opacity=t.options.opacity),e}translate(){this.chart.hasRendered&&(this.isDirtyData||!this.hasRendered)&&(this.processData(),this.generatePoints());let t=[],o=0,e=0;this.points.forEach(i=>{let s,r,n=this.chart,a=n.mapView,p=i.options,l=()=>{i.series.isDirty=!0},h=t=>{let o=n.get(t);if(o instanceof d&&o.plotX&&o.plotY)return y(o,"update",l),{x:o.plotX,y:o.plotY}},f=t=>P(t)?{lon:t[0],lat:t[1]}:t;"string"==typeof p.from?s=h(p.from):"object"==typeof p.from&&a&&(s=a.lonLatToPixels(f(p.from))),"string"==typeof p.to?r=h(p.to):"object"==typeof p.to&&a&&(r=a.lonLatToPixels(f(p.to))),i.fromPos=s,i.toPos=r,s&&r&&(o+=(s.x+r.x)/2,e+=(s.y+r.y)/2),L(i.options.weight,this.options.weight)&&t.push(L(i.options.weight,this.options.weight))}),this.smallestWeight=u(t),this.greatestWeight=c(t),this.centerOfPoints={x:o/this.points.length,y:e/this.points.length},this.points.forEach(t=>{if(!this.getLinkWidth(t)){t.shapeArgs={d:[]};return}t.fromPos&&(t.plotX=t.fromPos.x,t.plotY=t.fromPos.y),t.shapeType="path",t.shapeArgs=this.getPointShapeArgs(t),t.color=L(t.options.color,t.series.color)})}getPointShapeArgs(t){let{fromPos:o,toPos:e}=t;if(!o||!e)return{};let i=this.getLinkWidth(t)/2,s=t.options,r=b(this.options.markerEnd,s.markerEnd),n=L(s.growTowards,this.options.growTowards),a=o.x||0,p=o.y||0,l=e.x||0,h=e.y||0,d=L(s.curveFactor,this.options.curveFactor),f=r&&r.enabled&&r.height||0;if(w(d)||(d=this.autoCurve(a,p,l,h,this.centerOfPoints.x,this.centerOfPoints.y)),f){f=W(f,4*i);let t=l-a,o=h-p,e=a+(t*=.5),s=p+(o*=.5),r=t,n=e+(t=o)*d,m=s+(o=-r)*d,[g,y]=k.normalize(n-l,m-h);g*=f,y*=f,l+=g,h+=y}let m=l-a,g=h-p,y=a+(m*=.5),c=p+(g*=.5),u=m;m=g,g=-u;let[x,P]=k.normalize(m,g),A=1+.25*Math.sqrt(d*d);x*=i*A,P*=i*A;let O=y+m*d,v=c+g*d,[C,M]=k.normalize(O-a,v-p);u=C,C=M,M=-u,C*=i,M*=i;let[T,E]=k.normalize(O-l,v-h);u=T,T=-E,E=u,T*=i,E*=i,n&&(C/=i,M/=i,x/=4,P/=4);let z={d:[["M",a-C,p-M],["Q",O-x,v-P,l-T,h-E],["L",l+T,h+E],["Q",O+x,v+P,a+C,p+M],["Z"]]};if(r&&r.enabled&&z.d){let t=k.markerEndPath([l-T,h-E],[l+T,h+E],[e.x,e.y],r);z.d.splice(2,0,...t)}let j=t.options.from,D=t.options.to,F=j.lat,S=j.lon,$=D.lat,Q=D.lon;return F&&S&&(t.options.from=`${+F}, ${+S}`),$&&Q&&(t.options.to=`${+$}, ${+Q}`),z}}k.defaultOptions=b(g.defaultOptions,{animation:!0,dataLabels:{enabled:!1},fillOpacity:.5,markerEnd:{enabled:!0,height:"40%",width:"40%",markerType:"arrow"},width:1,maxWidth:25,minWidth:5,lineWidth:void 0,tooltip:{headerFormat:'<span style="font-size: 0.8em">{series.name}</span><br/>',pointFormat:"{point.options.from} → {point.options.to}: <b>{point.options.weight}</b>"}}),x(k.prototype,{pointClass:h,pointArrayMap:["from","to","weight"],drawPoints:f.prototype.drawPoints,dataColumnKeys:f.prototype.dataColumnKeys,useMapGeometry:!0}),r().registerSeriesType("flowmap",k);let A=i();export{A as default};
@@ -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/flowmap
4
4
  * @requires highcharts
5
5
  *
@@ -1 +1,12 @@
1
- import*as e from"../highcharts.js";var t={};t.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return t.d(n,{a:n}),n},t.d=(e,n)=>{for(var r in n)t.o(n,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:n[r]})},t.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);let n=e.default;var r=t.n(n);let s=e.default.AST;var l=t.n(s);let{composed:i}=r(),{addEvent:o,fireEvent:u,pushUnique:c}=r();function h(){this.fullscreen=new a(this)}class a{static compose(e){c(i,"Fullscreen")&&o(e,"beforeRender",h)}constructor(e){this.chart=e,this.isOpen=!1;let t=e.renderTo;!this.browserProps&&("function"==typeof t.requestFullscreen?this.browserProps={fullscreenChange:"fullscreenchange",requestFullscreen:"requestFullscreen",exitFullscreen:"exitFullscreen"}:t.mozRequestFullScreen?this.browserProps={fullscreenChange:"mozfullscreenchange",requestFullscreen:"mozRequestFullScreen",exitFullscreen:"mozCancelFullScreen"}:t.webkitRequestFullScreen?this.browserProps={fullscreenChange:"webkitfullscreenchange",requestFullscreen:"webkitRequestFullScreen",exitFullscreen:"webkitExitFullscreen"}:t.msRequestFullscreen&&(this.browserProps={fullscreenChange:"MSFullscreenChange",requestFullscreen:"msRequestFullscreen",exitFullscreen:"msExitFullscreen"}))}close(){let e=this,t=e.chart,n=t.options.chart;u(t,"fullscreenClose",null,function(){e.isOpen&&e.browserProps&&t.container.ownerDocument instanceof Document&&t.container.ownerDocument[e.browserProps.exitFullscreen](),e.unbindFullscreenEvent&&(e.unbindFullscreenEvent=e.unbindFullscreenEvent()),t.setSize(e.origWidth,e.origHeight,!1),e.origWidth=void 0,e.origHeight=void 0,n.width=e.origWidthOption,n.height=e.origHeightOption,e.origWidthOption=void 0,e.origHeightOption=void 0,e.isOpen=!1,e.setButtonText()})}open(){let e=this,t=e.chart,n=t.options.chart;u(t,"fullscreenOpen",null,function(){if(n&&(e.origWidthOption=n.width,e.origHeightOption=n.height),e.origWidth=t.chartWidth,e.origHeight=t.chartHeight,e.browserProps){let n=o(t.container.ownerDocument,e.browserProps.fullscreenChange,function(){e.isOpen?(e.isOpen=!1,e.close()):(t.setSize(null,null,!1),e.isOpen=!0,e.setButtonText())}),r=o(t,"destroy",n);e.unbindFullscreenEvent=()=>{n(),r()};let s=t.renderTo[e.browserProps.requestFullscreen]();s&&s.catch(function(){alert("Full screen is not supported inside a frame.")})}})}setButtonText(){let e=this.chart,t=e.exportDivElements,n=e.options.exporting,r=n&&n.buttons&&n.buttons.contextButton.menuItems,s=e.options.lang;if(n&&n.menuItemDefinitions&&s&&s.exitFullscreen&&s.viewFullscreen&&r&&t){let e=t[r.indexOf("viewFullscreen")];e&&l().setElementHTML(e,this.isOpen?s.exitFullscreen:n.menuItemDefinitions.viewFullscreen.text||s.viewFullscreen)}}toggle(){this.isOpen?this.close():this.open()}}let p=r();p.Fullscreen=p.Fullscreen||a,p.Fullscreen.compose(p.Chart);let F=r();export{F as default};
1
+ /**
2
+ * Highstock JS v12.3.0 (2025-06-21)
3
+ * @module highcharts/modules/full-screen
4
+ * @requires highcharts
5
+ *
6
+ * Advanced Highcharts Stock tools
7
+ *
8
+ * (c) 2010-2025 Highsoft AS
9
+ * Author: Torstein Honsi
10
+ *
11
+ * License: www.highcharts.com/license
12
+ */import*as e from"../highcharts.js";var t={};t.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return t.d(n,{a:n}),n},t.d=(e,n)=>{for(var r in n)t.o(n,r)&&!t.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:n[r]})},t.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);let n=e.default;var r=t.n(n);let s=e.default.AST;var l=t.n(s);let{composed:i}=r(),{addEvent:o,fireEvent:u,pushUnique:c}=r();function h(){this.fullscreen=new a(this)}class a{static compose(e){c(i,"Fullscreen")&&o(e,"beforeRender",h)}constructor(e){this.chart=e,this.isOpen=!1;let t=e.renderTo;!this.browserProps&&("function"==typeof t.requestFullscreen?this.browserProps={fullscreenChange:"fullscreenchange",requestFullscreen:"requestFullscreen",exitFullscreen:"exitFullscreen"}:t.mozRequestFullScreen?this.browserProps={fullscreenChange:"mozfullscreenchange",requestFullscreen:"mozRequestFullScreen",exitFullscreen:"mozCancelFullScreen"}:t.webkitRequestFullScreen?this.browserProps={fullscreenChange:"webkitfullscreenchange",requestFullscreen:"webkitRequestFullScreen",exitFullscreen:"webkitExitFullscreen"}:t.msRequestFullscreen&&(this.browserProps={fullscreenChange:"MSFullscreenChange",requestFullscreen:"msRequestFullscreen",exitFullscreen:"msExitFullscreen"}))}close(){let e=this,t=e.chart,n=t.options.chart;u(t,"fullscreenClose",null,function(){e.isOpen&&e.browserProps&&t.container.ownerDocument instanceof Document&&t.container.ownerDocument[e.browserProps.exitFullscreen](),e.unbindFullscreenEvent&&(e.unbindFullscreenEvent=e.unbindFullscreenEvent()),t.setSize(e.origWidth,e.origHeight,!1),e.origWidth=void 0,e.origHeight=void 0,n.width=e.origWidthOption,n.height=e.origHeightOption,e.origWidthOption=void 0,e.origHeightOption=void 0,e.isOpen=!1,e.setButtonText()})}open(){let e=this,t=e.chart,n=t.options.chart;u(t,"fullscreenOpen",null,function(){if(n&&(e.origWidthOption=n.width,e.origHeightOption=n.height),e.origWidth=t.chartWidth,e.origHeight=t.chartHeight,e.browserProps){let n=o(t.container.ownerDocument,e.browserProps.fullscreenChange,function(){e.isOpen?(e.isOpen=!1,e.close()):(t.setSize(null,null,!1),e.isOpen=!0,e.setButtonText())}),r=o(t,"destroy",n);e.unbindFullscreenEvent=()=>{n(),r()};let s=t.renderTo[e.browserProps.requestFullscreen]();s&&s.catch(function(){alert("Full screen is not supported inside a frame.")})}})}setButtonText(){let e=this.chart,t=e.exporting?.divElements,n=e.options.exporting,r=n&&n.buttons&&n.buttons.contextButton.menuItems,s=e.options.lang;if(n&&n.menuItemDefinitions&&s&&s.exitFullscreen&&s.viewFullscreen&&r&&t){let e=t[r.indexOf("viewFullscreen")];e&&l().setElementHTML(e,this.isOpen?s.exitFullscreen:n.menuItemDefinitions.viewFullscreen.text||s.viewFullscreen)}}toggle(){this.isOpen?this.close():this.open()}}let p=r();p.Fullscreen=p.Fullscreen||a,p.Fullscreen.compose(p.Chart);let F=r();export{F as default};
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v12.2.0 (2025-04-07)
2
+ * @license Highstock JS v12.3.0 (2025-06-21)
3
3
  * @module highcharts/modules/full-screen
4
4
  * @requires highcharts
5
5
  *
@@ -141,7 +141,7 @@ class Fullscreen {
141
141
  * the fullscreen mode.
142
142
  *
143
143
  * @name Highcharts.Fullscreen#isOpen
144
- * @type {boolean|undefined}
144
+ * @type {boolean | undefined}
145
145
  * @since 8.0.1
146
146
  */
147
147
  this.isOpen = false;
@@ -283,7 +283,7 @@ class Fullscreen {
283
283
  * @requires modules/full-screen
284
284
  */
285
285
  setButtonText() {
286
- const chart = this.chart, exportDivElements = chart.exportDivElements, exportingOptions = chart.options.exporting, menuItems = (exportingOptions &&
286
+ const chart = this.chart, exportDivElements = chart.exporting?.divElements, exportingOptions = chart.options.exporting, menuItems = (exportingOptions &&
287
287
  exportingOptions.buttons &&
288
288
  exportingOptions.buttons.contextButton.menuItems), lang = chart.options.lang;
289
289
  if (exportingOptions &&
@@ -1 +1,11 @@
1
- import*as t from"../highcharts.js";var e={};e.n=t=>{var a=t&&t.__esModule?()=>t.default:()=>t;return e.d(a,{a:a}),a},e.d=(t,a)=>{for(var i in a)e.o(a,i)&&!e.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:a[i]})},e.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);let a=t.default;var i=e.n(a);let{defaultOptions:d}=i(),{noop:s}=i(),{addEvent:l,extend:o,isObject:n,merge:r,relativeLength:h}=i(),p={radius:0,scope:"stack",where:void 0};function c(t,e){return n(t)||(t={radius:t||0}),r(p,e,t)}let u=t.default.SeriesRegistry;var g=e.n(u);let{composed:x,noop:y}=i(),{column:b,pie:f}=g().seriesTypes,{addEvent:L,correctFloat:m,extend:v,fireEvent:M,isArray:W,merge:A,pick:C,pushUnique:P,relativeLength:k,splat:w}=i(),O=g().series.prototype.alignDataLabel;function D(t,e){return/%$/.test(t)?e*parseInt(t,10)/100:parseInt(t,10)}class I extends f{alignDataLabel(t,e,a,i,d){let s=t.series,l=s.options.reversed,o=t.dlBox||t.shapeArgs,{align:n,padding:r=0,verticalAlign:h}=a,p=((s.options||{}).dataLabels||{}).inside,c=s.center[1],u=t.plotY||0,g=e.height??e.getBBox().height,x=s.getWidthAt((l?2*c-u:u)-o.height/2+g),y="middle"===h?(o.topWidth-o.bottomWidth)/4:(x-o.bottomWidth)/2,b=o.y,f=o.x;"middle"===h?b=o.y-o.height/2+g/2:"top"===h&&(b=o.y-o.height+g+r),("top"===h&&!l||"bottom"===h&&l||"middle"===h)&&("right"===n?f=o.x-r+y:"left"===n&&(f=o.x+r-y)),i={x:f,y:l?b-o.height:b,width:o.bottomWidth,height:o.height},a.verticalAlign="bottom",p&&(a.distance=void 0),p&&t.visible&&O.call(s,t,e,a,i,d),p&&(!t.visible&&t.dataLabel&&(t.dataLabel.placed=!1),t.contrastColor&&e.css({color:t.contrastColor}))}drawDataLabels(){(w(this.options.dataLabels||{})[0].inside?b:f).prototype.drawDataLabels.call(this)}getDataLabelPosition(t,e){let a=t.plotY||0,i=t.half?1:-1,d=this.getX(a,!!t.half,t);return{distance:e,natural:{x:0,y:a},computed:{},alignment:t.half?"right":"left",connectorPosition:{breakAt:{x:d+(e-5)*i,y:a},touchingSliceAt:{x:d+e*i,y:a}}}}translate(){let t=this,e=t.chart,a=t.options,i=a.reversed,d=a.ignoreHiddenPoint,s=c(a.borderRadius),l=e.plotWidth,o=e.plotHeight,n=a.center,r=D(n[0],l),h=D(n[1],o),p=D(a.width,l),u=D(a.height,o),g=D(a.neckWidth,l),x=D(a.neckHeight,o),b=h-u/2+u-x,f=t.points,L=k(s.radius,p),v=s.scope,W=+("left"===a.dataLabels.position),A=t=>{let e=Math.tan(t/2),a=Math.cos(Y),d=Math.sin(Y),s=L,l=s/e,o=Math.tan((Math.PI-t)/3.2104);return l>B&&(s=(l=B)*e),{dx:[l*a,(l-(o*=s))*a,l-o,l],dy:[l*d,(l-o)*d,l-o,l].map(t=>i?-t:t)}},P=0,w=0,O,I,H,Y,B,S,T,X,j,R,_,N;for(let e of(t.getWidthAt=function(t){let e=h-u/2;return t>b||u===x?g:g+(p-g)*(1-(t-e)/(u-x))},t.getX=function(e,a,d){return r+(a?-1:1)*(t.getWidthAt(i?2*h-e:e)/2+(d.dataLabel?.dataLabelPosition?.distance??k(this.options.dataLabels?.distance||0,p)))},t.center=[r,h,u],t.centerX=r,f))e.y&&e.isValid()&&(!d||!1!==e.visible)&&(P+=e.y);for(let e of f){if(N=null,H=P?e.y/P:0,R=(T=h-u/2+w*u)+H*u,X=(S=r-(O=t.getWidthAt(T))/2)+O,_=(j=r-(O=t.getWidthAt(R))/2)+O,m(T)>=b?(S=j=r-g/2,X=_=r+g/2):R>b&&(N=R,_=(j=r-(O=t.getWidthAt(b))/2)+O,R=b),i&&(T=2*h-T,R=2*h-R,null!==N&&(N=2*h-N)),L&&("point"===v||0===e.index||e.index===f.length-1||null!==N)){let t=Math.abs(R-T),a=X-_,i=_-j,d=Math.sqrt(a*a+t*t);Y=Math.atan(0!==a?t/a:1/0),B=d/2,null!==N&&(B=Math.min(B,Math.abs(N-R)/2)),i>=1&&(B=Math.min(B,i/2));let s=A(Y);if(I="stack"===v&&0!==e.index?[["M",S,T],["L",X,T]]:[["M",S+s.dx[0],T+s.dy[0]],["C",S+s.dx[1],T+s.dy[1],S+s.dx[2],T,S+s.dx[3],T],["L",X-s.dx[3],T],["C",X-s.dx[2],T,X-s.dx[1],T+s.dy[1],X-s.dx[0],T+s.dy[0]]],null!==N){let t=A(Math.PI/2);s=A(Math.PI/2+Y),I.push(["L",_+s.dx[0],R-s.dy[0]],["C",_+s.dx[1],R-s.dy[1],_,R+s.dy[2],_,R+s.dy[3]]),"stack"===v&&e.index!==f.length-1?I.push(["L",_,N],["L",j,N]):I.push(["L",_,N-t.dy[3]],["C",_,N-t.dy[2],_-t.dx[2],N,_-t.dx[3],N],["L",j+t.dx[3],N],["C",j+t.dx[2],N,j,N-t.dy[2],j,N-t.dy[3]]),I.push(["L",j,R+s.dy[3]],["C",j,R+s.dy[2],j-s.dx[1],R-s.dy[1],j-s.dx[0],R-s.dy[0]])}else i>=1?(s=A(Math.PI-Y),"stack"===v&&0===e.index?I.push(["L",_,R],["L",j,R]):I.push(["L",_+s.dx[0],R-s.dy[0]],["C",_+s.dx[1],R-s.dy[1],_-s.dx[2],R,_-s.dx[3],R],["L",j+s.dx[3],R],["C",j+s.dx[2],R,j-s.dx[1],R-s.dy[1],j-s.dx[0],R-s.dy[0]])):(s=A(Math.PI-2*Y),I.push(["L",j+s.dx[0],R-s.dy[0]],["C",j+s.dx[1],R-s.dy[1],j-s.dx[1],R-s.dy[1],j-s.dx[0],R-s.dy[0]]))}else I=[["M",S,T],["L",X,T],["L",_,R]],null!==N&&I.push(["L",_,N],["L",j,N]),I.push(["L",j,R]);I.push(["Z"]),e.shapeType="path",e.shapeArgs={d:I},e.percentage=100*H,e.plotX=r,e.plotY=(T+(N||R))/2,e.tooltipPos=[r,e.plotY],e.dlBox={x:j,y:T,topWidth:X-S,bottomWidth:_-j,height:Math.abs(C(N,R)-T),width:NaN},e.slice=y,e.half=W,e.isValid()&&(!d||!1!==e.visible)&&(w+=H)}M(t,"afterTranslate")}sortByAngle(t){t.sort((t,e)=>t.plotY-e.plotY)}}I.defaultOptions=A(f.defaultOptions,{animation:!1,borderRadius:0,center:["50%","50%"],width:"90%",neckWidth:"30%",height:"100%",neckHeight:"25%",reversed:!1,size:!0,dataLabels:{connectorWidth:1,verticalAlign:"middle"},states:{select:{color:"#cccccc",borderColor:"#000000"}}}),v(I.prototype,{animate:y}),function(t){function e(){for(let t of this.series){let e=t.options&&t.options.dataLabels;W(e)&&(e=e[0]),t.is("pie")&&t.placeDataLabels&&e&&!e.inside&&t.placeDataLabels()}}t.compose=function(t){P(x,"FunnelSeries")&&L(t,"afterHideAllOverlappingLabels",e)}}(I||(I={})),g().registerSeriesType("funnel",I);let H=I,{merge:Y}=i();class B extends H{}B.defaultOptions=Y(H.defaultOptions,{neckHeight:"0%",neckWidth:"0%",reversed:!0}),g().registerSeriesType("pyramid",B);let S=i();H.compose(S.Chart);let T=i();export{T as default};
1
+ /**
2
+ * Highcharts JS v12.3.0 (2025-06-21)
3
+ * @module highcharts/modules/funnel
4
+ * @requires highcharts
5
+ *
6
+ * Highcharts funnel module
7
+ *
8
+ * (c) 2010-2025 Torstein Honsi
9
+ *
10
+ * License: www.highcharts.com/license
11
+ */import*as t from"../highcharts.js";var e={};e.n=t=>{var a=t&&t.__esModule?()=>t.default:()=>t;return e.d(a,{a:a}),a},e.d=(t,a)=>{for(var i in a)e.o(a,i)&&!e.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:a[i]})},e.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);let a=t.default;var i=e.n(a);let{defaultOptions:d}=i(),{noop:s}=i(),{addEvent:l,extend:o,isObject:n,merge:r,relativeLength:h}=i(),p={radius:0,scope:"stack",where:void 0};function c(t,e){return n(t)||(t={radius:t||0}),r(p,e,t)}let u=t.default.SeriesRegistry;var g=e.n(u);let{composed:x,noop:y}=i(),{column:b,pie:L}=g().seriesTypes,{addEvent:f,correctFloat:m,extend:v,fireEvent:M,isArray:W,merge:A,pick:C,pushUnique:P,relativeLength:k,splat:w}=i(),O=g().series.prototype.alignDataLabel;function D(t,e){return/%$/.test(t)?e*parseInt(t,10)/100:parseInt(t,10)}class I extends L{alignDataLabel(t,e,a,i,d){let s=t.series,l=s.options.reversed,o=t.dlBox||t.shapeArgs,{align:n,padding:r=0,verticalAlign:h}=a,p=((s.options||{}).dataLabels||{}).inside,c=s.center[1],u=t.plotY||0,g=e.height??e.getBBox().height,x=s.getWidthAt((l?2*c-u:u)-o.height/2+g),y="middle"===h?(o.topWidth-o.bottomWidth)/4:(x-o.bottomWidth)/2,b=o.y,L=o.x;"middle"===h?b=o.y-o.height/2+g/2:"top"===h&&(b=o.y-o.height+g+r),("top"===h&&!l||"bottom"===h&&l||"middle"===h)&&("right"===n?L=o.x-r+y:"left"===n&&(L=o.x+r-y)),i={x:L,y:l?b-o.height:b,width:o.bottomWidth,height:o.height},a.verticalAlign="bottom",p&&(a.distance=void 0),p&&t.visible&&O.call(s,t,e,a,i,d),p&&(!t.visible&&t.dataLabel&&(t.dataLabel.placed=!1),t.contrastColor&&e.css({color:t.contrastColor}))}drawDataLabels(){(w(this.options.dataLabels||{})[0].inside?b:L).prototype.drawDataLabels.call(this)}getDataLabelPosition(t,e){let a=t.plotY||0,i=t.half?1:-1,d=this.getX(a,!!t.half,t);return{distance:e,natural:{x:0,y:a},computed:{},alignment:t.half?"right":"left",connectorPosition:{breakAt:{x:d+(e-5)*i,y:a},touchingSliceAt:{x:d+e*i,y:a}}}}translate(){let t=this,e=t.chart,a=t.options,i=a.reversed,d=a.ignoreHiddenPoint,s=c(a.borderRadius),l=e.plotWidth,o=e.plotHeight,n=a.center,r=D(n[0],l),h=D(n[1],o),p=D(a.width,l),u=D(a.height,o),g=D(a.neckWidth,l),x=D(a.neckHeight,o),b=h-u/2+u-x,L=t.points,f=k(s.radius,p),v=s.scope,W=+("left"===a.dataLabels.position),A=t=>{let e=Math.tan(t/2),a=Math.cos(Y),d=Math.sin(Y),s=f,l=s/e,o=Math.tan((Math.PI-t)/3.2104);return l>B&&(s=(l=B)*e),{dx:[l*a,(l-(o*=s))*a,l-o,l],dy:[l*d,(l-o)*d,l-o,l].map(t=>i?-t:t)}},P=0,w=0,O,I,H,Y,B,S,T,X,j,R,_,N;for(let e of(t.getWidthAt=function(t){let e=h-u/2;return t>b||u===x?g:g+(p-g)*(1-(t-e)/(u-x))},t.getX=function(e,a,d){return r+(a?-1:1)*(t.getWidthAt(i?2*h-e:e)/2+(d.dataLabel?.dataLabelPosition?.distance??k(this.options.dataLabels?.distance||0,p)))},t.center=[r,h,u],t.centerX=r,L))e.y&&e.isValid()&&(!d||!1!==e.visible)&&(P+=e.y);for(let e of L){if(N=null,H=P?e.y/P:0,R=(T=h-u/2+w*u)+H*u,X=(S=r-(O=t.getWidthAt(T))/2)+O,_=(j=r-(O=t.getWidthAt(R))/2)+O,m(T)>=b?(S=j=r-g/2,X=_=r+g/2):R>b&&(N=R,_=(j=r-(O=t.getWidthAt(b))/2)+O,R=b),i&&(T=2*h-T,R=2*h-R,null!==N&&(N=2*h-N)),f&&("point"===v||0===e.index||e.index===L.length-1||null!==N)){let t=Math.abs(R-T),a=X-_,i=_-j,d=Math.sqrt(a*a+t*t);Y=Math.atan(0!==a?t/a:1/0),B=d/2,null!==N&&(B=Math.min(B,Math.abs(N-R)/2)),i>=1&&(B=Math.min(B,i/2));let s=A(Y);if(I="stack"===v&&0!==e.index?[["M",S,T],["L",X,T]]:[["M",S+s.dx[0],T+s.dy[0]],["C",S+s.dx[1],T+s.dy[1],S+s.dx[2],T,S+s.dx[3],T],["L",X-s.dx[3],T],["C",X-s.dx[2],T,X-s.dx[1],T+s.dy[1],X-s.dx[0],T+s.dy[0]]],null!==N){let t=A(Math.PI/2);s=A(Math.PI/2+Y),I.push(["L",_+s.dx[0],R-s.dy[0]],["C",_+s.dx[1],R-s.dy[1],_,R+s.dy[2],_,R+s.dy[3]]),"stack"===v&&e.index!==L.length-1?I.push(["L",_,N],["L",j,N]):I.push(["L",_,N-t.dy[3]],["C",_,N-t.dy[2],_-t.dx[2],N,_-t.dx[3],N],["L",j+t.dx[3],N],["C",j+t.dx[2],N,j,N-t.dy[2],j,N-t.dy[3]]),I.push(["L",j,R+s.dy[3]],["C",j,R+s.dy[2],j-s.dx[1],R-s.dy[1],j-s.dx[0],R-s.dy[0]])}else i>=1?(s=A(Math.PI-Y),"stack"===v&&0===e.index?I.push(["L",_,R],["L",j,R]):I.push(["L",_+s.dx[0],R-s.dy[0]],["C",_+s.dx[1],R-s.dy[1],_-s.dx[2],R,_-s.dx[3],R],["L",j+s.dx[3],R],["C",j+s.dx[2],R,j-s.dx[1],R-s.dy[1],j-s.dx[0],R-s.dy[0]])):(s=A(Math.PI-2*Y),I.push(["L",j+s.dx[0],R-s.dy[0]],["C",j+s.dx[1],R-s.dy[1],j-s.dx[1],R-s.dy[1],j-s.dx[0],R-s.dy[0]]))}else I=[["M",S,T],["L",X,T],["L",_,R]],null!==N&&I.push(["L",_,N],["L",j,N]),I.push(["L",j,R]);I.push(["Z"]),e.shapeType="path",e.shapeArgs={d:I},e.percentage=100*H,e.plotX=r,e.plotY=(T+(N||R))/2,e.tooltipPos=[r,e.plotY],e.dlBox={x:j,y:T,topWidth:X-S,bottomWidth:_-j,height:Math.abs(C(N,R)-T),width:NaN},e.slice=y,e.half=W,e.isValid()&&(!d||!1!==e.visible)&&(w+=H)}M(t,"afterTranslate")}sortByAngle(t){t.sort((t,e)=>t.plotY-e.plotY)}}function H(){for(let t of this.series){let e=t.options&&t.options.dataLabels;W(e)&&(e=e[0]),t.is("pie")&&t.placeDataLabels&&e&&!e.inside&&t.placeDataLabels()}}I.defaultOptions=A(L.defaultOptions,{animation:!1,borderRadius:0,center:["50%","50%"],width:"90%",neckWidth:"30%",height:"100%",neckHeight:"25%",reversed:!1,size:!0,dataLabels:{connectorWidth:1,verticalAlign:"middle"},states:{select:{color:"#cccccc",borderColor:"#000000"}}}),v(I.prototype,{animate:y}),(I||(I={})).compose=function(t){P(x,"FunnelSeries")&&f(t,"afterHideAllOverlappingLabels",H)},g().registerSeriesType("funnel",I);let Y=I,{merge:B}=i();class S extends Y{}S.defaultOptions=B(Y.defaultOptions,{neckHeight:"0%",neckWidth:"0%",reversed:!0}),g().registerSeriesType("pyramid",S);let T=i();Y.compose(T.Chart);let X=i();export{X as default};
@@ -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/funnel
4
4
  * @requires highcharts
5
5
  *
@@ -1 +1,13 @@
1
- import*as t from"../highcharts.js";import"../highcharts-3d.js";import"./cylinder.js";var e={};e.n=t=>{var i=t&&t.__esModule?()=>t.default:()=>t;return e.d(i,{a:i}),i},e.d=(t,i)=>{for(var r in i)e.o(i,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:i[r]})},e.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);let i=t.default;var r=e.n(i);let o=t.default.Color;var n=e.n(o);let s=t.default.RendererRegistry;var d=e.n(s);let{parse:h}=n(),{charts:a}=r(),{Element3D:l}=d().getRendererType().prototype,{merge:p}=r(),g=class extends l{constructor(){super(...arguments),this.mainParts=["top","bottom"],this.parts=["top","bottom","frontUpper","backUpper","frontLower","backLower","rightUpper","rightLower"],this.sideGroups=["upperGroup","lowerGroup"],this.sideParts={upperGroup:["frontUpper","backUpper","rightUpper"],lowerGroup:["frontLower","backLower","rightLower"]},this.pathType="funnel3d"}opacitySetter(t){let e=parseFloat(t),i=this.parts,r=a[this.renderer.chartIndex],o="group-opacity-"+e+"-"+r.index;if(this.parts=this.mainParts,this.singleSetterForParts("opacity",e),this.parts=i,!r.renderer.filterId){for(let t of(r.renderer.definition({tagName:"filter",attributes:{id:o},children:[{tagName:"feComponentTransfer",children:[{tagName:"feFuncA",attributes:{type:"table",tableValues:"0 "+e}}]}]}),this.sideGroups))this[t].attr({filter:"url(#"+o+")"});if(this.renderer.styledMode)for(let t of(r.renderer.definition({tagName:"style",textContent:".highcharts-"+o+" {filter:url(#"+o+")}"}),this.sideGroups))this[t].addClass("highcharts-"+o)}return this}fillSetter(t){let e=h(t),i=e.rgba[3],r={top:h(t).brighten(.1).get(),bottom:h(t).brighten(-.2).get()};if(i<1?(e.rgba[3]=1,e=e.get("rgb"),this.attr({opacity:i})):e=t,e.linearGradient||e.radialGradient||!this.gradientForSides||(e={linearGradient:{x1:0,x2:1,y1:1,y2:1},stops:[[0,h(t).brighten(-.2).get()],[.5,t],[1,h(t).brighten(-.2).get()]]}),e.linearGradient)for(let t of this.sideGroups){let i=this[t].gradientBox,o=e.linearGradient,n=p(e,{linearGradient:{x1:i.x+o.x1*i.width,y1:i.y+o.y1*i.height,x2:i.x+o.x2*i.width,y2:i.y+o.y2*i.height}});for(let e of this.sideParts[t])r[e]=n}else if(p(!0,r,{frontUpper:e,backUpper:e,rightUpper:e,frontLower:e,backLower:e,rightLower:e}),e.radialGradient)for(let t of this.sideGroups){let e=this[t].gradientBox,i=e.x+e.width/2,r=e.y+e.height/2,o=Math.min(e.width,e.height);for(let e of this.sideParts[t])this[e].setRadialReference([i,r,o])}if(this.singleSetterForParts("fill",null,r),this.color=this.fill=t,e.linearGradient)for(let t of[this.frontLower,this.frontUpper]){let e=t.element,i=e&&this.renderer.gradients[e.gradient];i&&"userSpaceOnUse"!==i.attr("gradientUnits")&&i.attr({gradientUnits:"userSpaceOnUse"})}return this}adjustForGradient(){let t;for(let e of this.sideGroups){let i={x:Number.MAX_VALUE,y:Number.MAX_VALUE},r={x:-Number.MAX_VALUE,y:-Number.MAX_VALUE};for(let o of this.sideParts[e])t=this[o].getBBox(!0),i={x:Math.min(i.x,t.x),y:Math.min(i.y,t.y)},r={x:Math.max(r.x,t.x+t.width),y:Math.max(r.y,t.y+t.height)};this[e].gradientBox={x:i.x,width:r.x-i.x,y:i.y,height:r.y-i.y}}}zIndexSetter(){return this.finishedOnAdd&&this.adjustForGradient(),this.renderer.Element.prototype.zIndexSetter.apply(this,arguments)}onAdd(){this.adjustForGradient(),this.finishedOnAdd=!0}},{charts:c}=r(),{error:y,extend:f,merge:u}=r();function x(t){let e=this.element3d("funnel3d",t),i=this.styledMode,r={"stroke-width":1,stroke:"none"};for(let t of(e.upperGroup=this.g("funnel3d-upper-group").attr({zIndex:e.frontUpper.zIndex}).add(e),[e.frontUpper,e.backUpper,e.rightUpper]))i||t.attr(r),t.add(e.upperGroup);for(let t of(e.lowerGroup=this.g("funnel3d-lower-group").attr({zIndex:e.frontLower.zIndex}).add(e),[e.frontLower,e.backLower,e.rightLower]))i||t.attr(r),t.add(e.lowerGroup);return e.gradientForSides=t.gradientForSides,e}function w(t){this.getCylinderEnd||y("A required Highcharts module is missing: cylinder.js",!0,c[this.chartIndex]);let e=c[this.chartIndex],i=t.alphaCorrection=90-Math.abs(e.options.chart.options3d.alpha%180-90),r=this.cuboidPath.call(this,u(t,{depth:t.width,width:(t.width+t.bottom.width)/2})),o=r.isTop,n=!r.isFront,s=!!t.middle,d=this.getCylinderEnd(e,u(t,{x:t.x-t.width/2,z:t.z-t.width/2,alphaCorrection:i})),h=t.bottom.width,a=u(t,{width:h,x:t.x-h/2,z:t.z-h/2,alphaCorrection:i}),l=this.getCylinderEnd(e,a,!0),p=h,g=a,f=l,x=l,w;s&&(p=t.middle.width,g=u(t,{y:t.y+t.middle.fraction*t.height,width:p,x:t.x-p/2,z:t.z-p/2}),f=this.getCylinderEnd(e,g,!1),x=this.getCylinderEnd(e,g,!1));let m={top:d,bottom:l,frontUpper:this.getCylinderFront(d,f),zIndexes:{group:r.zIndexes.group,top:3*(0===o),bottom:3*(1===o),frontUpper:n?2:1,backUpper:n?1:2,rightUpper:n?2:1}};return m.backUpper=this.getCylinderBack(d,f),w=Math.min(p,t.width)/Math.max(p,t.width)!=1,m.rightUpper=this.getCylinderFront(this.getCylinderEnd(e,u(t,{x:t.x-t.width/2,z:t.z-t.width/2,alphaCorrection:w?-i:0}),!1),this.getCylinderEnd(e,u(g,{alphaCorrection:w?-i:0}),!s)),s&&(w=Math.min(p,h)/Math.max(p,h)!=1,u(!0,m,{frontLower:this.getCylinderFront(x,l),backLower:this.getCylinderBack(x,l),rightLower:this.getCylinderFront(this.getCylinderEnd(e,u(a,{alphaCorrection:w?-i:0}),!0),this.getCylinderEnd(e,u(g,{alphaCorrection:w?-i:0}),!1)),zIndexes:{frontLower:n?2:1,backLower:n?1:2,rightLower:n?1:2}})),m}let m=t.default.SeriesRegistry;var b=e.n(m);let{seriesTypes:{column:A}}=b(),{extend:z}=r();class L extends A.prototype.pointClass{}z(L.prototype,{shapeType:"funnel3d"});let{deg2rad:C}=r(),{pick:U}=r();function v(t,e,i,r){let o=e.options.chart.options3d,n=U(r,!!i&&e.inverted),s={x:e.plotWidth/2,y:e.plotHeight/2,z:o.depth/2,vd:U(o.depth,1)*U(o.viewDistance,0)},d=e.scale3d||1,h=C*o.beta*(n?-1:1),a=C*o.alpha*(n?-1:1),l={cosA:Math.cos(a),cosB:Math.cos(-h),sinA:Math.sin(a),sinB:Math.sin(-h)};return i||(s.x+=e.plotLeft,s.y+=e.plotTop),t.map(function(t){var e,i,r;let o=(e=(n?t.y:t.x)-s.x,i=(n?t.x:t.y)-s.y,r=(t.z||0)-s.z,{x:l.cosB*e-l.sinB*r,y:-l.sinA*l.sinB*e+l.cosA*i-l.cosB*l.sinA*r,z:l.cosA*l.sinB*e+l.sinA*i+l.cosA*l.cosB*r}),h=G(o,s,s.vd);return h.x=h.x*d+s.x,h.y=h.y*d+s.y,h.z=o.z*d+s.z,{x:n?h.y:h.x,y:n?h.x:h.y,z:h.z}})}function G(t,e,i){let r=i>0&&i<Number.POSITIVE_INFINITY?i/(t.z+e.z+i):1;return{x:t.x*r,y:t.y*r}}function M(t){let e=0,i,r;for(i=0;i<t.length;i++)r=(i+1)%t.length,e+=t[i].x*t[r].y-t[r].x*t[i].y;return e/2}let{noop:k}=r(),{perspective:F}={perspective:v,perspective3D:G,pointCameraDistance:function(t,e){let i=e.options.chart.options3d,r={x:e.plotWidth/2,y:e.plotHeight/2,z:U(i.depth,1)*U(i.viewDistance,0)+i.depth};return Math.sqrt(Math.pow(r.x-U(t.plotX,t.x),2)+Math.pow(r.y-U(t.plotY,t.y),2)+Math.pow(r.z-U(t.plotZ,t.z),2))},shapeArea:M,shapeArea3D:function(t,e,i){return M(v(t,e,i))}},{series:B,seriesTypes:{column:I}}=b(),{extend:S,merge:E,pick:P,relativeLength:T}=r();class W extends I{alignDataLabel(t,e,i){let r=t.dlBoxRaw,o=this.chart.inverted,n=t.plotY>P(this.translatedThreshold,this.yAxis.len),s=P(i.inside,!!this.options.stacking),d={x:r.x,y:r.y,height:0};i.align=P(i.align,!o||s?"center":n?"right":"left"),i.verticalAlign=P(i.verticalAlign,o||s?"middle":n?"top":"bottom"),"top"!==i.verticalAlign&&(d.y+=r.bottom/("bottom"===i.verticalAlign?1:2)),d.width=this.getWidthAt(d.y),this.options.reversed&&(d.width=r.fullWidth-d.width),s?d.x-=d.width/2:"left"===i.align?(i.align="right",d.x-=1.5*d.width):"right"===i.align?(i.align="left",d.x+=d.width/2):d.x-=d.width/2,t.dlBox=d,I.prototype.alignDataLabel.apply(this,arguments)}bindAxes(){B.prototype.bindAxes.apply(this,arguments),S(this.xAxis.options,{gridLineWidth:0,lineWidth:0,title:void 0,tickPositions:[]}),E(!0,this.yAxis.options,{gridLineWidth:0,title:void 0,labels:{enabled:!1}})}translate(){B.prototype.translate.apply(this,arguments);let t=this.chart,e=this.options,i=e.reversed,r=e.ignoreHiddenPoint,o=t.plotWidth,n=t.plotHeight,s=e.center,d=T(s[0],o),h=T(s[1],n),a=T(e.width,o),l=T(e.height,n),p=T(e.neckWidth,o),g=T(e.neckHeight,n),c=h-l/2+l-g,y=this.points,f=0,u=0,x,w,m,b,A,z,L,C,U;for(let t of(this.getWidthAt=w=function(t){return t>c||l===g?p:p+(a-p)*(1-(t-(h-l/2))/(l-g))},this.center=[d,h,l],this.centerX=d,y))r&&!1===t.visible||(f+=t.y);for(let o of y)L=null,m=f?o.y/f:0,z=(A=h-l/2+u*l)+m*l,x=w(A),C=z-A,(U={gradientForSides:P(o.options.gradientForSides,e.gradientForSides),x:d,y:A,height:C,width:x,z:1,top:{width:x}}).bottom={fraction:m,width:x=w(z)},A>=c?U.isCylinder=!0:z>c&&(L=z,x=w(c),z=c,U.bottom.width=x,U.middle={fraction:C?(c-A)/C:0,width:x}),i&&(U.y=A=h+l/2-(u+m)*l,U.middle&&(U.middle.fraction=1-(C?U.middle.fraction:0)),x=U.width,U.width=U.bottom.width,U.bottom.width=x),o.shapeArgs=S(o.shapeArgs,U),o.percentage=100*m,o.plotX=d,i?o.plotY=h+l/2-(u+m/2)*l:o.plotY=(A+(L||z))/2,b=F([{x:d,y:o.plotY,z:i?-(a-w(o.plotY))/2:-w(o.plotY)/2}],t,!0)[0],o.tooltipPos=[b.x,b.y],o.dlBoxRaw={x:d,width:w(o.plotY),y:A,bottom:U.height||0,fullWidth:a},r&&!1===o.visible||(u+=m)}}W.compose=function(t){let e=t.prototype;e.funnel3d||(e.Element3D.types.funnel3d=g,f(e,{funnel3d:x,funnel3dPath:w}))},W.defaultOptions=E(I.defaultOptions,{center:["50%","50%"],width:"90%",neckWidth:"30%",height:"100%",neckHeight:"25%",reversed:!1,gradientForSides:!0,animation:!1,edgeWidth:0,colorByPoint:!0,showInLegend:!1,dataLabels:{align:"right",crop:!1,inside:!1,overflow:"allow"}}),S(W.prototype,{pointClass:L,translate3dShapes:k}),b().registerSeriesType("funnel3d",W),e.d({},{}),e.d({},{}),W.compose(d().getRendererType());let N=r();export{N as default};
1
+ /**
2
+ * Highcharts JS v12.3.0 (2025-06-21)
3
+ * @module highcharts/modules/funnel3d
4
+ * @requires highcharts
5
+ * @requires highcharts/highcharts-3d
6
+ * @requires highcharts/modules/cylinder
7
+ *
8
+ * Highcharts funnel module
9
+ *
10
+ * (c) 2010-2025 Kacper Madej
11
+ *
12
+ * License: www.highcharts.com/license
13
+ */import*as t from"../highcharts.js";import"../highcharts-3d.js";import"./cylinder.js";var e={};e.n=t=>{var i=t&&t.__esModule?()=>t.default:()=>t;return e.d(i,{a:i}),i},e.d=(t,i)=>{for(var r in i)e.o(i,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:i[r]})},e.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);let i=t.default;var r=e.n(i);let o=t.default.Color;var n=e.n(o);let s=t.default.RendererRegistry;var d=e.n(s);let{parse:h}=n(),{charts:a}=r(),{Element3D:l}=d().getRendererType().prototype,{merge:p}=r(),g=class extends l{constructor(){super(...arguments),this.mainParts=["top","bottom"],this.parts=["top","bottom","frontUpper","backUpper","frontLower","backLower","rightUpper","rightLower"],this.sideGroups=["upperGroup","lowerGroup"],this.sideParts={upperGroup:["frontUpper","backUpper","rightUpper"],lowerGroup:["frontLower","backLower","rightLower"]},this.pathType="funnel3d"}opacitySetter(t){let e=parseFloat(t),i=this.parts,r=a[this.renderer.chartIndex],o="group-opacity-"+e+"-"+r.index;if(this.parts=this.mainParts,this.singleSetterForParts("opacity",e),this.parts=i,!r.renderer.filterId){for(let t of(r.renderer.definition({tagName:"filter",attributes:{id:o},children:[{tagName:"feComponentTransfer",children:[{tagName:"feFuncA",attributes:{type:"table",tableValues:"0 "+e}}]}]}),this.sideGroups))this[t].attr({filter:"url(#"+o+")"});if(this.renderer.styledMode)for(let t of(r.renderer.definition({tagName:"style",textContent:".highcharts-"+o+" {filter:url(#"+o+")}"}),this.sideGroups))this[t].addClass("highcharts-"+o)}return this}fillSetter(t){let e=h(t),i=e.rgba[3],r={top:h(t).brighten(.1).get(),bottom:h(t).brighten(-.2).get()};if(i<1?(e.rgba[3]=1,e=e.get("rgb"),this.attr({opacity:i})):e=t,e.linearGradient||e.radialGradient||!this.gradientForSides||(e={linearGradient:{x1:0,x2:1,y1:1,y2:1},stops:[[0,h(t).brighten(-.2).get()],[.5,t],[1,h(t).brighten(-.2).get()]]}),e.linearGradient)for(let t of this.sideGroups){let i=this[t].gradientBox,o=e.linearGradient,n=p(e,{linearGradient:{x1:i.x+o.x1*i.width,y1:i.y+o.y1*i.height,x2:i.x+o.x2*i.width,y2:i.y+o.y2*i.height}});for(let e of this.sideParts[t])r[e]=n}else if(p(!0,r,{frontUpper:e,backUpper:e,rightUpper:e,frontLower:e,backLower:e,rightLower:e}),e.radialGradient)for(let t of this.sideGroups){let e=this[t].gradientBox,i=e.x+e.width/2,r=e.y+e.height/2,o=Math.min(e.width,e.height);for(let e of this.sideParts[t])this[e].setRadialReference([i,r,o])}if(this.singleSetterForParts("fill",null,r),this.color=this.fill=t,e.linearGradient)for(let t of[this.frontLower,this.frontUpper]){let e=t.element,i=e&&this.renderer.gradients[e.gradient];i&&"userSpaceOnUse"!==i.attr("gradientUnits")&&i.attr({gradientUnits:"userSpaceOnUse"})}return this}adjustForGradient(){let t;for(let e of this.sideGroups){let i={x:Number.MAX_VALUE,y:Number.MAX_VALUE},r={x:-Number.MAX_VALUE,y:-Number.MAX_VALUE};for(let o of this.sideParts[e])t=this[o].getBBox(!0),i={x:Math.min(i.x,t.x),y:Math.min(i.y,t.y)},r={x:Math.max(r.x,t.x+t.width),y:Math.max(r.y,t.y+t.height)};this[e].gradientBox={x:i.x,width:r.x-i.x,y:i.y,height:r.y-i.y}}}zIndexSetter(){return this.finishedOnAdd&&this.adjustForGradient(),this.renderer.Element.prototype.zIndexSetter.apply(this,arguments)}onAdd(){this.adjustForGradient(),this.finishedOnAdd=!0}},{charts:c}=r(),{error:y,extend:f,merge:u}=r();function x(t){let e=this.element3d("funnel3d",t),i=this.styledMode,r={"stroke-width":1,stroke:"none"};for(let t of(e.upperGroup=this.g("funnel3d-upper-group").attr({zIndex:e.frontUpper.zIndex}).add(e),[e.frontUpper,e.backUpper,e.rightUpper]))i||t.attr(r),t.add(e.upperGroup);for(let t of(e.lowerGroup=this.g("funnel3d-lower-group").attr({zIndex:e.frontLower.zIndex}).add(e),[e.frontLower,e.backLower,e.rightLower]))i||t.attr(r),t.add(e.lowerGroup);return e.gradientForSides=t.gradientForSides,e}function w(t){this.getCylinderEnd||y("A required Highcharts module is missing: cylinder.js",!0,c[this.chartIndex]);let e=c[this.chartIndex],i=t.alphaCorrection=90-Math.abs(e.options.chart.options3d.alpha%180-90),r=this.cuboidPath.call(this,u(t,{depth:t.width,width:(t.width+t.bottom.width)/2})),o=r.isTop,n=!r.isFront,s=!!t.middle,d=this.getCylinderEnd(e,u(t,{x:t.x-t.width/2,z:t.z-t.width/2,alphaCorrection:i})),h=t.bottom.width,a=u(t,{width:h,x:t.x-h/2,z:t.z-h/2,alphaCorrection:i}),l=this.getCylinderEnd(e,a,!0),p=h,g=a,f=l,x=l,w;s&&(p=t.middle.width,g=u(t,{y:t.y+t.middle.fraction*t.height,width:p,x:t.x-p/2,z:t.z-p/2}),f=this.getCylinderEnd(e,g,!1),x=this.getCylinderEnd(e,g,!1));let m={top:d,bottom:l,frontUpper:this.getCylinderFront(d,f),zIndexes:{group:r.zIndexes.group,top:3*(0===o),bottom:3*(1===o),frontUpper:n?2:1,backUpper:n?1:2,rightUpper:n?2:1}};return m.backUpper=this.getCylinderBack(d,f),w=Math.min(p,t.width)/Math.max(p,t.width)!=1,m.rightUpper=this.getCylinderFront(this.getCylinderEnd(e,u(t,{x:t.x-t.width/2,z:t.z-t.width/2,alphaCorrection:w?-i:0}),!1),this.getCylinderEnd(e,u(g,{alphaCorrection:w?-i:0}),!s)),s&&(w=Math.min(p,h)/Math.max(p,h)!=1,u(!0,m,{frontLower:this.getCylinderFront(x,l),backLower:this.getCylinderBack(x,l),rightLower:this.getCylinderFront(this.getCylinderEnd(e,u(a,{alphaCorrection:w?-i:0}),!0),this.getCylinderEnd(e,u(g,{alphaCorrection:w?-i:0}),!1)),zIndexes:{frontLower:n?2:1,backLower:n?1:2,rightLower:n?1:2}})),m}let m=t.default.SeriesRegistry;var b=e.n(m);let{seriesTypes:{column:A}}=b(),{extend:z}=r();class L extends A.prototype.pointClass{}z(L.prototype,{shapeType:"funnel3d"});let{deg2rad:C}=r(),{pick:U}=r();function v(t,e,i,r){let o=e.options.chart.options3d,n=U(r,!!i&&e.inverted),s={x:e.plotWidth/2,y:e.plotHeight/2,z:o.depth/2,vd:U(o.depth,1)*U(o.viewDistance,0)},d=e.scale3d||1,h=C*o.beta*(n?-1:1),a=C*o.alpha*(n?-1:1),l={cosA:Math.cos(a),cosB:Math.cos(-h),sinA:Math.sin(a),sinB:Math.sin(-h)};return i||(s.x+=e.plotLeft,s.y+=e.plotTop),t.map(function(t){var e,i,r;let o=(e=(n?t.y:t.x)-s.x,i=(n?t.x:t.y)-s.y,r=(t.z||0)-s.z,{x:l.cosB*e-l.sinB*r,y:-l.sinA*l.sinB*e+l.cosA*i-l.cosB*l.sinA*r,z:l.cosA*l.sinB*e+l.sinA*i+l.cosA*l.cosB*r}),h=G(o,s,s.vd);return h.x=h.x*d+s.x,h.y=h.y*d+s.y,h.z=o.z*d+s.z,{x:n?h.y:h.x,y:n?h.x:h.y,z:h.z}})}function G(t,e,i){let r=i>0&&i<Number.POSITIVE_INFINITY?i/(t.z+e.z+i):1;return{x:t.x*r,y:t.y*r}}function M(t){let e=0,i,r;for(i=0;i<t.length;i++)r=(i+1)%t.length,e+=t[i].x*t[r].y-t[r].x*t[i].y;return e/2}let{noop:k}=r(),{perspective:F}={perspective:v,perspective3D:G,pointCameraDistance:function(t,e){let i=e.options.chart.options3d,r={x:e.plotWidth/2,y:e.plotHeight/2,z:U(i.depth,1)*U(i.viewDistance,0)+i.depth};return Math.sqrt(Math.pow(r.x-U(t.plotX,t.x),2)+Math.pow(r.y-U(t.plotY,t.y),2)+Math.pow(r.z-U(t.plotZ,t.z),2))},shapeArea:M,shapeArea3D:function(t,e,i){return M(v(t,e,i))}},{series:B,seriesTypes:{column:I}}=b(),{extend:S,merge:E,pick:P,relativeLength:T}=r();class W extends I{alignDataLabel(t,e,i){let r=t.dlBoxRaw,o=this.chart.inverted,n=t.plotY>P(this.translatedThreshold,this.yAxis.len),s=P(i.inside,!!this.options.stacking),d={x:r.x,y:r.y,height:0};i.align=P(i.align,!o||s?"center":n?"right":"left"),i.verticalAlign=P(i.verticalAlign,o||s?"middle":n?"top":"bottom"),"top"!==i.verticalAlign&&(d.y+=r.bottom/("bottom"===i.verticalAlign?1:2)),d.width=this.getWidthAt(d.y),this.options.reversed&&(d.width=r.fullWidth-d.width),s?d.x-=d.width/2:"left"===i.align?(i.align="right",d.x-=1.5*d.width):"right"===i.align?(i.align="left",d.x+=d.width/2):d.x-=d.width/2,t.dlBox=d,I.prototype.alignDataLabel.apply(this,arguments)}bindAxes(){B.prototype.bindAxes.apply(this,arguments),S(this.xAxis.options,{gridLineWidth:0,lineWidth:0,title:void 0,tickPositions:[]}),E(!0,this.yAxis.options,{gridLineWidth:0,title:void 0,labels:{enabled:!1}})}translate(){B.prototype.translate.apply(this,arguments);let t=this.chart,e=this.options,i=e.reversed,r=e.ignoreHiddenPoint,o=t.plotWidth,n=t.plotHeight,s=e.center,d=T(s[0],o),h=T(s[1],n),a=T(e.width,o),l=T(e.height,n),p=T(e.neckWidth,o),g=T(e.neckHeight,n),c=h-l/2+l-g,y=this.points,f=0,u=0,x,w,m,b,A,z,L,C,U;for(let t of(this.getWidthAt=w=function(t){return t>c||l===g?p:p+(a-p)*(1-(t-(h-l/2))/(l-g))},this.center=[d,h,l],this.centerX=d,y))r&&!1===t.visible||(f+=t.y);for(let o of y)L=null,m=f?o.y/f:0,z=(A=h-l/2+u*l)+m*l,x=w(A),C=z-A,(U={gradientForSides:P(o.options.gradientForSides,e.gradientForSides),x:d,y:A,height:C,width:x,z:1,top:{width:x}}).bottom={fraction:m,width:x=w(z)},A>=c?U.isCylinder=!0:z>c&&(L=z,x=w(c),z=c,U.bottom.width=x,U.middle={fraction:C?(c-A)/C:0,width:x}),i&&(U.y=A=h+l/2-(u+m)*l,U.middle&&(U.middle.fraction=1-(C?U.middle.fraction:0)),x=U.width,U.width=U.bottom.width,U.bottom.width=x),o.shapeArgs=S(o.shapeArgs,U),o.percentage=100*m,o.plotX=d,i?o.plotY=h+l/2-(u+m/2)*l:o.plotY=(A+(L||z))/2,b=F([{x:d,y:o.plotY,z:i?-(a-w(o.plotY))/2:-w(o.plotY)/2}],t,!0)[0],o.tooltipPos=[b.x,b.y],o.dlBoxRaw={x:d,width:w(o.plotY),y:A,bottom:U.height||0,fullWidth:a},r&&!1===o.visible||(u+=m)}}W.compose=function(t){let e=t.prototype;e.funnel3d||(e.Element3D.types.funnel3d=g,f(e,{funnel3d:x,funnel3dPath:w}))},W.defaultOptions=E(I.defaultOptions,{center:["50%","50%"],width:"90%",neckWidth:"30%",height:"100%",neckHeight:"25%",reversed:!1,gradientForSides:!0,animation:!1,edgeWidth:0,colorByPoint:!0,showInLegend:!1,dataLabels:{align:"right",crop:!1,inside:!1,overflow:"allow"}}),S(W.prototype,{pointClass:L,translate3dShapes:k}),b().registerSeriesType("funnel3d",W),e.d({},{}),e.d({},{}),W.compose(d().getRendererType());let N=r();export{N as default};
@@ -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/funnel3d
4
4
  * @requires highcharts
5
5
  * @requires highcharts/highcharts-3d