@ntlab/ntjs-assets 2.0.26 → 2.0.28

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 (522) hide show
  1. package/assets/js/cdn.json +2 -2
  2. package/assets/js/highcharts/es-modules/Accessibility/Accessibility.js +1 -1
  3. package/assets/js/highcharts/es-modules/Accessibility/AccessibilityComponent.js +1 -1
  4. package/assets/js/highcharts/es-modules/Accessibility/Components/NavigatorComponent.js +2 -2
  5. package/assets/js/highcharts/es-modules/Accessibility/KeyboardNavigation.js +1 -1
  6. package/assets/js/highcharts/es-modules/Accessibility/KeyboardNavigationHandler.js +5 -5
  7. package/assets/js/highcharts/es-modules/Accessibility/Options/A11yDefaults.js +1 -1
  8. package/assets/js/highcharts/es-modules/Accessibility/Options/LangDefaults.js +3 -3
  9. package/assets/js/highcharts/es-modules/Accessibility/Utils/EventProvider.js +1 -1
  10. package/assets/js/highcharts/es-modules/Accessibility/Utils/HTMLUtilities.js +1 -1
  11. package/assets/js/highcharts/es-modules/Core/Animation/Fx.js +4 -2
  12. package/assets/js/highcharts/es-modules/Core/Axis/Axis.js +3 -3
  13. package/assets/js/highcharts/es-modules/Core/Axis/AxisDefaults.js +1 -0
  14. package/assets/js/highcharts/es-modules/Core/Axis/Color/ColorAxisDefaults.js +7 -3
  15. package/assets/js/highcharts/es-modules/Core/Axis/GridAxis.js +1 -1
  16. package/assets/js/highcharts/es-modules/Core/Axis/OrdinalAxis.js +5 -2
  17. package/assets/js/highcharts/es-modules/Core/Axis/RadialAxisDefaults.js +3 -3
  18. package/assets/js/highcharts/es-modules/Core/Axis/Stacking/StackItem.js +1 -1
  19. package/assets/js/highcharts/es-modules/Core/Chart/Chart.js +16 -7
  20. package/assets/js/highcharts/es-modules/Core/Chart/MapChart.js +3 -3
  21. package/assets/js/highcharts/es-modules/Core/Chart/StockChart.js +1 -1
  22. package/assets/js/highcharts/es-modules/Core/Color/Color.js +2 -2
  23. package/assets/js/highcharts/es-modules/Core/Defaults.js +27 -1
  24. package/assets/js/highcharts/es-modules/Core/Geometry/GeometryUtilities.js +22 -0
  25. package/assets/js/highcharts/es-modules/Core/Globals.js +1 -1
  26. package/assets/js/highcharts/es-modules/Core/Legend/Legend.js +82 -14
  27. package/assets/js/highcharts/es-modules/Core/MSPointer.js +42 -1
  28. package/assets/js/highcharts/es-modules/Core/Pointer.js +10 -6
  29. package/assets/js/highcharts/es-modules/Core/Renderer/HTML/AST.js +6 -0
  30. package/assets/js/highcharts/es-modules/Core/Renderer/HTML/HTMLElement.js +2 -2
  31. package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGElement.js +31 -98
  32. package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGLabel.js +20 -0
  33. package/assets/js/highcharts/es-modules/Core/Renderer/SVG/SVGRenderer.js +29 -14
  34. package/assets/js/highcharts/es-modules/Core/Renderer/SVG/Symbols.js +18 -18
  35. package/assets/js/highcharts/es-modules/Core/Responsive.js +6 -1
  36. package/assets/js/highcharts/es-modules/Core/Series/DataLabel.js +1 -10
  37. package/assets/js/highcharts/es-modules/Core/Series/DataSeriesComposition.js +0 -2
  38. package/assets/js/highcharts/es-modules/Core/Series/Point.js +7 -10
  39. package/assets/js/highcharts/es-modules/Core/Series/Series.js +40 -24
  40. package/assets/js/highcharts/es-modules/Core/Series/SeriesDefaults.js +18 -12
  41. package/assets/js/highcharts/es-modules/Core/Templating.js +2 -2
  42. package/assets/js/highcharts/es-modules/Core/Tooltip.js +6 -3
  43. package/assets/js/highcharts/es-modules/Data/Connectors/JSONConnector.js +1 -0
  44. package/assets/js/highcharts/es-modules/Data/Converters/CSVConverter.js +1 -1
  45. package/assets/js/highcharts/es-modules/Data/Converters/DataConverter.js +7 -7
  46. package/assets/js/highcharts/es-modules/Data/DataTable.js +106 -5
  47. package/assets/js/highcharts/es-modules/Data/Formula/FormulaParser.js +2 -2
  48. package/assets/js/highcharts/es-modules/Extensions/Annotations/Controllables/ControllableDefaults.js +1 -1
  49. package/assets/js/highcharts/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +1 -1
  50. package/assets/js/highcharts/es-modules/Extensions/Annotations/NavigationBindings.js +1 -2
  51. package/assets/js/highcharts/es-modules/Extensions/Boost/Boost.js +1 -1
  52. package/assets/js/highcharts/es-modules/Extensions/Boost/BoostChart.js +8 -2
  53. package/assets/js/highcharts/es-modules/Extensions/Boost/BoostSeries.js +41 -10
  54. package/assets/js/highcharts/es-modules/Extensions/Boost/WGLShader.js +1 -1
  55. package/assets/js/highcharts/es-modules/Extensions/BorderRadius.js +3 -3
  56. package/assets/js/highcharts/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +0 -38
  57. package/assets/js/highcharts/es-modules/Extensions/Data.js +11 -11
  58. package/assets/js/highcharts/es-modules/Extensions/DataGrouping/DataGrouping.js +1 -2
  59. package/assets/js/highcharts/es-modules/Extensions/DataGrouping/DataGroupingDefaults.js +1 -1
  60. package/assets/js/highcharts/es-modules/Extensions/DownloadURL.js +1 -1
  61. package/assets/js/highcharts/es-modules/Extensions/Drilldown/Drilldown.js +0 -2
  62. package/assets/js/highcharts/es-modules/Extensions/Exporting/Exporting.js +14 -14
  63. package/assets/js/highcharts/es-modules/Extensions/OverlappingDataLabels.js +36 -5
  64. package/assets/js/highcharts/es-modules/Extensions/Pane/PaneDefaults.js +3 -2
  65. package/assets/js/highcharts/es-modules/Extensions/ParallelCoordinates/ParallelCoordinates.js +1 -1
  66. package/assets/js/highcharts/es-modules/Extensions/Sonification/MIDI.js +7 -7
  67. package/assets/js/highcharts/es-modules/Extensions/Sonification/SonificationInstrument.js +0 -1
  68. package/assets/js/highcharts/es-modules/Extensions/Sonification/TimelineFromChart.js +1 -3
  69. package/assets/js/highcharts/es-modules/Extensions/TextPath.js +225 -0
  70. package/assets/js/highcharts/es-modules/Maps/MapUtilities.js +1 -20
  71. package/assets/js/highcharts/es-modules/Maps/MapView.js +3 -1
  72. package/assets/js/highcharts/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +3 -0
  73. package/assets/js/highcharts/es-modules/Series/Area/AreaSeries.js +5 -0
  74. package/assets/js/highcharts/es-modules/Series/Area/AreaSeriesDefaults.js +1 -1
  75. package/assets/js/highcharts/es-modules/Series/Bar/BarSeries.js +1 -1
  76. package/assets/js/highcharts/es-modules/Series/Bellcurve/BellcurveSeriesDefaults.js +2 -2
  77. package/assets/js/highcharts/es-modules/Series/BoxPlot/BoxPlotSeries.js +2 -1
  78. package/assets/js/highcharts/es-modules/Series/Bubble/BubbleLegendComposition.js +4 -7
  79. package/assets/js/highcharts/es-modules/Series/Bubble/BubbleLegendDefaults.js +3 -3
  80. package/assets/js/highcharts/es-modules/Series/Bubble/BubbleSeries.js +4 -4
  81. package/assets/js/highcharts/es-modules/Series/Column/ColumnSeriesDefaults.js +1 -1
  82. package/assets/js/highcharts/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +5 -2
  83. package/assets/js/highcharts/es-modules/Series/Dumbbell/DumbbellSeriesDefaults.js +2 -2
  84. package/assets/js/highcharts/es-modules/Series/ErrorBar/ErrorBarSeries.js +2 -2
  85. package/assets/js/highcharts/es-modules/Series/Flags/FlagsSeries.js +2 -2
  86. package/assets/js/highcharts/es-modules/Series/Flags/FlagsSeriesDefaults.js +1 -1
  87. package/assets/js/highcharts/es-modules/Series/Gantt/GanttSeriesDefaults.js +1 -1
  88. package/assets/js/highcharts/es-modules/Series/Gauge/GaugeSeries.js +1 -1
  89. package/assets/js/highcharts/es-modules/Series/HLC/HLCSeries.js +1 -1
  90. package/assets/js/highcharts/es-modules/Series/Heatmap/HeatmapSeriesDefaults.js +2 -2
  91. package/assets/js/highcharts/es-modules/Series/Item/ItemSeries.js +1 -1
  92. package/assets/js/highcharts/es-modules/Series/Map/MapSeries.js +1 -1
  93. package/assets/js/highcharts/es-modules/Series/Map/MapSeriesDefaults.js +2 -2
  94. package/assets/js/highcharts/es-modules/Series/Networkgraph/NetworkgraphSeries.js +4 -1
  95. package/assets/js/highcharts/es-modules/Series/Organization/OrganizationSeries.js +3 -0
  96. package/assets/js/highcharts/es-modules/Series/PackedBubble/PackedBubblePoint.js +1 -1
  97. package/assets/js/highcharts/es-modules/Series/PackedBubble/PackedBubbleSeries.js +8 -5
  98. package/assets/js/highcharts/es-modules/Series/Pie/PieDataLabel.js +7 -6
  99. package/assets/js/highcharts/es-modules/Series/Pie/PiePoint.js +6 -6
  100. package/assets/js/highcharts/es-modules/Series/Pie/PieSeriesDefaults.js +11 -10
  101. package/assets/js/highcharts/es-modules/Series/Pie3D/Pie3DSeries.js +1 -1
  102. package/assets/js/highcharts/es-modules/Series/Sankey/SankeySeries.js +7 -4
  103. package/assets/js/highcharts/es-modules/Series/Sankey/SankeySeriesDefaults.js +1 -1
  104. package/assets/js/highcharts/es-modules/Series/Sunburst/SunburstSeries.js +8 -5
  105. package/assets/js/highcharts/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +2 -2
  106. package/assets/js/highcharts/es-modules/Series/Tilemap/TilemapSeriesDefaults.js +2 -2
  107. package/assets/js/highcharts/es-modules/Series/Treegraph/TreegraphSeries.js +23 -2
  108. package/assets/js/highcharts/es-modules/Series/Treegraph/TreegraphSeriesDefaults.js +2 -2
  109. package/assets/js/highcharts/es-modules/Series/Treemap/TreemapPoint.js +2 -1
  110. package/assets/js/highcharts/es-modules/Series/Treemap/TreemapSeries.js +15 -7
  111. package/assets/js/highcharts/es-modules/Series/Treemap/TreemapSeriesDefaults.js +15 -1
  112. package/assets/js/highcharts/es-modules/Series/VariablePie/VariablePieSeriesDefaults.js +2 -2
  113. package/assets/js/highcharts/es-modules/Series/Variwide/VariwideComposition.js +1 -1
  114. package/assets/js/highcharts/es-modules/Series/Vector/VectorSeries.js +1 -1
  115. package/assets/js/highcharts/es-modules/Series/Windbarb/WindbarbSeries.js +2 -2
  116. package/assets/js/highcharts/es-modules/Series/Wordcloud/WordcloudSeries.js +2 -2
  117. package/assets/js/highcharts/es-modules/Series/Wordcloud/WordcloudSeriesDefaults.js +1 -1
  118. package/assets/js/highcharts/es-modules/Stock/Indicators/AD/ADIndicator.js +1 -1
  119. package/assets/js/highcharts/es-modules/Stock/Indicators/APO/APOIndicator.js +1 -1
  120. package/assets/js/highcharts/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +1 -1
  121. package/assets/js/highcharts/es-modules/Stock/Indicators/CMF/CMFIndicator.js +1 -1
  122. package/assets/js/highcharts/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +1 -1
  123. package/assets/js/highcharts/es-modules/Stock/Indicators/IKH/IKHIndicator.js +3 -3
  124. package/assets/js/highcharts/es-modules/Stock/Indicators/LinearRegression/LinearRegressionIndicator.js +1 -1
  125. package/assets/js/highcharts/es-modules/Stock/Indicators/MFI/MFIIndicator.js +1 -1
  126. package/assets/js/highcharts/es-modules/Stock/Indicators/PC/PCIndicator.js +1 -1
  127. package/assets/js/highcharts/es-modules/Stock/Indicators/PPO/PPOIndicator.js +1 -1
  128. package/assets/js/highcharts/es-modules/Stock/Indicators/PSAR/PSARIndicator.js +1 -1
  129. package/assets/js/highcharts/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +3 -3
  130. package/assets/js/highcharts/es-modules/Stock/Indicators/SMA/SMAIndicator.js +1 -1
  131. package/assets/js/highcharts/es-modules/Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js +2 -2
  132. package/assets/js/highcharts/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +3 -3
  133. package/assets/js/highcharts/es-modules/Stock/Indicators/TrendLine/TrendLineIndicator.js +1 -1
  134. package/assets/js/highcharts/es-modules/Stock/Indicators/VWAP/VWAPIndicator.js +1 -1
  135. package/assets/js/highcharts/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +1 -1
  136. package/assets/js/highcharts/es-modules/Stock/Navigator/Navigator.js +141 -55
  137. package/assets/js/highcharts/es-modules/Stock/Navigator/NavigatorDefaults.js +1 -1
  138. package/assets/js/highcharts/es-modules/Stock/RangeSelector/RangeSelector.js +1 -1
  139. package/assets/js/highcharts/es-modules/Stock/RangeSelector/RangeSelectorDefaults.js +1 -1
  140. package/assets/js/highcharts/es-modules/Stock/Scrollbar/ScrollbarDefaults.js +1 -1
  141. package/assets/js/highcharts/es-modules/Stock/StockTools/StockToolbar.js +115 -37
  142. package/assets/js/highcharts/es-modules/Stock/StockTools/StockToolsDefaults.js +7 -1
  143. package/assets/js/highcharts/es-modules/Stock/StockTools/StockToolsGui.js +24 -23
  144. package/assets/js/highcharts/es-modules/Stock/StockTools/StockToolsUtilities.js +26 -0
  145. package/assets/js/highcharts/es-modules/masters/highcharts-more.src.js +2 -2
  146. package/assets/js/highcharts/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
  147. package/assets/js/highcharts/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
  148. package/assets/js/highcharts/es-modules/masters/indicators/ao.src.js +1 -1
  149. package/assets/js/highcharts/es-modules/masters/indicators/apo.src.js +1 -1
  150. package/assets/js/highcharts/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
  151. package/assets/js/highcharts/es-modules/masters/indicators/aroon.src.js +1 -1
  152. package/assets/js/highcharts/es-modules/masters/indicators/atr.src.js +1 -1
  153. package/assets/js/highcharts/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
  154. package/assets/js/highcharts/es-modules/masters/indicators/cci.src.js +1 -1
  155. package/assets/js/highcharts/es-modules/masters/indicators/chaikin.src.js +1 -1
  156. package/assets/js/highcharts/es-modules/masters/indicators/cmf.src.js +1 -1
  157. package/assets/js/highcharts/es-modules/masters/indicators/cmo.src.js +1 -1
  158. package/assets/js/highcharts/es-modules/masters/indicators/dema.src.js +1 -1
  159. package/assets/js/highcharts/es-modules/masters/indicators/disparity-index.src.js +1 -1
  160. package/assets/js/highcharts/es-modules/masters/indicators/dmi.src.js +1 -1
  161. package/assets/js/highcharts/es-modules/masters/indicators/dpo.src.js +1 -1
  162. package/assets/js/highcharts/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
  163. package/assets/js/highcharts/es-modules/masters/indicators/indicators-all.src.js +1 -1
  164. package/assets/js/highcharts/es-modules/masters/indicators/indicators.src.js +1 -1
  165. package/assets/js/highcharts/es-modules/masters/indicators/keltner-channels.src.js +1 -1
  166. package/assets/js/highcharts/es-modules/masters/indicators/klinger.src.js +1 -1
  167. package/assets/js/highcharts/es-modules/masters/indicators/macd.src.js +1 -1
  168. package/assets/js/highcharts/es-modules/masters/indicators/mfi.src.js +1 -1
  169. package/assets/js/highcharts/es-modules/masters/indicators/momentum.src.js +1 -1
  170. package/assets/js/highcharts/es-modules/masters/indicators/natr.src.js +1 -1
  171. package/assets/js/highcharts/es-modules/masters/indicators/obv.src.js +1 -1
  172. package/assets/js/highcharts/es-modules/masters/indicators/pivot-points.src.js +1 -1
  173. package/assets/js/highcharts/es-modules/masters/indicators/ppo.src.js +1 -1
  174. package/assets/js/highcharts/es-modules/masters/indicators/price-channel.src.js +1 -1
  175. package/assets/js/highcharts/es-modules/masters/indicators/price-envelopes.src.js +1 -1
  176. package/assets/js/highcharts/es-modules/masters/indicators/psar.src.js +1 -1
  177. package/assets/js/highcharts/es-modules/masters/indicators/regressions.src.js +1 -1
  178. package/assets/js/highcharts/es-modules/masters/indicators/roc.src.js +1 -1
  179. package/assets/js/highcharts/es-modules/masters/indicators/rsi.src.js +1 -1
  180. package/assets/js/highcharts/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
  181. package/assets/js/highcharts/es-modules/masters/indicators/stochastic.src.js +1 -1
  182. package/assets/js/highcharts/es-modules/masters/indicators/supertrend.src.js +1 -1
  183. package/assets/js/highcharts/es-modules/masters/indicators/tema.src.js +1 -1
  184. package/assets/js/highcharts/es-modules/masters/indicators/trendline.src.js +1 -1
  185. package/assets/js/highcharts/es-modules/masters/indicators/trix.src.js +1 -1
  186. package/assets/js/highcharts/es-modules/masters/indicators/volume-by-price.src.js +1 -1
  187. package/assets/js/highcharts/es-modules/masters/indicators/vwap.src.js +1 -1
  188. package/assets/js/highcharts/es-modules/masters/indicators/williams-r.src.js +1 -1
  189. package/assets/js/highcharts/es-modules/masters/indicators/wma.src.js +1 -1
  190. package/assets/js/highcharts/es-modules/masters/indicators/zigzag.src.js +1 -1
  191. package/assets/js/highcharts/es-modules/masters/modules/arc-diagram.src.js +2 -3
  192. package/assets/js/highcharts/es-modules/masters/modules/cylinder.src.js +1 -1
  193. package/assets/js/highcharts/es-modules/masters/modules/dependency-wheel.src.js +1 -1
  194. package/assets/js/highcharts/es-modules/masters/modules/drag-panes.src.js +1 -1
  195. package/assets/js/highcharts/es-modules/masters/modules/export-data.src.js +1 -1
  196. package/assets/js/highcharts/es-modules/masters/modules/funnel3d.src.js +2 -2
  197. package/assets/js/highcharts/es-modules/masters/modules/heikinashi.src.js +1 -1
  198. package/assets/js/highcharts/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
  199. package/assets/js/highcharts/es-modules/masters/modules/map.src.js +1 -1
  200. package/assets/js/highcharts/es-modules/masters/modules/offline-exporting.src.js +1 -1
  201. package/assets/js/highcharts/es-modules/masters/modules/organization.src.js +1 -1
  202. package/assets/js/highcharts/es-modules/masters/modules/price-indicator.src.js +1 -1
  203. package/assets/js/highcharts/es-modules/masters/modules/pyramid3d.src.js +3 -3
  204. package/assets/js/highcharts/es-modules/masters/modules/solid-gauge.src.js +1 -1
  205. package/assets/js/highcharts/es-modules/masters/modules/stock-tools.src.js +1 -1
  206. package/assets/js/highcharts/es-modules/masters/modules/textpath.src.js +16 -0
  207. package/assets/js/highcharts/es-modules/masters/modules/tilemap.src.js +1 -1
  208. package/assets/js/highcharts/es-modules/masters/modules/treegraph.src.js +1 -1
  209. package/assets/js/highcharts/highcharts-3d.js +2 -2
  210. package/assets/js/highcharts/highcharts-3d.src.js +4 -4
  211. package/assets/js/highcharts/highcharts-gantt.js +3 -3
  212. package/assets/js/highcharts/highcharts-gantt.src.js +3374 -3042
  213. package/assets/js/highcharts/highcharts-more.js +2 -2
  214. package/assets/js/highcharts/highcharts-more.src.js +260 -35
  215. package/assets/js/highcharts/highcharts.js +3 -3
  216. package/assets/js/highcharts/highcharts.src.js +5844 -5600
  217. package/assets/js/highcharts/highmaps.js +3 -3
  218. package/assets/js/highcharts/highmaps.src.js +3270 -3043
  219. package/assets/js/highcharts/highstock.js +3 -3
  220. package/assets/js/highcharts/highstock.src.js +3379 -3048
  221. package/assets/js/highcharts/indicators/acceleration-bands.js +2 -2
  222. package/assets/js/highcharts/indicators/acceleration-bands.src.js +4 -4
  223. package/assets/js/highcharts/indicators/accumulation-distribution.js +2 -2
  224. package/assets/js/highcharts/indicators/accumulation-distribution.src.js +5 -5
  225. package/assets/js/highcharts/indicators/ao.js +2 -2
  226. package/assets/js/highcharts/indicators/ao.src.js +4 -4
  227. package/assets/js/highcharts/indicators/apo.js +2 -2
  228. package/assets/js/highcharts/indicators/apo.src.js +5 -5
  229. package/assets/js/highcharts/indicators/aroon-oscillator.js +2 -2
  230. package/assets/js/highcharts/indicators/aroon-oscillator.src.js +4 -4
  231. package/assets/js/highcharts/indicators/aroon.js +2 -2
  232. package/assets/js/highcharts/indicators/aroon.src.js +5 -5
  233. package/assets/js/highcharts/indicators/atr.js +2 -2
  234. package/assets/js/highcharts/indicators/atr.src.js +4 -4
  235. package/assets/js/highcharts/indicators/bollinger-bands.js +2 -2
  236. package/assets/js/highcharts/indicators/bollinger-bands.src.js +4 -4
  237. package/assets/js/highcharts/indicators/cci.js +2 -2
  238. package/assets/js/highcharts/indicators/cci.src.js +4 -4
  239. package/assets/js/highcharts/indicators/chaikin.js +2 -2
  240. package/assets/js/highcharts/indicators/chaikin.src.js +6 -6
  241. package/assets/js/highcharts/indicators/cmf.js +2 -2
  242. package/assets/js/highcharts/indicators/cmf.src.js +5 -5
  243. package/assets/js/highcharts/indicators/cmo.js +2 -2
  244. package/assets/js/highcharts/indicators/cmo.src.js +4 -4
  245. package/assets/js/highcharts/indicators/dema.js +2 -2
  246. package/assets/js/highcharts/indicators/dema.src.js +4 -4
  247. package/assets/js/highcharts/indicators/disparity-index.js +2 -2
  248. package/assets/js/highcharts/indicators/disparity-index.src.js +4 -4
  249. package/assets/js/highcharts/indicators/dmi.js +2 -2
  250. package/assets/js/highcharts/indicators/dmi.src.js +4 -4
  251. package/assets/js/highcharts/indicators/dpo.js +2 -2
  252. package/assets/js/highcharts/indicators/dpo.src.js +4 -4
  253. package/assets/js/highcharts/indicators/ema.js +1 -1
  254. package/assets/js/highcharts/indicators/ema.src.js +2 -2
  255. package/assets/js/highcharts/indicators/ichimoku-kinko-hyo.js +2 -2
  256. package/assets/js/highcharts/indicators/ichimoku-kinko-hyo.src.js +7 -7
  257. package/assets/js/highcharts/indicators/indicators-all.js +2 -2
  258. package/assets/js/highcharts/indicators/indicators-all.src.js +29 -29
  259. package/assets/js/highcharts/indicators/indicators.js +2 -2
  260. package/assets/js/highcharts/indicators/indicators.src.js +5 -5
  261. package/assets/js/highcharts/indicators/keltner-channels.js +2 -2
  262. package/assets/js/highcharts/indicators/keltner-channels.src.js +4 -4
  263. package/assets/js/highcharts/indicators/klinger.js +2 -2
  264. package/assets/js/highcharts/indicators/klinger.src.js +4 -4
  265. package/assets/js/highcharts/indicators/macd.js +2 -2
  266. package/assets/js/highcharts/indicators/macd.src.js +4 -4
  267. package/assets/js/highcharts/indicators/mfi.js +2 -2
  268. package/assets/js/highcharts/indicators/mfi.src.js +5 -5
  269. package/assets/js/highcharts/indicators/momentum.js +2 -2
  270. package/assets/js/highcharts/indicators/momentum.src.js +4 -4
  271. package/assets/js/highcharts/indicators/natr.js +2 -2
  272. package/assets/js/highcharts/indicators/natr.src.js +4 -4
  273. package/assets/js/highcharts/indicators/obv.js +2 -2
  274. package/assets/js/highcharts/indicators/obv.src.js +4 -4
  275. package/assets/js/highcharts/indicators/pivot-points.js +2 -2
  276. package/assets/js/highcharts/indicators/pivot-points.src.js +7 -7
  277. package/assets/js/highcharts/indicators/ppo.js +2 -2
  278. package/assets/js/highcharts/indicators/ppo.src.js +5 -5
  279. package/assets/js/highcharts/indicators/price-channel.js +2 -2
  280. package/assets/js/highcharts/indicators/price-channel.src.js +5 -5
  281. package/assets/js/highcharts/indicators/price-envelopes.js +2 -2
  282. package/assets/js/highcharts/indicators/price-envelopes.src.js +4 -4
  283. package/assets/js/highcharts/indicators/psar.js +2 -2
  284. package/assets/js/highcharts/indicators/psar.src.js +5 -5
  285. package/assets/js/highcharts/indicators/regressions.js +2 -2
  286. package/assets/js/highcharts/indicators/regressions.src.js +5 -5
  287. package/assets/js/highcharts/indicators/roc.js +2 -2
  288. package/assets/js/highcharts/indicators/roc.src.js +4 -4
  289. package/assets/js/highcharts/indicators/rsi.js +2 -2
  290. package/assets/js/highcharts/indicators/rsi.src.js +4 -4
  291. package/assets/js/highcharts/indicators/slow-stochastic.js +2 -2
  292. package/assets/js/highcharts/indicators/slow-stochastic.src.js +6 -6
  293. package/assets/js/highcharts/indicators/stochastic.js +2 -2
  294. package/assets/js/highcharts/indicators/stochastic.src.js +4 -4
  295. package/assets/js/highcharts/indicators/supertrend.js +2 -2
  296. package/assets/js/highcharts/indicators/supertrend.src.js +7 -7
  297. package/assets/js/highcharts/indicators/tema.js +2 -2
  298. package/assets/js/highcharts/indicators/tema.src.js +4 -4
  299. package/assets/js/highcharts/indicators/trendline.js +2 -2
  300. package/assets/js/highcharts/indicators/trendline.src.js +5 -5
  301. package/assets/js/highcharts/indicators/trix.js +2 -2
  302. package/assets/js/highcharts/indicators/trix.src.js +4 -4
  303. package/assets/js/highcharts/indicators/volume-by-price.js +2 -2
  304. package/assets/js/highcharts/indicators/volume-by-price.src.js +4 -4
  305. package/assets/js/highcharts/indicators/vwap.js +2 -2
  306. package/assets/js/highcharts/indicators/vwap.src.js +5 -5
  307. package/assets/js/highcharts/indicators/williams-r.js +2 -2
  308. package/assets/js/highcharts/indicators/williams-r.src.js +5 -5
  309. package/assets/js/highcharts/indicators/wma.js +2 -2
  310. package/assets/js/highcharts/indicators/wma.src.js +4 -4
  311. package/assets/js/highcharts/indicators/zigzag.js +2 -2
  312. package/assets/js/highcharts/indicators/zigzag.src.js +4 -4
  313. package/assets/js/highcharts/modules/accessibility.js +2 -2
  314. package/assets/js/highcharts/modules/accessibility.src.js +162 -77
  315. package/assets/js/highcharts/modules/annotations-advanced.js +2 -2
  316. package/assets/js/highcharts/modules/annotations-advanced.src.js +8 -9
  317. package/assets/js/highcharts/modules/annotations.js +2 -2
  318. package/assets/js/highcharts/modules/annotations.src.js +8 -9
  319. package/assets/js/highcharts/modules/arc-diagram.js +2 -2
  320. package/assets/js/highcharts/modules/arc-diagram.src.js +9363 -5
  321. package/assets/js/highcharts/modules/arrow-symbols.js +2 -2
  322. package/assets/js/highcharts/modules/arrow-symbols.src.js +3 -3
  323. package/assets/js/highcharts/modules/boost-canvas.js +2 -2
  324. package/assets/js/highcharts/modules/boost-canvas.src.js +53 -16
  325. package/assets/js/highcharts/modules/boost.js +2 -2
  326. package/assets/js/highcharts/modules/boost.src.js +54 -17
  327. package/assets/js/highcharts/modules/broken-axis.js +2 -2
  328. package/assets/js/highcharts/modules/broken-axis.src.js +3 -3
  329. package/assets/js/highcharts/modules/bullet.js +2 -2
  330. package/assets/js/highcharts/modules/bullet.src.js +3 -3
  331. package/assets/js/highcharts/modules/coloraxis.js +2 -2
  332. package/assets/js/highcharts/modules/coloraxis.src.js +10 -6
  333. package/assets/js/highcharts/modules/current-date-indicator.js +2 -2
  334. package/assets/js/highcharts/modules/current-date-indicator.src.js +3 -3
  335. package/assets/js/highcharts/modules/cylinder.js +2 -2
  336. package/assets/js/highcharts/modules/cylinder.src.js +4 -4
  337. package/assets/js/highcharts/modules/data-tools.js +2 -2
  338. package/assets/js/highcharts/modules/data-tools.src.js +120 -18
  339. package/assets/js/highcharts/modules/data.js +2 -2
  340. package/assets/js/highcharts/modules/data.src.js +14 -14
  341. package/assets/js/highcharts/modules/datagrouping.js +2 -2
  342. package/assets/js/highcharts/modules/datagrouping.src.js +5 -6
  343. package/assets/js/highcharts/modules/debugger.js +2 -2
  344. package/assets/js/highcharts/modules/debugger.src.js +3 -3
  345. package/assets/js/highcharts/modules/dependency-wheel.js +2 -2
  346. package/assets/js/highcharts/modules/dependency-wheel.src.js +8 -7
  347. package/assets/js/highcharts/modules/dotplot.js +2 -2
  348. package/assets/js/highcharts/modules/dotplot.src.js +3 -3
  349. package/assets/js/highcharts/modules/drag-panes.js +2 -2
  350. package/assets/js/highcharts/modules/drag-panes.src.js +4 -4
  351. package/assets/js/highcharts/modules/draggable-points.js +2 -2
  352. package/assets/js/highcharts/modules/draggable-points.src.js +3 -3
  353. package/assets/js/highcharts/modules/drilldown.js +2 -2
  354. package/assets/js/highcharts/modules/drilldown.src.js +3 -43
  355. package/assets/js/highcharts/modules/dumbbell.js +2 -2
  356. package/assets/js/highcharts/modules/dumbbell.src.js +5 -5
  357. package/assets/js/highcharts/modules/export-data.js +2 -2
  358. package/assets/js/highcharts/modules/export-data.src.js +5 -5
  359. package/assets/js/highcharts/modules/exporting.js +2 -2
  360. package/assets/js/highcharts/modules/exporting.src.js +17 -17
  361. package/assets/js/highcharts/modules/flowmap.js +2 -2
  362. package/assets/js/highcharts/modules/flowmap.src.js +3 -3
  363. package/assets/js/highcharts/modules/full-screen.js +2 -2
  364. package/assets/js/highcharts/modules/full-screen.src.js +3 -3
  365. package/assets/js/highcharts/modules/funnel.js +2 -2
  366. package/assets/js/highcharts/modules/funnel.src.js +3 -3
  367. package/assets/js/highcharts/modules/funnel3d.js +2 -2
  368. package/assets/js/highcharts/modules/funnel3d.src.js +4 -4
  369. package/assets/js/highcharts/modules/gantt.js +2 -2
  370. package/assets/js/highcharts/modules/gantt.src.js +155 -67
  371. package/assets/js/highcharts/modules/geoheatmap.js +2 -2
  372. package/assets/js/highcharts/modules/geoheatmap.src.js +3 -3
  373. package/assets/js/highcharts/modules/grid-axis.js +2 -2
  374. package/assets/js/highcharts/modules/grid-axis.src.js +4 -4
  375. package/assets/js/highcharts/modules/heatmap.js +2 -2
  376. package/assets/js/highcharts/modules/heatmap.src.js +12 -8
  377. package/assets/js/highcharts/modules/heikinashi.js +2 -2
  378. package/assets/js/highcharts/modules/heikinashi.src.js +4 -4
  379. package/assets/js/highcharts/modules/histogram-bellcurve.js +2 -2
  380. package/assets/js/highcharts/modules/histogram-bellcurve.src.js +5 -5
  381. package/assets/js/highcharts/modules/hollowcandlestick.js +2 -2
  382. package/assets/js/highcharts/modules/hollowcandlestick.src.js +4 -4
  383. package/assets/js/highcharts/modules/item-series.js +2 -2
  384. package/assets/js/highcharts/modules/item-series.src.js +4 -4
  385. package/assets/js/highcharts/modules/lollipop.js +2 -2
  386. package/assets/js/highcharts/modules/lollipop.src.js +3 -3
  387. package/assets/js/highcharts/modules/map.js +2 -2
  388. package/assets/js/highcharts/modules/map.src.js +34 -51
  389. package/assets/js/highcharts/modules/marker-clusters.js +2 -2
  390. package/assets/js/highcharts/modules/marker-clusters.src.js +3 -3
  391. package/assets/js/highcharts/modules/mouse-wheel-zoom.js +2 -2
  392. package/assets/js/highcharts/modules/mouse-wheel-zoom.src.js +3 -3
  393. package/assets/js/highcharts/modules/navigator.js +2 -2
  394. package/assets/js/highcharts/modules/navigator.src.js +146 -61
  395. package/assets/js/highcharts/modules/networkgraph.js +2 -2
  396. package/assets/js/highcharts/modules/networkgraph.src.js +231 -5
  397. package/assets/js/highcharts/modules/no-data-to-display.js +2 -2
  398. package/assets/js/highcharts/modules/no-data-to-display.src.js +3 -3
  399. package/assets/js/highcharts/modules/offline-exporting.js +2 -2
  400. package/assets/js/highcharts/modules/offline-exporting.src.js +6 -6
  401. package/assets/js/highcharts/modules/organization.js +2 -2
  402. package/assets/js/highcharts/modules/organization.src.js +6 -5
  403. package/assets/js/highcharts/modules/overlapping-datalabels.js +2 -2
  404. package/assets/js/highcharts/modules/overlapping-datalabels.src.js +3 -3
  405. package/assets/js/highcharts/modules/parallel-coordinates.js +2 -2
  406. package/assets/js/highcharts/modules/parallel-coordinates.src.js +4 -4
  407. package/assets/js/highcharts/modules/pareto.js +2 -2
  408. package/assets/js/highcharts/modules/pareto.src.js +3 -3
  409. package/assets/js/highcharts/modules/pathfinder.js +2 -2
  410. package/assets/js/highcharts/modules/pathfinder.src.js +3 -3
  411. package/assets/js/highcharts/modules/pattern-fill.js +2 -2
  412. package/assets/js/highcharts/modules/pattern-fill.src.js +3 -3
  413. package/assets/js/highcharts/modules/pictorial.js +2 -2
  414. package/assets/js/highcharts/modules/pictorial.src.js +3 -3
  415. package/assets/js/highcharts/modules/price-indicator.js +2 -2
  416. package/assets/js/highcharts/modules/price-indicator.src.js +4 -4
  417. package/assets/js/highcharts/modules/pyramid3d.js +2 -2
  418. package/assets/js/highcharts/modules/pyramid3d.src.js +4 -4
  419. package/assets/js/highcharts/modules/sankey.js +2 -2
  420. package/assets/js/highcharts/modules/sankey.src.js +235 -9
  421. package/assets/js/highcharts/modules/series-label.js +2 -2
  422. package/assets/js/highcharts/modules/series-label.src.js +3 -3
  423. package/assets/js/highcharts/modules/series-on-point.js +2 -2
  424. package/assets/js/highcharts/modules/series-on-point.src.js +3 -3
  425. package/assets/js/highcharts/modules/solid-gauge.js +2 -2
  426. package/assets/js/highcharts/modules/solid-gauge.src.js +4 -4
  427. package/assets/js/highcharts/modules/sonification.js +2 -2
  428. package/assets/js/highcharts/modules/sonification.src.js +12 -15
  429. package/assets/js/highcharts/modules/static-scale.js +2 -2
  430. package/assets/js/highcharts/modules/static-scale.src.js +3 -3
  431. package/assets/js/highcharts/modules/stock-tools.js +2 -2
  432. package/assets/js/highcharts/modules/stock-tools.src.js +178 -70
  433. package/assets/js/highcharts/modules/stock.js +2 -2
  434. package/assets/js/highcharts/modules/stock.src.js +160 -73
  435. package/assets/js/highcharts/modules/streamgraph.js +2 -2
  436. package/assets/js/highcharts/modules/streamgraph.src.js +3 -3
  437. package/assets/js/highcharts/modules/sunburst.js +2 -2
  438. package/assets/js/highcharts/modules/sunburst.src.js +269 -58
  439. package/assets/js/highcharts/modules/textpath.js +7 -0
  440. package/assets/js/highcharts/modules/textpath.src.js +269 -0
  441. package/assets/js/highcharts/modules/tiledwebmap.js +3 -3
  442. package/assets/js/highcharts/modules/tiledwebmap.src.js +3 -3
  443. package/assets/js/highcharts/modules/tilemap.js +2 -2
  444. package/assets/js/highcharts/modules/tilemap.src.js +6 -6
  445. package/assets/js/highcharts/modules/timeline.js +2 -2
  446. package/assets/js/highcharts/modules/timeline.src.js +3 -3
  447. package/assets/js/highcharts/modules/treegraph.js +2 -2
  448. package/assets/js/highcharts/modules/treegraph.src.js +253 -9
  449. package/assets/js/highcharts/modules/treegrid.js +2 -2
  450. package/assets/js/highcharts/modules/treegrid.src.js +4 -4
  451. package/assets/js/highcharts/modules/treemap.js +2 -2
  452. package/assets/js/highcharts/modules/treemap.src.js +35 -50
  453. package/assets/js/highcharts/modules/variable-pie.js +2 -2
  454. package/assets/js/highcharts/modules/variable-pie.src.js +5 -5
  455. package/assets/js/highcharts/modules/variwide.js +2 -2
  456. package/assets/js/highcharts/modules/variwide.src.js +4 -4
  457. package/assets/js/highcharts/modules/vector.js +2 -2
  458. package/assets/js/highcharts/modules/vector.src.js +4 -4
  459. package/assets/js/highcharts/modules/venn.js +2 -2
  460. package/assets/js/highcharts/modules/venn.src.js +3 -88
  461. package/assets/js/highcharts/modules/windbarb.js +2 -2
  462. package/assets/js/highcharts/modules/windbarb.src.js +5 -5
  463. package/assets/js/highcharts/modules/wordcloud.js +2 -2
  464. package/assets/js/highcharts/modules/wordcloud.src.js +6 -6
  465. package/assets/js/highcharts/modules/xrange.js +2 -2
  466. package/assets/js/highcharts/modules/xrange.src.js +3 -3
  467. package/assets/js/highcharts/standalone-navigator.js +2 -2
  468. package/assets/js/highcharts/standalone-navigator.src.js +3363 -3034
  469. package/assets/js/highcharts/themes/avocado.js +2 -2
  470. package/assets/js/highcharts/themes/avocado.src.js +3 -3
  471. package/assets/js/highcharts/themes/brand-dark.js +2 -2
  472. package/assets/js/highcharts/themes/brand-dark.src.js +3 -3
  473. package/assets/js/highcharts/themes/brand-light.js +2 -2
  474. package/assets/js/highcharts/themes/brand-light.src.js +3 -3
  475. package/assets/js/highcharts/themes/dark-blue.js +2 -2
  476. package/assets/js/highcharts/themes/dark-blue.src.js +3 -3
  477. package/assets/js/highcharts/themes/dark-green.js +2 -2
  478. package/assets/js/highcharts/themes/dark-green.src.js +3 -3
  479. package/assets/js/highcharts/themes/dark-unica.js +2 -2
  480. package/assets/js/highcharts/themes/dark-unica.src.js +3 -3
  481. package/assets/js/highcharts/themes/gray.js +2 -2
  482. package/assets/js/highcharts/themes/gray.src.js +3 -3
  483. package/assets/js/highcharts/themes/grid-light.js +2 -2
  484. package/assets/js/highcharts/themes/grid-light.src.js +3 -3
  485. package/assets/js/highcharts/themes/grid.js +2 -2
  486. package/assets/js/highcharts/themes/grid.src.js +3 -3
  487. package/assets/js/highcharts/themes/high-contrast-dark.js +2 -2
  488. package/assets/js/highcharts/themes/high-contrast-dark.src.js +3 -3
  489. package/assets/js/highcharts/themes/high-contrast-light.js +2 -2
  490. package/assets/js/highcharts/themes/high-contrast-light.src.js +3 -3
  491. package/assets/js/highcharts/themes/sand-signika.js +2 -2
  492. package/assets/js/highcharts/themes/sand-signika.src.js +3 -3
  493. package/assets/js/highcharts/themes/skies.js +2 -2
  494. package/assets/js/highcharts/themes/skies.src.js +3 -3
  495. package/assets/js/highcharts/themes/sunset.js +2 -2
  496. package/assets/js/highcharts/themes/sunset.src.js +3 -3
  497. package/assets/js/jqGrid/css/ui.jqgrid-bootstrap5.css +5 -1
  498. package/assets/js/jqGrid/js/grid.base.js +8 -1
  499. package/assets/js/jqGrid/js/grid.formedit.js +7 -7
  500. package/assets/js/jqGrid/js/grid.grouping.js +1 -1
  501. package/assets/js/jqGrid/js/jquery.jqGrid.js +17 -10
  502. package/assets/js/jqGrid/js/jquery.jqGrid.min.js +2 -2
  503. package/assets/js/jqGrid/js/jquery.jqGrid.min.js.map +1 -1
  504. package/assets/js/jqGrid/js/minified/grid.base.js +1 -1
  505. package/assets/js/jqGrid/js/minified/grid.grouping.js +1 -1
  506. package/assets/js/pdfjs/build/pdf.mjs +464 -207
  507. package/assets/js/pdfjs/build/pdf.mjs.map +1 -1
  508. package/assets/js/pdfjs/build/pdf.sandbox.mjs +6 -3
  509. package/assets/js/pdfjs/build/pdf.sandbox.mjs.map +1 -1
  510. package/assets/js/pdfjs/build/pdf.worker.mjs +384 -204
  511. package/assets/js/pdfjs/build/pdf.worker.mjs.map +1 -1
  512. package/assets/js/pdfjs/web/locale/br/viewer.ftl +5 -6
  513. package/assets/js/pdfjs/web/locale/is/viewer.ftl +1 -9
  514. package/assets/js/pdfjs/web/locale/ja/viewer.ftl +1 -3
  515. package/assets/js/pdfjs/web/locale/kab/viewer.ftl +57 -8
  516. package/assets/js/pdfjs/web/locale/nn-NO/viewer.ftl +40 -6
  517. package/assets/js/pdfjs/web/locale/sl/viewer.ftl +4 -0
  518. package/assets/js/pdfjs/web/viewer.css +15 -0
  519. package/assets/js/pdfjs/web/viewer.html +1 -1
  520. package/assets/js/pdfjs/web/viewer.mjs +159 -91
  521. package/assets/js/pdfjs/web/viewer.mjs.map +1 -1
  522. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highmaps JS v11.4.3 (2024-05-22)
