highcharts 11.3.0 → 11.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (773) hide show
  1. package/README.md +1 -1
  2. package/bower.json +1 -1
  3. package/css/annotations/popup.css +27 -19
  4. package/css/stocktools/gui.css +19 -7
  5. package/es-modules/Accessibility/A11yI18n.js +4 -6
  6. package/es-modules/Accessibility/Accessibility.js +8 -6
  7. package/es-modules/Accessibility/Components/InfoRegionsComponent.js +11 -6
  8. package/es-modules/Accessibility/Components/LegendComponent.js +4 -4
  9. package/es-modules/Accessibility/Components/MenuComponent.js +3 -6
  10. package/es-modules/Accessibility/Components/NavigatorComponent.js +6 -3
  11. package/es-modules/Accessibility/Components/RangeSelectorComponent.js +4 -7
  12. package/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +18 -3
  13. package/es-modules/Accessibility/Components/SeriesComponent/NewDataAnnouncer.js +5 -3
  14. package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +4 -4
  15. package/es-modules/Accessibility/FocusBorder.js +5 -5
  16. package/es-modules/Accessibility/HighContrastMode.js +22 -13
  17. package/es-modules/Accessibility/HighContrastTheme.js +2 -6
  18. package/es-modules/Accessibility/KeyboardNavigation.js +17 -8
  19. package/es-modules/Accessibility/Options/A11yDefaults.js +11 -1
  20. package/es-modules/Accessibility/ProxyElement.js +4 -4
  21. package/es-modules/Accessibility/ProxyProvider.js +8 -2
  22. package/es-modules/Accessibility/Utils/DOMElementProvider.js +8 -0
  23. package/es-modules/Accessibility/Utils/EventProvider.js +9 -0
  24. package/es-modules/Core/Animation/Fx.js +3 -3
  25. package/es-modules/Core/Axis/Axis.js +43 -97
  26. package/es-modules/Core/Axis/Axis3DComposition.js +5 -5
  27. package/es-modules/Core/Axis/Axis3DDefaults.js +1 -1
  28. package/es-modules/Core/Axis/AxisDefaults.js +18 -7
  29. package/es-modules/Core/Axis/BrokenAxis.js +4 -6
  30. package/es-modules/Core/Axis/Color/ColorAxis.js +2 -1
  31. package/es-modules/Core/Axis/Color/ColorAxisComposition.js +3 -5
  32. package/es-modules/Core/Axis/DateTimeAxis.js +3 -5
  33. package/es-modules/Core/Axis/GridAxis.js +7 -7
  34. package/es-modules/Core/Axis/LogarithmicAxis.js +2 -4
  35. package/es-modules/Core/Axis/NavigatorAxisComposition.js +26 -22
  36. package/es-modules/Core/Axis/OrdinalAxis.js +97 -53
  37. package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +3 -3
  38. package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBandAxis.js +4 -5
  39. package/es-modules/Core/Axis/RadialAxis.js +5 -5
  40. package/es-modules/Core/Axis/ScrollbarAxis.js +2 -2
  41. package/es-modules/Core/Axis/Stacking/StackItem.js +8 -4
  42. package/es-modules/Core/Axis/Stacking/StackingAxis.js +3 -5
  43. package/es-modules/Core/Axis/Tick.js +16 -7
  44. package/es-modules/Core/Axis/Tick3DComposition.js +2 -2
  45. package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +4 -8
  46. package/es-modules/Core/Axis/TreeGrid/TreeGridTick.js +3 -6
  47. package/es-modules/Core/Axis/WaterfallAxis.js +3 -3
  48. package/es-modules/Core/Axis/ZAxis.js +6 -11
  49. package/es-modules/Core/Chart/Chart.js +201 -176
  50. package/es-modules/Core/Chart/Chart3D.js +1 -1
  51. package/es-modules/Core/Chart/ChartDefaults.js +7 -0
  52. package/es-modules/Core/Chart/GanttChart.js +2 -2
  53. package/es-modules/Core/Chart/MapChart.js +12 -2
  54. package/es-modules/Core/Chart/StockChart.js +12 -11
  55. package/es-modules/Core/Color/Color.js +3 -3
  56. package/es-modules/Core/Color/Palettes.js +2 -2
  57. package/es-modules/Core/Defaults.js +18 -15
  58. package/es-modules/Core/Geometry/CircleUtilities.js +3 -3
  59. package/es-modules/Core/Globals.js +2 -2
  60. package/es-modules/Core/HttpUtilities.js +4 -4
  61. package/es-modules/Core/Legend/Legend.js +6 -6
  62. package/es-modules/Core/MSPointer.js +7 -7
  63. package/es-modules/Core/Pointer.js +230 -245
  64. package/es-modules/Core/Renderer/HTML/AST.js +1 -1
  65. package/es-modules/Core/Renderer/HTML/HTMLElement.js +213 -26
  66. package/es-modules/Core/Renderer/RendererUtilities.js +1 -1
  67. package/es-modules/Core/Renderer/SVG/SVGElement.js +85 -52
  68. package/es-modules/Core/Renderer/SVG/SVGLabel.js +14 -11
  69. package/es-modules/Core/Renderer/SVG/SVGRenderer.js +17 -14
  70. package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +8 -7
  71. package/es-modules/Core/Renderer/SVG/Symbols.js +1 -1
  72. package/es-modules/Core/Renderer/SVG/TextBuilder.js +2 -2
  73. package/es-modules/Core/Responsive.js +5 -6
  74. package/es-modules/Core/Series/DataLabel.js +70 -90
  75. package/es-modules/Core/Series/DataSeriesComposition.js +1 -1
  76. package/es-modules/Core/Series/DataSeriesConverter.js +2 -2
  77. package/es-modules/Core/Series/Point.js +48 -40
  78. package/es-modules/Core/Series/Series.js +61 -51
  79. package/es-modules/Core/Series/Series3D.js +2 -2
  80. package/es-modules/Core/Series/SeriesRegistry.js +10 -2
  81. package/es-modules/Core/Templating.js +1 -1
  82. package/es-modules/Core/Time.js +12 -7
  83. package/es-modules/Core/Tooltip.js +19 -17
  84. package/es-modules/Core/Utilities.js +54 -26
  85. package/es-modules/Data/Connectors/CSVConnector.js +2 -2
  86. package/es-modules/Data/Connectors/DataConnector.js +4 -2
  87. package/es-modules/Data/Connectors/GoogleSheetsConnector.js +2 -2
  88. package/es-modules/Data/Connectors/HTMLTableConnector.js +2 -2
  89. package/es-modules/Data/Connectors/JSONConnector.js +3 -5
  90. package/es-modules/Data/Converters/CSVConverter.js +1 -3
  91. package/es-modules/Data/Converters/DataConverter.js +8 -2
  92. package/es-modules/Data/Converters/HTMLTableConverter.js +1 -3
  93. package/es-modules/Data/Converters/JSONConverter.js +1 -0
  94. package/es-modules/Data/DataTable.js +1 -2
  95. package/es-modules/Data/Formula/FormulaProcessor.js +4 -2
  96. package/es-modules/Data/Modifiers/DataModifier.js +15 -3
  97. package/es-modules/Extensions/Annotations/Annotation.js +6 -7
  98. package/es-modules/Extensions/Annotations/AnnotationChart.js +4 -5
  99. package/es-modules/Extensions/Annotations/AnnotationDefaults.js +4 -4
  100. package/es-modules/Extensions/Annotations/ControlPoint.js +2 -2
  101. package/es-modules/Extensions/Annotations/ControlTarget.js +1 -1
  102. package/es-modules/Extensions/Annotations/Controllables/Controllable.js +7 -3
  103. package/es-modules/Extensions/Annotations/Controllables/ControllableEllipse.js +3 -3
  104. package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +8 -9
  105. package/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +3 -4
  106. package/es-modules/Extensions/Annotations/EventEmitter.js +6 -6
  107. package/es-modules/Extensions/Annotations/NavigationBindings.js +29 -18
  108. package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +6 -6
  109. package/es-modules/Extensions/Annotations/Popup/Popup.js +1 -1
  110. package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +10 -6
  111. package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +2 -2
  112. package/es-modules/Extensions/Annotations/Popup/PopupIndicators.js +31 -31
  113. package/es-modules/Extensions/Annotations/Popup/PopupTabs.js +1 -1
  114. package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +14 -11
  115. package/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +1 -1
  116. package/es-modules/Extensions/Annotations/Types/Measure.js +1 -1
  117. package/es-modules/Extensions/ArrowSymbols.js +7 -13
  118. package/es-modules/Extensions/Boost/Boost.js +39 -7
  119. package/es-modules/Extensions/Boost/BoostChart.js +4 -4
  120. package/es-modules/Extensions/Boost/BoostSeries.js +58 -13
  121. package/es-modules/Extensions/Boost/WGLRenderer.js +3 -3
  122. package/es-modules/Extensions/Boost/WGLVertexBuffer.js +1 -1
  123. package/es-modules/Extensions/BoostCanvas.js +5 -4
  124. package/es-modules/Extensions/BorderRadius.js +5 -4
  125. package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +9 -9
  126. package/es-modules/Extensions/CurrentDateIndication.js +1 -1
  127. package/es-modules/Extensions/Data.js +11 -11
  128. package/es-modules/Extensions/DataGrouping/DataGrouping.js +1 -1
  129. package/es-modules/Extensions/DataGrouping/DataGroupingAxisComposition.js +8 -9
  130. package/es-modules/Extensions/DataGrouping/DataGroupingDefaults.js +1 -1
  131. package/es-modules/Extensions/DataGrouping/DataGroupingSeriesComposition.js +6 -7
  132. package/es-modules/Extensions/Debugger/Debugger.js +1 -1
  133. package/es-modules/Extensions/Debugger/ErrorMessages.js +2 -2
  134. package/es-modules/Extensions/DragPanes/AxisResizer.js +13 -16
  135. package/es-modules/Extensions/DragPanes/DragPanes.js +2 -4
  136. package/es-modules/Extensions/DraggablePoints/DragDropDefaults.js +2 -1
  137. package/es-modules/Extensions/DraggablePoints/DragDropUtilities.js +1 -1
  138. package/es-modules/Extensions/DraggablePoints/DraggableChart.js +4 -4
  139. package/es-modules/Extensions/DraggablePoints/DraggablePoints.js +8 -9
  140. package/es-modules/Extensions/Drilldown/Drilldown.js +11 -9
  141. package/es-modules/Extensions/Drilldown/DrilldownSeries.js +5 -6
  142. package/es-modules/Extensions/ExportData/ExportData.js +27 -18
  143. package/es-modules/Extensions/Exporting/Exporting.js +25 -20
  144. package/es-modules/Extensions/Exporting/ExportingDefaults.js +1 -1
  145. package/es-modules/Extensions/Exporting/Fullscreen.js +5 -10
  146. package/es-modules/Extensions/MarkerClusters/MarkerClusterScatter.js +26 -21
  147. package/es-modules/Extensions/MarkerClusters/MarkerClusterSymbols.js +2 -12
  148. package/es-modules/Extensions/MarkerClusters/MarkerClusters.js +3 -3
  149. package/es-modules/Extensions/MouseWheelZoom/MouseWheelZoom.js +51 -161
  150. package/es-modules/Extensions/NoDataToDisplay/NoDataToDisplay.js +3 -5
  151. package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +5 -6
  152. package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
  153. package/es-modules/Extensions/OverlappingDataLabels.js +21 -49
  154. package/es-modules/Extensions/Pane/PaneComposition.js +3 -5
  155. package/es-modules/Extensions/ParallelCoordinates/ParallelAxis.js +2 -4
  156. package/es-modules/Extensions/ParallelCoordinates/ParallelCoordinates.js +5 -6
  157. package/es-modules/Extensions/ParallelCoordinates/ParallelSeries.js +1 -1
  158. package/es-modules/Extensions/PatternFill.js +19 -22
  159. package/es-modules/Extensions/PriceIndication.js +1 -1
  160. package/es-modules/Extensions/ScrollablePlotArea.js +218 -292
  161. package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +26 -18
  162. package/es-modules/Extensions/Sonification/Options.js +1 -0
  163. package/es-modules/Extensions/Sonification/SonificationSpeaker.js +2 -2
  164. package/es-modules/Extensions/Sonification/SynthPatch.js +3 -3
  165. package/es-modules/Extensions/StaticScale.js +3 -5
  166. package/es-modules/Gantt/Legacy.js +1 -1
  167. package/es-modules/Gantt/Pathfinder.js +2 -2
  168. package/es-modules/Gantt/PathfinderComposition.js +3 -5
  169. package/es-modules/Gantt/Tree.js +3 -3
  170. package/es-modules/Maps/GeoJSONComposition.js +20 -13
  171. package/es-modules/Maps/MapNavigation.js +2 -2
  172. package/es-modules/Maps/MapPointer.js +3 -19
  173. package/es-modules/Maps/MapSymbols.js +3 -9
  174. package/es-modules/Maps/MapView.js +134 -74
  175. package/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +5 -4
  176. package/es-modules/Series/Area/AreaSeries.js +2 -4
  177. package/es-modules/Series/Area3D/Area3DSeries.js +1 -1
  178. package/es-modules/Series/AreaRange/AreaRangePoint.js +2 -2
  179. package/es-modules/Series/AreaRange/AreaRangeSeries.js +2 -3
  180. package/es-modules/Series/AreaSpline/AreaSplineSeries.js +1 -1
  181. package/es-modules/Series/Bar/BarSeries.js +1 -1
  182. package/es-modules/Series/Bellcurve/BellcurveSeries.js +1 -1
  183. package/es-modules/Series/BoxPlot/BoxPlotSeriesDefaults.js +4 -0
  184. package/es-modules/Series/Bubble/BubbleLegendComposition.js +1 -1
  185. package/es-modules/Series/Bubble/BubbleLegendDefaults.js +2 -2
  186. package/es-modules/Series/Bubble/BubbleLegendItem.js +3 -3
  187. package/es-modules/Series/Bubble/BubbleSeries.js +1 -1
  188. package/es-modules/Series/Bullet/BulletSeriesDefaults.js +2 -2
  189. package/es-modules/Series/Candlestick/CandlestickSeries.js +2 -2
  190. package/es-modules/Series/Candlestick/CandlestickSeriesDefaults.js +1 -5
  191. package/es-modules/Series/ColorMapComposition.js +1 -1
  192. package/es-modules/Series/Column/ColumnDataLabel.js +2 -2
  193. package/es-modules/Series/Column/ColumnSeries.js +20 -22
  194. package/es-modules/Series/Column/ColumnSeriesDefaults.js +1 -1
  195. package/es-modules/Series/Column3D/Column3DComposition.js +1 -1
  196. package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +2 -1
  197. package/es-modules/Series/Cylinder/CylinderComposition.js +9 -9
  198. package/es-modules/Series/DataModifyComposition.js +5 -5
  199. package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +3 -2
  200. package/es-modules/Series/DependencyWheel/DependencyWheelSeriesDefaults.js +1 -1
  201. package/es-modules/Series/DragNodesComposition.js +7 -7
  202. package/es-modules/Series/DrawPointUtilities.js +0 -2
  203. package/es-modules/Series/Dumbbell/DumbbellSeriesDefaults.js +1 -1
  204. package/es-modules/Series/Funnel/FunnelSeries.js +1 -1
  205. package/es-modules/Series/Funnel3D/Funnel3DComposition.js +6 -6
  206. package/es-modules/Series/Funnel3D/Funnel3DSeriesDefaults.js +2 -2
  207. package/es-modules/Series/Funnel3D/SVGElement3DFunnel.js +1 -1
  208. package/es-modules/Series/Gantt/GanttSeries.js +0 -1
  209. package/es-modules/Series/GeoHeatmap/GeoHeatmapSeries.js +5 -5
  210. package/es-modules/Series/GraphLayoutComposition.js +1 -1
  211. package/es-modules/Series/Heatmap/HeatmapSeries.js +2 -2
  212. package/es-modules/Series/Heatmap/HeatmapSeriesDefaults.js +1 -1
  213. package/es-modules/Series/HeikinAshi/HeikinAshiPoint.js +3 -1
  214. package/es-modules/Series/HeikinAshi/HeikinAshiSeries.js +3 -3
  215. package/es-modules/Series/HeikinAshi/HeikinAshiSeriesDefaults.js +1 -1
  216. package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +2 -2
  217. package/es-modules/Series/Item/ItemSeries.js +1 -1
  218. package/es-modules/Series/Line/LineSeries.js +1 -1
  219. package/es-modules/Series/Lollipop/LollipopSeries.js +3 -1
  220. package/es-modules/Series/Map/MapPoint.js +5 -1
  221. package/es-modules/Series/Map/MapSeries.js +32 -7
  222. package/es-modules/Series/Map/MapSeriesDefaults.js +5 -3
  223. package/es-modules/Series/Networkgraph/EulerIntegration.js +5 -5
  224. package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +4 -4
  225. package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +5 -5
  226. package/es-modules/Series/Networkgraph/QuadTree.js +1 -1
  227. package/es-modules/Series/Networkgraph/QuadTreeNode.js +1 -1
  228. package/es-modules/Series/Networkgraph/VerletIntegration.js +9 -9
  229. package/es-modules/Series/NodesComposition.js +1 -1
  230. package/es-modules/Series/OHLC/OHLCSeries.js +1 -1
  231. package/es-modules/Series/OHLC/OHLCSeriesDefaults.js +1 -1
  232. package/es-modules/Series/OnSeriesComposition.js +1 -1
  233. package/es-modules/Series/Organization/OrganizationPoint.js +1 -1
  234. package/es-modules/Series/Organization/OrganizationSeries.js +22 -10
  235. package/es-modules/Series/Organization/OrganizationSeriesDefaults.js +15 -2
  236. package/es-modules/Series/PackedBubble/PackedBubbleLayout.js +3 -5
  237. package/es-modules/Series/PackedBubble/PackedBubblePoint.js +1 -1
  238. package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +6 -10
  239. package/es-modules/Series/Pictorial/PictorialSeries.js +2 -2
  240. package/es-modules/Series/Pie/PieDataLabel.js +2 -2
  241. package/es-modules/Series/Pie/PiePoint.js +1 -1
  242. package/es-modules/Series/Pie/PieSeries.js +10 -1
  243. package/es-modules/Series/Pie/PieSeriesDefaults.js +1 -1
  244. package/es-modules/Series/Pie3D/Pie3DSeries.js +2 -2
  245. package/es-modules/Series/PolarComposition.js +22 -20
  246. package/es-modules/Series/Sankey/SankeyColumnComposition.js +1 -1
  247. package/es-modules/Series/Sankey/SankeySeries.js +8 -8
  248. package/es-modules/Series/Sankey/SankeySeriesDefaults.js +57 -13
  249. package/es-modules/Series/SeriesOnPointComposition.js +3 -3
  250. package/es-modules/Series/Spline/SplineSeries.js +1 -1
  251. package/es-modules/Series/Sunburst/SunburstPoint.js +1 -1
  252. package/es-modules/Series/Sunburst/SunburstSeries.js +2 -7
  253. package/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +3 -3
  254. package/es-modules/Series/Sunburst/SunburstUtilities.js +1 -1
  255. package/es-modules/Series/TiledWebMap/TiledWebMapSeries.js +23 -25
  256. package/es-modules/Series/Tilemap/TilemapSeries.js +2 -2
  257. package/es-modules/Series/Timeline/TimelineSeries.js +2 -2
  258. package/es-modules/Series/TreeUtilities.js +23 -1
  259. package/es-modules/Series/Treegraph/TreegraphLayout.js +7 -11
  260. package/es-modules/Series/Treegraph/TreegraphPoint.js +1 -0
  261. package/es-modules/Series/Treegraph/TreegraphSeries.js +8 -8
  262. package/es-modules/Series/Treegraph/TreegraphSeriesDefaults.js +39 -2
  263. package/es-modules/Series/Treemap/TreemapSeries.js +4 -2
  264. package/es-modules/Series/Treemap/TreemapUtilities.js +0 -7
  265. package/es-modules/Series/Variwide/VariwideComposition.js +6 -2
  266. package/es-modules/Series/Variwide/VariwideSeries.js +1 -1
  267. package/es-modules/Series/Venn/VennSeries.js +4 -4
  268. package/es-modules/Series/Venn/VennUtils.js +5 -6
  269. package/es-modules/Series/Waterfall/WaterfallSeriesDefaults.js +1 -1
  270. package/es-modules/Series/Windbarb/WindbarbSeries.js +1 -1
  271. package/es-modules/Series/Wordcloud/WordcloudUtils.js +6 -4
  272. package/es-modules/Series/XRange/XRangePoint.js +2 -2
  273. package/es-modules/Series/XRange/XRangeSeries.js +1 -1
  274. package/es-modules/Shared/BaseForm.js +1 -1
  275. package/es-modules/Stock/Indicators/AD/ADIndicator.js +3 -1
  276. package/es-modules/Stock/Indicators/APO/APOIndicator.js +1 -1
  277. package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +1 -1
  278. package/es-modules/Stock/Indicators/CMF/CMFIndicator.js +1 -1
  279. package/es-modules/Stock/Indicators/CMO/CMOIndicator.js +2 -2
  280. package/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +1 -1
  281. package/es-modules/Stock/Indicators/DPO/DPOIndicator.js +1 -1
  282. package/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +1 -1
  283. package/es-modules/Stock/Indicators/LinearRegression/LinearRegressionIndicator.js +7 -7
  284. package/es-modules/Stock/Indicators/MultipleLinesComposition.js +9 -9
  285. package/es-modules/Stock/Indicators/OBV/OBVIndicator.js +1 -1
  286. package/es-modules/Stock/Indicators/PPO/PPOIndicator.js +1 -1
  287. package/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +2 -2
  288. package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +1 -1
  289. package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +16 -17
  290. package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +4 -5
  291. package/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +1 -1
  292. package/es-modules/Stock/Indicators/Zigzag/ZigzagIndicator.js +5 -5
  293. package/es-modules/Stock/Navigator/ChartNavigatorComposition.js +188 -0
  294. package/es-modules/Stock/Navigator/Navigator.js +42 -27
  295. package/es-modules/Stock/Navigator/NavigatorComposition.js +10 -149
  296. package/es-modules/Stock/Navigator/NavigatorDefaults.js +16 -2
  297. package/es-modules/Stock/Navigator/StandaloneNavigator.js +334 -0
  298. package/es-modules/Stock/Navigator/StandaloneNavigatorDefaults.js +64 -0
  299. package/es-modules/Stock/RangeSelector/RangeSelector.js +28 -16
  300. package/es-modules/Stock/RangeSelector/RangeSelectorComposition.js +2 -2
  301. package/es-modules/Stock/Scrollbar/Scrollbar.js +10 -10
  302. package/es-modules/Stock/Scrollbar/ScrollbarDefaults.js +1 -3
  303. package/es-modules/Stock/StockTools/StockToolbar.js +6 -5
  304. package/es-modules/Stock/StockTools/StockTools.js +10 -13
  305. package/es-modules/Stock/StockTools/StockToolsBindings.js +35 -35
  306. package/es-modules/Stock/StockTools/StockToolsDefaults.js +2 -1
  307. package/es-modules/Stock/StockTools/StockToolsGui.js +7 -8
  308. package/es-modules/Stock/StockTools/StockToolsUtilities.js +8 -9
  309. package/es-modules/Stock/Utilities/StockUtilities.js +41 -0
  310. package/es-modules/masters/highcharts-3d.src.js +2 -1
  311. package/es-modules/masters/highcharts-gantt.src.js +1 -1
  312. package/es-modules/masters/highcharts-more.src.js +2 -1
  313. package/es-modules/masters/highcharts.src.js +41 -40
  314. package/es-modules/masters/highmaps.src.js +1 -1
  315. package/es-modules/masters/highstock.src.js +1 -1
  316. package/es-modules/masters/indicators/acceleration-bands.src.js +3 -1
  317. package/es-modules/masters/indicators/accumulation-distribution.src.js +3 -1
  318. package/es-modules/masters/indicators/ao.src.js +3 -1
  319. package/es-modules/masters/indicators/apo.src.js +3 -1
  320. package/es-modules/masters/indicators/aroon-oscillator.src.js +3 -1
  321. package/es-modules/masters/indicators/aroon.src.js +3 -1
  322. package/es-modules/masters/indicators/atr.src.js +3 -1
  323. package/es-modules/masters/indicators/bollinger-bands.src.js +3 -1
  324. package/es-modules/masters/indicators/cci.src.js +3 -1
  325. package/es-modules/masters/indicators/chaikin.src.js +3 -1
  326. package/es-modules/masters/indicators/cmf.src.js +3 -1
  327. package/es-modules/masters/indicators/cmo.src.js +3 -1
  328. package/es-modules/masters/indicators/dema.src.js +3 -1
  329. package/es-modules/masters/indicators/disparity-index.src.js +3 -1
  330. package/es-modules/masters/indicators/dmi.src.js +3 -1
  331. package/es-modules/masters/indicators/dpo.src.js +3 -1
  332. package/es-modules/masters/indicators/ema.src.js +2 -0
  333. package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +3 -1
  334. package/es-modules/masters/indicators/indicators-all.src.js +3 -1
  335. package/es-modules/masters/indicators/indicators.src.js +7 -1
  336. package/es-modules/masters/indicators/keltner-channels.src.js +3 -1
  337. package/es-modules/masters/indicators/klinger.src.js +3 -1
  338. package/es-modules/masters/indicators/macd.src.js +3 -1
  339. package/es-modules/masters/indicators/mfi.src.js +3 -1
  340. package/es-modules/masters/indicators/momentum.src.js +3 -1
  341. package/es-modules/masters/indicators/natr.src.js +3 -1
  342. package/es-modules/masters/indicators/obv.src.js +3 -1
  343. package/es-modules/masters/indicators/pivot-points.src.js +3 -1
  344. package/es-modules/masters/indicators/ppo.src.js +3 -1
  345. package/es-modules/masters/indicators/price-channel.src.js +3 -1
  346. package/es-modules/masters/indicators/price-envelopes.src.js +3 -1
  347. package/es-modules/masters/indicators/psar.src.js +3 -1
  348. package/es-modules/masters/indicators/regressions.src.js +3 -1
  349. package/es-modules/masters/indicators/roc.src.js +3 -1
  350. package/es-modules/masters/indicators/rsi.src.js +3 -1
  351. package/es-modules/masters/indicators/slow-stochastic.src.js +3 -1
  352. package/es-modules/masters/indicators/stochastic.src.js +3 -1
  353. package/es-modules/masters/indicators/supertrend.src.js +3 -1
  354. package/es-modules/masters/indicators/tema.src.js +3 -1
  355. package/es-modules/masters/indicators/trendline.src.js +3 -1
  356. package/es-modules/masters/indicators/trix.src.js +3 -1
  357. package/es-modules/masters/indicators/volume-by-price.src.js +3 -1
  358. package/es-modules/masters/indicators/vwap.src.js +3 -1
  359. package/es-modules/masters/indicators/williams-r.src.js +3 -1
  360. package/es-modules/masters/indicators/wma.src.js +3 -1
  361. package/es-modules/masters/indicators/zigzag.src.js +3 -1
  362. package/es-modules/masters/modules/accessibility.src.js +4 -1
  363. package/es-modules/masters/modules/annotations-advanced.src.js +3 -5
  364. package/es-modules/masters/modules/annotations.src.js +6 -3
  365. package/es-modules/masters/modules/arc-diagram.src.js +3 -1
  366. package/es-modules/masters/modules/arrow-symbols.src.js +2 -1
  367. package/es-modules/masters/modules/boost-canvas.src.js +2 -1
  368. package/es-modules/masters/modules/boost.src.js +3 -2
  369. package/es-modules/masters/modules/broken-axis.src.js +4 -3
  370. package/es-modules/masters/modules/bullet.src.js +3 -1
  371. package/es-modules/masters/modules/coloraxis.src.js +4 -3
  372. package/es-modules/masters/modules/current-date-indicator.src.js +2 -1
  373. package/es-modules/masters/modules/cylinder.src.js +3 -1
  374. package/es-modules/masters/modules/data-tools.src.js +9 -8
  375. package/es-modules/masters/modules/data.src.js +9 -8
  376. package/es-modules/masters/modules/datagrouping.src.js +7 -5
  377. package/es-modules/masters/modules/debugger.src.js +3 -2
  378. package/es-modules/masters/modules/dependency-wheel.src.js +3 -1
  379. package/es-modules/masters/modules/dotplot.src.js +3 -1
  380. package/es-modules/masters/modules/drag-panes.src.js +2 -1
  381. package/es-modules/masters/modules/draggable-points.src.js +2 -1
  382. package/es-modules/masters/modules/drilldown.src.js +3 -2
  383. package/es-modules/masters/modules/dumbbell.src.js +3 -1
  384. package/es-modules/masters/modules/export-data.src.js +5 -4
  385. package/es-modules/masters/modules/exporting.src.js +6 -5
  386. package/es-modules/masters/modules/flowmap.src.js +3 -1
  387. package/es-modules/masters/modules/full-screen.src.js +4 -3
  388. package/es-modules/masters/modules/funnel.src.js +2 -1
  389. package/es-modules/masters/modules/funnel3d.src.js +4 -3
  390. package/es-modules/masters/modules/gantt.src.js +15 -17
  391. package/es-modules/masters/modules/geoheatmap.src.js +3 -1
  392. package/es-modules/masters/modules/grid-axis.src.js +2 -1
  393. package/es-modules/masters/modules/heatmap.src.js +3 -5
  394. package/es-modules/masters/modules/heikinashi.src.js +2 -1
  395. package/es-modules/masters/modules/histogram-bellcurve.src.js +3 -1
  396. package/es-modules/masters/modules/hollowcandlestick.src.js +3 -1
  397. package/es-modules/masters/modules/item-series.src.js +3 -1
  398. package/es-modules/masters/modules/lollipop.src.js +3 -1
  399. package/es-modules/masters/modules/map.src.js +15 -10
  400. package/es-modules/masters/modules/marker-clusters.src.js +2 -1
  401. package/es-modules/masters/modules/mouse-wheel-zoom.src.js +4 -2
  402. package/es-modules/masters/modules/navigator.src.d.ts +1 -0
  403. package/es-modules/masters/modules/navigator.src.js +19 -0
  404. package/es-modules/masters/modules/networkgraph.src.js +2 -1
  405. package/es-modules/masters/modules/no-data-to-display.src.js +2 -1
  406. package/es-modules/masters/modules/offline-exporting.src.js +4 -3
  407. package/es-modules/masters/modules/organization.src.js +3 -1
  408. package/es-modules/masters/modules/overlapping-datalabels.src.js +4 -2
  409. package/es-modules/masters/modules/parallel-coordinates.src.js +2 -1
  410. package/es-modules/masters/modules/pareto.src.js +3 -1
  411. package/es-modules/masters/modules/pathfinder.src.js +4 -3
  412. package/es-modules/masters/modules/pattern-fill.src.js +2 -1
  413. package/es-modules/masters/modules/pictorial.src.js +3 -1
  414. package/es-modules/masters/modules/price-indicator.src.js +2 -1
  415. package/es-modules/masters/modules/pyramid3d.src.js +3 -1
  416. package/es-modules/masters/modules/sankey.src.js +3 -1
  417. package/es-modules/masters/modules/series-label.src.js +2 -1
  418. package/es-modules/masters/modules/series-on-point.src.js +2 -1
  419. package/es-modules/masters/modules/solid-gauge.src.js +3 -1
  420. package/es-modules/masters/modules/sonification.src.js +2 -1
  421. package/es-modules/masters/modules/static-scale.src.js +2 -1
  422. package/es-modules/masters/modules/stock-tools.src.js +5 -3
  423. package/es-modules/masters/modules/stock.src.js +20 -15
  424. package/es-modules/masters/modules/streamgraph.src.js +3 -1
  425. package/es-modules/masters/modules/sunburst.src.js +4 -3
  426. package/es-modules/masters/modules/tiledwebmap.src.js +5 -4
  427. package/es-modules/masters/modules/tilemap.src.js +2 -1
  428. package/es-modules/masters/modules/timeline.src.js +3 -1
  429. package/es-modules/masters/modules/treegraph.src.js +3 -1
  430. package/es-modules/masters/modules/treegrid.src.js +2 -2
  431. package/es-modules/masters/modules/treemap.src.js +5 -4
  432. package/es-modules/masters/modules/variable-pie.src.js +3 -1
  433. package/es-modules/masters/modules/variwide.src.js +2 -1
  434. package/es-modules/masters/modules/vector.src.js +3 -1
  435. package/es-modules/masters/modules/venn.src.js +3 -1
  436. package/es-modules/masters/modules/windbarb.src.js +3 -1
  437. package/es-modules/masters/modules/wordcloud.src.js +3 -1
  438. package/es-modules/masters/modules/xrange.src.js +2 -1
  439. package/es-modules/masters/standalone-navigator.src.js +13 -0
  440. package/es-modules/masters/themes/avocado.src.js +2 -1
  441. package/es-modules/masters/themes/brand-dark.src.js +2 -1
  442. package/es-modules/masters/themes/brand-light.src.js +2 -1
  443. package/es-modules/masters/themes/dark-blue.src.js +2 -1
  444. package/es-modules/masters/themes/dark-green.src.js +2 -1
  445. package/es-modules/masters/themes/dark-unica.src.js +2 -1
  446. package/es-modules/masters/themes/gray.src.js +2 -1
  447. package/es-modules/masters/themes/grid-light.src.js +2 -1
  448. package/es-modules/masters/themes/grid.src.js +2 -1
  449. package/es-modules/masters/themes/high-contrast-dark.src.js +2 -1
  450. package/es-modules/masters/themes/high-contrast-light.src.js +2 -1
  451. package/es-modules/masters/themes/sand-signika.src.js +2 -1
  452. package/es-modules/masters/themes/skies.src.js +2 -1
  453. package/es-modules/masters/themes/sunset.src.js +2 -1
  454. package/es-modules/tsconfig.tsbuildinfo +1 -0
  455. package/globals.d.ts +9 -0
  456. package/globals.src.d.ts +9 -0
  457. package/highcharts-3d.js +3 -3
  458. package/highcharts-3d.src.js +32 -33
  459. package/highcharts-gantt.js +4 -4
  460. package/highcharts-gantt.src.js +5703 -5639
  461. package/highcharts-more.d.ts +4 -0
  462. package/highcharts-more.js +3 -3
  463. package/highcharts-more.src.d.ts +4 -0
  464. package/highcharts-more.src.js +88 -87
  465. package/highcharts.d.ts +834 -5365
  466. package/highcharts.js +4 -4
  467. package/highcharts.src.d.ts +834 -5365
  468. package/highcharts.src.js +1583 -1682
  469. package/highmaps.js +4 -4
  470. package/highmaps.src.js +1837 -1835
  471. package/highstock.js +4 -4
  472. package/highstock.src.js +12488 -12510
  473. package/indicators/acceleration-bands.js +3 -3
  474. package/indicators/acceleration-bands.src.js +12 -11
  475. package/indicators/accumulation-distribution.js +3 -3
  476. package/indicators/accumulation-distribution.src.js +6 -3
  477. package/indicators/ao.js +3 -3
  478. package/indicators/ao.src.js +3 -2
  479. package/indicators/apo.js +3 -3
  480. package/indicators/apo.src.js +4 -3
  481. package/indicators/aroon-oscillator.js +3 -3
  482. package/indicators/aroon-oscillator.src.js +12 -11
  483. package/indicators/aroon.js +3 -3
  484. package/indicators/aroon.src.js +13 -12
  485. package/indicators/atr.js +3 -3
  486. package/indicators/atr.src.js +3 -2
  487. package/indicators/bollinger-bands.js +3 -3
  488. package/indicators/bollinger-bands.src.js +12 -11
  489. package/indicators/cci.js +3 -3
  490. package/indicators/cci.src.js +3 -2
  491. package/indicators/chaikin.js +3 -3
  492. package/indicators/chaikin.src.js +7 -4
  493. package/indicators/cmf.js +3 -3
  494. package/indicators/cmf.src.js +4 -3
  495. package/indicators/cmo.js +3 -3
  496. package/indicators/cmo.src.js +5 -4
  497. package/indicators/dema.js +3 -3
  498. package/indicators/dema.src.js +3 -2
  499. package/indicators/disparity-index.js +3 -3
  500. package/indicators/disparity-index.src.js +3 -2
  501. package/indicators/dmi.js +3 -3
  502. package/indicators/dmi.src.js +12 -11
  503. package/indicators/dpo.js +3 -3
  504. package/indicators/dpo.src.js +4 -3
  505. package/indicators/ema.js +1 -1
  506. package/indicators/ema.src.js +2 -1
  507. package/indicators/ichimoku-kinko-hyo.js +3 -3
  508. package/indicators/ichimoku-kinko-hyo.src.js +3 -2
  509. package/indicators/indicators-all.js +3 -3
  510. package/indicators/indicators-all.src.js +63 -60
  511. package/indicators/indicators.js +3 -3
  512. package/indicators/indicators.src.js +286 -3
  513. package/indicators/keltner-channels.js +3 -3
  514. package/indicators/keltner-channels.src.js +12 -11
  515. package/indicators/klinger.js +3 -3
  516. package/indicators/klinger.src.js +13 -12
  517. package/indicators/macd.js +3 -3
  518. package/indicators/macd.src.js +3 -2
  519. package/indicators/mfi.js +3 -3
  520. package/indicators/mfi.src.js +3 -2
  521. package/indicators/momentum.js +3 -3
  522. package/indicators/momentum.src.js +3 -2
  523. package/indicators/natr.js +3 -3
  524. package/indicators/natr.src.js +3 -2
  525. package/indicators/obv.js +3 -3
  526. package/indicators/obv.src.js +4 -3
  527. package/indicators/pivot-points.js +3 -3
  528. package/indicators/pivot-points.src.js +5 -4
  529. package/indicators/ppo.js +3 -3
  530. package/indicators/ppo.src.js +4 -3
  531. package/indicators/price-channel.js +3 -3
  532. package/indicators/price-channel.src.js +12 -11
  533. package/indicators/price-envelopes.js +3 -3
  534. package/indicators/price-envelopes.src.js +12 -11
  535. package/indicators/psar.js +3 -3
  536. package/indicators/psar.src.js +3 -2
  537. package/indicators/regressions.js +3 -3
  538. package/indicators/regressions.src.js +10 -9
  539. package/indicators/roc.js +3 -3
  540. package/indicators/roc.src.js +3 -2
  541. package/indicators/rsi.js +3 -3
  542. package/indicators/rsi.src.js +3 -2
  543. package/indicators/slow-stochastic.js +3 -3
  544. package/indicators/slow-stochastic.src.js +3 -2
  545. package/indicators/stochastic.js +3 -3
  546. package/indicators/stochastic.src.js +12 -11
  547. package/indicators/supertrend.js +3 -3
  548. package/indicators/supertrend.src.js +20 -19
  549. package/indicators/tema.js +3 -3
  550. package/indicators/tema.src.js +3 -2
  551. package/indicators/trendline.js +3 -3
  552. package/indicators/trendline.src.js +3 -2
  553. package/indicators/trix.js +3 -3
  554. package/indicators/trix.src.js +3 -2
  555. package/indicators/volume-by-price.js +3 -3
  556. package/indicators/volume-by-price.src.js +8 -7
  557. package/indicators/vwap.js +3 -3
  558. package/indicators/vwap.src.js +3 -2
  559. package/indicators/williams-r.js +3 -3
  560. package/indicators/williams-r.src.js +4 -3
  561. package/indicators/wma.js +3 -3
  562. package/indicators/wma.src.js +3 -2
  563. package/indicators/zigzag.js +3 -3
  564. package/indicators/zigzag.src.js +8 -7
  565. package/lib/svg2pdf.js +7 -7
  566. package/lib/svg2pdf.src.js +185 -150
  567. package/modules/accessibility.js +3 -3
  568. package/modules/accessibility.src.js +664 -2793
  569. package/modules/annotations-advanced.d.ts +3 -0
  570. package/modules/annotations-advanced.js +3 -3
  571. package/modules/annotations-advanced.src.d.ts +3 -0
  572. package/modules/annotations-advanced.src.js +2949 -2920
  573. package/modules/annotations.d.ts +0 -3
  574. package/modules/annotations.js +3 -3
  575. package/modules/annotations.src.d.ts +0 -3
  576. package/modules/annotations.src.js +2926 -2905
  577. package/modules/arc-diagram.js +3 -3
  578. package/modules/arc-diagram.src.js +8 -6
  579. package/modules/arrow-symbols.js +3 -3
  580. package/modules/arrow-symbols.src.js +10 -13
  581. package/modules/boost-canvas.js +3 -3
  582. package/modules/boost-canvas.src.js +73 -26
  583. package/modules/boost.js +3 -3
  584. package/modules/boost.src.js +108 -30
  585. package/modules/broken-axis.js +3 -3
  586. package/modules/broken-axis.src.js +9 -9
  587. package/modules/bullet.js +3 -3
  588. package/modules/bullet.src.js +5 -4
  589. package/modules/coloraxis.js +3 -3
  590. package/modules/coloraxis.src.js +10 -9
  591. package/modules/current-date-indicator.js +3 -3
  592. package/modules/current-date-indicator.src.js +3 -2
  593. package/modules/cylinder.js +3 -3
  594. package/modules/cylinder.src.js +12 -11
  595. package/modules/data-tools.js +3 -3
  596. package/modules/data-tools.src.js +53 -36
  597. package/modules/data.d.ts +2 -2
  598. package/modules/data.js +3 -3
  599. package/modules/data.src.d.ts +2 -2
  600. package/modules/data.src.js +24 -23
  601. package/modules/datagrouping.js +3 -3
  602. package/modules/datagrouping.src.js +25 -23
  603. package/modules/debugger.js +3 -3
  604. package/modules/debugger.src.js +6 -5
  605. package/modules/dependency-wheel.js +3 -3
  606. package/modules/dependency-wheel.src.js +7 -5
  607. package/modules/dotplot.js +3 -3
  608. package/modules/dotplot.src.js +3 -2
  609. package/modules/drag-panes.js +3 -3
  610. package/modules/drag-panes.src.js +19 -21
  611. package/modules/draggable-points.js +3 -3
  612. package/modules/draggable-points.src.js +18 -16
  613. package/modules/drilldown.js +3 -3
  614. package/modules/drilldown.src.js +29 -26
  615. package/modules/dumbbell.js +3 -3
  616. package/modules/dumbbell.src.js +5 -4
  617. package/modules/export-data.js +3 -3
  618. package/modules/export-data.src.js +33 -22
  619. package/modules/exporting.d.ts +1 -1
  620. package/modules/exporting.js +3 -3
  621. package/modules/exporting.src.d.ts +1 -1
  622. package/modules/exporting.src.js +40 -39
  623. package/modules/flowmap.js +3 -3
  624. package/modules/flowmap.src.js +3 -2
  625. package/modules/full-screen.js +3 -3
  626. package/modules/full-screen.src.js +9 -13
  627. package/modules/funnel.js +3 -3
  628. package/modules/funnel.src.js +3 -2
  629. package/modules/funnel3d.js +3 -3
  630. package/modules/funnel3d.src.js +12 -12
  631. package/modules/gantt.d.ts +3 -4
  632. package/modules/gantt.js +3 -3
  633. package/modules/gantt.src.d.ts +3 -4
  634. package/modules/gantt.src.js +4165 -4002
  635. package/modules/geoheatmap.js +3 -3
  636. package/modules/geoheatmap.src.js +8 -7
  637. package/modules/grid-axis.js +3 -3
  638. package/modules/grid-axis.src.js +9 -8
  639. package/modules/heatmap.d.ts +2 -2
  640. package/modules/heatmap.js +3 -3
  641. package/modules/heatmap.src.d.ts +2 -2
  642. package/modules/heatmap.src.js +21 -15
  643. package/modules/heikinashi.js +3 -3
  644. package/modules/heikinashi.src.js +9 -6
  645. package/modules/histogram-bellcurve.js +3 -3
  646. package/modules/histogram-bellcurve.src.js +4 -3
  647. package/modules/hollowcandlestick.js +3 -3
  648. package/modules/hollowcandlestick.src.js +5 -4
  649. package/modules/item-series.js +3 -3
  650. package/modules/item-series.src.js +4 -3
  651. package/modules/lollipop.js +3 -3
  652. package/modules/lollipop.src.js +6 -3
  653. package/modules/map.d.ts +22 -1
  654. package/modules/map.js +3 -3
  655. package/modules/map.src.d.ts +22 -1
  656. package/modules/map.src.js +256 -155
  657. package/modules/marker-clusters.js +3 -3
  658. package/modules/marker-clusters.src.js +35 -37
  659. package/modules/mouse-wheel-zoom.js +3 -3
  660. package/modules/mouse-wheel-zoom.src.js +55 -163
  661. package/modules/navigator.d.ts +148 -0
  662. package/modules/navigator.js +9 -0
  663. package/modules/navigator.src.d.ts +148 -0
  664. package/modules/navigator.src.js +3921 -0
  665. package/modules/networkgraph.d.ts +2 -2
  666. package/modules/networkgraph.js +3 -3
  667. package/modules/networkgraph.src.d.ts +2 -2
  668. package/modules/networkgraph.src.js +36 -35
  669. package/modules/no-data-to-display.js +3 -3
  670. package/modules/no-data-to-display.src.js +6 -6
  671. package/modules/offline-exporting.js +3 -3
  672. package/modules/offline-exporting.src.js +10 -10
  673. package/modules/organization.js +3 -3
  674. package/modules/organization.src.js +41 -15
  675. package/modules/overlapping-datalabels.js +3 -3
  676. package/modules/overlapping-datalabels.src.js +4 -2
  677. package/modules/parallel-coordinates.js +3 -3
  678. package/modules/parallel-coordinates.src.js +12 -12
  679. package/modules/pareto.js +3 -3
  680. package/modules/pareto.src.js +3 -2
  681. package/modules/pathfinder.js +3 -3
  682. package/modules/pathfinder.src.js +18 -22
  683. package/modules/pattern-fill.js +3 -3
  684. package/modules/pattern-fill.src.js +22 -23
  685. package/modules/pictorial.js +3 -3
  686. package/modules/pictorial.src.js +25 -26
  687. package/modules/price-indicator.js +3 -3
  688. package/modules/price-indicator.src.js +3 -2
  689. package/modules/pyramid3d.js +3 -3
  690. package/modules/pyramid3d.src.js +3 -2
  691. package/modules/sankey.js +3 -3
  692. package/modules/sankey.src.js +93 -26
  693. package/modules/series-label.js +3 -3
  694. package/modules/series-label.src.js +28 -19
  695. package/modules/series-on-point.js +3 -3
  696. package/modules/series-on-point.src.js +5 -4
  697. package/modules/solid-gauge.js +3 -3
  698. package/modules/solid-gauge.src.js +3 -2
  699. package/modules/sonification.d.ts +2 -2
  700. package/modules/sonification.js +3 -3
  701. package/modules/sonification.src.d.ts +2 -2
  702. package/modules/sonification.src.js +8 -6
  703. package/modules/static-scale.js +3 -3
  704. package/modules/static-scale.src.js +6 -6
  705. package/modules/stock-tools.js +3 -3
  706. package/modules/stock-tools.src.js +109 -96
  707. package/modules/stock.d.ts +1 -1
  708. package/modules/stock.js +3 -3
  709. package/modules/stock.src.d.ts +1 -1
  710. package/modules/stock.src.js +10762 -10685
  711. package/modules/streamgraph.js +3 -3
  712. package/modules/streamgraph.src.js +3 -2
  713. package/modules/sunburst.js +3 -3
  714. package/modules/sunburst.src.js +50 -37
  715. package/modules/tiledwebmap.js +4 -4
  716. package/modules/tiledwebmap.src.js +28 -29
  717. package/modules/tilemap.js +3 -3
  718. package/modules/tilemap.src.js +4 -3
  719. package/modules/timeline.js +3 -3
  720. package/modules/timeline.src.js +5 -4
  721. package/modules/treegraph.js +3 -3
  722. package/modules/treegraph.src.js +58 -23
  723. package/modules/treegrid.js +3 -3
  724. package/modules/treegrid.src.js +49 -33
  725. package/modules/treemap.js +3 -3
  726. package/modules/treemap.src.js +44 -26
  727. package/modules/variable-pie.js +3 -3
  728. package/modules/variable-pie.src.js +3 -2
  729. package/modules/variwide.js +3 -3
  730. package/modules/variwide.src.js +9 -4
  731. package/modules/vector.js +3 -3
  732. package/modules/vector.src.js +3 -2
  733. package/modules/venn.js +3 -3
  734. package/modules/venn.src.js +16 -17
  735. package/modules/windbarb.js +3 -3
  736. package/modules/windbarb.src.js +5 -4
  737. package/modules/wordcloud.js +3 -3
  738. package/modules/wordcloud.src.js +10 -8
  739. package/modules/xrange.js +3 -3
  740. package/modules/xrange.src.js +5 -4
  741. package/package.json +1 -1
  742. package/standalone-navigator.js +2 -0
  743. package/standalone-navigator.src.js +49402 -0
  744. package/themes/avocado.js +3 -3
  745. package/themes/avocado.src.js +2 -1
  746. package/themes/brand-dark.js +3 -3
  747. package/themes/brand-dark.src.js +2 -1
  748. package/themes/brand-light.js +3 -3
  749. package/themes/brand-light.src.js +2 -1
  750. package/themes/dark-blue.js +3 -3
  751. package/themes/dark-blue.src.js +2 -1
  752. package/themes/dark-green.js +3 -3
  753. package/themes/dark-green.src.js +2 -1
  754. package/themes/dark-unica.js +3 -3
  755. package/themes/dark-unica.src.js +2 -1
  756. package/themes/gray.js +3 -3
  757. package/themes/gray.src.js +2 -1
  758. package/themes/grid-light.js +3 -3
  759. package/themes/grid-light.src.js +2 -1
  760. package/themes/grid.js +3 -3
  761. package/themes/grid.src.js +2 -1
  762. package/themes/high-contrast-dark.js +3 -3
  763. package/themes/high-contrast-dark.src.js +2 -1
  764. package/themes/high-contrast-light.js +3 -3
  765. package/themes/high-contrast-light.src.js +2 -1
  766. package/themes/sand-signika.js +3 -3
  767. package/themes/sand-signika.src.js +2 -1
  768. package/themes/skies.js +3 -3
  769. package/themes/skies.src.js +2 -1
  770. package/themes/sunset.js +3 -3
  771. package/themes/sunset.src.js +2 -1
  772. package/es-modules/Core/Renderer/HTML/HTMLRenderer.js +0 -259
  773. package/lib/canvg.js +0 -8
