highcharts 9.2.2 → 9.3.3

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 (894) hide show
  1. package/README.md +13 -6
  2. package/bower.json +1 -1
  3. package/css/annotations/popup.css +48 -8
  4. package/css/annotations/popup.scss +70 -22
  5. package/css/highcharts.css +46 -1
  6. package/css/highcharts.scss +40 -0
  7. package/css/stocktools/gui.css +1 -1
  8. package/css/themes/dark-unica.css +46 -1
  9. package/css/themes/grid-light.css +46 -1
  10. package/css/themes/sand-signika.css +46 -1
  11. package/es-modules/Accessibility/A11yI18n.js +269 -224
  12. package/es-modules/Accessibility/Accessibility.js +244 -129
  13. package/es-modules/Accessibility/AccessibilityComponent.js +78 -313
  14. package/es-modules/Accessibility/Components/AnnotationsA11y.js +19 -5
  15. package/es-modules/Accessibility/Components/ContainerComponent.js +53 -28
  16. package/es-modules/Accessibility/Components/InfoRegionsComponent.js +178 -120
  17. package/es-modules/Accessibility/Components/LegendComponent.js +251 -129
  18. package/es-modules/Accessibility/Components/MenuComponent.js +250 -154
  19. package/es-modules/Accessibility/Components/RangeSelectorComponent.js +172 -93
  20. package/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +161 -115
  21. package/es-modules/Accessibility/Components/SeriesComponent/NewDataAnnouncer.js +138 -69
  22. package/es-modules/Accessibility/Components/SeriesComponent/SeriesComponent.js +67 -28
  23. package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +48 -56
  24. package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +387 -343
  25. package/es-modules/Accessibility/Components/ZoomComponent.js +156 -70
  26. package/es-modules/Accessibility/FocusBorder.js +192 -152
  27. package/es-modules/Accessibility/HighContrastMode.js +79 -66
  28. package/es-modules/Accessibility/HighContrastTheme.js +10 -0
  29. package/es-modules/Accessibility/KeyboardNavigation.js +151 -75
  30. package/es-modules/Accessibility/KeyboardNavigationHandler.js +71 -44
  31. package/es-modules/Accessibility/Options/DeprecatedOptions.js +21 -4
  32. package/es-modules/Accessibility/Options/LangOptions.js +4 -5
  33. package/es-modules/Accessibility/Options/Options.js +32 -17
  34. package/es-modules/Accessibility/ProxyElement.js +218 -0
  35. package/es-modules/Accessibility/ProxyProvider.js +302 -0
  36. package/es-modules/Accessibility/Utils/Announcer.js +17 -10
  37. package/es-modules/Accessibility/Utils/ChartUtilities.js +55 -45
  38. package/es-modules/Accessibility/Utils/DOMElementProvider.js +27 -15
  39. package/es-modules/Accessibility/Utils/EventProvider.js +27 -17
  40. package/es-modules/Accessibility/Utils/HTMLUtilities.js +125 -42
  41. package/es-modules/Core/Animation/Fx.js +5 -14
  42. package/es-modules/Core/Axis/Axis.js +77 -96
  43. package/es-modules/Core/Axis/Axis3D.js +10 -4
  44. package/es-modules/Core/Axis/AxisDefaults.js +35 -24
  45. package/es-modules/Core/Axis/BrokenAxis.js +17 -11
  46. package/es-modules/Core/Axis/Color/ColorAxis.js +7 -4
  47. package/es-modules/Core/Axis/Color/ColorAxisComposition.js +55 -5
  48. package/es-modules/Core/Axis/Color/ColorAxisDefaults.js +5 -5
  49. package/es-modules/Core/Axis/DateTimeAxis.js +3 -14
  50. package/es-modules/Core/Axis/GridAxis.js +26 -16
  51. package/es-modules/Core/Axis/NavigatorAxis.js +0 -5
  52. package/es-modules/Core/Axis/OrdinalAxis.js +88 -92
  53. package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +4 -5
  54. package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBandAxis.js +0 -5
  55. package/es-modules/Core/Axis/RadialAxis.js +7 -28
  56. package/es-modules/Core/Axis/ScrollbarAxis.js +27 -12
  57. package/es-modules/Core/Axis/StackingAxis.js +2 -1
  58. package/es-modules/Core/Axis/Tick.js +2 -4
  59. package/es-modules/Core/Axis/TreeGridAxis.js +28 -19
  60. package/es-modules/Core/Axis/TreeGridTick.js +5 -3
  61. package/es-modules/Core/Axis/WaterfallAxis.js +1 -1
  62. package/es-modules/Core/Axis/ZAxis.js +1 -1
  63. package/es-modules/Core/Chart/Chart.js +44 -47
  64. package/es-modules/Core/Chart/Chart3D.js +23 -10
  65. package/es-modules/Core/Chart/ChartDefaults.js +3 -4
  66. package/es-modules/Core/Chart/ChartNavigationComposition.js +92 -0
  67. package/es-modules/Core/Chart/GanttChart.js +4 -4
  68. package/es-modules/Core/Chart/MapChart.js +13 -25
  69. package/es-modules/Core/Chart/StockChart.js +13 -316
  70. package/es-modules/Core/Color/Palettes.js +22 -0
  71. package/es-modules/Core/DefaultOptions.js +22 -19
  72. package/es-modules/Core/Foundation.js +39 -31
  73. package/es-modules/Core/Geometry/CircleUtilities.js +2 -1
  74. package/es-modules/Core/Globals.js +1 -1
  75. package/es-modules/Core/HttpUtilities.js +8 -7
  76. package/es-modules/Core/Legend/Legend.js +19 -16
  77. package/es-modules/Core/Navigator.js +41 -30
  78. package/es-modules/Core/Pointer.js +52 -45
  79. package/es-modules/Core/Renderer/HTML/AST.js +29 -14
  80. package/es-modules/Core/Renderer/HTML/HTMLElement.js +27 -20
  81. package/es-modules/Core/Renderer/HTML/HTMLRenderer.js +8 -6
  82. package/es-modules/Core/Renderer/RendererUtilities.js +2 -2
  83. package/es-modules/Core/Renderer/SVG/SVGElement.js +11 -20
  84. package/es-modules/Core/Renderer/SVG/SVGLabel.js +17 -8
  85. package/es-modules/Core/Renderer/SVG/SVGRenderer.js +25 -29
  86. package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +12 -5
  87. package/es-modules/Core/Renderer/SVG/TextBuilder.js +18 -12
  88. package/es-modules/Core/Responsive.js +2 -3
  89. package/es-modules/Core/Scrollbar.js +14 -12
  90. package/es-modules/Core/ScrollbarDefaults.js +10 -9
  91. package/es-modules/Core/Series/DataLabel.js +19 -15
  92. package/es-modules/Core/Series/Point.js +22 -19
  93. package/es-modules/Core/Series/Series.js +197 -235
  94. package/es-modules/Core/Series/SeriesDefaults.js +8 -8
  95. package/es-modules/Core/Series/SeriesRegistry.js +1 -2
  96. package/es-modules/Core/Time.js +14 -11
  97. package/es-modules/Core/Tooltip.js +63 -53
  98. package/es-modules/Core/Utilities.js +20 -24
  99. package/es-modules/Data/DataConverter.js +483 -0
  100. package/es-modules/Data/DataPromise.js +252 -0
  101. package/es-modules/Data/DataSeriesConverter.js +207 -0
  102. package/es-modules/Data/DataTable.js +1205 -0
  103. package/es-modules/Data/Modifiers/ChainModifier.js +299 -0
  104. package/es-modules/Data/Modifiers/DataModifier.js +303 -0
  105. package/es-modules/Data/Modifiers/GroupModifier.js +144 -0
  106. package/es-modules/Data/Modifiers/InvertModifier.js +254 -0
  107. package/es-modules/Data/Modifiers/RangeModifier.js +143 -0
  108. package/es-modules/Data/Modifiers/SeriesPointsModifier.js +110 -0
  109. package/es-modules/Data/Modifiers/SortModifier.js +249 -0
  110. package/es-modules/Data/Parsers/CSVParser.js +400 -0
  111. package/es-modules/Data/Parsers/DataParser.js +101 -0
  112. package/es-modules/Data/Parsers/GoogleSheetsParser.js +223 -0
  113. package/es-modules/Data/Parsers/HTMLTableParser.js +213 -0
  114. package/es-modules/Data/Stores/CSVStore.js +317 -0
  115. package/es-modules/Data/Stores/DataStore.js +276 -0
  116. package/es-modules/Data/Stores/GoogleSheetsStore.js +169 -0
  117. package/es-modules/Data/Stores/HTMLTableStore.js +353 -0
  118. package/es-modules/Extensions/Annotations/Annotations.js +69 -18
  119. package/es-modules/Extensions/Annotations/ControlPoint.js +1 -3
  120. package/es-modules/Extensions/Annotations/Controllables/ControllableCircle.js +1 -1
  121. package/es-modules/Extensions/Annotations/Controllables/ControllableEllipse.js +199 -0
  122. package/es-modules/Extensions/Annotations/Controllables/ControllableImage.js +1 -1
  123. package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +3 -6
  124. package/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +3 -2
  125. package/es-modules/Extensions/Annotations/Controllables/ControllableRect.js +1 -1
  126. package/es-modules/Extensions/Annotations/Mixins/ControllableMixin.js +13 -4
  127. package/es-modules/Extensions/Annotations/Mixins/EventEmitterMixin.js +0 -1
  128. package/es-modules/Extensions/Annotations/Mixins/MarkerMixin.js +5 -4
  129. package/es-modules/Extensions/Annotations/NavigationBindings.js +120 -53
  130. package/es-modules/Extensions/Annotations/Popup.js +494 -148
  131. package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +51 -2
  132. package/es-modules/Extensions/Annotations/Types/CrookedLine.js +5 -3
  133. package/es-modules/Extensions/Annotations/Types/ElliottWave.js +1 -1
  134. package/es-modules/Extensions/Annotations/Types/Fibonacci.js +2 -3
  135. package/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +219 -0
  136. package/es-modules/Extensions/Annotations/Types/InfinityLine.js +1 -1
  137. package/es-modules/Extensions/Annotations/Types/Measure.js +29 -19
  138. package/es-modules/Extensions/Annotations/Types/Pitchfork.js +7 -6
  139. package/es-modules/Extensions/Annotations/Types/TimeCycles.js +211 -0
  140. package/es-modules/Extensions/Annotations/Types/Tunnel.js +13 -10
  141. package/es-modules/Extensions/Annotations/Types/VerticalLine.js +1 -1
  142. package/es-modules/Extensions/Boost/BoostOptions.js +2 -2
  143. package/es-modules/Extensions/Boost/BoostOverrides.js +6 -10
  144. package/es-modules/Extensions/Boost/BoostUtils.js +0 -6
  145. package/es-modules/Extensions/Boost/WGLRenderer.js +16 -12
  146. package/es-modules/Extensions/Boost/WGLShader.js +13 -11
  147. package/es-modules/Extensions/Boost/WGLVBuffer.js +4 -7
  148. package/es-modules/Extensions/BoostCanvas.js +1 -2
  149. package/es-modules/Extensions/CurrentDateIndication.js +2 -3
  150. package/es-modules/Extensions/Data.js +4 -48
  151. package/es-modules/Extensions/DataGrouping.js +52 -32
  152. package/es-modules/Extensions/DownloadURL.js +2 -2
  153. package/es-modules/Extensions/DragPanes.js +1 -2
  154. package/es-modules/Extensions/DraggablePoints.js +7 -8
  155. package/es-modules/Extensions/Drilldown.js +11 -7
  156. package/es-modules/Extensions/ExportData.js +6 -5
  157. package/es-modules/Extensions/Exporting/Exporting.js +33 -46
  158. package/es-modules/Extensions/Exporting/ExportingDefaults.js +8 -15
  159. package/es-modules/Extensions/FullScreen.js +4 -3
  160. package/es-modules/Extensions/GeoJSON.js +42 -66
  161. package/es-modules/Extensions/MarkerClusters.js +118 -98
  162. package/es-modules/Extensions/Math3D.js +4 -4
  163. package/es-modules/Extensions/NoDataToDisplay.js +1 -2
  164. package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +32 -32
  165. package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
  166. package/es-modules/Extensions/Oldie/Oldie.js +14 -79
  167. package/es-modules/Extensions/Oldie/VMLAxis3D.js +5 -1
  168. package/es-modules/Extensions/OverlappingDataLabels.js +10 -6
  169. package/es-modules/Extensions/Pane.js +11 -12
  170. package/es-modules/Extensions/ParallelCoordinates.js +5 -3
  171. package/es-modules/Extensions/PatternFill.js +17 -11
  172. package/es-modules/Extensions/Polar.js +7 -4
  173. package/es-modules/Extensions/PriceIndication.js +2 -1
  174. package/es-modules/Extensions/RangeSelector.js +22 -59
  175. package/es-modules/Extensions/ScrollablePlotArea.js +2 -2
  176. package/es-modules/Extensions/SeriesLabel.js +1 -1
  177. package/es-modules/Extensions/Sonification/ChartSonify.js +279 -663
  178. package/es-modules/Extensions/Sonification/Earcon.js +136 -102
  179. package/es-modules/Extensions/Sonification/Instrument.js +493 -426
  180. package/es-modules/Extensions/Sonification/MusicalFrequencies.js +10 -0
  181. package/es-modules/Extensions/Sonification/Options.js +10 -0
  182. package/es-modules/Extensions/Sonification/PointSonify.js +207 -152
  183. package/es-modules/Extensions/Sonification/SeriesSonify.js +474 -0
  184. package/es-modules/Extensions/Sonification/SignalHandler.js +122 -0
  185. package/es-modules/Extensions/Sonification/Sonification.js +27 -53
  186. package/es-modules/Extensions/Sonification/{Utilities.js → SonificationUtilities.js} +70 -88
  187. package/es-modules/Extensions/Sonification/Timeline.js +250 -567
  188. package/es-modules/Extensions/Sonification/TimelineEvent.js +157 -0
  189. package/es-modules/Extensions/Sonification/TimelinePath.js +311 -0
  190. package/es-modules/Extensions/Stacking.js +5 -23
  191. package/es-modules/Extensions/Themes/BrandDark.js +293 -0
  192. package/es-modules/Extensions/Themes/BrandLight.js +259 -0
  193. package/es-modules/Extensions/Themes/DarkUnica.js +4 -2
  194. package/es-modules/Extensions/Themes/Grid.js +4 -2
  195. package/es-modules/Extensions/Themes/GridLight.js +4 -2
  196. package/es-modules/Gantt/Connection.js +2 -2
  197. package/es-modules/Gantt/Pathfinder.js +6 -5
  198. package/es-modules/Gantt/PathfinderAlgorithms.js +12 -12
  199. package/es-modules/Maps/MapNavigation.js +30 -68
  200. package/es-modules/Maps/MapNavigationOptionsDefault.js +3 -0
  201. package/es-modules/Maps/MapPointer.js +8 -5
  202. package/es-modules/Maps/MapSymbols.js +23 -3
  203. package/es-modules/Maps/MapView.js +450 -0
  204. package/es-modules/Maps/MapViewOptionsDefault.js +97 -0
  205. package/es-modules/Maps/Projection.js +436 -0
  206. package/es-modules/Maps/ProjectionDefinition.js +9 -0
  207. package/es-modules/Maps/Projections/EqualEarth.js +42 -0
  208. package/es-modules/Maps/Projections/LambertConformalConic.js +52 -0
  209. package/es-modules/Maps/Projections/Miller.js +16 -0
  210. package/es-modules/Maps/Projections/Orthographic.js +26 -0
  211. package/es-modules/Maps/Projections/ProjectionRegistry.js +19 -0
  212. package/es-modules/Maps/Projections/WebMercator.js +24 -0
  213. package/es-modules/Series/Area/AreaSeries.js +13 -13
  214. package/es-modules/Series/Area3DSeries.js +4 -2
  215. package/es-modules/Series/AreaRange/AreaRangeSeries.js +28 -17
  216. package/es-modules/Series/Bellcurve/BellcurveSeries.js +4 -9
  217. package/es-modules/Series/BoxPlot/BoxPlotSeries.js +1 -2
  218. package/es-modules/Series/Bubble/BubbleLegendDefaults.js +1 -2
  219. package/es-modules/Series/Bubble/BubbleLegendItem.js +5 -15
  220. package/es-modules/Series/Bubble/BubblePoint.js +5 -0
  221. package/es-modules/Series/Bubble/BubbleSeries.js +90 -50
  222. package/es-modules/Series/Candlestick/CandlestickSeries.js +10 -19
  223. package/es-modules/{Mixins/CenteredSeries.js → Series/CenteredUtilities.js} +45 -23
  224. package/es-modules/{Mixins/ColorMapSeries.js → Series/ColorMapMixin.js} +10 -8
  225. package/es-modules/Series/Column/ColumnDataLabel.js +5 -5
  226. package/es-modules/Series/Column/ColumnSeries.js +19 -18
  227. package/es-modules/Series/Column3D/Column3DComposition.js +1 -2
  228. package/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +11 -8
  229. package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +2 -1
  230. package/es-modules/Series/Cylinder/CylinderComposition.js +36 -4
  231. package/es-modules/Series/DataModifyComposition.js +539 -0
  232. package/es-modules/Series/DependencyWheel/DependencyWheelPoint.js +2 -6
  233. package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +1 -1
  234. package/es-modules/Series/DerivedComposition.js +137 -0
  235. package/es-modules/Series/DrawPointComposition.js +111 -0
  236. package/es-modules/Series/Dumbbell/DumbbellPoint.js +0 -1
  237. package/es-modules/Series/Dumbbell/DumbbellSeries.js +2 -6
  238. package/es-modules/Series/ErrorBar/ErrorBarSeries.js +1 -2
  239. package/es-modules/Series/Flags/FlagsSeries.js +18 -25
  240. package/es-modules/Series/Flags/FlagsSymbols.js +2 -2
  241. package/es-modules/Series/Funnel/FunnelSeries.js +6 -5
  242. package/es-modules/Series/Funnel3D/Funnel3DComposition.js +14 -8
  243. package/es-modules/Series/Funnel3D/Funnel3DSeries.js +2 -1
  244. package/es-modules/Series/Gantt/GanttPoint.js +1 -1
  245. package/es-modules/Series/Gantt/GanttSeries.js +3 -3
  246. package/es-modules/Series/Gauge/GaugePoint.js +1 -1
  247. package/es-modules/Series/Gauge/GaugeSeries.js +7 -7
  248. package/es-modules/Series/HLC/HLCPoint.js +55 -0
  249. package/es-modules/Series/HLC/HLCSeries.js +378 -0
  250. package/es-modules/Series/Heatmap/HeatmapPoint.js +13 -14
  251. package/es-modules/Series/Heatmap/HeatmapSeries.js +24 -12
  252. package/es-modules/Series/HeikinAshi/HeikinAshiSeries.js +10 -9
  253. package/es-modules/Series/Histogram/HistogramSeries.js +7 -11
  254. package/es-modules/Series/HollowCandlestick/HollowCandlestickPoint.js +1 -4
  255. package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +28 -30
  256. package/es-modules/Series/Item/ItemSeries.js +4 -5
  257. package/es-modules/Series/Line/LineSeries.js +1 -2
  258. package/es-modules/Series/Map/MapPoint.js +27 -14
  259. package/es-modules/Series/Map/MapSeries.js +283 -322
  260. package/es-modules/Series/MapBubble/MapBubblePoint.js +0 -3
  261. package/es-modules/Series/MapBubble/MapBubbleSeries.js +10 -1
  262. package/es-modules/Series/MapLine/MapLineSeries.js +2 -4
  263. package/es-modules/Series/MapPoint/MapPointPoint.js +5 -1
  264. package/es-modules/Series/MapPoint/MapPointSeries.js +99 -14
  265. package/es-modules/Series/Networkgraph/DraggableNodes.js +0 -4
  266. package/es-modules/Series/Networkgraph/Integrations.js +8 -22
  267. package/es-modules/Series/Networkgraph/Networkgraph.js +6 -10
  268. package/es-modules/Series/Networkgraph/QuadTree.js +1 -3
  269. package/es-modules/{Mixins/Nodes.js → Series/NodesComposition.js} +78 -30
  270. package/es-modules/Series/OHLC/OHLCPoint.js +2 -7
  271. package/es-modules/Series/OHLC/OHLCSeries.js +55 -183
  272. package/es-modules/{Mixins/OnSeries.js → Series/OnSeriesComposition.js} +53 -21
  273. package/es-modules/Series/Organization/OrganizationSeries.js +6 -5
  274. package/es-modules/Series/PackedBubble/PackedBubbleComposition.js +1 -0
  275. package/es-modules/Series/PackedBubble/PackedBubblePoint.js +1 -1
  276. package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +48 -10
  277. package/es-modules/Series/ParetoSeries/ParetoSeries.js +3 -7
  278. package/es-modules/Series/Pie/PieDataLabel.js +1 -2
  279. package/es-modules/Series/Pie/PiePoint.js +2 -2
  280. package/es-modules/Series/Pie/PieSeries.js +7 -8
  281. package/es-modules/Series/Pie3D/Pie3DComposition.js +2 -1
  282. package/es-modules/Series/Pie3D/Pie3DPoint.js +2 -1
  283. package/es-modules/Series/Pie3D/Pie3DSeries.js +1 -1
  284. package/es-modules/Series/Pyramid3D/Pyramid3DSeries.js +2 -1
  285. package/es-modules/Series/Sankey/SankeyPoint.js +0 -4
  286. package/es-modules/Series/Sankey/SankeySeries.js +92 -22
  287. package/es-modules/Series/SolidGauge/SolidGaugeComposition.js +3 -1
  288. package/es-modules/Series/Spline/SplineSeries.js +0 -8
  289. package/es-modules/Series/Sunburst/SunburstPoint.js +2 -3
  290. package/es-modules/Series/Sunburst/SunburstSeries.js +6 -6
  291. package/es-modules/Series/Sunburst/SunburstUtilities.js +3 -2
  292. package/es-modules/Series/Tilemap/TilemapPoint.js +2 -5
  293. package/es-modules/Series/Tilemap/TilemapShapes.js +0 -7
  294. package/es-modules/Series/Timeline/TimelineSeries.js +3 -4
  295. package/es-modules/{Mixins/TreeSeries.js → Series/TreeUtilities.js} +88 -78
  296. package/es-modules/Series/Treemap/TreemapPoint.js +2 -2
  297. package/es-modules/Series/Treemap/TreemapSeries.js +22 -25
  298. package/es-modules/Series/Variwide/VariwideSeries.js +5 -1
  299. package/es-modules/Series/Venn/VennPoint.js +16 -7
  300. package/es-modules/Series/Venn/VennSeries.js +11 -17
  301. package/es-modules/Series/Venn/VennUtils.js +551 -439
  302. package/es-modules/Series/Waterfall/WaterfallSeries.js +8 -6
  303. package/es-modules/Series/Windbarb/WindbarbSeries.js +23 -24
  304. package/es-modules/Series/Wordcloud/WordcloudPoint.js +8 -6
  305. package/es-modules/Series/Wordcloud/WordcloudSeries.js +26 -22
  306. package/es-modules/Series/Wordcloud/WordcloudUtils.js +669 -484
  307. package/es-modules/Series/XRange/XRangePoint.js +7 -12
  308. package/es-modules/Series/XRange/XRangeSeries.js +4 -20
  309. package/es-modules/Stock/Indicators/ABands/ABandsIndicator.js +15 -6
  310. package/es-modules/Stock/Indicators/AO/AOIndicator.js +2 -3
  311. package/es-modules/Stock/Indicators/APO/APOIndicator.js +14 -20
  312. package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +4 -6
  313. package/es-modules/Stock/Indicators/AroonOscillator/AroonOscillatorIndicator.js +11 -13
  314. package/es-modules/Stock/Indicators/ArrayUtilities.js +47 -0
  315. package/es-modules/Stock/Indicators/BB/BBIndicator.js +39 -11
  316. package/es-modules/Stock/Indicators/CMF/CMFIndicator.js +35 -15
  317. package/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +6 -12
  318. package/es-modules/Stock/Indicators/DEMA/DEMAIndicator.js +1 -11
  319. package/es-modules/Stock/Indicators/DMI/DMIIndicator.js +28 -16
  320. package/es-modules/Stock/Indicators/DisparityIndex/DisparityIndexIndicator.js +18 -11
  321. package/es-modules/Stock/Indicators/EMA/EMAIndicator.js +1 -3
  322. package/es-modules/Stock/Indicators/IKH/IKHIndicator.js +6 -6
  323. package/es-modules/Stock/Indicators/KeltnerChannels/KeltnerChannelsIndicator.js +23 -9
  324. package/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +16 -19
  325. package/es-modules/Stock/Indicators/LinearRegression/LinearRegression.js +32 -14
  326. package/es-modules/Stock/Indicators/LinearRegressionAngle/LinearRegressionAngle.js +2 -2
  327. package/es-modules/Stock/Indicators/LinearRegressionIntercept/LinearRegressionIntercept.js +2 -2
  328. package/es-modules/Stock/Indicators/LinearRegressionSlopes/LinearRegressionSlopes.js +2 -2
  329. package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +2 -3
  330. package/es-modules/Stock/Indicators/MultipleLinesComposition.js +294 -0
  331. package/es-modules/Stock/Indicators/NATR/NATRIndicator.js +1 -3
  332. package/es-modules/Stock/Indicators/PC/PCIndicator.js +25 -13
  333. package/es-modules/Stock/Indicators/PPO/PPOIndicator.js +1 -11
  334. package/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +2 -1
  335. package/es-modules/Stock/Indicators/RSI/RSIIndicator.js +2 -1
  336. package/es-modules/Stock/Indicators/SMA/SMAComposition.js +0 -26
  337. package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +32 -50
  338. package/es-modules/Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js +0 -8
  339. package/es-modules/Stock/Indicators/Stochastic/StochasticIndicator.js +18 -9
  340. package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +4 -6
  341. package/es-modules/Stock/Indicators/TEMA/TEMAIndicator.js +26 -11
  342. package/es-modules/Stock/Indicators/TRIX/TRIXIndicator.js +6 -12
  343. package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +26 -10
  344. package/es-modules/Stock/Indicators/VWAP/VWAPIndicator.js +19 -7
  345. package/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +2 -3
  346. package/es-modules/Stock/StockToolsBindings.js +156 -47
  347. package/es-modules/Stock/StockToolsGui.js +442 -37
  348. package/es-modules/masters/highcharts-3d.src.js +1 -1
  349. package/es-modules/masters/highcharts-gantt.src.js +1 -1
  350. package/es-modules/masters/highcharts-more.src.js +1 -1
  351. package/es-modules/masters/highcharts.src.js +1 -1
  352. package/es-modules/masters/highmaps.src.js +1 -1
  353. package/es-modules/masters/highstock.src.js +1 -1
  354. package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
  355. package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
  356. package/es-modules/masters/indicators/ao.src.js +1 -1
  357. package/es-modules/masters/indicators/apo.src.js +1 -1
  358. package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
  359. package/es-modules/masters/indicators/aroon.src.js +1 -1
  360. package/es-modules/masters/indicators/atr.src.js +1 -1
  361. package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
  362. package/es-modules/masters/indicators/cci.src.js +1 -1
  363. package/es-modules/masters/indicators/chaikin.src.js +1 -1
  364. package/es-modules/masters/indicators/cmf.src.js +1 -1
  365. package/es-modules/masters/indicators/cmo.src.js +1 -1
  366. package/es-modules/masters/indicators/dema.src.js +1 -1
  367. package/es-modules/masters/indicators/disparity-index.src.js +1 -1
  368. package/es-modules/masters/indicators/dmi.src.js +1 -1
  369. package/es-modules/masters/indicators/dpo.src.js +1 -1
  370. package/es-modules/masters/indicators/ema.src.js +4 -10
  371. package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
  372. package/es-modules/masters/indicators/indicators-all.src.js +2 -2
  373. package/es-modules/masters/indicators/indicators.src.js +2 -1
  374. package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
  375. package/es-modules/masters/indicators/klinger.src.js +1 -1
  376. package/es-modules/masters/indicators/macd.src.js +1 -1
  377. package/es-modules/masters/indicators/mfi.src.js +1 -1
  378. package/es-modules/masters/indicators/momentum.src.js +1 -1
  379. package/es-modules/masters/indicators/natr.src.js +1 -1
  380. package/es-modules/masters/indicators/obv.src.js +1 -1
  381. package/es-modules/masters/indicators/pivot-points.src.js +1 -1
  382. package/es-modules/masters/indicators/ppo.src.js +1 -1
  383. package/es-modules/masters/indicators/price-channel.src.js +1 -1
  384. package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
  385. package/es-modules/masters/indicators/psar.src.js +1 -1
  386. package/es-modules/masters/indicators/regressions.src.js +1 -1
  387. package/es-modules/masters/indicators/roc.src.js +1 -1
  388. package/es-modules/masters/indicators/rsi.src.js +1 -1
  389. package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
  390. package/es-modules/masters/indicators/stochastic.src.js +1 -1
  391. package/es-modules/masters/indicators/supertrend.src.js +1 -1
  392. package/es-modules/masters/indicators/tema.src.js +1 -1
  393. package/es-modules/masters/indicators/trendline.src.js +1 -1
  394. package/es-modules/masters/indicators/trix.src.js +1 -1
  395. package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
  396. package/es-modules/masters/indicators/vwap.src.js +1 -1
  397. package/es-modules/masters/indicators/williams-r.src.js +1 -1
  398. package/es-modules/masters/indicators/wma.src.js +1 -1
  399. package/es-modules/masters/indicators/zigzag.src.js +1 -1
  400. package/es-modules/masters/modules/accessibility.src.js +16 -2
  401. package/es-modules/masters/modules/annotations-advanced.src.js +3 -1
  402. package/es-modules/masters/modules/annotations.src.js +1 -1
  403. package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
  404. package/es-modules/masters/modules/boost-canvas.src.js +1 -1
  405. package/es-modules/masters/modules/boost.src.js +1 -1
  406. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  407. package/es-modules/masters/modules/bullet.src.js +1 -1
  408. package/es-modules/masters/modules/coloraxis.src.js +1 -1
  409. package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
  410. package/es-modules/masters/modules/cylinder.src.js +1 -1
  411. package/es-modules/masters/modules/data.src.js +6 -3
  412. package/es-modules/masters/modules/datagrouping.src.js +1 -1
  413. package/es-modules/masters/modules/debugger.src.js +1 -1
  414. package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
  415. package/es-modules/masters/modules/dotplot.src.js +1 -1
  416. package/es-modules/masters/modules/drag-panes.src.js +1 -1
  417. package/es-modules/masters/modules/draggable-points.src.js +1 -1
  418. package/es-modules/masters/modules/drilldown.src.js +1 -1
  419. package/es-modules/masters/modules/dumbbell.src.js +1 -1
  420. package/es-modules/masters/modules/export-data.src.js +1 -1
  421. package/es-modules/masters/modules/exporting.src.js +1 -1
  422. package/es-modules/masters/modules/full-screen.src.js +1 -1
  423. package/es-modules/masters/modules/funnel.src.js +1 -1
  424. package/es-modules/masters/modules/funnel3d.src.js +1 -1
  425. package/es-modules/masters/modules/gantt.src.js +1 -1
  426. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  427. package/es-modules/masters/modules/heatmap.src.js +1 -2
  428. package/es-modules/masters/modules/heikinashi.src.js +1 -1
  429. package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
  430. package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
  431. package/es-modules/masters/modules/item-series.src.js +1 -1
  432. package/es-modules/masters/modules/lollipop.src.js +1 -1
  433. package/es-modules/masters/modules/map.src.js +1 -3
  434. package/es-modules/masters/modules/marker-clusters.src.js +1 -1
  435. package/es-modules/masters/modules/networkgraph.src.js +1 -1
  436. package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
  437. package/es-modules/masters/modules/offline-exporting.src.js +1 -1
  438. package/es-modules/masters/modules/oldie-polyfills.src.js +1 -1
  439. package/es-modules/masters/modules/oldie.src.js +1 -1
  440. package/es-modules/masters/modules/organization.src.js +1 -1
  441. package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  442. package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
  443. package/es-modules/masters/modules/pareto.src.js +1 -1
  444. package/es-modules/masters/modules/pathfinder.src.js +1 -1
  445. package/es-modules/masters/modules/pattern-fill.src.js +1 -1
  446. package/es-modules/masters/modules/price-indicator.src.js +1 -1
  447. package/es-modules/masters/modules/pyramid3d.src.js +1 -1
  448. package/es-modules/masters/modules/sankey.src.js +1 -1
  449. package/es-modules/masters/modules/series-label.src.js +1 -1
  450. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  451. package/es-modules/masters/modules/sonification.src.js +33 -2
  452. package/es-modules/masters/modules/static-scale.src.js +1 -1
  453. package/es-modules/masters/modules/stock-tools.src.js +1 -1
  454. package/es-modules/masters/modules/stock.src.js +4 -1
  455. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  456. package/es-modules/masters/modules/sunburst.src.js +1 -1
  457. package/es-modules/masters/modules/tilemap.src.js +1 -1
  458. package/es-modules/masters/modules/timeline.src.js +1 -1
  459. package/es-modules/masters/modules/treegrid.src.js +1 -1
  460. package/es-modules/masters/modules/treemap.src.js +1 -1
  461. package/es-modules/masters/modules/variable-pie.src.js +1 -1
  462. package/es-modules/masters/modules/variwide.src.js +1 -1
  463. package/es-modules/masters/modules/vector.src.js +1 -1
  464. package/es-modules/masters/modules/venn.src.js +1 -1
  465. package/es-modules/masters/modules/windbarb.src.js +1 -1
  466. package/es-modules/masters/modules/wordcloud.src.js +1 -1
  467. package/es-modules/masters/modules/xrange.src.js +1 -1
  468. package/es-modules/masters/themes/avocado.src.js +1 -1
  469. package/es-modules/masters/themes/brand-dark.src.js +14 -0
  470. package/es-modules/masters/themes/brand-light.src.js +14 -0
  471. package/es-modules/masters/themes/dark-blue.src.js +1 -1
  472. package/es-modules/masters/themes/dark-green.src.js +1 -1
  473. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  474. package/es-modules/masters/themes/gray.src.js +1 -1
  475. package/es-modules/masters/themes/grid-light.src.js +1 -1
  476. package/es-modules/masters/themes/grid.src.js +1 -1
  477. package/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
  478. package/es-modules/masters/themes/high-contrast-light.src.js +1 -1
  479. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  480. package/es-modules/masters/themes/skies.src.js +1 -1
  481. package/es-modules/masters/themes/sunset.src.js +1 -1
  482. package/highcharts-3d.js +1 -1
  483. package/highcharts-3d.js.map +1 -1
  484. package/highcharts-3d.src.js +65 -35
  485. package/highcharts-gantt.js +800 -803
  486. package/highcharts-gantt.js.map +1 -1
  487. package/highcharts-gantt.src.js +1356 -1429
  488. package/highcharts-more.js +194 -193
  489. package/highcharts-more.js.map +1 -1
  490. package/highcharts-more.src.js +280 -222
  491. package/highcharts.d.ts +10208 -761
  492. package/highcharts.js +585 -588
  493. package/highcharts.js.map +1 -1
  494. package/highcharts.src.d.ts +10208 -761
  495. package/highcharts.src.js +992 -1066
  496. package/highmaps.js +727 -707
  497. package/highmaps.js.map +1 -1
  498. package/highmaps.src.js +3240 -2135
  499. package/highstock.js +788 -783
  500. package/highstock.js.map +1 -1
  501. package/highstock.src.js +2487 -1981
  502. package/indicators/acceleration-bands.d.ts +17 -1
  503. package/indicators/acceleration-bands.js +11 -9
  504. package/indicators/acceleration-bands.js.map +1 -1
  505. package/indicators/acceleration-bands.src.d.ts +17 -1
  506. package/indicators/acceleration-bands.src.js +238 -112
  507. package/indicators/accumulation-distribution.js +1 -1
  508. package/indicators/accumulation-distribution.src.js +1 -1
  509. package/indicators/ao.js +6 -6
  510. package/indicators/ao.js.map +1 -1
  511. package/indicators/ao.src.js +4 -4
  512. package/indicators/apo.js +5 -6
  513. package/indicators/apo.js.map +1 -1
  514. package/indicators/apo.src.js +16 -84
  515. package/indicators/aroon-oscillator.d.ts +17 -1
  516. package/indicators/aroon-oscillator.js +10 -9
  517. package/indicators/aroon-oscillator.js.map +1 -1
  518. package/indicators/aroon-oscillator.src.d.ts +17 -1
  519. package/indicators/aroon-oscillator.src.js +230 -177
  520. package/indicators/aroon.d.ts +17 -1
  521. package/indicators/aroon.js +11 -9
  522. package/indicators/aroon.js.map +1 -1
  523. package/indicators/aroon.src.d.ts +17 -1
  524. package/indicators/aroon.src.js +227 -112
  525. package/indicators/atr.js +1 -1
  526. package/indicators/atr.src.js +1 -1
  527. package/indicators/bollinger-bands.d.ts +17 -1
  528. package/indicators/bollinger-bands.js +12 -9
  529. package/indicators/bollinger-bands.js.map +1 -1
  530. package/indicators/bollinger-bands.src.d.ts +17 -1
  531. package/indicators/bollinger-bands.src.js +262 -117
  532. package/indicators/cci.js +1 -1
  533. package/indicators/cci.src.js +1 -1
  534. package/indicators/chaikin.js +8 -9
  535. package/indicators/chaikin.js.map +1 -1
  536. package/indicators/chaikin.src.js +8 -76
  537. package/indicators/cmf.js +1 -1
  538. package/indicators/cmf.js.map +1 -1
  539. package/indicators/cmf.src.js +36 -16
  540. package/indicators/cmo.js +1 -1
  541. package/indicators/cmo.src.js +1 -1
  542. package/indicators/dema.js +5 -6
  543. package/indicators/dema.js.map +1 -1
  544. package/indicators/dema.src.js +3 -75
  545. package/indicators/disparity-index.js +6 -7
  546. package/indicators/disparity-index.js.map +1 -1
  547. package/indicators/disparity-index.src.js +20 -74
  548. package/indicators/dmi.js +12 -11
  549. package/indicators/dmi.js.map +1 -1
  550. package/indicators/dmi.src.js +252 -121
  551. package/indicators/dpo.js +1 -1
  552. package/indicators/dpo.src.js +1 -1
  553. package/indicators/ema.js +1 -13
  554. package/indicators/ema.js.map +1 -1
  555. package/indicators/ema.src.js +7 -188
  556. package/indicators/ichimoku-kinko-hyo.js +1 -1
  557. package/indicators/ichimoku-kinko-hyo.js.map +1 -1
  558. package/indicators/ichimoku-kinko-hyo.src.js +7 -7
  559. package/indicators/indicators-all.d.ts +17 -1
  560. package/indicators/indicators-all.js +198 -203
  561. package/indicators/indicators-all.js.map +1 -1
  562. package/indicators/indicators-all.src.d.ts +17 -1
  563. package/indicators/indicators-all.src.js +892 -777
  564. package/indicators/indicators.js +12 -12
  565. package/indicators/indicators.js.map +1 -1
  566. package/indicators/indicators.src.js +213 -144
  567. package/indicators/keltner-channels.d.ts +17 -1
  568. package/indicators/keltner-channels.js +11 -10
  569. package/indicators/keltner-channels.js.map +1 -1
  570. package/indicators/keltner-channels.src.d.ts +17 -1
  571. package/indicators/keltner-channels.src.js +246 -118
  572. package/indicators/klinger.js +14 -13
  573. package/indicators/klinger.js.map +1 -1
  574. package/indicators/klinger.src.js +239 -187
  575. package/indicators/macd.js +2 -2
  576. package/indicators/macd.js.map +1 -1
  577. package/indicators/macd.src.js +3 -4
  578. package/indicators/mfi.js +1 -1
  579. package/indicators/mfi.src.js +1 -1
  580. package/indicators/momentum.js +1 -1
  581. package/indicators/momentum.src.js +1 -1
  582. package/indicators/natr.js +3 -3
  583. package/indicators/natr.js.map +1 -1
  584. package/indicators/natr.src.js +2 -4
  585. package/indicators/obv.js +1 -1
  586. package/indicators/obv.src.js +1 -1
  587. package/indicators/pivot-points.js +1 -1
  588. package/indicators/pivot-points.js.map +1 -1
  589. package/indicators/pivot-points.src.js +3 -2
  590. package/indicators/ppo.js +5 -6
  591. package/indicators/ppo.js.map +1 -1
  592. package/indicators/ppo.src.js +3 -75
  593. package/indicators/price-channel.d.ts +17 -1
  594. package/indicators/price-channel.js +11 -9
  595. package/indicators/price-channel.js.map +1 -1
  596. package/indicators/price-channel.src.d.ts +17 -1
  597. package/indicators/price-channel.src.js +288 -168
  598. package/indicators/price-envelopes.js +1 -1
  599. package/indicators/price-envelopes.src.js +1 -1
  600. package/indicators/psar.js +1 -1
  601. package/indicators/psar.src.js +1 -1
  602. package/indicators/regressions.js +1 -1
  603. package/indicators/regressions.js.map +1 -1
  604. package/indicators/regressions.src.js +39 -21
  605. package/indicators/roc.js +1 -1
  606. package/indicators/roc.src.js +1 -1
  607. package/indicators/rsi.js +1 -1
  608. package/indicators/rsi.js.map +1 -1
  609. package/indicators/rsi.src.js +3 -2
  610. package/indicators/slow-stochastic.js +5 -6
  611. package/indicators/slow-stochastic.js.map +1 -1
  612. package/indicators/slow-stochastic.src.js +2 -72
  613. package/indicators/stochastic.d.ts +17 -1
  614. package/indicators/stochastic.js +12 -10
  615. package/indicators/stochastic.js.map +1 -1
  616. package/indicators/stochastic.src.d.ts +17 -1
  617. package/indicators/stochastic.src.js +282 -165
  618. package/indicators/supertrend.js +10 -10
  619. package/indicators/supertrend.js.map +1 -1
  620. package/indicators/supertrend.src.js +6 -7
  621. package/indicators/tema.js +6 -7
  622. package/indicators/tema.js.map +1 -1
  623. package/indicators/tema.src.js +28 -75
  624. package/indicators/trendline.js +1 -1
  625. package/indicators/trendline.src.js +1 -1
  626. package/indicators/trix.js +4 -5
  627. package/indicators/trix.js.map +1 -1
  628. package/indicators/trix.src.js +8 -76
  629. package/indicators/volume-by-price.js +16 -16
  630. package/indicators/volume-by-price.js.map +1 -1
  631. package/indicators/volume-by-price.src.js +27 -10
  632. package/indicators/vwap.js +1 -1
  633. package/indicators/vwap.js.map +1 -1
  634. package/indicators/vwap.src.js +20 -8
  635. package/indicators/williams-r.js +5 -6
  636. package/indicators/williams-r.js.map +1 -1
  637. package/indicators/williams-r.src.js +41 -51
  638. package/indicators/wma.js +1 -1
  639. package/indicators/wma.src.js +1 -1
  640. package/indicators/zigzag.js +1 -1
  641. package/indicators/zigzag.src.js +1 -1
  642. package/modules/accessibility.d.ts +0 -30
  643. package/modules/accessibility.js +241 -216
  644. package/modules/accessibility.js.map +1 -1
  645. package/modules/accessibility.src.d.ts +0 -30
  646. package/modules/accessibility.src.js +7818 -6398
  647. package/modules/annotations-advanced.d.ts +30 -0
  648. package/modules/annotations-advanced.js +192 -165
  649. package/modules/annotations-advanced.js.map +1 -1
  650. package/modules/annotations-advanced.src.d.ts +30 -0
  651. package/modules/annotations-advanced.src.js +1716 -416
  652. package/modules/annotations.js +125 -110
  653. package/modules/annotations.js.map +1 -1
  654. package/modules/annotations.src.js +1059 -304
  655. package/modules/arrow-symbols.js +1 -1
  656. package/modules/arrow-symbols.src.js +1 -1
  657. package/modules/boost-canvas.js +15 -15
  658. package/modules/boost-canvas.js.map +1 -1
  659. package/modules/boost-canvas.src.js +3 -3
  660. package/modules/boost.js +79 -79
  661. package/modules/boost.js.map +1 -1
  662. package/modules/boost.src.js +42 -51
  663. package/modules/broken-axis.js +1 -1
  664. package/modules/broken-axis.js.map +1 -1
  665. package/modules/broken-axis.src.js +18 -12
  666. package/modules/bullet.js +1 -1
  667. package/modules/bullet.src.js +1 -1
  668. package/modules/coloraxis.js +24 -24
  669. package/modules/coloraxis.js.map +1 -1
  670. package/modules/coloraxis.src.js +77 -103
  671. package/modules/current-date-indicator.js +4 -4
  672. package/modules/current-date-indicator.js.map +1 -1
  673. package/modules/current-date-indicator.src.js +4 -4
  674. package/modules/cylinder.js +1 -1
  675. package/modules/cylinder.js.map +1 -1
  676. package/modules/cylinder.src.js +37 -5
  677. package/modules/data.d.ts +6 -6
  678. package/modules/data.js +31 -31
  679. package/modules/data.js.map +1 -1
  680. package/modules/data.src.d.ts +6 -6
  681. package/modules/data.src.js +18 -58
  682. package/modules/datagrouping.js +20 -20
  683. package/modules/datagrouping.js.map +1 -1
  684. package/modules/datagrouping.src.js +54 -33
  685. package/modules/debugger.js +1 -1
  686. package/modules/debugger.src.js +1 -1
  687. package/modules/dependency-wheel.js +11 -11
  688. package/modules/dependency-wheel.js.map +1 -1
  689. package/modules/dependency-wheel.src.js +5 -8
  690. package/modules/dotplot.js +1 -1
  691. package/modules/dotplot.src.js +1 -1
  692. package/modules/drag-panes.js +8 -8
  693. package/modules/drag-panes.js.map +1 -1
  694. package/modules/drag-panes.src.js +3 -3
  695. package/modules/draggable-points.js +1 -1
  696. package/modules/draggable-points.js.map +1 -1
  697. package/modules/draggable-points.src.js +8 -9
  698. package/modules/drilldown.js +24 -24
  699. package/modules/drilldown.js.map +1 -1
  700. package/modules/drilldown.src.js +13 -8
  701. package/modules/dumbbell.js +17 -17
  702. package/modules/dumbbell.js.map +1 -1
  703. package/modules/dumbbell.src.js +4 -8
  704. package/modules/export-data.js +19 -19
  705. package/modules/export-data.js.map +1 -1
  706. package/modules/export-data.src.js +9 -8
  707. package/modules/exporting.js +39 -38
  708. package/modules/exporting.js.map +1 -1
  709. package/modules/exporting.src.js +132 -113
  710. package/modules/full-screen.js +1 -1
  711. package/modules/full-screen.js.map +1 -1
  712. package/modules/full-screen.src.js +5 -4
  713. package/modules/funnel.js +12 -12
  714. package/modules/funnel.js.map +1 -1
  715. package/modules/funnel.src.js +9 -6
  716. package/modules/funnel3d.js +1 -1
  717. package/modules/funnel3d.js.map +1 -1
  718. package/modules/funnel3d.src.js +17 -10
  719. package/modules/gantt.js +217 -218
  720. package/modules/gantt.js.map +1 -1
  721. package/modules/gantt.src.js +364 -363
  722. package/modules/grid-axis.js +1 -1
  723. package/modules/grid-axis.js.map +1 -1
  724. package/modules/grid-axis.src.js +27 -19
  725. package/modules/heatmap.js +39 -39
  726. package/modules/heatmap.js.map +1 -1
  727. package/modules/heatmap.src.js +132 -141
  728. package/modules/heikinashi.js +1 -1
  729. package/modules/heikinashi.js.map +1 -1
  730. package/modules/heikinashi.src.js +12 -10
  731. package/modules/histogram-bellcurve.js +13 -13
  732. package/modules/histogram-bellcurve.js.map +1 -1
  733. package/modules/histogram-bellcurve.src.js +97 -91
  734. package/modules/hollowcandlestick.js +9 -9
  735. package/modules/hollowcandlestick.js.map +1 -1
  736. package/modules/hollowcandlestick.src.js +31 -35
  737. package/modules/item-series.js +6 -6
  738. package/modules/item-series.js.map +1 -1
  739. package/modules/item-series.src.js +6 -6
  740. package/modules/lollipop.js +1 -1
  741. package/modules/lollipop.src.js +1 -1
  742. package/modules/map.d.ts +138 -14
  743. package/modules/map.js +144 -122
  744. package/modules/map.js.map +1 -1
  745. package/modules/map.src.d.ts +138 -14
  746. package/modules/map.src.js +2253 -1074
  747. package/modules/marker-clusters.js +36 -36
  748. package/modules/marker-clusters.js.map +1 -1
  749. package/modules/marker-clusters.src.js +176 -143
  750. package/modules/networkgraph.d.ts +12 -1
  751. package/modules/networkgraph.js +49 -49
  752. package/modules/networkgraph.js.map +1 -1
  753. package/modules/networkgraph.src.d.ts +12 -1
  754. package/modules/networkgraph.src.js +103 -78
  755. package/modules/no-data-to-display.js +5 -5
  756. package/modules/no-data-to-display.js.map +1 -1
  757. package/modules/no-data-to-display.src.js +3 -3
  758. package/modules/offline-exporting.js +18 -18
  759. package/modules/offline-exporting.js.map +1 -1
  760. package/modules/offline-exporting.src.js +38 -43
  761. package/modules/oldie-polyfills.js +1 -1
  762. package/modules/oldie-polyfills.src.js +1 -1
  763. package/modules/oldie.js +26 -26
  764. package/modules/oldie.js.map +1 -1
  765. package/modules/oldie.src.js +21 -81
  766. package/modules/organization.js +13 -13
  767. package/modules/organization.js.map +1 -1
  768. package/modules/organization.src.js +8 -6
  769. package/modules/overlapping-datalabels.js +1 -1
  770. package/modules/overlapping-datalabels.src.js +1 -1
  771. package/modules/parallel-coordinates.js +1 -1
  772. package/modules/parallel-coordinates.js.map +1 -1
  773. package/modules/parallel-coordinates.src.js +6 -4
  774. package/modules/pareto.js +7 -7
  775. package/modules/pareto.js.map +1 -1
  776. package/modules/pareto.src.js +89 -78
  777. package/modules/pathfinder.js +1 -1
  778. package/modules/pathfinder.js.map +1 -1
  779. package/modules/pathfinder.src.js +21 -20
  780. package/modules/pattern-fill.js +1 -1
  781. package/modules/pattern-fill.js.map +1 -1
  782. package/modules/pattern-fill.src.js +18 -12
  783. package/modules/price-indicator.js +1 -1
  784. package/modules/price-indicator.js.map +1 -1
  785. package/modules/price-indicator.src.js +3 -2
  786. package/modules/pyramid3d.js +1 -1
  787. package/modules/pyramid3d.js.map +1 -1
  788. package/modules/pyramid3d.src.js +3 -2
  789. package/modules/sankey.d.ts +12 -1
  790. package/modules/sankey.js +29 -29
  791. package/modules/sankey.js.map +1 -1
  792. package/modules/sankey.src.d.ts +12 -1
  793. package/modules/sankey.src.js +307 -181
  794. package/modules/series-label.js +1 -1
  795. package/modules/series-label.js.map +1 -1
  796. package/modules/series-label.src.js +2 -2
  797. package/modules/solid-gauge.js +1 -1
  798. package/modules/solid-gauge.js.map +1 -1
  799. package/modules/solid-gauge.src.js +17 -2
  800. package/modules/sonification.js +59 -55
  801. package/modules/sonification.js.map +1 -1
  802. package/modules/sonification.src.js +3093 -2594
  803. package/modules/static-scale.js +1 -1
  804. package/modules/static-scale.src.js +1 -1
  805. package/modules/stock-tools.js +178 -163
  806. package/modules/stock-tools.js.map +1 -1
  807. package/modules/stock-tools.src.js +1136 -229
  808. package/modules/stock.d.ts +39 -6
  809. package/modules/stock.js +204 -196
  810. package/modules/stock.js.map +1 -1
  811. package/modules/stock.src.d.ts +39 -6
  812. package/modules/stock.src.js +1820 -1240
  813. package/modules/streamgraph.js +1 -1
  814. package/modules/streamgraph.src.js +1 -1
  815. package/modules/sunburst.js +60 -60
  816. package/modules/sunburst.js.map +1 -1
  817. package/modules/sunburst.src.js +281 -248
  818. package/modules/tilemap.js +17 -17
  819. package/modules/tilemap.js.map +1 -1
  820. package/modules/tilemap.src.js +3 -13
  821. package/modules/timeline.js +18 -18
  822. package/modules/timeline.js.map +1 -1
  823. package/modules/timeline.src.js +5 -5
  824. package/modules/treegrid.js +56 -57
  825. package/modules/treegrid.js.map +1 -1
  826. package/modules/treegrid.src.js +201 -169
  827. package/modules/treemap.js +41 -41
  828. package/modules/treemap.js.map +1 -1
  829. package/modules/treemap.src.js +266 -232
  830. package/modules/variable-pie.js +1 -1
  831. package/modules/variable-pie.src.js +1 -1
  832. package/modules/variwide.js +1 -1
  833. package/modules/variwide.js.map +1 -1
  834. package/modules/variwide.src.js +7 -3
  835. package/modules/vector.js +1 -1
  836. package/modules/vector.src.js +1 -1
  837. package/modules/venn.js +31 -31
  838. package/modules/venn.js.map +1 -1
  839. package/modules/venn.src.js +740 -731
  840. package/modules/windbarb.js +15 -15
  841. package/modules/windbarb.js.map +1 -1
  842. package/modules/windbarb.src.js +90 -62
  843. package/modules/wordcloud.js +23 -24
  844. package/modules/wordcloud.js.map +1 -1
  845. package/modules/wordcloud.src.js +898 -954
  846. package/modules/xrange.js +2 -2
  847. package/modules/xrange.js.map +1 -1
  848. package/modules/xrange.src.js +12 -33
  849. package/package.json +1 -1
  850. package/themes/avocado.js +1 -1
  851. package/themes/avocado.src.js +1 -1
  852. package/themes/brand-dark.js +15 -0
  853. package/themes/brand-dark.js.map +1 -0
  854. package/themes/brand-dark.src.js +328 -0
  855. package/themes/brand-light.js +15 -0
  856. package/themes/brand-light.js.map +1 -0
  857. package/themes/brand-light.src.js +294 -0
  858. package/themes/dark-blue.js +1 -1
  859. package/themes/dark-blue.src.js +1 -1
  860. package/themes/dark-green.js +1 -1
  861. package/themes/dark-green.src.js +1 -1
  862. package/themes/dark-unica.js +1 -1
  863. package/themes/dark-unica.js.map +1 -1
  864. package/themes/dark-unica.src.js +5 -3
  865. package/themes/gray.js +1 -1
  866. package/themes/gray.src.js +1 -1
  867. package/themes/grid-light.js +1 -1
  868. package/themes/grid-light.js.map +1 -1
  869. package/themes/grid-light.src.js +5 -3
  870. package/themes/grid.js +1 -1
  871. package/themes/grid.js.map +1 -1
  872. package/themes/grid.src.js +5 -3
  873. package/themes/high-contrast-dark.js +1 -1
  874. package/themes/high-contrast-dark.src.js +1 -1
  875. package/themes/high-contrast-light.js +1 -1
  876. package/themes/high-contrast-light.src.js +1 -1
  877. package/themes/sand-signika.js +1 -1
  878. package/themes/sand-signika.src.js +1 -1
  879. package/themes/skies.js +1 -1
  880. package/themes/skies.src.js +1 -1
  881. package/themes/sunset.js +1 -1
  882. package/themes/sunset.src.js +1 -1
  883. package/es-modules/Core/Axis/MapAxis.js +0 -157
  884. package/es-modules/Core/Color/Palette.js +0 -82
  885. package/es-modules/Extensions/Sonification/InstrumentDefinitions.js +0 -32
  886. package/es-modules/Mixins/ColorSeries.js +0 -77
  887. package/es-modules/Mixins/DerivedSeries.js +0 -118
  888. package/es-modules/Mixins/DrawPoint.js +0 -81
  889. package/es-modules/Mixins/IndicatorRequired.js +0 -56
  890. package/es-modules/Mixins/MultipleLines.js +0 -181
  891. package/es-modules/Mixins/Navigation.js +0 -54
  892. package/es-modules/Mixins/NelderMead.js +0 -132
  893. package/es-modules/Mixins/Polygon.js +0 -259
  894. package/es-modules/Mixins/ReduceArray.js +0 -54
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v9.2.2 (2021-08-24)
2
+ * @license Highcharts JS v9.3.3 (2022-02-01)
3
3
  *