2
+ * @license Highmaps JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Highmaps as a plugin for Highcharts or Highcharts Stock.
5
5
  *
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -714,9 +714,13 @@
714
714
  * Fires when the legend item belonging to the colorAxis is clicked.
715
715
  * One parameter, `event`, is passed to the function.
716
716
  *
717
- * @type {Function}
718
- * @product highcharts highstock highmaps
719
- * @apioption colorAxis.events.legendItemClick
717
+ * **Note:** This option is deprecated in favor of
718
+ * [legend.events.itemClick](#legend.events.itemClick).
719
+ *
720
+ * @deprecated
721
+ * @type {Function}
722
+ * @product highcharts highstock highmaps
723
+ * @apioption colorAxis.events.legendItemClick
720
724
  */
721
725
  /**
722
726
  * The width of the color axis. If it's a number, it is interpreted as
@@ -2422,7 +2426,7 @@
2422
2426
  '{geojson.copyrightShort}</a>'),
2423
2427
  mapTextFull: pick(defaultCreditsOptions.mapTextFull, '{geojson.copyright}')
2424
2428
  },
2425
- mapView: {},
2429
+ mapView: {}, // Required to enable Chart.mapView
2426
2430
  tooltip: {
2427
2431
  followTouchMove: false
2428
2432
  }
@@ -2558,7 +2562,7 @@
2558
2562
  if (typeof path === 'string') {
2559
2563
  path = path
2560
2564
  // Move letters apart
2561
- .replace(/([A-Za-z])/g, ' $1 ')
2565
+ .replace(/([A-Z])/gi, ' $1 ')
2562
2566
  // Trim
2563
2567
  .replace(/^\s*/, '').replace(/\s*$/, '');