package/README.md CHANGED
@@ -3,7 +3,7 @@ Highcharts is a JavaScript charting library based on SVG rendering. This project
3
3
  This package is intended for supporting client-side JavaScript charting through bundlers like Parcel or Webpack and environments like Babel or TypeScript. If you intend to generate static charts on the server side, use the [Highcharts node.js Export Server](https://www.npmjs.com/package/highcharts-export-server) instead.
4
4
 
5
5
  ### License
6
- Please note that commercial use of Highcharts requires a commercial license. For testing and demonstration purposes (POC), Highcharts can be used free of charge. Non-profit organisations, schools and personal websites are qualified for the free license. Read more about licenses [in the Highcharts shop](https://shop.highsoft.com/?utm_source=npmjs&utm_medium=referral&utm_campaign=highchartspage&utm_content=licenseinfo).
6
+ Please note that commercial use of Highcharts requires a commercial license. Non-commercial use may qualify for a free educational or personal license. Read more about licenses [in the Highcharts shop](https://shop.highsoft.com/?utm_source=npmjs&utm_medium=referral&utm_campaign=highchartspage&utm_content=licenseinfo).
7
7
 
8
8
  ### Links
9
9
  * Official website: [www.highcharts.com](http://www.highcharts.com)
package/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "highcharts",
3
- "version": "11.3.0",
3
+ "version": "11.4.0",
4
4
  "main": "highcharts.js",
5
5
  "license": "https://www.highcharts.com/license",
6
6
  "types": "highcharts.d.ts"
@@ -20,11 +20,14 @@
20
20
  min-width: 0;
21
21
  }
22
22
 
23
- .highcharts-popup.highcharts-annotation-toolbar button {
23
+ .highcharts-annotation-toolbar button {
24
24
  margin-top: 0;
25
+ cursor: pointer;
26
+ background-color: var(--highcharts-neutral-color-3);
25
27
  }
26
28
 
27
- .highcharts-popup.highcharts-annotation-toolbar > span {
29
+ .highcharts-popup.highcharts-annotation-toolbar > p {
30
+ margin: 0;
28
31
  display: block;
29
32
  float: left;
30
33
  padding: 12px;
@@ -134,22 +137,26 @@
134
137
  padding: 15px 0;
135
138
  }
136
139
 
137
- .highcharts-indicator-list li {
140
+ button.highcharts-indicator-list-item {
138
141
  cursor: pointer;
139
142
  padding: 5px 20px;
140
- margin: 0;
141
143
  width: 100%;
142
144
  height: auto;
143
145
  overflow: hidden;
144
146
  word-break: break-all;
145
147
  box-sizing: border-box;
148
+ background-color: var(--highcharts-background-color);
149
+ text-align: left;
146
150
  }
147
151
 
148
- .highcharts-indicator-list li:hover {
149
- background-color: var(--highcharts-neutral-color-10);
152
+ .highcharts-indicator-list li {
153
+ width: 100%;
154
+ padding: 0;
155
+ height: auto;
150
156
  }
151
157
 
152
- .highcharts-tab-item {
158
+ .highcharts-popup > button.highcharts-tab-item {
159
+ margin: 0;
153
160
  background-color: var(--highcharts-neutral-color-3);
154
161
  cursor: pointer;
155
162
  display: block;
@@ -159,7 +166,7 @@
159
166
  line-height: 40px;
160
167
  }
161
168
 
162
- .highcharts-tab-item.highcharts-tab-item-active {
169
+ button.highcharts-tab-item.highcharts-tab-item-active {
163
170
  background-color: var(--highcharts-neutral-color-10);
164
171
  }
165
172
 
@@ -176,9 +183,11 @@
176
183
  display: block;
177
184
  }
178
185
 
179
- .highcharts-popup-close {
186
+ .highcharts-popup > .highcharts-popup-close {
187
+ margin: 0;
180
188
  background-repeat: no-repeat;
181
189
  background-position: 50% 50%;
190
+ background-color: var(--highcharts-background-color);
182
191
  width: 40px;
183
192
  height: 40px;
184
193
  cursor: pointer;
@@ -194,26 +203,25 @@
194
203
  .highcharts-popup button.highcharts-annotation-edit-button:hover,
195
204
  .highcharts-popup button.highcharts-annotation-remove-button:hover {
196
205
  background-color: var(--highcharts-neutral-color-10);
197
- cursor: pointer;
198
206
  }
199
207
 
200
- .highcharts-popup button {
208
+ div.highcharts-popup-rhs-col > button {
201
209
  float: right;
202
- border: none;
203
- background: var(--highcharts-neutral-color-3);
204
- color: var(--highcharts-neutral-color-60);
205
- margin-left: 5px;
206
- margin-top: 12px;
207
210
  }
208
211
 
209
- .highcharts-popup button:first-child {
210
- margin-left: 0;
212
+ .highcharts-popup button {
213
+ border: none;
214
+ margin: 0 5px 0 0;
211
215
  }
212
216
 
213
- .highcharts-tab-disabled {
217
+ button.highcharts-tab-item.highcharts-tab-disabled {
214
218
  color: var(--highcharts-neutral-color-20);
215
219
  }
216
220
 
221
+ button.highcharts-tab-item.highcharts-tab-disabled:hover {
222
+ background-color: var(--highcharts-neutral-color-3);
223
+ }
224
+
217
225
  /* annotation edit small popup */
218
226
  .highcharts-popup button.highcharts-annotation-edit-button,
219
227
  .highcharts-popup button.highcharts-annotation-remove-button {
@@ -209,9 +209,15 @@
209
209
  background-color: transparent;
210
210
  }
211
211
 
212
- .highcharts-bindings-wrapper li > span.highcharts-menu-item-btn {
212
+ .highcharts-bindings-wrapper li > button.highcharts-menu-item-btn {
213
213
  display: block;
214
+ border: none;
214
215
  float: left;
216
+ padding: 0;
217
+ background: none;
218
+ color: inherit;
219
+ font: inherit;
220
+ cursor: pointer;
215
221
  width: 100%;
216
222
  height: 100%;
217
223
  background-repeat: no-repeat;
@@ -219,15 +225,21 @@
219
225
  background-size: 32px 32px;
220
226
  }
221
227
 
222
- .highcharts-submenu-wrapper li > span.highcharts-menu-item-btn {
228
+ .highcharts-submenu-wrapper li > button.highcharts-menu-item-btn {
223
229
  width: 40px;
224
230
  }
225
231
 
226
- .highcharts-bindings-wrapper li > span.highcharts-submenu-item-arrow {
232
+ .highcharts-bindings-wrapper li > button.highcharts-submenu-item-arrow {
227
233
  float: left;
234
+ background-repeat: no-repeat;
235
+ color: inherit;
236
+ border: none;
237
+ padding: 0;
238
+ font: inherit;
239
+ cursor: pointer;
240
+ background-color: transparent;
228
241
  width: 10px;
229
242
  height: 100%;
230
- cursor: pointer;
231
243
  position: absolute;
232
244
  bottom: 0;
233
245
  right: 0;
@@ -240,12 +252,12 @@
240
252
  pointer-events: none;
241
253
  }
242
254
 
243
- .highcharts-bindings-wrapper li.highcharts-separator > span.highcharts-menu-item-btn {
255
+ .highcharts-bindings-wrapper li.highcharts-separator > button.highcharts-menu-item-btn {
244
256
  width: 100%;
245
257
  }
246
258
 
247
- .highcharts-bindings-wrapper li.highcharts-active > span.highcharts-menu-item-btn,
248
- .highcharts-bindings-wrapper li > span.highcharts-menu-item-btn:hover,
259
+ .highcharts-bindings-wrapper li.highcharts-active > button.highcharts-menu-item-btn,
260
+ .highcharts-bindings-wrapper li > button.highcharts-menu-item-btn:hover,
249
261
  .highcharts-bindings-wrapper .highcharts-arrow-wrapper > div:hover,
250
262
  .highcharts-bindings-wrapper li.highcharts-active,
251
263
  .highcharts-toggle-toolbar:hover {
@@ -13,10 +13,8 @@
13
13
  'use strict';
14
14
  import F from '../Core/Templating.js';
15
15
  const { format } = F;
16
- import H from '../Core/Globals.js';
17
- const { composed } = H;
18
16
  import U from '../Core/Utilities.js';
19
- const { getNestedProperty, pick, pushUnique } = U;
17
+ const { getNestedProperty, pick } = U;
20
18
  /* *
21
19
  *
22
20
  * Composition
@@ -38,8 +36,8 @@ var A11yI18nComposition;
38
36
  * @private
39
37
  */
40
38
  function compose(ChartClass) {
41
- if (pushUnique(composed, compose)) {
42
- const chartProto = ChartClass.prototype;
39
+ const chartProto = ChartClass.prototype;
40
+ if (!chartProto.langFormat) {
43
41
  chartProto.langFormat = langFormat;
44
42
  }
45
43
  }
@@ -149,7 +147,7 @@ var A11yI18nComposition;
149
147
  * If negative, the function will subtract the number from the length of the
150
148
  * array. Use this to stop iterating before the array ends. Example:
151
149
  *
152
- * - Format: 'List contains: {#each(myArray, -1) }and {myArray[-1]}.'
150
+ * - Format: 'List contains: {#each(myArray, -1), }and {myArray[-1]}.'
153
151
  *
154
152
  * - Context: { myArray: [0, 1, 2, 3] }
155
153
  *
@@ -13,9 +13,9 @@
13
13
  import D from '../Core/Defaults.js';
14
14
  const { defaultOptions } = D;
15
15
  import H from '../Core/Globals.js';
16
- const { composed, doc } = H;
16
+ const { doc } = H;
17
17
  import U from '../Core/Utilities.js';
18
- const { addEvent, extend, fireEvent, merge, pushUnique } = U;
18
+ const { addEvent, extend, fireEvent, merge } = U;
19
19
  import HU from './Utils/HTMLUtilities.js';
20
20
  const { removeElement } = HU;
21
21
  import A11yI18n from './A11yI18n.js';
@@ -155,8 +155,10 @@ class Accessibility {
155
155
  // Update keyboard navigation
156
156
  this.keyboardNavigation.update(kbdNavOrder);
157
157
  // Handle high contrast mode
158
- if (!chart.highContrastModeActive && // Only do this once
159
- whcm.isHighContrastModeActive()) {
158
+ // Should only be applied once, and not if explicitly disabled
159
+ if (!chart.highContrastModeActive &&
160
+ a11yOptions.highContrastMode !== false && (whcm.isHighContrastModeActive() ||
161
+ a11yOptions.highContrastMode === true)) {
160
162
  whcm.setHighContrastTheme(chart);
161
163
  }
162
164
  fireEvent(chart, 'afterA11yUpdate', {
@@ -325,8 +327,8 @@ class Accessibility {
325
327
  if (RangeSelectorClass) {
326
328
  RangeSelectorComponent.compose(ChartClass, RangeSelectorClass);
327
329
  }
328
- if (pushUnique(composed, compose)) {
329
- const chartProto = ChartClass.prototype;
330
+ const chartProto = ChartClass.prototype;
331
+ if (!chartProto.updateA11yEnabled) {
330
332
  chartProto.updateA11yEnabled = chartUpdateA11yEnabled;
331
333
  addEvent(ChartClass, 'destroy', chartOnDestroy);
332
334
  addEvent(ChartClass, 'render', chartOnRender);
@@ -25,7 +25,7 @@ const { doc } = H;
25
25
  import HU from '../Utils/HTMLUtilities.js';
26
26
  const { addClass, getElement, getHeadingTagNameForElement, stripHTMLTagsFromString, visuallyHideElement } = HU;
27
27
  import U from '../../Core/Utilities.js';
28
- const { attr, pick } = U;
28
+ const { attr, pick, replaceNested } = U;
29
29
  /* *
30
30
  *
31
31
  * Functions
@@ -62,13 +62,13 @@ function getTypeDescForEmptyChart(chart, formatContext) {
62
62
  * @private
63
63
  */
64
64
  function buildTypeDescriptionFromSeries(chart, types, context) {
65
- const firstType = types[0], typeExplaination = chart.langFormat('accessibility.seriesTypeDescriptions.' + firstType, context), multi = chart.series && chart.series.length < 2 ? 'Single' : 'Multiple';
65
+ const firstType = types[0], typeExplanation = chart.langFormat('accessibility.seriesTypeDescriptions.' + firstType, context), multi = chart.series && chart.series.length < 2 ? 'Single' : 'Multiple';
66
66
  return (chart.langFormat('accessibility.chartTypes.' + firstType + multi, context) ||
67
- chart.langFormat('accessibility.chartTypes.default' + multi, context)) + (typeExplaination ? ' ' + typeExplaination : '');
67
+ chart.langFormat('accessibility.chartTypes.default' + multi, context)) + (typeExplanation ? ' ' + typeExplanation : '');
68
68
  }
69
69
  /**
70
- * Return simplified explaination of chart type. Some types will not be
71
- * familiar to most users, but in those cases we try to add an explaination
70
+ * Return simplified explanation of chart type. Some types will not be
71
+ * familiar to most users, but in those cases we try to add an explanation
72
72
  * of the type.
73
73
  *
74
74
  * @private
@@ -99,7 +99,8 @@ function getTypeDescription(chart, types) {
99
99
  * @private
100
100
  */
101
101
  function stripEmptyHTMLTags(str) {
102
- return str.replace(/<(\w+)[^>]*?>\s*<\/\1>/g, '');
102
+ // Scan alert #[71]: Loop for nested patterns
103
+ return replaceNested(str, [/<([\w\-.:!]+)\b[^<>]*>\s*<\/\1>/g, '']);
103
104
  }
104
105
  /* *
105
106
  *
@@ -400,6 +401,10 @@ class InfoRegionsComponent extends AccessibilityComponent {
400
401
  * @private
401
402
  */
402
403
  getEndOfChartMarkerText() {
404
+ const endMarkerId = `highcharts-end-of-chart-marker-${this.chart.index}`, endMarker = getElement(endMarkerId);
405
+ if (endMarker) {
406
+ return endMarker.outerHTML;
407
+ }
403
408
  const chart = this.chart, markerText = chart.langFormat('accessibility.screenReaderSection.endOfChartMarker', { chart: chart }), id = 'highcharts-end-of-chart-marker-' + chart.index;
404
409
  return '<div id="' + id + '">' + markerText + '</div>';
405
410
  }
@@ -13,10 +13,10 @@
13
13
  import A from '../../Core/Animation/AnimationUtilities.js';
14
14
  const { animObject } = A;
15
15
  import H from '../../Core/Globals.js';
16
- const { composed, doc } = H;
16
+ const { doc } = H;
17
17
  import Legend from '../../Core/Legend/Legend.js';
18
18
  import U from '../../Core/Utilities.js';
19
- const { addEvent, fireEvent, isNumber, pick, pushUnique, syncTimeout } = U;
19
+ const { addEvent, fireEvent, isNumber, pick, syncTimeout } = U;
20
20
  import AccessibilityComponent from '../AccessibilityComponent.js';
21
21
  import KeyboardNavigationHandler from '../KeyboardNavigationHandler.js';
22
22
  import CU from '../Utils/ChartUtilities.js';
@@ -439,8 +439,8 @@ class LegendComponent extends AccessibilityComponent {
439
439
  * @private
440
440
  */
441
441
  function compose(ChartClass, LegendClass) {
442
- if (pushUnique(composed, compose)) {
443
- const chartProto = ChartClass.prototype;
442
+ const chartProto = ChartClass.prototype;
443
+ if (!chartProto.highlightLegendItem) {
444
444
  chartProto.highlightLegendItem = chartHighlightLegendItem;
445
445
  addEvent(LegendClass, 'afterColorizeItem', legendOnAfterColorizeItem);
446
446
  }
@@ -10,11 +10,8 @@
10
10
  *
11
11
  * */
12
12
  'use strict';
13
- import Chart from '../../Core/Chart/Chart.js';
14
- import H from '../../Core/Globals.js';
15
- const { composed } = H;
16
13
  import U from '../../Core/Utilities.js';
17
- const { attr, pushUnique } = U;
14
+ const { attr } = U;
18
15
  import AccessibilityComponent from '../AccessibilityComponent.js';
19
16
  import KeyboardNavigationHandler from '../KeyboardNavigationHandler.js';
20
17
  import ChartUtilities from '../Utils/ChartUtilities.js';
@@ -321,8 +318,8 @@ class MenuComponent extends AccessibilityComponent {
321
318
  * @private
322
319
  */
323
320
  function compose(ChartClass) {
324
- if (pushUnique(composed, compose)) {
325
- const chartProto = Chart.prototype;
321
+ const chartProto = ChartClass.prototype;
322
+ if (!chartProto.hideExportMenu) {
326
323
  chartProto.hideExportMenu = chartHideExportMenu;
327
324
  chartProto.highlightExportItem = chartHighlightExportItem;
328
325
  chartProto.highlightLastExportItem = chartHighlightLastExportItem;
@@ -181,9 +181,12 @@ class NavigatorComponent extends AccessibilityComponent {
181
181
  */
182
182
  updateNavigator(beforeAnnounce) {
183
183
  const performUpdate = (beforeAnnounce) => {
184
- const chart = this.chart, navigator = chart.navigator;
185
- if (navigator && this.minHandleProxy && this.maxHandleProxy) {
186
- const chartPos = chart.pointer.getChartPosition(), minNewX = parseFloat(this.minHandleProxy.value) /
184
+ const chart = this.chart, { navigator, pointer } = chart;
185
+ if (navigator &&
186
+ pointer &&
187
+ this.minHandleProxy &&
188
+ this.maxHandleProxy) {
189
+ const chartPos = pointer.getChartPosition(), minNewX = parseFloat(this.minHandleProxy.value) /
187
190
  100 * navigator.size, maxNewX = parseFloat(this.maxHandleProxy.value) /
188
191
  100 * navigator.size;
189
192
  // Fire fake events in order for each handle.
@@ -14,12 +14,9 @@ import AccessibilityComponent from '../AccessibilityComponent.js';
14
14
  import Announcer from '../Utils/Announcer.js';
15
15
  import ChartUtilities from '../Utils/ChartUtilities.js';
16
16
  const { unhideChartElementFromAT, getAxisRangeDescription } = ChartUtilities;
17
- import H from '../../Core/Globals.js';
18
- const { composed } = H;
19
17
  import KeyboardNavigationHandler from '../KeyboardNavigationHandler.js';
20
- import RangeSelector from '../../Stock/RangeSelector/RangeSelector.js';
21
18
  import U from '../../Core/Utilities.js';
22
- const { addEvent, attr, pushUnique } = U;
19
+ const { addEvent, attr } = U;
23
20
  /* *
24
21
  *
25
22
  * Functions
@@ -450,10 +447,10 @@ class RangeSelectorComponent extends AccessibilityComponent {
450
447
  * @private
451
448
  */
452
449
  function compose(ChartClass, RangeSelectorClass) {
453
- if (pushUnique(composed, compose)) {
454
- const chartProto = ChartClass.prototype;
450
+ const chartProto = ChartClass.prototype;
451
+ if (!chartProto.highlightRangeSelectorButton) {
455
452
  chartProto.highlightRangeSelectorButton = (chartHighlightRangeSelectorButton);
456
- addEvent(RangeSelector, 'afterBtnClick', rangeSelectorAfterBtnClick);
453
+ addEvent(RangeSelectorClass, 'afterBtnClick', rangeSelectorAfterBtnClick);
457
454
  }
458
455
  }
459
456
  RangeSelectorComponent.compose = compose;
@@ -35,10 +35,11 @@ var ForcedMarkersComposition;
35
35
  * @private
36
36
  */
37
37
  function compose(SeriesClass) {
38
- if (pushUnique(composed, compose)) {
38
+ if (pushUnique(composed, 'A11y.FM')) {
39
39
  addEvent(SeriesClass, 'afterSetOptions', seriesOnAfterSetOptions);
40
40
  addEvent(SeriesClass, 'render', seriesOnRender);
41
41
  addEvent(SeriesClass, 'afterRender', seriesOnAfterRender);
42
+ addEvent(SeriesClass, 'renderCanvas', seriesOnRenderCanvas);
42
43
  }
43
44
  }
44
45
  ForcedMarkersComposition.compose = compose;
@@ -190,7 +191,7 @@ var ForcedMarkersComposition;
190
191
  function unforceSeriesMarkerOptions(series) {
191
192
  const resetMarkerOptions = series.resetA11yMarkerOptions;
192
193
  if (resetMarkerOptions) {
193
- const originalOpactiy = resetMarkerOptions.states &&
194
+ const originalOpacity = resetMarkerOptions.states &&
194
195
  resetMarkerOptions.states.normal &&
195
196
  resetMarkerOptions.states.normal.opacity;
196
197
  // Temporarily set the old marker options to enabled in order to
@@ -202,12 +203,26 @@ var ForcedMarkersComposition;
202
203
  marker: {
203
204
  enabled: resetMarkerOptions.enabled,
204
205
  states: {
205
- normal: { opacity: originalOpactiy }
206
+ normal: { opacity: originalOpacity }
206
207
  }
207
208
  }
208
209
  });
209
210
  }
210
211
  }
212
+ /**
213
+ * Reset markers if series is boosted and had forced markers (#17320).
214
+ * @private
215
+ */
216
+ function seriesOnRenderCanvas() {
217
+ if (this.boosted && this.a11yMarkersForced) {
218
+ merge(true, this.options, {
219
+ marker: {
220
+ enabled: false
221
+ }
222
+ });
223
+ delete this.a11yMarkersForced;
224
+ }
225
+ }
211
226
  })(ForcedMarkersComposition || (ForcedMarkersComposition = {}));
212
227
  /* *
213
228
  *
@@ -262,7 +262,7 @@ class NewDataAnnouncer {
262
262
  * @private
263
263
  */
264
264
  function compose(SeriesClass) {
265
- if (pushUnique(composed, compose)) {
265
+ if (pushUnique(composed, 'A11y.NDA')) {
266
266
  addEvent(SeriesClass, 'addPoint', seriesOnAddPoint);
267
267
  addEvent(SeriesClass, 'updatedData', seriesOnUpdatedData);
268
268
  }
@@ -274,7 +274,8 @@ class NewDataAnnouncer {
274
274
  * @param {Highcharts.Point} point
275
275
  */
276
276
  function seriesOnAddPoint(e) {
277
- const chart = this.chart, newDataAnnouncer = this.newDataAnnouncer;
277
+ const chart = this.chart, newDataAnnouncer = chart.accessibility?.components
278
+ .series.newDataAnnouncer;
278
279
  if (newDataAnnouncer &&
279
280
  newDataAnnouncer.chart === chart &&
280
281
  chartHasAnnounceEnabled(chart)) {
@@ -290,7 +291,8 @@ class NewDataAnnouncer {
290
291
  * @param {Highcharts.Series} series
291
292
  */
292
293
  function seriesOnUpdatedData() {
293
- const chart = this.chart, newDataAnnouncer = this.newDataAnnouncer;
294
+ const chart = this.chart, newDataAnnouncer = chart.accessibility?.components
295
+ .series.newDataAnnouncer;
294
296
  if (newDataAnnouncer &&
295
297
  newDataAnnouncer.chart === chart &&
296
298
  chartHasAnnounceEnabled(chart)) {
@@ -15,9 +15,9 @@ import Series from '../../../Core/Series/Series.js';
15
15
  import SeriesRegistry from '../../../Core/Series/SeriesRegistry.js';
16
16
  const { seriesTypes } = SeriesRegistry;
17
17
  import H from '../../../Core/Globals.js';
18
- const { composed, doc } = H;
18
+ const { doc } = H;
19
19
  import U from '../../../Core/Utilities.js';
20
- const { defined, fireEvent, pushUnique } = U;
20
+ const { defined, fireEvent } = U;
21
21
  import KeyboardNavigationHandler from '../../KeyboardNavigationHandler.js';
22
22
  import EventProvider from '../../Utils/EventProvider.js';
23
23
  import ChartUtilities from '../../Utils/ChartUtilities.js';
@@ -567,8 +567,8 @@ class SeriesKeyboardNavigation {
567
567
  * @private
568
568
  */
569
569
  function compose(ChartClass, PointClass, SeriesClass) {
570
- if (pushUnique(composed, compose)) {
571
- const chartProto = ChartClass.prototype, pointProto = PointClass.prototype, seriesProto = SeriesClass.prototype;
570
+ const chartProto = ChartClass.prototype, pointProto = PointClass.prototype, seriesProto = SeriesClass.prototype;
571
+ if (!chartProto.highlightAdjacentPoint) {
572
572
  chartProto.highlightAdjacentPoint = chartHighlightAdjacentPoint;
573
573
  chartProto.highlightAdjacentPointVertical = (chartHighlightAdjacentPointVertical);
574
574
  chartProto.highlightAdjacentSeries = chartHighlightAdjacentSeries;
@@ -10,10 +10,8 @@
10
10
  *
11
11
  * */
12
12
  'use strict';
13
- import H from '../Core/Globals.js';
14
- const { composed } = H;
15
13
  import U from '../Core/Utilities.js';
16
- const { addEvent, pick, pushUnique } = U;
14
+ const { addEvent, pick } = U;
17
15
  /* *
18
16
  *
19
17
  * Composition
@@ -44,10 +42,12 @@ var FocusBorderComposition;
44
42
  * @private
45
43
  */
46
44
  function compose(ChartClass, SVGElementClass) {
47
- if (pushUnique(composed, compose)) {
48
- const chartProto = ChartClass.prototype, svgElementProto = SVGElementClass.prototype;
45
+ const chartProto = ChartClass.prototype, svgElementProto = SVGElementClass.prototype;
46
+ if (!chartProto.renderFocusBorder) {
49
47
  chartProto.renderFocusBorder = chartRenderFocusBorder;
50
48
  chartProto.setFocusToElement = chartSetFocusToElement;
49
+ }
50
+ if (!svgElementProto.addFocusBorder) {
51
51
  svgElementProto.addFocusBorder = svgElementAddFocusBorder;
52
52
  svgElementProto.removeFocusBorder = svgElementRemoveFocusBorder;
53
53
  }
@@ -62,23 +62,32 @@ function setHighContrastTheme(chart) {
62
62
  // Apply theme to chart
63
63
  const theme = (chart.options.accessibility.highContrastTheme);
64
64
  chart.update(theme, false);
65
+ const hasCustomColors = theme.colors?.length > 1;
65
66
  // Force series colors (plotOptions is not enough)
66
67
  chart.series.forEach(function (s) {
67
68
  const plotOpts = theme.plotOptions[s.type] || {};
68
- s.update({
69
+ const fillColor = hasCustomColors && s.colorIndex !== void 0 ?
70
+ theme.colors[s.colorIndex] :
71
+ plotOpts.color || 'window';
72
+ const seriesOptions = {
69
73
  color: plotOpts.color || 'windowText',
70
- colors: [plotOpts.color || 'windowText'],
71
- borderColor: plotOpts.borderColor || 'window'
72
- });
73
- // Force point colors if existing
74
- s.points.forEach(function (p) {
75
- if (p.options && p.options.color) {
76
- p.update({
77
- color: plotOpts.color || 'windowText',
78
- borderColor: plotOpts.borderColor || 'window'
79
- }, false);
80
- }
81
- });
74
+ colors: hasCustomColors ?
75
+ theme.colors : [plotOpts.color || 'windowText'],
76
+ borderColor: plotOpts.borderColor || 'window',
77
+ fillColor
78
+ };
79
+ s.update(seriesOptions, false);
80
+ if (s.points) {
81
+ // Force point colors if existing
82
+ s.points.forEach(function (p) {
83
+ if (p.options && p.options.color) {
84
+ p.update({
85
+ color: plotOpts.color || 'windowText',
86
+ borderColor: plotOpts.borderColor || 'window'
87
+ }, false);
88
+ }
89
+ });
90
+ }
82
91
  });
83
92
  // The redraw for each series and after is required for 3D pie
84
93
  // (workaround)
@@ -10,11 +10,6 @@
10
10
  *
11
11
  * */
12
12
  'use strict';
13
- /* *
14
- *
15
- * Theme
16
- *
17
- * */
18
13
  const theme = {
19
14
  chart: {
20
15
  backgroundColor: 'window'
@@ -32,7 +27,8 @@ const theme = {
32
27
  colorAxis: {
33
28
  minColor: 'windowText',
34
29
  maxColor: 'windowText',
35
- stops: []
30
+ stops: [],
31
+ dataClasses: []
36
32
  },
37
33
  colors: ['windowText'],
38
34
  xAxis: {
@@ -11,10 +11,10 @@
11
11
  * */
12
12
  'use strict';
13
13
  import H from '../Core/Globals.js';
14
- const { composed, doc, win } = H;
14
+ const { doc, win } = H;
15
15
  import MenuComponent from './Components/MenuComponent.js';
16
16
  import U from '../Core/Utilities.js';
17
- const { addEvent, fireEvent, pushUnique } = U;
17
+ const { addEvent, defined, fireEvent } = U;
18
18
  import EventProvider from './Utils/EventProvider.js';
19
19
  import HTMLUtilities from './Utils/HTMLUtilities.js';
20
20
  const { getElement, simulatedEventTarget } = HTMLUtilities;
@@ -298,8 +298,16 @@ class KeyboardNavigation {
298
298
  * @private
299
299
  */
300
300
  removeExitAnchor() {
301
- if (this.exitAnchor && this.exitAnchor.parentNode) {
302
- this.exitAnchor.parentNode.removeChild(this.exitAnchor);
301
+ // Remove event from element and from eventRemovers array to prevent
302
+ // memory leak (#20329).
303
+ if (this.exitAnchor) {
304
+ if (defined(this.exitAnchor.focusEventRemover)) {
305
+ this.eventProvider.removeEvent(this.exitAnchor.focusEventRemover);
306
+ delete this.exitAnchor.focusEventRemover;
307
+ }
308
+ if (this.exitAnchor.parentNode) {
309
+ this.exitAnchor.parentNode.removeChild(this.exitAnchor);
310
+ }
303
311
  delete this.exitAnchor;
304
312
  }
305
313
  }
@@ -309,7 +317,7 @@ class KeyboardNavigation {
309
317
  */
310
318
  addExitAnchorEventsToEl(element) {
311
319
  const chart = this.chart, keyboardNavigation = this;
312
- this.eventProvider.addEvent(element, 'focus', function (ev) {
320
+ element.focusEventRemover = this.eventProvider.addEvent(element, 'focus', function (ev) {
313
321
  const e = ev || win.event, focusComesFromChart = (e.relatedTarget &&
314
322
  chart.container.contains(e.relatedTarget)), comingInBackwards = !(focusComesFromChart || keyboardNavigation.exiting);
315
323
  if (chart.focusElement) {
@@ -331,7 +339,8 @@ class KeyboardNavigation {
331
339
  // Validate the module
332
340
  if (curModule &&
333
341
  curModule.validate && !curModule.validate()) {
334
- // Invalid. Try moving backwards to find next valid.
342
+ // Invalid.
343
+ // Try moving backwards to find next valid.
335
344
  keyboardNavigation.move(-1);
336
345
  }
337
346
  else if (curModule) {
@@ -393,8 +402,8 @@ class KeyboardNavigation {
393
402
  */
394
403
  function compose(ChartClass) {
395
404
  MenuComponent.compose(ChartClass);
396
- if (pushUnique(composed, compose)) {
397
- const chartProto = ChartClass.prototype;
405
+ const chartProto = ChartClass.prototype;
406
+ if (!chartProto.dismissPopupContent) {
398
407
  chartProto.dismissPopupContent = chartDismissPopupContent;
399
408
  addEvent(doc, 'keydown', documentOnKeydown);
400
409
  }