4
4
  * Boost module
5
5
  *
@@ -101,9 +101,7 @@
101
101
  * @function GLShader
102
102
  *
103
103
  * @param {WebGLContext} gl
104
- * the context in which the shader is active
105
- *
106
- * @return {*}
104
+ * the context in which the shader is active
107
105
  */
108
106
  function GLShader(gl) {
109
107
  var vertShade = [
@@ -312,9 +310,10 @@
312
310
  /**
313
311
  * String to shader program
314
312
  * @private
315
- * @param {string} str - the program source
316
- * @param {string} type - the program type: either `vertex` or `fragment`
317
- * @returns {bool|shader}
313
+ * @param {string} str
314
+ * the program source
315
+ * @param {string} type
316
+ * the program type: either `vertex` or `fragment`
318
317
  */
319
318
  function stringToProgram(str, type) {
320
319
  var t = type === 'vertex' ? gl.VERTEX_SHADER : gl.FRAGMENT_SHADER,
@@ -411,7 +410,8 @@
411
410
  /**
412
411
  * Set the active texture
413
412
  * @private
414
- * @param texture - the texture
413
+ * @param texture
414
+ * the texture
415
415
  */
416
416
  function setTexture(texture) {
417
417
  if (gl && shaderProgram) {
@@ -421,7 +421,8 @@
421
421
  /**
422
422
  * Set if inversion state
423
423
  * @private
424
- * @flag is the state
424
+ * @param {number} flag
425
+ * is the state
425
426
  */
426
427
  function setInverted(flag) {
427
428
  if (gl && shaderProgram) {
@@ -456,7 +457,8 @@
456
457
  var seriesOptions = series.options,
457
458
  zMin = Number.MAX_VALUE,
458
459
  zMax = -Number.MAX_VALUE;
459
- if (gl && shaderProgram && series.type === 'bubble') {
460
+ if (gl && shaderProgram && series.is('bubble')) {
461
+ var pxSizes = series.getPxExtremes();
460
462
  zMin = pick(seriesOptions.zMin, clamp(zCalcMin, seriesOptions.displayNegative === false ?
461
463
  seriesOptions.zThreshold : -Number.MAX_VALUE, zMin));
462
464
  zMax = pick(seriesOptions.zMax, Math.max(zMax, zCalcMax));
@@ -468,8 +470,8 @@
468
470
  setUniform('bubbleZMin', zMin);
469
471
  setUniform('bubbleZMax', zMax);
470
472
  setUniform('bubbleZThreshold', series.options.zThreshold);
471
- setUniform('bubbleMinSize', series.minPxSize);
472
- setUniform('bubbleMaxSize', series.maxPxSize);
473
+ setUniform('bubbleMinSize', pxSizes.minPxSize);
474
+ setUniform('bubbleMaxSize', pxSizes.maxPxSize);
473
475
  }
474
476
  }
475
477
  /**
@@ -573,14 +575,10 @@
573
575
  *
574
576
  * @private
575
577
  * @function GLVertexBuffer
576
- *
577
578
  * @param {WebGLContext} gl
578
- * the context in which to create the buffer
579
- *
579
+ * the context in which to create the buffer
580
580
  * @param {GLShader} shader
581
- * the shader to use
582
- *
583
- * @return {*}
581
+ * the shader to use
584
582
  */
585
583
  function GLVertexBuffer(gl, shader, dataComponents
586
584
  /* , type */
@@ -660,7 +658,8 @@
660
658
  * @param drawMode {String} - the draw mode
661
659
  */
662
660
  function render(from, to, drawMode) {
663
- var length = preAllocated ? preAllocated.length : data.length;
661
+ var length = preAllocated ?
662
+ preAllocated.length : data.length;
664
663
  if (!buffer) {
665
664
  return false;
666
665
  }
@@ -745,10 +744,6 @@
745
744
  *
746
745
  * @private
747
746
  * @function GLRenderer
748
- *
749
- * @param {Function} postRenderCallback
750
- *
751
- * @return {*}
752
747
  */
753
748
  function GLRenderer(postRenderCallback) {
754
749
  // // Shader
@@ -869,8 +864,10 @@
869
864
  /**
870
865
  * Returns an orthographic perspective matrix
871
866
  * @private
872
- * @param {number} width - the width of the viewport in pixels
873
- * @param {number} height - the height of the viewport in pixels
867
+ * @param {number} width
868
+ * the width of the viewport in pixels
869
+ * @param {number} height
870
+ * the height of the viewport in pixels
874
871
  */
875
872
  function orthoMatrix(width, height) {
876
873
  var near = 0,
@@ -892,7 +889,8 @@
892
889
  /**
893
890
  * Get the WebGL context
894
891
  * @private
895
- * @returns {WebGLContext} - the context
892
+ * @return {WebGLContext}
893
+ * the context
896
894
  */
897
895
  function getGL() {
898
896
  return gl;
@@ -1261,8 +1259,10 @@
1261
1259
  zone, i) {
1262
1260
  var last = zones[i - 1];
1263
1261
  if (zoneAxis === 'x') {
1264
- if (typeof zone.value !== 'undefined' && x <= zone.value) {
1265
- if (zoneColors[i] && (!last || x >= last.value)) {
1262
+ if (typeof zone.value !== 'undefined' &&
1263
+ x <= zone.value) {
1264
+ if (zoneColors[i] &&
1265
+ (!last || x >= last.value)) {
1266
1266
  zoneColor_1 = zoneColors[i];
1267
1267
  }
1268
1268
  return true;
@@ -1270,7 +1270,8 @@
1270
1270
  return false;
1271
1271
  }
1272
1272
  if (typeof zone.value !== 'undefined' && y <= zone.value) {
1273
- if (zoneColors[i] && (!last || y >= last.value)) {
1273
+ if (zoneColors[i] &&
1274
+ (!last || y >= last.value)) {
1274
1275
  zoneColor_1 = zoneColors[i];
1275
1276
  }
1276
1277
  return true;
@@ -1875,7 +1876,8 @@
1875
1876
  /**
1876
1877
  * Check if we have a valid OGL context
1877
1878
  * @private
1878
- * @returns {Boolean} - true if the context is valid
1879
+ * @return {boolean}
1880
+ * true if the context is valid
1879
1881
  */
1880
1882
  function valid() {
1881
1883
  return gl !== false;
@@ -1883,7 +1885,8 @@
1883
1885
  /**
1884
1886
  * Check if the renderer has been initialized
1885
1887
  * @private
1886
- * @returns {Boolean} - true if it has, false if not
1888
+ * @return {boolean}
1889
+ * true if it has, false if not
1887
1890
  */
1888
1891
  function inited() {
1889
1892
  return isInited;
@@ -2277,8 +2280,6 @@
2277
2280
  *
2278
2281
  * @private
2279
2282
  * @function hasWebGLSupport
2280
- *
2281
- * @return {boolean}
2282
2283
  */
2283
2284
  function hasWebGLSupport() {
2284
2285
  var i = 0, canvas, contexts = ['webgl', 'experimental-webgl', 'moz-webgl', 'webkit-3d'], context = false;
@@ -2304,10 +2305,6 @@
2304
2305
  *
2305
2306
  * @private
2306
2307
  * @function pointDrawHandler
2307
- *
2308
- * @param {Function} proceed
2309
- *
2310
- * @return {*}
2311
2308
  */
2312
2309
  function pointDrawHandler(proceed) {
2313
2310
  var enabled = true,
@@ -2673,7 +2670,7 @@
2673
2670
 
2674
2671
  return init;
2675
2672
  });
2676
- _registerModule(_modules, 'Extensions/BoostCanvas.js', [_modules['Core/Chart/Chart.js'], _modules['Core/Color/Color.js'], _modules['Core/Globals.js'], _modules['Core/Color/Palette.js'], _modules['Core/Series/Series.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (Chart, Color, H, palette, Series, SeriesRegistry, U) {
2673
+ _registerModule(_modules, 'Extensions/BoostCanvas.js', [_modules['Core/Chart/Chart.js'], _modules['Core/Color/Color.js'], _modules['Core/Globals.js'], _modules['Core/Series/Series.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (Chart, Color, H, Series, SeriesRegistry, U) {
2677
2674
  /* *
2678
2675
  *
2679
2676
  * License: www.highcharts.com/license
@@ -3003,7 +3000,7 @@
3003
3000
  if (rawData.length > 99999) {
3004
3001
  chart.options.loading = merge(loadingOptions, {
3005
3002
  labelStyle: {
3006
- backgroundColor: color(palette.backgroundColor).setOpacity(0.75).get(),
3003
+ backgroundColor: color("#ffffff" /* backgroundColor */).setOpacity(0.75).get(),
3007
3004
  padding: '1em',
3008
3005
  borderRadius: '0.5em'
3009
3006
  },
@@ -3279,10 +3276,6 @@
3279
3276
  *
3280
3277
  * @private
3281
3278
  * @function Highcharts.Chart#getBoostClipRect
3282
- *
3283
- * @param {Highcharts.Chart} target
3284
- *
3285
- * @return {Highcharts.BBoxObject}
3286
3279
  */
3287
3280
  Chart.prototype.getBoostClipRect = function (target) {
3288
3281
  var clipBox = {
@@ -3296,7 +3289,9 @@
3296
3289
  if (verticalAxes.length <= 1) {
3297
3290
  clipBox.y = Math.min(verticalAxes[0].pos,
3298
3291
  clipBox.y);
3299
- clipBox.height = verticalAxes[0].pos - this.plotTop + verticalAxes[0].len;
3292
+ clipBox.height = (verticalAxes[0].pos -
3293
+ this.plotTop +
3294
+ verticalAxes[0].len);
3300
3295
  }
3301
3296
  else {
3302
3297
  clipBox.height = this.plotHeight;
@@ -3464,9 +3459,8 @@
3464
3459
  // If the series is a heatmap or treemap, or if the series is not boosting
3465
3460
  // do the default behaviour. Otherwise, process if the series has no extremes.
3466
3461
  wrap(Series.prototype, 'processData', function (proceed) {
3467
- var series = this,
3468
- dataToMeasure = this.options.data,
3469
- firstPoint;
3462
+ var series = this;
3463
+ var dataToMeasure = this.options.data;
3470
3464
  /**
3471
3465
  * Used twice in this function, first on this.options.data, the second
3472
3466
  * time it runs the check again after processedXData is built.
@@ -3500,6 +3494,7 @@
3500
3494
  // Enter or exit boost mode
3501
3495
  if (this.isSeriesBoosting) {
3502
3496
  // Force turbo-mode:
3497
+ var firstPoint = void 0;
3503
3498
  if (this.options.data && this.options.data.length) {
3504
3499
  firstPoint = this.getFirstValidPoint(this.options.data);
3505
3500
  if (!isNumber(firstPoint) && !isArray(firstPoint)) {
@@ -3576,10 +3571,6 @@
3576
3571
  /**
3577
3572
  * @private
3578
3573
  * @function Highcharts.Series#hasExtremes
3579
- *
3580
- * @param {boolean} checkX
3581
- *
3582
- * @return {boolean}
3583
3574
  */
3584
3575
  Series.prototype.hasExtremes = function (checkX) {
3585
3576
  var options = this.options,
@@ -1,5 +1,5 @@
1
1
  /*
2
- Highcharts JS v9.2.2 (2021-08-24)
2
+ Highcharts JS v9.3.3 (2022-02-01)
3
3
 
4
4
  (c) 2009-2021 Torstein Honsi
5
5
 
@@ -1 +1 @@
1
- {"version":3,"file":"broken-axis.js.map","lineCount":19,"mappings":"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","sources":["broken-axis.src.js"],"names":["factory","module","exports","define","amd","Highcharts","undefined","_registerModule","obj","path","args","fn","hasOwnProperty","apply","_modules","StackItem","U","addEvent","find","fireEvent","isArray","isNumber","pick","BrokenAxis","onAxisAfterInit","brokenAxis","setBreaks","options","breaks","onAxisAfterSetOptions","axis","hasBreaks","ordinal","onAxisAfterSetTickPositions","tickPositions","info","newPositions","i","length","isInAnyBreak","push","onAxisInit","Additions","onSeriesAfterGeneratePoints","connectNulls","_a","points","xAxis","yAxis","isDirty","point","isPointInBreak","y","x","visible","onSeriesAfterRender","drawBreaks","pointArrayMap","seriesDrawBreaks","keys","series","threshold","eventName","brokenAxis_1","forEach","key","breakArray","isXAxis","min","toUpperCase","brk","from","to","seriesGappedPath","currentDataGrouping","groupingSize","gapSize","slice","stack","next","gapUnit","basePointRange","current","xRange","splice","isNull","stacking","stacks","stackKey","stackLabels","total","getGraphPath","composedClasses","compose","AxisClass","SeriesClass","indexOf","keepProps","seriesProto","prototype","gappedPath","isInBreak","Additions.isInBreak","val","repeat","Infinity","test","inclusive","ret","lin2Val","Additions.lin2Val","nval","len","val2Lin","Additions.val2Lin","findBreakAt","Additions.prototype.findBreakAt","b","Additions.prototype.isInAnyBreak","testKeep","keep","inbrk","showPoints","Additions.prototype.setBreaks","redraw","userOptions","forceRedraw","val2lin","lin2val","setExtremes","axis.setExtremes","newMin","newMax","animation","eventArguments","breaks_1","axisBreak","constructor","call","setAxisTranslation","axis.setAxisTranslation","unitLength","breaks_2","breakArrayT_1","breakArray_1","pointRangePadding","length_1","repeat_1","min_1","userMin","max_1","userMax","max","i_1","start_1","value","move","size","breakSize","sort","a","inBrk_1","staticScale","transA","minPixelPadding","minPointOffset","chart","Axis","Series"]}
1
+ {"version":3,"file":"broken-axis.js.map","lineCount":19,"mappings":"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","sources":["broken-axis.src.js"],"names":["factory","module","exports","define","amd","Highcharts","undefined","_registerModule","obj","path","args","fn","hasOwnProperty","apply","_modules","StackItem","U","addEvent","find","fireEvent","isArray","isNumber","pick","BrokenAxis","onAxisAfterInit","brokenAxis","setBreaks","options","breaks","onAxisAfterSetOptions","axis","hasBreaks","ordinal","onAxisAfterSetTickPositions","tickPositions","info","newPositions","i","length","isInAnyBreak","push","onAxisInit","Additions","onSeriesAfterGeneratePoints","connectNulls","_a","points","xAxis","yAxis","isDirty","point","isPointInBreak","y","x","visible","onSeriesAfterRender","drawBreaks","pointArrayMap","seriesDrawBreaks","keys","series","threshold","eventName","brokenAxis_1","forEach","key","breakArray","isXAxis","min","toUpperCase","brk","from","to","seriesGappedPath","currentDataGrouping","groupingSize","gapSize","slice","stack","next","gapUnit","basePointRange","current","xRange","splice","isNull","stacking","stacks","stackKey","stackLabels","total","getGraphPath","composedClasses","compose","AxisClass","SeriesClass","indexOf","keepProps","seriesProto","prototype","gappedPath","isInBreak","Additions.isInBreak","val","repeat","Infinity","test","inclusive","ret","lin2Val","Additions.lin2Val","nval","len","val2Lin","Additions.val2Lin","findBreakAt","Additions.prototype.findBreakAt","b","Additions.prototype.isInAnyBreak","testKeep","keep","inbrk","showPoints","Additions.prototype.setBreaks","redraw","userOptions","forceRedraw","val2lin","lin2val","setExtremes","axis.setExtremes","newMin","newMax","animation","eventArguments","breaks_1","axisBreak","constructor","call","setAxisTranslation","axis.setAxisTranslation","unitLength","breaks_2","breakArrayT_1","breakArray_1","pointRangePadding","length_1","repeat_1","min_1","userMin","max_1","userMax","max","i_1","start_1","value","move","size","breakSize","sort","a","inBrk_1","staticScale","transA","minPixelPadding","minPointOffset","chart","Axis","Series"]}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v9.2.2 (2021-08-24)
2
+ * @license Highcharts JS v9.3.3 (2022-02-01)
3
3
  *
4
4
  * (c) 2009-2021 Torstein Honsi
5
5
  *
@@ -209,8 +209,11 @@
209
209
  (threshold > brk.from && y < brk.from)) {
210
210
  eventName = 'pointBreak';
211
211
  }
212
- else if ((threshold < brk.from && y > brk.from && y < brk.to) ||
213
- (threshold > brk.from && y > brk.to && y < brk.from)) {
212
+ else if ((threshold < brk.from &&
213
+ y > brk.from &&
214
+ y < brk.to) || (threshold > brk.from &&
215
+ y > brk.to &&
216
+ y < brk.from)) {
214
217
  eventName = 'pointInBreak';
215
218
  }
216
219
  if (eventName) {
@@ -329,12 +332,9 @@
329
332
  isNull: true,
330
333
  x: xRange
331
334
  });
332
- // For stacked chart generate empty stack items,
333
- // #6546
335
+ // For stacked chart generate empty stack items, #6546
334
336
  if (yAxis.stacking && this.options.stacking) {
335
- stack = yAxis.stacking.stacks[this.stackKey][xRange] =
336
- new StackItem(yAxis, yAxis.options
337
- .stackLabels, false, xRange, this.stack);
337
+ stack = yAxis.stacking.stacks[this.stackKey][xRange] = new StackItem(yAxis, yAxis.options.stackLabels, false, xRange, this.stack);
338
338
  stack.total = 0;
339
339
  }
340
340
  }
@@ -571,10 +571,12 @@
571
571
  repeat_1 = brk.repeat || Infinity;
572
572
  if (isNumber(min_1) && isNumber(max_1)) {
573
573
  if (Additions.isInBreak(brk, min_1)) {
574
- min_1 += (brk.to % repeat_1) - (min_1 % repeat_1);
574
+ min_1 += ((brk.to % repeat_1) -
575
+ (min_1 % repeat_1));
575
576
  }
576
577
  if (Additions.isInBreak(brk, max_1)) {
577
- max_1 -= (max_1 % repeat_1) - (brk.from % repeat_1);
578
+ max_1 -= ((max_1 % repeat_1) -
579
+ (brk.from % repeat_1));
578
580
  }
579
581
  }
580
582
  });
@@ -622,13 +624,17 @@
622
624
  to: brk.value,
623
625
  len: brk.value - start_1 - (brk.size || 0)
624
626
  });
625
- length_1 += brk.value - start_1 - (brk.size || 0);
627
+ length_1 += (brk.value -
628
+ start_1 -
629
+ (brk.size || 0));
626
630
  }
627
631
  });
628
632
  brokenAxis.breakArray = breakArray_1;
629
633
  // Used with staticScale, and below the actual axis
630
634
  // length, when breaks are substracted.
631
- if (isNumber(min_1) && isNumber(max_1) && isNumber(axis.min)) {
635
+ if (isNumber(min_1) &&
636
+ isNumber(max_1) &&
637
+ isNumber(axis.min)) {
632
638
  brokenAxis.unitLength = max_1 - min_1 - length_1 +
633
639
  pointRangePadding;
634
640
  fireEvent(axis, 'afterBreaks');
package/modules/bullet.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- Highcharts JS v9.2.2 (2021-08-24)
2
+ Highcharts JS v9.3.3 (2022-02-01)
3
3
 
4
4
  Bullet graph series type for Highcharts
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v9.2.2 (2021-08-24)
2
+ * @license Highcharts JS v9.3.3 (2022-02-01)
3
3
  *
4
4
  * Bullet graph series type for Highcharts
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*
2
- Highcharts JS v9.2.2 (2021-08-24)
2
+ Highcharts JS v9.3.3 (2022-02-01)
3
3
 
4
4
  ColorAxis module
5
5
 
@@ -7,27 +7,27 @@
7
7
 
8
8
  License: www.highcharts.com/license
9
9
  */
10
- 'use strict';(function(b){"object"===typeof module&&module.exports?(b["default"]=b,module.exports=b):"function"===typeof define&&define.amd?define("highcharts/modules/color-axis",["highcharts"],function(m){b(m);b.Highcharts=m;return b}):b("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(b){function m(b,l,n,x){b.hasOwnProperty(l)||(b[l]=x.apply(null,n))}b=b?b._modules:{};m(b,"Mixins/ColorSeries.js",[],function(){return{colorPointMixin:{setVisible:function(b){var l=this,g=b?"show":"hide";
11
- l.visible=l.options.visible=!!b;["graphic","dataLabel"].forEach(function(b){if(l[b])l[b][g]()});this.series.buildKDTree()}},colorSeriesMixin:{optionalAxis:"colorAxis",translateColors:function(){var b=this,l=this.options.nullColor,n=this.colorAxis,x=this.colorKey;(this.data.length?this.data:this.points).forEach(function(g){var q=g.getNestedProperty(x);(q=g.options.color||(g.isNull||null===g.value?l:n&&"undefined"!==typeof q?n.toColor(q,g):g.color||b.color))&&g.color!==q&&(g.color=q,"point"===b.options.legendType&&
12
- g.legendItem&&b.chart.legend.colorizeItem(g,g.visible))})}}}});m(b,"Core/Axis/Color/ColorAxisComposition.js",[b["Core/Color/Color.js"],b["Mixins/ColorSeries.js"],b["Core/Utilities.js"]],function(b,l,n){var g=b.parse,m=l.colorPointMixin,q=l.colorSeriesMixin,r=n.addEvent,u=n.extend,D=n.merge,y=n.pick,E=n.splat,v;(function(b){function l(){var c=this,a=this.options;this.colorAxis=[];a.colorAxis&&(a.colorAxis=E(a.colorAxis),a.colorAxis.forEach(function(a,d){a.index=d;new A(c,a)}))}function n(a){var c=
13
- this,d=function(d){d=a.allItems.indexOf(d);-1!==d&&(c.destroyItem(a.allItems[d]),a.allItems.splice(d,1))},k=[],h,f;(this.chart.colorAxis||[]).forEach(function(a){(h=a.options)&&h.showInLegend&&(h.dataClasses&&h.visible?k=k.concat(a.getDataClassLegendSymbols()):h.visible&&k.push(a),a.series.forEach(function(a){if(!a.options.showInLegend||h.dataClasses)"point"===a.options.legendType?a.points.forEach(function(a){d(a)}):d(a)}))});for(f=k.length;f--;)a.allItems.unshift(k[f])}function t(a){a.visible&&a.item.legendColor&&
14
- a.item.legendSymbol.attr({fill:a.item.legendColor})}function H(){var a=this.chart.colorAxis;a&&a.forEach(function(a,c,d){a.update({},d)})}function e(){(this.chart.colorAxis&&this.chart.colorAxis.length||this.colorAttribs)&&this.translateColors()}function c(){var a=this.axisTypes;a?-1===a.indexOf("colorAxis")&&a.push("colorAxis"):this.axisTypes=["colorAxis"]}function a(a){var c=a.prototype.createAxis;a.prototype.createAxis=function(a,d){if("colorAxis"!==a)return c.apply(this,arguments);var k=new A(this,
15
- D(d.axis,{index:this[a].length,isX:!1}));this.isDirtyLegend=!0;this.axes.forEach(function(a){a.series=[]});this.series.forEach(function(a){a.bindAxes();a.isDirtyData=!0});y(d.redraw,!0)&&this.redraw(d.animation);return k}}function k(){this.elem.attr("fill",g(this.start).tweenTo(g(this.end),this.pos),void 0,!0)}function d(){this.elem.attr("stroke",g(this.start).tweenTo(g(this.end),this.pos),void 0,!0)}var f=[],A;b.compose=function(b,p,g,z,w){A||(A=b);-1===f.indexOf(p)&&(f.push(p),b=p.prototype,b.collectionsWithUpdate.push("colorAxis"),
16
- b.collectionsWithInit.colorAxis=[b.addColorAxis],r(p,"afterGetAxes",l),a(p));-1===f.indexOf(g)&&(f.push(g),p=g.prototype,p.fillSetter=k,p.strokeSetter=d);-1===f.indexOf(z)&&(f.push(z),r(z,"afterGetAllItems",n),r(z,"afterColorizeItem",t),r(z,"afterUpdate",H));-1===f.indexOf(w)&&(f.push(w),u(w.prototype,q),u(w.prototype.pointClass.prototype,m),r(w,"afterTranslate",e),r(w,"bindAxes",c))}})(v||(v={}));return v});m(b,"Core/Axis/Color/ColorAxisDefaults.js",[b["Core/Color/Palette.js"]],function(b){return{lineWidth:0,
17
- minPadding:0,maxPadding:0,gridLineWidth:1,tickPixelInterval:72,startOnTick:!0,endOnTick:!0,offset:0,marker:{animation:{duration:50},width:.01,color:b.neutralColor40},labels:{overflow:"justify",rotation:0},minColor:b.highlightColor10,maxColor:b.highlightColor100,tickLength:5,showInLegend:!0}});m(b,"Core/Axis/Color/ColorAxis.js",[b["Core/Axis/Axis.js"],b["Core/Color/Color.js"],b["Core/Axis/Color/ColorAxisComposition.js"],b["Core/Axis/Color/ColorAxisDefaults.js"],b["Core/Globals.js"],b["Core/Legend/LegendSymbol.js"],
18
- b["Core/Series/SeriesRegistry.js"],b["Core/Utilities.js"]],function(b,l,n,m,C,q,r,u){var g=this&&this.__extends||function(){var b=function(e,c){b=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(a,c){a.__proto__=c}||function(a,c){for(var d in c)c.hasOwnProperty(d)&&(a[d]=c[d])};return b(e,c)};return function(e,c){function a(){this.constructor=e}b(e,c);e.prototype=null===c?Object.create(c):(a.prototype=c.prototype,new a)}}(),y=l.parse,x=C.noop,v=r.series,F=u.extend,G=u.isNumber,B=u.merge,
19
- t=u.pick;l=function(b){function e(c,a){var k=b.call(this,c,a)||this;k.beforePadding=!1;k.chart=void 0;k.coll="colorAxis";k.dataClasses=void 0;k.legendItem=void 0;k.legendItems=void 0;k.name="";k.options=void 0;k.stops=void 0;k.visible=!0;k.init(c,a);return k}g(e,b);e.compose=function(c,a,b,d){n.compose(e,c,a,b,d)};e.prototype.init=function(c,a){var k=c.options.legend||{},d=a.layout?"vertical"!==a.layout:"vertical"!==k.layout,f=a.visible;k=B(e.defaultColorAxisOptions,a,{showEmpty:!1,title:null,visible:k.enabled&&
20
- !1!==f});this.coll="colorAxis";this.side=a.side||d?2:1;this.reversed=a.reversed||!d;this.opposite=!d;b.prototype.init.call(this,c,k);this.userOptions.visible=f;a.dataClasses&&this.initDataClasses(a);this.initStops();this.horiz=d;this.zoomEnabled=!1};e.prototype.initDataClasses=function(c){var a=this.chart,b=this.options,d=c.dataClasses.length,f,e=0,h=a.options.chart.colorCount;this.dataClasses=f=[];this.legendItems=[];(c.dataClasses||[]).forEach(function(c,k){c=B(c);f.push(c);if(a.styledMode||!c.color)"category"===
21
- b.dataClassColor?(a.styledMode||(k=a.options.colors,h=k.length,c.color=k[e]),c.colorIndex=e,e++,e===h&&(e=0)):c.color=y(b.minColor).tweenTo(y(b.maxColor),2>d?.5:k/(d-1))})};e.prototype.hasData=function(){return!!(this.tickPositions||[]).length};e.prototype.setTickPositions=function(){if(!this.dataClasses)return b.prototype.setTickPositions.call(this)};e.prototype.initStops=function(){this.stops=this.options.stops||[[0,this.options.minColor],[1,this.options.maxColor]];this.stops.forEach(function(c){c.color=
22
- y(c[1])})};e.prototype.setOptions=function(c){b.prototype.setOptions.call(this,c);this.options.crosshair=this.options.marker};e.prototype.setAxisSize=function(){var c=this.legendSymbol,a=this.chart,b=a.options.legend||{},d,f;c?(this.left=b=c.attr("x"),this.top=d=c.attr("y"),this.width=f=c.attr("width"),this.height=c=c.attr("height"),this.right=a.chartWidth-b-f,this.bottom=a.chartHeight-d-c,this.len=this.horiz?f:c,this.pos=this.horiz?b:d):this.len=(this.horiz?b.symbolWidth:b.symbolHeight)||e.defaultLegendLength};
23
- e.prototype.normalizedValue=function(c){this.logarithmic&&(c=this.logarithmic.log2lin(c));return 1-(this.max-c)/(this.max-this.min||1)};e.prototype.toColor=function(c,a){var b=this.dataClasses,d=this.stops,f;if(b)for(f=b.length;f--;){var e=b[f];var h=e.from;d=e.to;if(("undefined"===typeof h||c>=h)&&("undefined"===typeof d||c<=d)){var g=e.color;a&&(a.dataClass=f,a.colorIndex=e.colorIndex);break}}else{c=this.normalizedValue(c);for(f=d.length;f--&&!(c>d[f][0]););h=d[f]||d[f+1];d=d[f+1]||h;c=1-(d[0]-
24
- c)/(d[0]-h[0]||1);g=h.color.tweenTo(d.color,c)}return g};e.prototype.getOffset=function(){var c=this.legendGroup,a=this.chart.axisOffset[this.side];c&&(this.axisParent=c,b.prototype.getOffset.call(this),this.added||(this.added=!0,this.labelLeft=0,this.labelRight=this.width),this.chart.axisOffset[this.side]=a)};e.prototype.setLegendColor=function(){var c=this.reversed,a=c?1:0;c=c?0:1;a=this.horiz?[a,0,c,0]:[0,c,0,a];this.legendColor={linearGradient:{x1:a[0],y1:a[1],x2:a[2],y2:a[3]},stops:this.stops}};
25
- e.prototype.drawLegendSymbol=function(c,a){var b=c.padding,d=c.options,f=this.horiz,g=t(d.symbolWidth,f?e.defaultLegendLength:12),h=t(d.symbolHeight,f?12:e.defaultLegendLength),p=t(d.labelPadding,f?16:30);d=t(d.itemDistance,10);this.setLegendColor();a.legendSymbol=this.chart.renderer.rect(0,c.baseline-11,g,h).attr({zIndex:1}).add(a.legendGroup);this.legendItemWidth=g+b+(f?d:p);this.legendItemHeight=h+b+(f?p:0)};e.prototype.setState=function(c){this.series.forEach(function(a){a.setState(c)})};e.prototype.setVisible=
26
- function(){};e.prototype.getSeriesExtremes=function(){var c=this.series,a=c.length,b;this.dataMin=Infinity;for(this.dataMax=-Infinity;a--;){var d=c[a];var f=d.colorKey=t(d.options.colorKey,d.colorKey,d.pointValKey,d.zoneAxis,"y");var e=d.pointArrayMap;var h=d[f+"Min"]&&d[f+"Max"];if(d[f+"Data"])var g=d[f+"Data"];else if(e){g=[];e=e.indexOf(f);var l=d.yData;if(0<=e&&l)for(b=0;b<l.length;b++)g.push(t(l[b][e],l[b]))}else g=d.yData;h?(d.minColorValue=d[f+"Min"],d.maxColorValue=d[f+"Max"]):(g=v.prototype.getExtremes.call(d,
27
- g),d.minColorValue=g.dataMin,d.maxColorValue=g.dataMax);"undefined"!==typeof d.minColorValue&&(this.dataMin=Math.min(this.dataMin,d.minColorValue),this.dataMax=Math.max(this.dataMax,d.maxColorValue));h||v.prototype.applyExtremes.call(d)}};e.prototype.drawCrosshair=function(c,a){var e=a&&a.plotX,d=a&&a.plotY,f=this.pos,g=this.len;if(a){var h=this.toPixels(a.getNestedProperty(a.series.colorKey));h<f?h=f-2:h>f+g&&(h=f+g+2);a.plotX=h;a.plotY=this.len-h;b.prototype.drawCrosshair.call(this,c,a);a.plotX=
28
- e;a.plotY=d;this.cross&&!this.cross.addedToColorAxis&&this.legendGroup&&(this.cross.addClass("highcharts-coloraxis-marker").add(this.legendGroup),this.cross.addedToColorAxis=!0,this.chart.styledMode||"object"!==typeof this.crosshair||this.cross.attr({fill:this.crosshair.color}))}};e.prototype.getPlotLinePath=function(c){var a=this.left,e=c.translatedValue,d=this.top;return G(e)?this.horiz?[["M",e-4,d-6],["L",e+4,d-6],["L",e,d],["Z"]]:[["M",a,e],["L",a-6,e+6],["L",a-6,e-6],["Z"]]:b.prototype.getPlotLinePath.call(this,
29
- c)};e.prototype.update=function(c,a){var e=this.chart.legend;this.series.forEach(function(a){a.isDirtyData=!0});(c.dataClasses&&e.allItems||this.dataClasses)&&this.destroyItems();b.prototype.update.call(this,c,a);this.legendItem&&(this.setLegendColor(),e.colorizeItem(this,!0))};e.prototype.destroyItems=function(){var c=this.chart;this.legendItem?c.legend.destroyItem(this):this.legendItems&&this.legendItems.forEach(function(a){c.legend.destroyItem(a)});c.isDirtyLegend=!0};e.prototype.destroy=function(){this.chart.isDirtyLegend=
30
- !0;this.destroyItems();b.prototype.destroy.apply(this,[].slice.call(arguments))};e.prototype.remove=function(c){this.destroyItems();b.prototype.remove.call(this,c)};e.prototype.getDataClassLegendSymbols=function(){var c=this,a=c.chart,b=c.legendItems,d=a.options.legend,e=d.valueDecimals,g=d.valueSuffix||"",h;b.length||c.dataClasses.forEach(function(d,f){var k=d.from,l=d.to,n=a.numberFormatter,m=!0;h="";"undefined"===typeof k?h="< ":"undefined"===typeof l&&(h="> ");"undefined"!==typeof k&&(h+=n(k,
31
- e)+g);"undefined"!==typeof k&&"undefined"!==typeof l&&(h+=" - ");"undefined"!==typeof l&&(h+=n(l,e)+g);b.push(F({chart:a,name:h,options:{},drawLegendSymbol:q.drawRectangle,visible:!0,setState:x,isDataClass:!0,setVisible:function(){m=c.visible=!m;c.series.forEach(function(a){a.points.forEach(function(a){a.dataClass===f&&a.setVisible(m)})});a.legend.colorizeItem(this,m)}},d))});return b};e.defaultColorAxisOptions=m;e.defaultLegendLength=200;e.keepProps=["legendGroup","legendItemHeight","legendItemWidth",
32
- "legendItem","legendSymbol"];return e}(b);Array.prototype.push.apply(b.keepProps,l.keepProps);"";return l});m(b,"masters/modules/coloraxis.src.js",[b["Core/Globals.js"],b["Core/Axis/Color/ColorAxis.js"]],function(b,l){b.ColorAxis=l;l.compose(b.Chart,b.Fx,b.Legend,b.Series)})});
10
+ 'use strict';(function(c){"object"===typeof module&&module.exports?(c["default"]=c,module.exports=c):"function"===typeof define&&define.amd?define("highcharts/modules/color-axis",["highcharts"],function(n){c(n);c.Highcharts=n;return c}):c("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(c){function n(c,m,t,p){c.hasOwnProperty(m)||(c[m]=p.apply(null,t))}c=c?c._modules:{};n(c,"Core/Axis/Color/ColorAxisComposition.js",[c["Core/Color/Color.js"],c["Core/Utilities.js"]],function(c,m){var l=
11
+ c.parse,p=m.addEvent,n=m.extend,y=m.merge,z=m.pick,r=m.splat,u;(function(c){function m(){var b=this,a=this.options;this.colorAxis=[];a.colorAxis&&(a.colorAxis=r(a.colorAxis),a.colorAxis.forEach(function(a,d){a.index=d;new h(b,a)}))}function u(a){var b=this,d=function(d){d=a.allItems.indexOf(d);-1!==d&&(b.destroyItem(a.allItems[d]),a.allItems.splice(d,1))},f=[],g,h;(this.chart.colorAxis||[]).forEach(function(a){(g=a.options)&&g.showInLegend&&(g.dataClasses&&g.visible?f=f.concat(a.getDataClassLegendSymbols()):
12
+ g.visible&&f.push(a),a.series.forEach(function(a){if(!a.options.showInLegend||g.dataClasses)"point"===a.options.legendType?a.points.forEach(function(a){d(a)}):d(a)}))});for(h=f.length;h--;)a.allItems.unshift(f[h])}function t(a){a.visible&&a.item.legendColor&&a.item.legendSymbol.attr({fill:a.item.legendColor})}function v(){var a=this.chart.colorAxis;a&&a.forEach(function(a,d,b){a.update({},b)})}function x(){(this.chart.colorAxis&&this.chart.colorAxis.length||this.colorAttribs)&&this.translateColors()}
13
+ function q(){var a=this.axisTypes;a?-1===a.indexOf("colorAxis")&&a.push("colorAxis"):this.axisTypes=["colorAxis"]}function B(a){var d=this,b=a?"show":"hide";d.visible=d.options.visible=!!a;["graphic","dataLabel"].forEach(function(a){if(d[a])d[a][b]()});this.series.buildKDTree()}function e(){var a=this,d=this.options.nullColor,b=this.colorAxis,f=this.colorKey;(this.data.length?this.data:this.points).forEach(function(h){var g=h.getNestedProperty(f);(g=h.options.color||(h.isNull||null===h.value?d:b&&
14
+ "undefined"!==typeof g?b.toColor(g,h):h.color||a.color))&&h.color!==g&&(h.color=g,"point"===a.options.legendType&&h.legendItem&&a.chart.legend.colorizeItem(h,h.visible))})}function b(a){var d=a.prototype.createAxis;a.prototype.createAxis=function(a,b){if("colorAxis"!==a)return d.apply(this,arguments);var f=new h(this,y(b.axis,{index:this[a].length,isX:!1}));this.isDirtyLegend=!0;this.axes.forEach(function(a){a.series=[]});this.series.forEach(function(a){a.bindAxes();a.isDirtyData=!0});z(b.redraw,
15
+ !0)&&this.redraw(b.animation);return f}}function d(){this.elem.attr("fill",l(this.start).tweenTo(l(this.end),this.pos),void 0,!0)}function f(){this.elem.attr("stroke",l(this.start).tweenTo(l(this.end),this.pos),void 0,!0)}var a=[],h;c.compose=function(g,k,c,w,l){h||(h=g);-1===a.indexOf(k)&&(a.push(k),g=k.prototype,g.collectionsWithUpdate.push("colorAxis"),g.collectionsWithInit.colorAxis=[g.addColorAxis],p(k,"afterGetAxes",m),b(k));-1===a.indexOf(c)&&(a.push(c),k=c.prototype,k.fillSetter=d,k.strokeSetter=
16
+ f);-1===a.indexOf(w)&&(a.push(w),p(w,"afterGetAllItems",u),p(w,"afterColorizeItem",t),p(w,"afterUpdate",v));-1===a.indexOf(l)&&(a.push(l),n(l.prototype,{optionalAxis:"colorAxis",translateColors:e}),n(l.prototype.pointClass.prototype,{setVisible:B}),p(l,"afterTranslate",x),p(l,"bindAxes",q))};c.pointSetVisible=B})(u||(u={}));return u});n(c,"Core/Axis/Color/ColorAxisDefaults.js",[],function(){return{lineWidth:0,minPadding:0,maxPadding:0,gridLineWidth:1,tickPixelInterval:72,startOnTick:!0,endOnTick:!0,
17
+ offset:0,marker:{animation:{duration:50},width:.01,color:"#999999"},labels:{overflow:"justify",rotation:0},minColor:"#e6ebf5",maxColor:"#003399",tickLength:5,showInLegend:!0}});n(c,"Core/Axis/Color/ColorAxis.js",[c["Core/Axis/Axis.js"],c["Core/Color/Color.js"],c["Core/Axis/Color/ColorAxisComposition.js"],c["Core/Axis/Color/ColorAxisDefaults.js"],c["Core/Globals.js"],c["Core/Legend/LegendSymbol.js"],c["Core/Series/SeriesRegistry.js"],c["Core/Utilities.js"]],function(c,m,n,p,C,y,z,r){var l=this&&this.__extends||
18
+ function(){var c=function(e,b){c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(d,b){d.__proto__=b}||function(b,f){for(var a in f)f.hasOwnProperty(a)&&(b[a]=f[a])};return c(e,b)};return function(e,b){function d(){this.constructor=e}c(e,b);e.prototype=null===b?Object.create(b):(d.prototype=b.prototype,new d)}}(),v=m.parse,t=C.noop,A=z.series,D=r.extend,E=r.isNumber,x=r.merge,q=r.pick;m=function(c){function e(b,d){var f=c.call(this,b,d)||this;f.beforePadding=!1;f.chart=void 0;f.coll=
19
+ "colorAxis";f.dataClasses=void 0;f.legendItem=void 0;f.legendItems=void 0;f.name="";f.options=void 0;f.stops=void 0;f.visible=!0;f.init(b,d);return f}l(e,c);e.compose=function(b,d,f,a){n.compose(e,b,d,f,a)};e.prototype.init=function(b,d){var f=b.options.legend||{},a=d.layout?"vertical"!==d.layout:"vertical"!==f.layout,h=d.visible;f=x(e.defaultColorAxisOptions,d,{showEmpty:!1,title:null,visible:f.enabled&&!1!==h});this.coll="colorAxis";this.side=d.side||a?2:1;this.reversed=d.reversed||!a;this.opposite=
20
+ !a;c.prototype.init.call(this,b,f);this.userOptions.visible=h;d.dataClasses&&this.initDataClasses(d);this.initStops();this.horiz=a;this.zoomEnabled=!1};e.prototype.initDataClasses=function(b){var d=this.chart,f=this.options,a=b.dataClasses.length,h,c=0,e=d.options.chart.colorCount;this.dataClasses=h=[];this.legendItems=[];(b.dataClasses||[]).forEach(function(b,g){b=x(b);h.push(b);if(d.styledMode||!b.color)"category"===f.dataClassColor?(d.styledMode||(g=d.options.colors,e=g.length,b.color=g[c]),b.colorIndex=
21
+ c,c++,c===e&&(c=0)):b.color=v(f.minColor).tweenTo(v(f.maxColor),2>a?.5:g/(a-1))})};e.prototype.hasData=function(){return!!(this.tickPositions||[]).length};e.prototype.setTickPositions=function(){if(!this.dataClasses)return c.prototype.setTickPositions.call(this)};e.prototype.initStops=function(){this.stops=this.options.stops||[[0,this.options.minColor],[1,this.options.maxColor]];this.stops.forEach(function(b){b.color=v(b[1])})};e.prototype.setOptions=function(b){c.prototype.setOptions.call(this,b);
22
+ this.options.crosshair=this.options.marker};e.prototype.setAxisSize=function(){var b=this.legendSymbol,d=this.chart,f=d.options.legend||{},a,c;b?(this.left=f=b.attr("x"),this.top=a=b.attr("y"),this.width=c=b.attr("width"),this.height=b=b.attr("height"),this.right=d.chartWidth-f-c,this.bottom=d.chartHeight-a-b,this.len=this.horiz?c:b,this.pos=this.horiz?f:a):this.len=(this.horiz?f.symbolWidth:f.symbolHeight)||e.defaultLegendLength};e.prototype.normalizedValue=function(b){this.logarithmic&&(b=this.logarithmic.log2lin(b));
23
+ return 1-(this.max-b)/(this.max-this.min||1)};e.prototype.toColor=function(b,d){var f=this.dataClasses,a=this.stops,c;if(f)for(c=f.length;c--;){var e=f[c];var k=e.from;a=e.to;if(("undefined"===typeof k||b>=k)&&("undefined"===typeof a||b<=a)){var l=e.color;d&&(d.dataClass=c,d.colorIndex=e.colorIndex);break}}else{b=this.normalizedValue(b);for(c=a.length;c--&&!(b>a[c][0]););k=a[c]||a[c+1];a=a[c+1]||k;b=1-(a[0]-b)/(a[0]-k[0]||1);l=k.color.tweenTo(a.color,b)}return l};e.prototype.getOffset=function(){var b=
24
+ this.legendGroup,d=this.chart.axisOffset[this.side];b&&(this.axisParent=b,c.prototype.getOffset.call(this),this.added||(this.added=!0,this.labelLeft=0,this.labelRight=this.width),this.chart.axisOffset[this.side]=d)};e.prototype.setLegendColor=function(){var b=this.reversed,d=b?1:0;b=b?0:1;d=this.horiz?[d,0,b,0]:[0,b,0,d];this.legendColor={linearGradient:{x1:d[0],y1:d[1],x2:d[2],y2:d[3]},stops:this.stops}};e.prototype.drawLegendSymbol=function(b,d){var c=b.padding,a=b.options,h=this.horiz,g=q(a.symbolWidth,
25
+ h?e.defaultLegendLength:12),k=q(a.symbolHeight,h?12:e.defaultLegendLength),l=q(a.labelPadding,h?16:30);a=q(a.itemDistance,10);this.setLegendColor();d.legendSymbol=this.chart.renderer.rect(0,b.baseline-11,g,k).attr({zIndex:1}).add(d.legendGroup);this.legendItemWidth=g+c+(h?a:l);this.legendItemHeight=k+c+(h?l:0)};e.prototype.setState=function(b){this.series.forEach(function(d){d.setState(b)})};e.prototype.setVisible=function(){};e.prototype.getSeriesExtremes=function(){var b=this.series,d=b.length,
26
+ c;this.dataMin=Infinity;for(this.dataMax=-Infinity;d--;){var a=b[d];var e=a.colorKey=q(a.options.colorKey,a.colorKey,a.pointValKey,a.zoneAxis,"y");var g=a.pointArrayMap;var k=a[e+"Min"]&&a[e+"Max"];if(a[e+"Data"])var l=a[e+"Data"];else if(g){l=[];g=g.indexOf(e);var m=a.yData;if(0<=g&&m)for(c=0;c<m.length;c++)l.push(q(m[c][g],m[c]))}else l=a.yData;k?(a.minColorValue=a[e+"Min"],a.maxColorValue=a[e+"Max"]):(l=A.prototype.getExtremes.call(a,l),a.minColorValue=l.dataMin,a.maxColorValue=l.dataMax);"undefined"!==
27
+ typeof a.minColorValue&&(this.dataMin=Math.min(this.dataMin,a.minColorValue),this.dataMax=Math.max(this.dataMax,a.maxColorValue));k||A.prototype.applyExtremes.call(a)}};e.prototype.drawCrosshair=function(b,d){var f=d&&d.plotX,a=d&&d.plotY,e=this.pos,g=this.len;if(d){var k=this.toPixels(d.getNestedProperty(d.series.colorKey));k<e?k=e-2:k>e+g&&(k=e+g+2);d.plotX=k;d.plotY=this.len-k;c.prototype.drawCrosshair.call(this,b,d);d.plotX=f;d.plotY=a;this.cross&&!this.cross.addedToColorAxis&&this.legendGroup&&
28
+ (this.cross.addClass("highcharts-coloraxis-marker").add(this.legendGroup),this.cross.addedToColorAxis=!0,this.chart.styledMode||"object"!==typeof this.crosshair||this.cross.attr({fill:this.crosshair.color}))}};e.prototype.getPlotLinePath=function(b){var d=this.left,f=b.translatedValue,a=this.top;return E(f)?this.horiz?[["M",f-4,a-6],["L",f+4,a-6],["L",f,a],["Z"]]:[["M",d,f],["L",d-6,f+6],["L",d-6,f-6],["Z"]]:c.prototype.getPlotLinePath.call(this,b)};e.prototype.update=function(b,d){var f=this.chart.legend;
29
+ this.series.forEach(function(a){a.isDirtyData=!0});(b.dataClasses&&f.allItems||this.dataClasses)&&this.destroyItems();c.prototype.update.call(this,b,d);this.legendItem&&(this.setLegendColor(),f.colorizeItem(this,!0))};e.prototype.destroyItems=function(){var b=this.chart;this.legendItem?b.legend.destroyItem(this):this.legendItems&&this.legendItems.forEach(function(d){b.legend.destroyItem(d)});b.isDirtyLegend=!0};e.prototype.destroy=function(){this.chart.isDirtyLegend=!0;this.destroyItems();c.prototype.destroy.apply(this,
30
+ [].slice.call(arguments))};e.prototype.remove=function(b){this.destroyItems();c.prototype.remove.call(this,b)};e.prototype.getDataClassLegendSymbols=function(){var b=this,d=b.chart,c=b.legendItems,a=d.options.legend,e=a.valueDecimals,g=a.valueSuffix||"",k;c.length||b.dataClasses.forEach(function(a,f){var l=a.from,h=a.to,m=d.numberFormatter,n=!0;k="";"undefined"===typeof l?k="< ":"undefined"===typeof h&&(k="> ");"undefined"!==typeof l&&(k+=m(l,e)+g);"undefined"!==typeof l&&"undefined"!==typeof h&&
31
+ (k+=" - ");"undefined"!==typeof h&&(k+=m(h,e)+g);c.push(D({chart:d,name:k,options:{},drawLegendSymbol:y.drawRectangle,visible:!0,setState:t,isDataClass:!0,setVisible:function(){n=b.visible=!n;b.series.forEach(function(a){a.points.forEach(function(a){a.dataClass===f&&a.setVisible(n)})});d.legend.colorizeItem(this,n)}},a))});return c};e.defaultColorAxisOptions=p;e.defaultLegendLength=200;e.keepProps=["legendGroup","legendItemHeight","legendItemWidth","legendItem","legendSymbol"];return e}(c);Array.prototype.push.apply(c.keepProps,
32
+ m.keepProps);"";return m});n(c,"masters/modules/coloraxis.src.js",[c["Core/Globals.js"],c["Core/Axis/Color/ColorAxis.js"]],function(c,m){c.ColorAxis=m;m.compose(c.Chart,c.Fx,c.Legend,c.Series)})});
33
33
  //# sourceMappingURL=coloraxis.js.map