2564
2568
  // Split on spaces and commas. The semicolon is bogus, designed to
@@ -2566,7 +2570,7 @@
2566
2570
  // specific styled mode files.
2567
2571
  const split = path.split(/[ ,;]+/);
2568
2572
  arr = split.map((item) => {
2569
- if (!/[A-Za-z]/.test(item)) {
2573
+ if (!/[A-Z]/i.test(item)) {
2570
2574
  return parseFloat(item);
2571
2575
  }
2572
2576
  return item;
@@ -2615,32 +2619,13 @@
2615
2619
  return { x1, y1, x2, y2 };
2616
2620
  }
2617
2621
  };
2618
- /**
2619
- * Test for point in polygon. Polygon defined as array of [x,y] points.
2620
- * @private
2621
- */
2622
- const pointInPolygon = function ({ x, y }, polygon) {
2623
- let i, j, rel1, rel2, c = false;
2624
- for (i = 0, j = polygon.length - 1; i < polygon.length; j = i++) {
2625
- rel1 = polygon[i][1] > y;
2626
- rel2 = polygon[j][1] > y;
2627
- if (rel1 !== rel2 &&
2628
- (x < (polygon[j][0] - polygon[i][0]) * (y - polygon[i][1]) /
2629
- (polygon[j][1] - polygon[i][1]) +
2630
- polygon[i][0])) {
2631
- c = !c;
2632
- }
2633
- }
2634
- return c;
2635
- };
2636
2622
  /* *
2637
2623
  *
2638
2624
  * Default Export
2639
2625
  *
2640
2626
  * */
2641
2627
  const MapUtilities = {
2642
- boundsFromPath,
2643
- pointInPolygon
2628
+ boundsFromPath
2644
2629
  };
2645
2630
 
2646
2631
  return MapUtilities;
@@ -2878,7 +2863,7 @@
2878
2863
  * @private
2879
2864
  */
2880
2865
  affectsMapView: true,
2881
- animation: false,
2866
+ animation: false, // Makes the complex shapes slow
2882
2867
  dataLabels: {
2883
2868
  crop: false,
2884
2869
  formatter: function () {
@@ -2888,7 +2873,7 @@
2888
2873
  numberFormatter(value, -1) :
2889
2874
  this.point.name; // #20231
2890
2875
  },
2891
- inside: true,
2876
+ inside: true, // For the color
2892
2877
  overflow: false,
2893
2878
  padding: 0,
2894
2879
  verticalAlign: 'middle'
@@ -5256,7 +5241,7 @@
5256
5241
 
5257
5242
  return Projection;
5258
5243
  });
5259
- _registerModule(_modules, 'Maps/MapView.js', [_modules['Core/Globals.js'], _modules['Maps/MapViewDefaults.js'], _modules['Maps/GeoJSONComposition.js'], _modules['Maps/MapUtilities.js'], _modules['Maps/Projection.js'], _modules['Core/Utilities.js']], function (H, MapViewDefaults, GeoJSONComposition, MU, Projection, U) {
5244
+ _registerModule(_modules, 'Maps/MapView.js', [_modules['Core/Globals.js'], _modules['Maps/MapViewDefaults.js'], _modules['Maps/GeoJSONComposition.js'], _modules['Core/Geometry/GeometryUtilities.js'], _modules['Maps/MapUtilities.js'], _modules['Maps/Projection.js'], _modules['Core/Utilities.js']], function (H, MapViewDefaults, GeoJSONComposition, GeometryUtilities, MU, Projection, U) {
5260
5245
  /* *
5261
5246
  *
5262
5247
  * (c) 2010-2024 Torstein Honsi
@@ -5267,8 +5252,9 @@
5267
5252
  *
5268
5253
  * */
5269
5254
  const { composed } = H;
5255
+ const { pointInPolygon } = GeometryUtilities;
5270
5256
  const { topo2geo } = GeoJSONComposition;
5271
- const { boundsFromPath, pointInPolygon } = MU;
5257
+ const { boundsFromPath } = MU;
5272
5258
  const { addEvent, clamp, crisp, fireEvent, isArray, isNumber, isObject, isString, merge, pick, pushUnique, relativeLength } = U;
5273
5259
  /* *
5274
5260
  *
@@ -6413,7 +6399,7 @@
6413
6399
  group.attr({
6414
6400
  translateX: chart.plotLeft + chart.plotWidth / 2,
6415
6401
  translateY: chart.plotTop + chart.plotHeight / 2,
6416
- scaleX: 0.001,
6402
+ scaleX: 0.001, // #1499
6417
6403
  scaleY: 0.001
6418
6404
  });
6419
6405
  // Run the animation
@@ -7886,19 +7872,19 @@
7886
7872
  * not specified, the `minSize` and the `maxSize` are calculated
7887
7873
  * from bubble series.
7888
7874
  */
7889
- maxSize: 60,
7875
+ maxSize: 60, // Number
7890
7876
  /**
7891
7877
  * Minimum bubble legend range size. If values for ranges are
7892
7878
  * not specified, the `minSize` and the `maxSize` are calculated
7893
7879
  * from bubble series.
7894
7880
  */
7895
- minSize: 10,
7881
+ minSize: 10, // Number
7896
7882
  /**
7897
7883
  * The position of the bubble legend in the legend.
7898
7884
  * @sample highcharts/bubble-legend/connectorandlabels/
7899
7885
  * Bubble legend as last item in legend
7900
7886
  */
7901
- legendIndex: 0,
7887
+ legendIndex: 0, // Number
7902
7888
  /**
7903
7889
  * Options for specific range. One range consists of bubble,
7904
7890
  * label and connector.
@@ -8499,11 +8485,8 @@
8499
8485
  *
8500
8486
  * @param {Highcharts.Legend} LegendClass
8501
8487
  * Core legend class to use with Bubble series.
8502
- *
8503
- * @param {Highcharts.Series} SeriesClass
8504
- * Core series class to use with Bubble series.
8505
8488
  */
8506
- function compose(ChartClass, LegendClass, SeriesClass) {
8489
+ function compose(ChartClass, LegendClass) {
8507
8490
  if (pushUnique(composed, 'Series.BubbleLegend')) {
8508
8491
  setOptions({
8509
8492
  // Set default bubble legend options
@@ -8513,7 +8496,7 @@
8513
8496
  });
8514
8497
  wrap(ChartClass.prototype, 'drawChartBox', chartDrawChartBox);
8515
8498
  addEvent(LegendClass, 'afterGetAllItems', onLegendAfterGetAllItems);
8516
- addEvent(SeriesClass, 'legendItemClick', onSeriesLegendItemClick);
8499
+ addEvent(LegendClass, 'itemClick', onLegendItemClick);
8517
8500
  }
8518
8501
  }
8519
8502
  /**
@@ -8605,12 +8588,12 @@
8605
8588
  /**
8606
8589
  * Toggle bubble legend depending on the visible status of bubble series.
8607
8590
  */
8608
- function onSeriesLegendItemClick(e) {
8591
+ function onLegendItemClick(e) {
8609
8592
  // #14080 don't fire this code if click function is prevented
8610
8593
  if (e.defaultPrevented) {
8611
8594
  return false;
8612
8595
  }
8613
- const series = this, chart = series.chart, visible = series.visible, legend = series.chart.legend;
8596
+ const legend = this, series = e.legendItem, chart = legend.chart, visible = series.visible;
8614
8597
  let status;
8615
8598
  if (legend && legend.bubbleLegend) {
8616
8599
  // Temporary correct 'visible' property
@@ -8811,8 +8794,8 @@
8811
8794
  * Static Functions
8812
8795
  *
8813
8796
  * */
8814
- static compose(AxisClass, ChartClass, LegendClass, SeriesClass) {
8815
- BubbleLegendComposition.compose(ChartClass, LegendClass, SeriesClass);
8797
+ static compose(AxisClass, ChartClass, LegendClass) {
8798
+ BubbleLegendComposition.compose(ChartClass, LegendClass);
8816
8799
  if (pushUnique(composed, 'Series.Bubble')) {
8817
8800
  addEvent(AxisClass, 'foundExtremes', onAxisFoundExtremes);
8818
8801
  }
@@ -9087,7 +9070,7 @@
9087
9070
  * @excluding enabled, enabledThreshold, height, radius, width
9088
9071
  */
9089
9072
  marker: {
9090
- lineColor: null,
9073
+ lineColor: null, // Inherit from series.color
9091
9074
  lineWidth: 1,
9092
9075
  /**
9093
9076
  * The fill opacity of the bubble markers.
@@ -9279,7 +9262,7 @@
9279
9262
  pointClass: BubblePoint,
9280
9263
  parallelArrays: ['x', 'y', 'z'],
9281
9264
  trackerGroups: ['group', 'dataLabelsGroup'],
9282
- specialGroup: 'group',
9265
+ specialGroup: 'group', // To allow clipping (#6296)
9283
9266
  zoneAxis: 'z'
9284
9267
  });
9285
9268
  // On updated data in any series, delete the chart-level Z extremes cache
@@ -10163,14 +10146,14 @@
10163
10146
  },
10164
10147
  clip: true,
10165
10148
  /** @ignore-option */
10166
- pointRange: null,
10149
+ pointRange: null, // Dynamically set to colsize by default
10167
10150
  tooltip: {
10168
10151
  pointFormat: '{point.x}, {point.y}: {point.value}<br/>'
10169
10152
  },
10170
10153
  states: {
10171
10154
  hover: {
10172
10155
  /** @ignore-option */
10173
- halo: false,
10156
+ halo: false, // #3406, halo is disabled on heatmaps by default
10174
10157
  /**
10175
10158
  * How much to brighten the point on interaction. Requires the
10176
10159
  * main color to be defined in hex or rgb(a) format.
@@ -10933,11 +10916,11 @@
10933
10916
  G.topo2geo = GeoJSONComposition.topo2geo;
10934
10917
  // Compositions
10935
10918
  GeoJSONComposition.compose(G.Chart);
10936
- MapBubbleSeries.compose(G.Axis, G.Chart, G.Legend, G.Series);
10919
+ MapBubbleSeries.compose(G.Axis, G.Chart, G.Legend);
10937
10920
  MapNavigation.compose(MapChart, G.Pointer, G.SVGRenderer);
10938
10921
  MapView.compose(MapChart);
10939
10922
  // Default Export
10940
10923
 
10941
10924
  return Highcharts;
10942
10925
  });
10943
- }));
10926
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highcharts JS v11.4.3 (2024-05-22)
2
+ * Highcharts JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Marker clusters module for Highcharts
5
5
  *
6
6
  * (c) 2010-2024 Wojciech Chmiel
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(t){"object"==typeof module&&module.exports?(t.default=t,module.exports=t):"function"==typeof define&&define.amd?define("highcharts/modules/marker-clusters",["highcharts"],function(e){return t(e),t.Highcharts=e,t}):t("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(t){"use strict";var e=t?t._modules:{};function i(t,e,i,s){t.hasOwnProperty(e)||(t[e]=s.apply(null,i),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:e,module:t[e]}})))}i(e,"Extensions/MarkerClusters/MarkerClusterDefaults.js",[],function(){return{cluster:{enabled:!1,allowOverlap:!0,animation:{duration:500},drillToCluster:!0,minimumClusterSize:2,layoutAlgorithm:{gridSize:50,distance:40,kmeansThreshold:100},marker:{symbol:"cluster",radius:15,lineWidth:0,lineColor:"#ffffff"},dataLabels:{enabled:!0,format:"{point.clusterPointsAmount}",verticalAlign:"middle",align:"center",style:{color:"contrast"},inside:!0}},tooltip:{clusterFormat:"<span>Clustered points: {point.clusterPointsAmount}</span><br/>"}}}),i(e,"Extensions/MarkerClusters/MarkerClusterScatter.js",[e["Core/Animation/AnimationUtilities.js"],e["Extensions/MarkerClusters/MarkerClusterDefaults.js"],e["Core/Utilities.js"]],function(t,e,i){let s;let{animObject:a}=t,{cluster:r}=e,{addEvent:o,defined:n,error:l,isArray:p,isFunction:u,isObject:d,isNumber:h,merge:c,objectEach:f,relativeLength:m,syncTimeout:g}=i,x={grid:function(t,e,i,s){let a,r,o,n,l;let p={},u=this.getGridOffset(),d=this.getScaledGridSize(s);for(l=0;l<t.length;l++){let s=Z(this,{x:t[l],y:e[l]});a=s.x-u.plotLeft,r=s.y-u.plotTop,o=Math.floor(a/d),p[n=Math.floor(r/d)+"-"+o]||(p[n]=[]),p[n].push({dataIndex:i[l],x:t[l],y:e[l]})}return p},kmeans:function(t,e,i,s){let a=[],o=[],n={},l=s.processedDistance||r.layoutAlgorithm.distance,p=s.iterations,u=0,d=!0,h=0,c=0,f,m=[];s.processedGridSize=s.processedDistance;let g=this.markerClusterAlgorithms?this.markerClusterAlgorithms.grid.call(this,t,e,i,s):{};for(let t in g)g[t].length>1&&(f=S(g[t]),a.push({posX:f.x,posY:f.y,oldX:0,oldY:0,startPointsLen:g[t].length,points:[]}));for(;d;){for(let t of a)t.points.length=0;o.length=0;for(let s=0;s<t.length;s++)h=t[s],c=e[s],(m=this.getClusterDistancesFromPoint(a,h,c)).length&&m[0].distance<l?a[m[0].clusterIndex].points.push({x:h,y:c,dataIndex:i[s]}):o.push({x:h,y:c,dataIndex:i[s]});for(let t=0;t<a.length;t++)1===a[t].points.length&&(m=this.getClusterDistancesFromPoint(a,a[t].points[0].x,a[t].points[0].y))[1].distance<l&&(a[m[1].clusterIndex].points.push(a[t].points[0]),a[m[0].clusterIndex].points.length=0);d=!1;for(let t=0;t<a.length;t++)f=S(a[t].points),a[t].oldX=a[t].posX,a[t].oldY=a[t].posY,a[t].posX=f.x,a[t].posY=f.y,(a[t].posX>a[t].oldX+1||a[t].posX<a[t].oldX-1||a[t].posY>a[t].oldY+1||a[t].posY<a[t].oldY-1)&&(d=!0);p&&(d=u<p-1),u++}for(let t=0,e=a.length;t<e;++t)n["cluster"+t]=a[t].points;for(let t=0,e=o.length;t<e;++t)n["noise"+t]=[o[t]];return n},optimizedKmeans:function(t,e,i,s){let a=s.processedDistance||r.layoutAlgorithm.gridSize,o=this.getRealExtremes(),l=(this.options.cluster||{}).marker,p,u={},d,h;if(!this.markerClusterInfo||this.initMaxX&&this.initMaxX<o.maxX||this.initMinX&&this.initMinX>o.minX||this.initMaxY&&this.initMaxY<o.maxY||this.initMinY&&this.initMinY>o.minY)this.initMaxX=o.maxX,this.initMinX=o.minX,this.initMaxY=o.maxY,this.initMinY=o.minY,u=this.markerClusterAlgorithms?this.markerClusterAlgorithms.kmeans.call(this,t,e,i,s):{},this.baseClusters=null;else{for(let t of(this.baseClusters||(this.baseClusters={clusters:this.markerClusterInfo.clusters,noise:this.markerClusterInfo.noise}),this.baseClusters.clusters)){for(let e of(t.pointsOutside=[],t.pointsInside=[],t.data)){let i=Z(this,e),s=Z(this,t);p=Math.sqrt(Math.pow(i.x-s.x,2)+Math.pow(i.y-s.y,2)),d=a-(h=t.clusterZone&&t.clusterZone.marker&&t.clusterZone.marker.radius?t.clusterZone.marker.radius:l&&l.radius?l.radius:r.marker.radius)>=0?a-h:h,p>h+d&&n(t.pointsOutside)?t.pointsOutside.push(e):n(t.pointsInside)&&t.pointsInside.push(e)}t.pointsInside.length&&(u[t.id]=t.pointsInside);let e=0;for(let i of t.pointsOutside)u[t.id+"_noise"+e++]=[i]}for(let t of this.baseClusters.noise)u[t.id]=t.data}return u}},y=[],C=0;function k(t,e,i){t.attr({opacity:e}).animate({opacity:1},i)}function M(t,e,i,s){for(let a of(I(t,s,i,!0,!0),e))a.point&&a.point.destroy&&a.point.destroy()}function I(t,e,i,s,a){t.point&&(s&&t.point.graphic&&(t.point.graphic.show(),k(t.point.graphic,e,i)),a&&t.point.dataLabel&&(t.point.dataLabel.show(),k(t.point.dataLabel,e,i)))}function S(t){let e=t.length,i=0,s=0;for(let a=0;a<e;a++)i+=t[a].x,s+=t[a].y;return{x:i/e,y:s/e}}function b(t,e){let i=[];return i.length=e,t.clusters.forEach(function(t){t.data.forEach(function(t){i[t.dataIndex]=t})}),t.noise.forEach(function(t){i[t.data[0].dataIndex]=t.data[0]}),i}function A(){return Math.random().toString(36).substring(2,7)+"-"+C++}function X(t,e,i){t.point&&(e&&t.point.graphic&&t.point.graphic.hide(),i&&t.point.dataLabel&&t.point.dataLabel.hide())}function Y(t){(t.point||t.target).firePointEvent("drillToCluster",t,function(t){let e=t.point||t.target,i=e.series,s=e.series.xAxis,a=e.series.yAxis,r=e.series.chart,{inverted:o,mapView:n,pointer:l}=r;if((i.options.cluster||{}).drillToCluster&&e.clusteredData){let t=e.clusteredData.map(t=>t.x).sort((t,e)=>t-e),i=e.clusteredData.map(t=>t.y).sort((t,e)=>t-e),p=t[0],u=t[t.length-1],d=i[0],h=i[i.length-1],c=Math.abs((u-p)*.1),f=Math.abs((h-d)*.1),m=Math.min(p,u)-c,g=Math.max(p,u)+c,x=Math.min(d,h)-f,y=Math.max(d,h)+f;if(n)n.fitToBounds({x1:m,x2:g,y1:x,y2:y});else if(s&&a){let t=s.toPixels(m),e=s.toPixels(g),i=a.toPixels(x),n=a.toPixels(y);o&&([t,e,i,n]=[i,n,t,e]),t>e&&([t,e]=[e,t]),i>n&&([i,n]=[n,i]),l&&(l.zoomX=!0,l.zoomY=!0),r.transform({from:{x:t,y:i,width:e-t,height:n-i}})}}})}function D(t,e){let{chart:i,xAxis:s,yAxis:a}=t;return i.mapView?i.mapView.pixelsToProjectedUnits(e):{x:s?s.toValue(e.x):0,y:a?a.toValue(e.y):0}}function L(t){let e=this.chart,i=e.mapView,s=a((this.options.cluster||{}).animation),r=s.duration||500,o=(this.markerClusterInfo||{}).pointsState,n=(o||{}).newState,l=(o||{}).oldState,p=[],u,d,h,c=0,f=0,m=0,x=!1,y=!1;if(l&&n){let a=Z(this,d=n[t.stateId]);f=a.x-(i?0:e.plotLeft),m=a.y-(i?0:e.plotTop),1===d.parentsId.length?(u=l[(n||{})[t.stateId].parentsId[0]],d.point&&d.point.graphic&&u&&u.point&&u.point.plotX&&u.point.plotY&&u.point.plotX!==d.point.plotX&&u.point.plotY!==d.point.plotY&&(h=d.point.graphic.getBBox(),c=d.point.graphic&&d.point.graphic.isImg?0:h.width/2,d.point.graphic.attr({x:u.point.plotX-c,y:u.point.plotY-c}),d.point.graphic.animate({x:f-(d.point.graphic.radius||0),y:m-(d.point.graphic.radius||0)},s,function(){y=!0,u.point&&u.point.destroy&&u.point.destroy()}),d.point.dataLabel&&d.point.dataLabel.alignAttr&&u.point.dataLabel&&u.point.dataLabel.alignAttr&&(d.point.dataLabel.attr({x:u.point.dataLabel.alignAttr.x,y:u.point.dataLabel.alignAttr.y}),d.point.dataLabel.animate({x:d.point.dataLabel.alignAttr.x,y:d.point.dataLabel.alignAttr.y},s)))):0===d.parentsId.length?(X(d,!0,!0),g(function(){I(d,.1,s,!0,!0)},r/2)):(X(d,!0,!0),d.parentsId.forEach(function(t){l&&l[t]&&(u=l[t],p.push(u),u.point&&u.point.graphic&&(x=!0,u.point.graphic.show(),u.point.graphic.animate({x:f-(u.point.graphic.radius||0),y:m-(u.point.graphic.radius||0),opacity:.4},s,function(){y=!0,M(d,p,s,.7)}),u.point.dataLabel&&-9999!==u.point.dataLabel.y&&d.point&&d.point.dataLabel&&d.point.dataLabel.alignAttr&&(u.point.dataLabel.show(),u.point.dataLabel.animate({x:d.point.dataLabel.alignAttr.x,y:d.point.dataLabel.alignAttr.y,opacity:.4},s))))}),g(function(){y||M(d,p,s,.85)},r),x||g(function(){M(d,p,s,.1)},r/2))}}function P(){(this.markerClusterSeriesData||[]).forEach(function(t){t&&t.destroy&&t.destroy()}),this.markerClusterSeriesData=null}function z(){let t,e,i,a,l,p,d,c,f,g,x,y,C,k,M,I;let S=this,b=S.chart,A=b.mapView,X=S.xData,L=S.yData,P=S.options.cluster,z=S.getRealExtremes(),w=[],E=[],j=[];if(A&&S.is("mappoint")&&X&&L&&(S.options.data||[]).forEach((t,e)=>{let i=S.projectPoint(t);i&&(X[e]=i.x,L[e]=i.y)}),P&&P.enabled&&X&&X.length&&L&&L.length&&!b.polar){x=P.layoutAlgorithm.type,(k=P.layoutAlgorithm).processedGridSize=m(k.gridSize||r.layoutAlgorithm.gridSize,b.plotWidth),k.processedDistance=m(k.distance||r.layoutAlgorithm.distance,b.plotWidth),a=k.kmeansThreshold||r.layoutAlgorithm.kmeansThreshold;let A=k.processedGridSize/2,O=D(S,{x:0,y:0}),T=D(S,{x:A,y:A});for(I=0,l=Math.abs(O.x-T.x),p=Math.abs(O.y-T.y);I<X.length;I++)!S.dataMaxX&&(n(c)&&n(d)&&n(g)&&n(f)?h(L[I])&&h(g)&&h(f)&&(c=Math.max(X[I],c),d=Math.min(X[I],d),g=Math.max(L[I]||g,g),f=Math.min(L[I]||f,f)):(c=d=X[I],g=f=L[I])),X[I]>=z.minX-l&&X[I]<=z.maxX+l&&(L[I]||z.minY)>=z.minY-p&&(L[I]||z.maxY)<=z.maxY+p&&(w.push(X[I]),E.push(L[I]),j.push(I));n(c)&&n(d)&&h(g)&&h(f)&&(S.dataMaxX=c,S.dataMinX=d,S.dataMaxY=g,S.dataMinY=f),y=(C=(u(x)?x:S.markerClusterAlgorithms?x&&S.markerClusterAlgorithms[x]?S.markerClusterAlgorithms[x]:w.length<a?S.markerClusterAlgorithms.kmeans:S.markerClusterAlgorithms.grid:function(){return!1}).call(this,w,E,j,k))?S.getClusteredData(C,P):C,P.animation&&S.markerClusterInfo&&S.markerClusterInfo.pointsState&&S.markerClusterInfo.pointsState.oldState?(function(t){if(t){let e;for(let i of Object.keys(t))(e=t[i]).point&&e.point.destroy&&e.point.destroy()}}(S.markerClusterInfo.pointsState.oldState),t=S.markerClusterInfo.pointsState.newState):t={},e=X.length,i=S.markerClusterInfo,y&&(S.processedXData=y.groupedXData,S.processedYData=y.groupedYData,S.hasGroupedData=!0,S.markerClusterInfo=y,S.groupMap=y.groupMap),s.apply(this),y&&S.markerClusterInfo&&((S.markerClusterInfo.clusters||[]).forEach(function(t){(M=S.points[t.index]).isCluster=!0,M.clusteredData=t.data,M.clusterPointsAmount=t.data.length,t.point=M,o(M,"click",Y)}),(S.markerClusterInfo.noise||[]).forEach(function(t){t.point=S.points[t.index]}),P.animation&&S.markerClusterInfo&&(S.markerClusterInfo.pointsState={oldState:t,newState:S.getPointsState(y,i,e)}),P.animation?this.hideClusteredData():this.destroyClusteredData(),this.markerClusterSeriesData=this.hasGroupedData?this.points:null)}else s.apply(this)}function w(t,e,i){let s=[];for(let a=0;a<t.length;a++){let r=Z(this,{x:e,y:i}),o=Z(this,{x:t[a].posX,y:t[a].posY}),n=Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2));s.push({clusterIndex:a,distance:n})}return s.sort((t,e)=>t.distance-e.distance)}function E(t,e){let i=[],s=[],a=[],o=[],n=[],h=Math.max(2,e.minimumClusterSize||2),f=0,m,g,x,y,C,k,M,I,b,X,Y,D,L,P;if(u(e.layoutAlgorithm.type)&&!this.isValidGroupedDataObject(t))return l("Highcharts marker-clusters module: The custom algorithm result is not valid!",!1,this.chart),!1;for(P in t)if(t[P].length>=h){if(x=t[P],m=A(),C=x.length,e.zones)for(L=0;L<e.zones.length;L++)C>=e.zones[L].from&&C<=e.zones[L].to&&((Y=e.zones[L]).zoneIndex=L,X=e.zones[L].marker,D=e.zones[L].className);for(b=S(x),"grid"!==e.layoutAlgorithm.type||e.allowOverlap?M={x:b.x,y:b.y}:(k=this.options.marker||{},M=this.preventClusterCollisions({x:b.x,y:b.y,key:P,groupedData:t,gridSize:this.getScaledGridSize(e.layoutAlgorithm),defaultRadius:k.radius||3+(k.lineWidth||0),clusterRadius:X&&X.radius?X.radius:(e.marker||{}).radius||r.marker.radius})),L=0;L<C;L++)x[L].parentStateId=m;if(a.push({x:M.x,y:M.y,id:P,stateId:m,index:f,data:x,clusterZone:Y,clusterZoneClassName:D}),i.push(M.x),s.push(M.y),n.push({options:{formatPrefix:"cluster",dataLabels:e.dataLabels,marker:c(e.marker,{states:e.states},X||{})}}),this.options.data&&this.options.data.length)for(L=0;L<C;L++)d(this.options.data[x[L].dataIndex])&&(x[L].options=this.options.data[x[L].dataIndex]);f++,X=null}else for(L=0;L<t[P].length;L++)g=t[P][L],m=A(),I=null,y=((this.options||{}).data||[])[g.dataIndex],i.push(g.x),s.push(g.y),g.parentStateId=m,o.push({x:g.x,y:g.y,id:P,stateId:m,index:f,data:t[P]}),I=y&&"object"==typeof y&&!p(y)?c(y,{x:g.x,y:g.y}):{userOptions:y,x:g.x,y:g.y},n.push({options:I}),f++;return{clusters:a,noise:o,groupedXData:i,groupedYData:s,groupMap:n}}function j(){let t=this.chart,e=this.xAxis,i=this.yAxis,s=0;return{plotLeft:e&&this.dataMinX&&this.dataMaxX?e.reversed?e.toPixels(this.dataMaxX):e.toPixels(this.dataMinX):t.plotLeft,plotTop:i&&this.dataMinY&&this.dataMaxY?i.reversed?i.toPixels(this.dataMinY):i.toPixels(this.dataMaxY):t.plotTop}}function O(t,e,i){let s,a;let r=e?b(e,i):[],o=b(t,i),n={};y=[],t.clusters.forEach(function(t){n[t.stateId]={x:t.x,y:t.y,id:t.stateId,point:t.point,parentsId:[]}}),t.noise.forEach(function(t){n[t.stateId]={x:t.x,y:t.y,id:t.stateId,point:t.point,parentsId:[]}});for(let t=0;t<o.length;t++)s=o[t],a=r[t],s&&a&&s.parentStateId&&a.parentStateId&&n[s.parentStateId]&&-1===n[s.parentStateId].parentsId.indexOf(a.parentStateId)&&(n[s.parentStateId].parentsId.push(a.parentStateId),-1===y.indexOf(a.parentStateId)&&y.push(a.parentStateId));return n}function T(){let t=this.chart,e=t.mapView?0:t.plotLeft,i=D(this,{x:e,y:t.mapView?0:t.plotTop}),s=D(this,{x:e+t.plotWidth,y:e+t.plotHeight}),a=i.x,r=s.x,o=i.y,n=s.y;return{minX:Math.min(a,r),maxX:Math.max(a,r),minY:Math.min(o,n),maxY:Math.max(o,n)}}function V(t){let e=this.xAxis,i=this.chart.mapView,s=t.processedGridSize||r.layoutAlgorithm.gridSize,a=!0,o=1,n=1;this.gridValueSize||(i?this.gridValueSize=s/i.getScale():this.gridValueSize=Math.abs(e.toValue(s)-e.toValue(0)));let l=+(s/(i?this.gridValueSize*i.getScale():e.toPixels(this.gridValueSize)-e.toPixels(0))).toFixed(14);for(;a&&1!==l;){let t=Math.pow(2,o);l>.75&&l<1.25?a=!1:l>=1/t&&l<1/t*2?(a=!1,n=t):l<=t&&l>t/2&&(a=!1,n=1/t),o++}return s/n/l}function G(){let t=this.markerClusterSeriesData,e=((this.markerClusterInfo||{}).pointsState||{}).oldState||{},i=y.map(t=>(e[t].point||{}).id||"");(t||[]).forEach(function(t){t&&-1!==i.indexOf(t.id)?(t.graphic&&t.graphic.hide(),t.dataLabel&&t.dataLabel.hide()):t&&t.destroy&&t.destroy()})}function v(t){let e=!1,i;return!!d(t)&&(f(t,function(t){if(e=!0,!p(t)||!t.length){e=!1;return}for(i=0;i<t.length;i++)if(!d(t[i])||!t[i].x||!t[i].y){e=!1;return}}),e)}function R(t){let[e,i]=t.key.split("-").map(parseFloat),s=t.gridSize,a=t.groupedData,o=t.defaultRadius,l=t.clusterRadius,p=i*s,u=e*s,d=Z(this,t),h=[],c=(this.options.cluster||{}).marker,f=(this.options.cluster||{}).zones,m=this.getGridOffset(),g=d.x,x=d.y,y=0,C=0,k,M,I,b,A,X,Y,L,P,z,w,E,j;for(g-=m.plotLeft,x-=m.plotTop,Y=1;Y<5;Y++)for(L=0,I=Y%2?-1:1,b=Y<3?-1:1,A=Math.floor((g+I*l)/s),j=[(X=Math.floor((x+b*l)/s))+"-"+A,X+"-"+i,e+"-"+A];L<j.length;L++)-1===h.indexOf(j[L])&&j[L]!==t.key&&h.push(j[L]);for(let t of h)if(a[t]){a[t].posX||(w=S(a[t]),a[t].posX=w.x,a[t].posY=w.y);let d=Z(this,{x:a[t].posX||0,y:a[t].posY||0});if(k=d.x-m.plotLeft,M=d.y-m.plotTop,[z,P]=t.split("-").map(parseFloat),f)for(Y=0,y=a[t].length;Y<f.length;Y++)y>=f[Y].from&&y<=f[Y].to&&(C=n((f[Y].marker||{}).radius)?f[Y].marker.radius||0:c&&c.radius?c.radius:r.marker.radius);a[t].length>1&&0===C&&c&&c.radius?C=c.radius:1===a[t].length&&(C=o),E=l+C,C=0,P!==i&&Math.abs(g-k)<E&&(g=P-i<0?p+l:p+s-l),z!==e&&Math.abs(x-M)<E&&(x=z-e<0?u+l:u+s-l)}let O=D(this,{x:g+m.plotLeft,y:x+m.plotTop});return a[t.key].posX=O.x,a[t.key].posY=O.y,O}function Z(t,e){let{chart:i,xAxis:s,yAxis:a}=t;return i.mapView?i.mapView.projectedUnitsToPixels(e):{x:s?s.toPixels(e.x):0,y:a?a.toPixels(e.y):0}}return{compose:function(t,i){let a=i.prototype;a.markerClusterAlgorithms||(s=a.generatePoints,a.markerClusterAlgorithms=x,a.animateClusterPoint=L,a.destroyClusteredData=P,a.generatePoints=z,a.getClusterDistancesFromPoint=w,a.getClusteredData=E,a.getGridOffset=j,a.getPointsState=O,a.getRealExtremes=T,a.getScaledGridSize=V,a.hideClusteredData=G,a.isValidGroupedDataObject=v,a.preventClusterCollisions=R,o(i,"destroy",a.destroyClusteredData),(t.plotOptions||{}).series=c((t.plotOptions||{}).series,e))}}}),i(e,"Extensions/MarkerClusters/MarkerClusters.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Defaults.js"],e["Core/Globals.js"],e["Extensions/MarkerClusters/MarkerClusterDefaults.js"],e["Extensions/MarkerClusters/MarkerClusterScatter.js"],e["Core/Utilities.js"]],function(t,e,i,s,a,r){let{animObject:o}=t,{defaultOptions:n}=e,{composed:l}=i,{addEvent:p,defined:u,error:d,isFunction:h,merge:c,pushUnique:f,syncTimeout:m}=r;function g(){let t=this.chart,e=0;for(let i of t.series)i.markerClusterInfo&&(e=o((i.options.cluster||{}).animation).duration||0);m(()=>{t.tooltip&&t.tooltip.destroy()},e)}function x(){for(let t of this.series||[])if(t.markerClusterInfo){let e=t.options.cluster,i=((t.markerClusterInfo||{}).pointsState||{}).oldState;if((e||{}).animation&&t.markerClusterInfo&&0===(t.chart.pointer?.pinchDown||[]).length&&"pan"!==((t.xAxis||{}).eventArgs||{}).trigger&&i&&Object.keys(i).length){for(let e of t.markerClusterInfo.clusters)t.animateClusterPoint(e);for(let e of t.markerClusterInfo.noise)t.animateClusterPoint(e)}}}function y(t){let e=(((t.point||t.target).series.options.cluster||{}).events||{}).drillToCluster;h(e)&&e.call(this,t)}function C(){if(this.dataGroup)return d("Highcharts marker-clusters module: Running `Point.update` when point belongs to clustered series is not supported.",!1,this.series.chart),!1}function k(){let t=(this.options.cluster||{}).drillToCluster;if(this.markerClusterInfo&&this.markerClusterInfo.clusters)for(let e of this.markerClusterInfo.clusters)e.point&&e.point.graphic&&(e.point.graphic.addClass("highcharts-cluster-point"),t&&e.point&&(e.point.graphic.css({cursor:"pointer"}),e.point.dataLabel&&e.point.dataLabel.css({cursor:"pointer"})),u(e.clusterZone)&&e.point.graphic.addClass(e.clusterZoneClassName||"highcharts-cluster-zone-"+e.clusterZone.zoneIndex))}return(n.plotOptions||{}).series=c((n.plotOptions||{}).series,s),{compose:function(t,e,i,s){if(f(l,"MarkerClusters")){let r=s.prototype.pointClass,{scatter:o}=s.types;p(t,"setExtremes",g),p(e,"render",x),p(r,"drillToCluster",y),p(r,"update",C),p(s,"afterRender",k),o&&a.compose(i,o)}}}}),i(e,"Extensions/MarkerClusters/MarkerClusterSymbols.js",[],function(){let t;function e(e,i,s,a){let r=s/2,o=a/2,n=t.arc(e+r,i+o,r-4,o-4,{start:.5*Math.PI,end:2.5*Math.PI,open:!1}),l=t.arc(e+r,i+o,r-3,o-3,{start:.5*Math.PI,end:2.5*Math.PI,innerR:r-2,open:!1});return t.arc(e+r,i+o,r-1,o-1,{start:.5*Math.PI,end:2.5*Math.PI,innerR:r,open:!1}).concat(l,n)}return{compose:function(i){(t=i.prototype.symbols).cluster=e}}}),i(e,"masters/modules/marker-clusters.src.js",[e["Core/Globals.js"],e["Extensions/MarkerClusters/MarkerClusters.js"],e["Extensions/MarkerClusters/MarkerClusterSymbols.js"]],function(t,e,i){return e.compose(t.Axis,t.Chart,t.defaultOptions,t.Series),i.compose(t.SVGRenderer),t})});
9
+ */function(t){"object"==typeof module&&module.exports?(t.default=t,module.exports=t):"function"==typeof define&&define.amd?define("highcharts/modules/marker-clusters",["highcharts"],function(e){return t(e),t.Highcharts=e,t}):t("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(t){"use strict";var e=t?t._modules:{};function i(e,i,s,a){e.hasOwnProperty(i)||(e[i]=a.apply(null,s),"function"==typeof CustomEvent&&t.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:i,module:e[i]}})))}i(e,"Extensions/MarkerClusters/MarkerClusterDefaults.js",[],function(){return{cluster:{enabled:!1,allowOverlap:!0,animation:{duration:500},drillToCluster:!0,minimumClusterSize:2,layoutAlgorithm:{gridSize:50,distance:40,kmeansThreshold:100},marker:{symbol:"cluster",radius:15,lineWidth:0,lineColor:"#ffffff"},dataLabels:{enabled:!0,format:"{point.clusterPointsAmount}",verticalAlign:"middle",align:"center",style:{color:"contrast"},inside:!0}},tooltip:{clusterFormat:"<span>Clustered points: {point.clusterPointsAmount}</span><br/>"}}}),i(e,"Extensions/MarkerClusters/MarkerClusterScatter.js",[e["Core/Animation/AnimationUtilities.js"],e["Extensions/MarkerClusters/MarkerClusterDefaults.js"],e["Core/Utilities.js"]],function(t,e,i){let s;let{animObject:a}=t,{cluster:r}=e,{addEvent:o,defined:n,error:l,isArray:p,isFunction:u,isObject:d,isNumber:h,merge:c,objectEach:f,relativeLength:m,syncTimeout:g}=i,x={grid:function(t,e,i,s){let a,r,o,n,l;let p={},u=this.getGridOffset(),d=this.getScaledGridSize(s);for(l=0;l<t.length;l++){let s=Z(this,{x:t[l],y:e[l]});a=s.x-u.plotLeft,r=s.y-u.plotTop,o=Math.floor(a/d),p[n=Math.floor(r/d)+"-"+o]||(p[n]=[]),p[n].push({dataIndex:i[l],x:t[l],y:e[l]})}return p},kmeans:function(t,e,i,s){let a=[],o=[],n={},l=s.processedDistance||r.layoutAlgorithm.distance,p=s.iterations,u=0,d=!0,h=0,c=0,f,m=[];s.processedGridSize=s.processedDistance;let g=this.markerClusterAlgorithms?this.markerClusterAlgorithms.grid.call(this,t,e,i,s):{};for(let t in g)g[t].length>1&&(f=S(g[t]),a.push({posX:f.x,posY:f.y,oldX:0,oldY:0,startPointsLen:g[t].length,points:[]}));for(;d;){for(let t of a)t.points.length=0;o.length=0;for(let s=0;s<t.length;s++)h=t[s],c=e[s],(m=this.getClusterDistancesFromPoint(a,h,c)).length&&m[0].distance<l?a[m[0].clusterIndex].points.push({x:h,y:c,dataIndex:i[s]}):o.push({x:h,y:c,dataIndex:i[s]});for(let t=0;t<a.length;t++)1===a[t].points.length&&(m=this.getClusterDistancesFromPoint(a,a[t].points[0].x,a[t].points[0].y))[1].distance<l&&(a[m[1].clusterIndex].points.push(a[t].points[0]),a[m[0].clusterIndex].points.length=0);d=!1;for(let t=0;t<a.length;t++)f=S(a[t].points),a[t].oldX=a[t].posX,a[t].oldY=a[t].posY,a[t].posX=f.x,a[t].posY=f.y,(a[t].posX>a[t].oldX+1||a[t].posX<a[t].oldX-1||a[t].posY>a[t].oldY+1||a[t].posY<a[t].oldY-1)&&(d=!0);p&&(d=u<p-1),u++}for(let t=0,e=a.length;t<e;++t)n["cluster"+t]=a[t].points;for(let t=0,e=o.length;t<e;++t)n["noise"+t]=[o[t]];return n},optimizedKmeans:function(t,e,i,s){let a=s.processedDistance||r.layoutAlgorithm.gridSize,o=this.getRealExtremes(),l=(this.options.cluster||{}).marker,p,u={},d,h;if(!this.markerClusterInfo||this.initMaxX&&this.initMaxX<o.maxX||this.initMinX&&this.initMinX>o.minX||this.initMaxY&&this.initMaxY<o.maxY||this.initMinY&&this.initMinY>o.minY)this.initMaxX=o.maxX,this.initMinX=o.minX,this.initMaxY=o.maxY,this.initMinY=o.minY,u=this.markerClusterAlgorithms?this.markerClusterAlgorithms.kmeans.call(this,t,e,i,s):{},this.baseClusters=null;else{for(let t of(this.baseClusters||(this.baseClusters={clusters:this.markerClusterInfo.clusters,noise:this.markerClusterInfo.noise}),this.baseClusters.clusters)){for(let e of(t.pointsOutside=[],t.pointsInside=[],t.data)){let i=Z(this,e),s=Z(this,t);p=Math.sqrt(Math.pow(i.x-s.x,2)+Math.pow(i.y-s.y,2)),d=a-(h=t.clusterZone&&t.clusterZone.marker&&t.clusterZone.marker.radius?t.clusterZone.marker.radius:l&&l.radius?l.radius:r.marker.radius)>=0?a-h:h,p>h+d&&n(t.pointsOutside)?t.pointsOutside.push(e):n(t.pointsInside)&&t.pointsInside.push(e)}t.pointsInside.length&&(u[t.id]=t.pointsInside);let e=0;for(let i of t.pointsOutside)u[t.id+"_noise"+e++]=[i]}for(let t of this.baseClusters.noise)u[t.id]=t.data}return u}},y=[],C=0;function k(t,e,i){t.attr({opacity:e}).animate({opacity:1},i)}function M(t,e,i,s){for(let a of(I(t,s,i,!0,!0),e))a.point&&a.point.destroy&&a.point.destroy()}function I(t,e,i,s,a){t.point&&(s&&t.point.graphic&&(t.point.graphic.show(),k(t.point.graphic,e,i)),a&&t.point.dataLabel&&(t.point.dataLabel.show(),k(t.point.dataLabel,e,i)))}function S(t){let e=t.length,i=0,s=0;for(let a=0;a<e;a++)i+=t[a].x,s+=t[a].y;return{x:i/e,y:s/e}}function b(t,e){let i=[];return i.length=e,t.clusters.forEach(function(t){t.data.forEach(function(t){i[t.dataIndex]=t})}),t.noise.forEach(function(t){i[t.data[0].dataIndex]=t.data[0]}),i}function A(){return Math.random().toString(36).substring(2,7)+"-"+C++}function X(t,e,i){t.point&&(e&&t.point.graphic&&t.point.graphic.hide(),i&&t.point.dataLabel&&t.point.dataLabel.hide())}function Y(t){(t.point||t.target).firePointEvent("drillToCluster",t,function(t){let e=t.point||t.target,i=e.series,s=e.series.xAxis,a=e.series.yAxis,r=e.series.chart,{inverted:o,mapView:n,pointer:l}=r;if((i.options.cluster||{}).drillToCluster&&e.clusteredData){let t=e.clusteredData.map(t=>t.x).sort((t,e)=>t-e),i=e.clusteredData.map(t=>t.y).sort((t,e)=>t-e),p=t[0],u=t[t.length-1],d=i[0],h=i[i.length-1],c=Math.abs((u-p)*.1),f=Math.abs((h-d)*.1),m=Math.min(p,u)-c,g=Math.max(p,u)+c,x=Math.min(d,h)-f,y=Math.max(d,h)+f;if(n)n.fitToBounds({x1:m,x2:g,y1:x,y2:y});else if(s&&a){let t=s.toPixels(m),e=s.toPixels(g),i=a.toPixels(x),n=a.toPixels(y);o&&([t,e,i,n]=[i,n,t,e]),t>e&&([t,e]=[e,t]),i>n&&([i,n]=[n,i]),l&&(l.zoomX=!0,l.zoomY=!0),r.transform({from:{x:t,y:i,width:e-t,height:n-i}})}}})}function D(t,e){let{chart:i,xAxis:s,yAxis:a}=t;return i.mapView?i.mapView.pixelsToProjectedUnits(e):{x:s?s.toValue(e.x):0,y:a?a.toValue(e.y):0}}function L(t){let e=this.chart,i=e.mapView,s=a((this.options.cluster||{}).animation),r=s.duration||500,o=(this.markerClusterInfo||{}).pointsState,n=(o||{}).newState,l=(o||{}).oldState,p=[],u,d,h,c=0,f=0,m=0,x=!1,y=!1;if(l&&n){let a=Z(this,d=n[t.stateId]);f=a.x-(i?0:e.plotLeft),m=a.y-(i?0:e.plotTop),1===d.parentsId.length?(u=l[(n||{})[t.stateId].parentsId[0]],d.point&&d.point.graphic&&u&&u.point&&u.point.plotX&&u.point.plotY&&u.point.plotX!==d.point.plotX&&u.point.plotY!==d.point.plotY&&(h=d.point.graphic.getBBox(),c=d.point.graphic&&d.point.graphic.isImg?0:h.width/2,d.point.graphic.attr({x:u.point.plotX-c,y:u.point.plotY-c}),d.point.graphic.animate({x:f-(d.point.graphic.radius||0),y:m-(d.point.graphic.radius||0)},s,function(){y=!0,u.point&&u.point.destroy&&u.point.destroy()}),d.point.dataLabel&&d.point.dataLabel.alignAttr&&u.point.dataLabel&&u.point.dataLabel.alignAttr&&(d.point.dataLabel.attr({x:u.point.dataLabel.alignAttr.x,y:u.point.dataLabel.alignAttr.y}),d.point.dataLabel.animate({x:d.point.dataLabel.alignAttr.x,y:d.point.dataLabel.alignAttr.y},s)))):0===d.parentsId.length?(X(d,!0,!0),g(function(){I(d,.1,s,!0,!0)},r/2)):(X(d,!0,!0),d.parentsId.forEach(function(t){l&&l[t]&&(u=l[t],p.push(u),u.point&&u.point.graphic&&(x=!0,u.point.graphic.show(),u.point.graphic.animate({x:f-(u.point.graphic.radius||0),y:m-(u.point.graphic.radius||0),opacity:.4},s,function(){y=!0,M(d,p,s,.7)}),u.point.dataLabel&&-9999!==u.point.dataLabel.y&&d.point&&d.point.dataLabel&&d.point.dataLabel.alignAttr&&(u.point.dataLabel.show(),u.point.dataLabel.animate({x:d.point.dataLabel.alignAttr.x,y:d.point.dataLabel.alignAttr.y,opacity:.4},s))))}),g(function(){y||M(d,p,s,.85)},r),x||g(function(){M(d,p,s,.1)},r/2))}}function P(){(this.markerClusterSeriesData||[]).forEach(function(t){t&&t.destroy&&t.destroy()}),this.markerClusterSeriesData=null}function z(){let t,e,i,a,l,p,d,c,f,g,x,y,C,k,M,I;let S=this,b=S.chart,A=b.mapView,X=S.xData,L=S.yData,P=S.options.cluster,z=S.getRealExtremes(),w=[],E=[],j=[];if(A&&S.is("mappoint")&&X&&L&&(S.options.data||[]).forEach((t,e)=>{let i=S.projectPoint(t);i&&(X[e]=i.x,L[e]=i.y)}),P&&P.enabled&&X&&X.length&&L&&L.length&&!b.polar){x=P.layoutAlgorithm.type,(k=P.layoutAlgorithm).processedGridSize=m(k.gridSize||r.layoutAlgorithm.gridSize,b.plotWidth),k.processedDistance=m(k.distance||r.layoutAlgorithm.distance,b.plotWidth),a=k.kmeansThreshold||r.layoutAlgorithm.kmeansThreshold;let A=k.processedGridSize/2,O=D(S,{x:0,y:0}),T=D(S,{x:A,y:A});for(I=0,l=Math.abs(O.x-T.x),p=Math.abs(O.y-T.y);I<X.length;I++)!S.dataMaxX&&(n(c)&&n(d)&&n(g)&&n(f)?h(L[I])&&h(g)&&h(f)&&(c=Math.max(X[I],c),d=Math.min(X[I],d),g=Math.max(L[I]||g,g),f=Math.min(L[I]||f,f)):(c=d=X[I],g=f=L[I])),X[I]>=z.minX-l&&X[I]<=z.maxX+l&&(L[I]||z.minY)>=z.minY-p&&(L[I]||z.maxY)<=z.maxY+p&&(w.push(X[I]),E.push(L[I]),j.push(I));n(c)&&n(d)&&h(g)&&h(f)&&(S.dataMaxX=c,S.dataMinX=d,S.dataMaxY=g,S.dataMinY=f),y=(C=(u(x)?x:S.markerClusterAlgorithms?x&&S.markerClusterAlgorithms[x]?S.markerClusterAlgorithms[x]:w.length<a?S.markerClusterAlgorithms.kmeans:S.markerClusterAlgorithms.grid:function(){return!1}).call(this,w,E,j,k))?S.getClusteredData(C,P):C,P.animation&&S.markerClusterInfo&&S.markerClusterInfo.pointsState&&S.markerClusterInfo.pointsState.oldState?(function(t){if(t){let e;for(let i of Object.keys(t))(e=t[i]).point&&e.point.destroy&&e.point.destroy()}}(S.markerClusterInfo.pointsState.oldState),t=S.markerClusterInfo.pointsState.newState):t={},e=X.length,i=S.markerClusterInfo,y&&(S.processedXData=y.groupedXData,S.processedYData=y.groupedYData,S.hasGroupedData=!0,S.markerClusterInfo=y,S.groupMap=y.groupMap),s.apply(this),y&&S.markerClusterInfo&&((S.markerClusterInfo.clusters||[]).forEach(function(t){(M=S.points[t.index]).isCluster=!0,M.clusteredData=t.data,M.clusterPointsAmount=t.data.length,t.point=M,o(M,"click",Y)}),(S.markerClusterInfo.noise||[]).forEach(function(t){t.point=S.points[t.index]}),P.animation&&S.markerClusterInfo&&(S.markerClusterInfo.pointsState={oldState:t,newState:S.getPointsState(y,i,e)}),P.animation?this.hideClusteredData():this.destroyClusteredData(),this.markerClusterSeriesData=this.hasGroupedData?this.points:null)}else s.apply(this)}function w(t,e,i){let s=[];for(let a=0;a<t.length;a++){let r=Z(this,{x:e,y:i}),o=Z(this,{x:t[a].posX,y:t[a].posY}),n=Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2));s.push({clusterIndex:a,distance:n})}return s.sort((t,e)=>t.distance-e.distance)}function E(t,e){let i=[],s=[],a=[],o=[],n=[],h=Math.max(2,e.minimumClusterSize||2),f=0,m,g,x,y,C,k,M,I,b,X,Y,D,L,P;if(u(e.layoutAlgorithm.type)&&!this.isValidGroupedDataObject(t))return l("Highcharts marker-clusters module: The custom algorithm result is not valid!",!1,this.chart),!1;for(P in t)if(t[P].length>=h){if(x=t[P],m=A(),C=x.length,e.zones)for(L=0;L<e.zones.length;L++)C>=e.zones[L].from&&C<=e.zones[L].to&&((Y=e.zones[L]).zoneIndex=L,X=e.zones[L].marker,D=e.zones[L].className);for(b=S(x),"grid"!==e.layoutAlgorithm.type||e.allowOverlap?M={x:b.x,y:b.y}:(k=this.options.marker||{},M=this.preventClusterCollisions({x:b.x,y:b.y,key:P,groupedData:t,gridSize:this.getScaledGridSize(e.layoutAlgorithm),defaultRadius:k.radius||3+(k.lineWidth||0),clusterRadius:X&&X.radius?X.radius:(e.marker||{}).radius||r.marker.radius})),L=0;L<C;L++)x[L].parentStateId=m;if(a.push({x:M.x,y:M.y,id:P,stateId:m,index:f,data:x,clusterZone:Y,clusterZoneClassName:D}),i.push(M.x),s.push(M.y),n.push({options:{formatPrefix:"cluster",dataLabels:e.dataLabels,marker:c(e.marker,{states:e.states},X||{})}}),this.options.data&&this.options.data.length)for(L=0;L<C;L++)d(this.options.data[x[L].dataIndex])&&(x[L].options=this.options.data[x[L].dataIndex]);f++,X=null}else for(L=0;L<t[P].length;L++)g=t[P][L],m=A(),I=null,y=((this.options||{}).data||[])[g.dataIndex],i.push(g.x),s.push(g.y),g.parentStateId=m,o.push({x:g.x,y:g.y,id:P,stateId:m,index:f,data:t[P]}),I=y&&"object"==typeof y&&!p(y)?c(y,{x:g.x,y:g.y}):{userOptions:y,x:g.x,y:g.y},n.push({options:I}),f++;return{clusters:a,noise:o,groupedXData:i,groupedYData:s,groupMap:n}}function j(){let t=this.chart,e=this.xAxis,i=this.yAxis,s=0;return{plotLeft:e&&this.dataMinX&&this.dataMaxX?e.reversed?e.toPixels(this.dataMaxX):e.toPixels(this.dataMinX):t.plotLeft,plotTop:i&&this.dataMinY&&this.dataMaxY?i.reversed?i.toPixels(this.dataMinY):i.toPixels(this.dataMaxY):t.plotTop}}function O(t,e,i){let s,a;let r=e?b(e,i):[],o=b(t,i),n={};y=[],t.clusters.forEach(function(t){n[t.stateId]={x:t.x,y:t.y,id:t.stateId,point:t.point,parentsId:[]}}),t.noise.forEach(function(t){n[t.stateId]={x:t.x,y:t.y,id:t.stateId,point:t.point,parentsId:[]}});for(let t=0;t<o.length;t++)s=o[t],a=r[t],s&&a&&s.parentStateId&&a.parentStateId&&n[s.parentStateId]&&-1===n[s.parentStateId].parentsId.indexOf(a.parentStateId)&&(n[s.parentStateId].parentsId.push(a.parentStateId),-1===y.indexOf(a.parentStateId)&&y.push(a.parentStateId));return n}function T(){let t=this.chart,e=t.mapView?0:t.plotLeft,i=D(this,{x:e,y:t.mapView?0:t.plotTop}),s=D(this,{x:e+t.plotWidth,y:e+t.plotHeight}),a=i.x,r=s.x,o=i.y,n=s.y;return{minX:Math.min(a,r),maxX:Math.max(a,r),minY:Math.min(o,n),maxY:Math.max(o,n)}}function V(t){let e=this.xAxis,i=this.chart.mapView,s=t.processedGridSize||r.layoutAlgorithm.gridSize,a=!0,o=1,n=1;this.gridValueSize||(i?this.gridValueSize=s/i.getScale():this.gridValueSize=Math.abs(e.toValue(s)-e.toValue(0)));let l=+(s/(i?this.gridValueSize*i.getScale():e.toPixels(this.gridValueSize)-e.toPixels(0))).toFixed(14);for(;a&&1!==l;){let t=Math.pow(2,o);l>.75&&l<1.25?a=!1:l>=1/t&&l<1/t*2?(a=!1,n=t):l<=t&&l>t/2&&(a=!1,n=1/t),o++}return s/n/l}function G(){let t=this.markerClusterSeriesData,e=((this.markerClusterInfo||{}).pointsState||{}).oldState||{},i=y.map(t=>(e[t].point||{}).id||"");(t||[]).forEach(function(t){t&&-1!==i.indexOf(t.id)?(t.graphic&&t.graphic.hide(),t.dataLabel&&t.dataLabel.hide()):t&&t.destroy&&t.destroy()})}function v(t){let e=!1,i;return!!d(t)&&(f(t,function(t){if(e=!0,!p(t)||!t.length){e=!1;return}for(i=0;i<t.length;i++)if(!d(t[i])||!t[i].x||!t[i].y){e=!1;return}}),e)}function R(t){let[e,i]=t.key.split("-").map(parseFloat),s=t.gridSize,a=t.groupedData,o=t.defaultRadius,l=t.clusterRadius,p=i*s,u=e*s,d=Z(this,t),h=[],c=(this.options.cluster||{}).marker,f=(this.options.cluster||{}).zones,m=this.getGridOffset(),g=d.x,x=d.y,y=0,C=0,k,M,I,b,A,X,Y,L,P,z,w,E,j;for(g-=m.plotLeft,x-=m.plotTop,Y=1;Y<5;Y++)for(L=0,I=Y%2?-1:1,b=Y<3?-1:1,A=Math.floor((g+I*l)/s),j=[(X=Math.floor((x+b*l)/s))+"-"+A,X+"-"+i,e+"-"+A];L<j.length;L++)-1===h.indexOf(j[L])&&j[L]!==t.key&&h.push(j[L]);for(let t of h)if(a[t]){a[t].posX||(w=S(a[t]),a[t].posX=w.x,a[t].posY=w.y);let d=Z(this,{x:a[t].posX||0,y:a[t].posY||0});if(k=d.x-m.plotLeft,M=d.y-m.plotTop,[z,P]=t.split("-").map(parseFloat),f)for(Y=0,y=a[t].length;Y<f.length;Y++)y>=f[Y].from&&y<=f[Y].to&&(C=n((f[Y].marker||{}).radius)?f[Y].marker.radius||0:c&&c.radius?c.radius:r.marker.radius);a[t].length>1&&0===C&&c&&c.radius?C=c.radius:1===a[t].length&&(C=o),E=l+C,C=0,P!==i&&Math.abs(g-k)<E&&(g=P-i<0?p+l:p+s-l),z!==e&&Math.abs(x-M)<E&&(x=z-e<0?u+l:u+s-l)}let O=D(this,{x:g+m.plotLeft,y:x+m.plotTop});return a[t.key].posX=O.x,a[t.key].posY=O.y,O}function Z(t,e){let{chart:i,xAxis:s,yAxis:a}=t;return i.mapView?i.mapView.projectedUnitsToPixels(e):{x:s?s.toPixels(e.x):0,y:a?a.toPixels(e.y):0}}return{compose:function(t,i){let a=i.prototype;a.markerClusterAlgorithms||(s=a.generatePoints,a.markerClusterAlgorithms=x,a.animateClusterPoint=L,a.destroyClusteredData=P,a.generatePoints=z,a.getClusterDistancesFromPoint=w,a.getClusteredData=E,a.getGridOffset=j,a.getPointsState=O,a.getRealExtremes=T,a.getScaledGridSize=V,a.hideClusteredData=G,a.isValidGroupedDataObject=v,a.preventClusterCollisions=R,o(i,"destroy",a.destroyClusteredData),(t.plotOptions||{}).series=c((t.plotOptions||{}).series,e))}}}),i(e,"Extensions/MarkerClusters/MarkerClusters.js",[e["Core/Animation/AnimationUtilities.js"],e["Core/Defaults.js"],e["Core/Globals.js"],e["Extensions/MarkerClusters/MarkerClusterDefaults.js"],e["Extensions/MarkerClusters/MarkerClusterScatter.js"],e["Core/Utilities.js"]],function(t,e,i,s,a,r){let{animObject:o}=t,{defaultOptions:n}=e,{composed:l}=i,{addEvent:p,defined:u,error:d,isFunction:h,merge:c,pushUnique:f,syncTimeout:m}=r;function g(){let t=this.chart,e=0;for(let i of t.series)i.markerClusterInfo&&(e=o((i.options.cluster||{}).animation).duration||0);m(()=>{t.tooltip&&t.tooltip.destroy()},e)}function x(){for(let t of this.series||[])if(t.markerClusterInfo){let e=t.options.cluster,i=((t.markerClusterInfo||{}).pointsState||{}).oldState;if((e||{}).animation&&t.markerClusterInfo&&0===(t.chart.pointer?.pinchDown||[]).length&&"pan"!==((t.xAxis||{}).eventArgs||{}).trigger&&i&&Object.keys(i).length){for(let e of t.markerClusterInfo.clusters)t.animateClusterPoint(e);for(let e of t.markerClusterInfo.noise)t.animateClusterPoint(e)}}}function y(t){let e=(((t.point||t.target).series.options.cluster||{}).events||{}).drillToCluster;h(e)&&e.call(this,t)}function C(){if(this.dataGroup)return d("Highcharts marker-clusters module: Running `Point.update` when point belongs to clustered series is not supported.",!1,this.series.chart),!1}function k(){let t=(this.options.cluster||{}).drillToCluster;if(this.markerClusterInfo&&this.markerClusterInfo.clusters)for(let e of this.markerClusterInfo.clusters)e.point&&e.point.graphic&&(e.point.graphic.addClass("highcharts-cluster-point"),t&&e.point&&(e.point.graphic.css({cursor:"pointer"}),e.point.dataLabel&&e.point.dataLabel.css({cursor:"pointer"})),u(e.clusterZone)&&e.point.graphic.addClass(e.clusterZoneClassName||"highcharts-cluster-zone-"+e.clusterZone.zoneIndex))}return(n.plotOptions||{}).series=c((n.plotOptions||{}).series,s),{compose:function(t,e,i,s){if(f(l,"MarkerClusters")){let r=s.prototype.pointClass,{scatter:o}=s.types;p(t,"setExtremes",g),p(e,"render",x),p(r,"drillToCluster",y),p(r,"update",C),p(s,"afterRender",k),o&&a.compose(i,o)}}}}),i(e,"Extensions/MarkerClusters/MarkerClusterSymbols.js",[],function(){let t;function e(e,i,s,a){let r=s/2,o=a/2,n=t.arc(e+r,i+o,r-4,o-4,{start:.5*Math.PI,end:2.5*Math.PI,open:!1}),l=t.arc(e+r,i+o,r-3,o-3,{start:.5*Math.PI,end:2.5*Math.PI,innerR:r-2,open:!1});return t.arc(e+r,i+o,r-1,o-1,{start:.5*Math.PI,end:2.5*Math.PI,innerR:r,open:!1}).concat(l,n)}return{compose:function(i){(t=i.prototype.symbols).cluster=e}}}),i(e,"masters/modules/marker-clusters.src.js",[e["Core/Globals.js"],e["Extensions/MarkerClusters/MarkerClusters.js"],e["Extensions/MarkerClusters/MarkerClusterSymbols.js"]],function(t,e,i){return e.compose(t.Axis,t.Chart,t.defaultOptions,t.Series),i.compose(t.SVGRenderer),t})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v11.4.3 (2024-05-22)
2
+ * @license Highcharts JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Marker clusters module for Highcharts
5
5
  *
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -1755,4 +1755,4 @@
1755
1755
 
1756
1756
  return Highcharts;
1757
1757
  });
1758
- }));
1758
+ }));
@@ -1,9 +1,9 @@
1
1
  !/**
2
- * Highcharts JS v11.4.3 (2024-05-22)
2
+ * Highcharts JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Mousewheel zoom module
5
5
  *
6
6
  * (c) 2023 Askel Eirik Johansson
7
7
  *
8
8
  * License: www.highcharts.com/license
9
- */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/modules/mouse-wheel-zoom",["highcharts"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function i(e,t,i,o){e.hasOwnProperty(t)||(e[t]=o.apply(null,i),"function"==typeof CustomEvent&&window.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:t,module:e[t]}})))}i(t,"Extensions/Annotations/NavigationBindingsUtilities.js",[t["Core/Utilities.js"]],function(e){let{defined:t,isNumber:i,pick:o}=e,n={backgroundColor:"string",borderColor:"string",borderRadius:"string",color:"string",fill:"string",fontSize:"string",labels:"string",name:"string",stroke:"string",title:"string"};return{annotationsFieldsTypes:n,getAssignedAxis:function(e){return e.filter(e=>{let t=e.axis.getExtremes(),n=t.min,s=t.max,r=o(e.axis.minPointOffset,0);return i(n)&&i(s)&&e.value>=n-r&&e.value<=s+r&&!e.axis.options.isInternal})[0]},getFieldType:function(e,i){let o=n[e],s=typeof i;return t(o)&&(s=o),({string:"text",number:"number",boolean:"checkbox"})[s]}}}),i(t,"Extensions/MouseWheelZoom/MouseWheelZoom.js",[t["Core/Utilities.js"],t["Extensions/Annotations/NavigationBindingsUtilities.js"]],function(e,t){let i;let{addEvent:o,isObject:n,pick:s,defined:r,merge:l}=e,{getAssignedAxis:a}=t,u=[],h={enabled:!0,sensitivity:1.1},d=e=>(n(e)||(e={enabled:e??!0}),l(h,e)),m=function(e,t,o,n,l,a,u){let h=s(u.type,e.zooming.type,""),d=[];"x"===h?d=o:"y"===h?d=n:"xy"===h&&(d=e.axes);let m=e.transform({axes:d,to:{x:l-5,y:a-5,width:10,height:10},from:{x:l-5*t,y:a-5*t,width:10*t,height:10*t},trigger:"mousewheel"});return m&&(r(i)&&clearTimeout(i),i=setTimeout(()=>{e.pointer?.drop()},400)),m};function c(){let e=d(this.zooming.mouseWheel);e.enabled&&o(this.container,"wheel",t=>{t=this.pointer?.normalize(t)||t;let{pointer:i}=this,o=i&&!i.inClass(t.target,"highcharts-no-mousewheel");if(this.isInsidePlot(t.chartX-this.plotLeft,t.chartY-this.plotTop)&&o){let o=e.sensitivity||1.1,n=t.detail||(t.deltaY||0)/120,s=a(i.getCoordinates(t).xAxis),r=a(i.getCoordinates(t).yAxis);m(this,Math.pow(o,n),s?[s.axis]:this.xAxis,r?[r.axis]:this.yAxis,t.chartX,t.chartY,e)&&t.preventDefault?.()}})}return{compose:function(e){-1===u.indexOf(e)&&(u.push(e),o(e,"afterGetContainer",c))}}}),i(t,"masters/modules/mouse-wheel-zoom.src.js",[t["Core/Globals.js"],t["Extensions/MouseWheelZoom/MouseWheelZoom.js"]],function(e,t){return e.MouseWheelZoom=e.MouseWheelZoom||t,e.MouseWheelZoom.compose(e.Chart),e})});
9
+ */function(e){"object"==typeof module&&module.exports?(e.default=e,module.exports=e):"function"==typeof define&&define.amd?define("highcharts/modules/mouse-wheel-zoom",["highcharts"],function(t){return e(t),e.Highcharts=t,e}):e("undefined"!=typeof Highcharts?Highcharts:void 0)}(function(e){"use strict";var t=e?e._modules:{};function i(t,i,o,n){t.hasOwnProperty(i)||(t[i]=n.apply(null,o),"function"==typeof CustomEvent&&e.win.dispatchEvent(new CustomEvent("HighchartsModuleLoaded",{detail:{path:i,module:t[i]}})))}i(t,"Extensions/Annotations/NavigationBindingsUtilities.js",[t["Core/Utilities.js"]],function(e){let{defined:t,isNumber:i,pick:o}=e,n={backgroundColor:"string",borderColor:"string",borderRadius:"string",color:"string",fill:"string",fontSize:"string",labels:"string",name:"string",stroke:"string",title:"string"};return{annotationsFieldsTypes:n,getAssignedAxis:function(e){return e.filter(e=>{let t=e.axis.getExtremes(),n=t.min,s=t.max,r=o(e.axis.minPointOffset,0);return i(n)&&i(s)&&e.value>=n-r&&e.value<=s+r&&!e.axis.options.isInternal})[0]},getFieldType:function(e,i){let o=n[e],s=typeof i;return t(o)&&(s=o),({string:"text",number:"number",boolean:"checkbox"})[s]}}}),i(t,"Extensions/MouseWheelZoom/MouseWheelZoom.js",[t["Core/Utilities.js"],t["Extensions/Annotations/NavigationBindingsUtilities.js"]],function(e,t){let i;let{addEvent:o,isObject:n,pick:s,defined:r,merge:l}=e,{getAssignedAxis:a}=t,u=[],h={enabled:!0,sensitivity:1.1},m=e=>(n(e)||(e={enabled:e??!0}),l(h,e)),d=function(e,t,o,n,l,a,u){let h=s(u.type,e.zooming.type,""),m=[];"x"===h?m=o:"y"===h?m=n:"xy"===h&&(m=e.axes);let d=e.transform({axes:m,to:{x:l-5,y:a-5,width:10,height:10},from:{x:l-5*t,y:a-5*t,width:10*t,height:10*t},trigger:"mousewheel"});return d&&(r(i)&&clearTimeout(i),i=setTimeout(()=>{e.pointer?.drop()},400)),d};function c(){let e=m(this.zooming.mouseWheel);e.enabled&&o(this.container,"wheel",t=>{t=this.pointer?.normalize(t)||t;let{pointer:i}=this,o=i&&!i.inClass(t.target,"highcharts-no-mousewheel");if(this.isInsidePlot(t.chartX-this.plotLeft,t.chartY-this.plotTop)&&o){let o=e.sensitivity||1.1,n=t.detail||(t.deltaY||0)/120,s=a(i.getCoordinates(t).xAxis),r=a(i.getCoordinates(t).yAxis);d(this,Math.pow(o,n),s?[s.axis]:this.xAxis,r?[r.axis]:this.yAxis,t.chartX,t.chartY,e)&&t.preventDefault?.()}})}return{compose:function(e){-1===u.indexOf(e)&&(u.push(e),o(e,"afterGetContainer",c))}}}),i(t,"masters/modules/mouse-wheel-zoom.src.js",[t["Core/Globals.js"],t["Extensions/MouseWheelZoom/MouseWheelZoom.js"]],function(e,t){return e.MouseWheelZoom=e.MouseWheelZoom||t,e.MouseWheelZoom.compose(e.Chart),e})});
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v11.4.3 (2024-05-22)
2
+ * @license Highcharts JS v11.4.4 (2024-07-02)
3
3
  *
4
4
  * Mousewheel zoom module
5
5
  *
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
 
30
30
  if (typeof CustomEvent === 'function') {
31
- window.dispatchEvent(new CustomEvent(
31
+ Highcharts.win.dispatchEvent(new CustomEvent(
32
32
  'HighchartsModuleLoaded',
33
33
  { detail: { path: path, module: obj[path] } }
34
34
  ));
@@ -336,4 +336,4 @@
336
336
 
337
337
  return Highcharts;
338
338
  });
339
- }));
339
+ }));