highcharts 9.2.0 → 9.3.1

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 (755) 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 +45 -0
  6. package/css/highcharts.scss +40 -0
  7. package/css/themes/dark-unica.css +45 -0
  8. package/css/themes/grid-light.css +45 -0
  9. package/css/themes/sand-signika.css +45 -0
  10. package/es-modules/Accessibility/A11yI18n.js +273 -224
  11. package/es-modules/Accessibility/Accessibility.js +237 -128
  12. package/es-modules/Accessibility/AccessibilityComponent.js +79 -314
  13. package/es-modules/Accessibility/Components/AnnotationsA11y.js +10 -0
  14. package/es-modules/Accessibility/Components/ContainerComponent.js +52 -27
  15. package/es-modules/Accessibility/Components/InfoRegionsComponent.js +173 -104
  16. package/es-modules/Accessibility/Components/LegendComponent.js +97 -65
  17. package/es-modules/Accessibility/Components/MenuComponent.js +243 -149
  18. package/es-modules/Accessibility/Components/RangeSelectorComponent.js +170 -88
  19. package/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +152 -115
  20. package/es-modules/Accessibility/Components/SeriesComponent/NewDataAnnouncer.js +133 -68
  21. package/es-modules/Accessibility/Components/SeriesComponent/SeriesComponent.js +64 -27
  22. package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +38 -21
  23. package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +380 -325
  24. package/es-modules/Accessibility/Components/ZoomComponent.js +28 -20
  25. package/es-modules/Accessibility/FocusBorder.js +192 -147
  26. package/es-modules/Accessibility/HighContrastMode.js +78 -66
  27. package/es-modules/Accessibility/HighContrastTheme.js +10 -0
  28. package/es-modules/Accessibility/KeyboardNavigation.js +146 -71
  29. package/es-modules/Accessibility/KeyboardNavigationHandler.js +71 -44
  30. package/es-modules/Accessibility/Options/DeprecatedOptions.js +11 -1
  31. package/es-modules/Accessibility/Options/LangOptions.js +1 -2
  32. package/es-modules/Accessibility/Options/Options.js +32 -17
  33. package/es-modules/Accessibility/ProxyElement.js +212 -0
  34. package/es-modules/Accessibility/ProxyProvider.js +305 -0
  35. package/es-modules/Accessibility/Utils/Announcer.js +15 -8
  36. package/es-modules/Accessibility/Utils/ChartUtilities.js +41 -16
  37. package/es-modules/Accessibility/Utils/DOMElementProvider.js +27 -15
  38. package/es-modules/Accessibility/Utils/EventProvider.js +27 -17
  39. package/es-modules/Accessibility/Utils/HTMLUtilities.js +125 -30
  40. package/es-modules/Core/Axis/Axis.js +37 -30
  41. package/es-modules/Core/Axis/AxisDefaults.js +35 -24
  42. package/es-modules/Core/Axis/Color/ColorAxisComposition.js +54 -4
  43. package/es-modules/Core/Axis/Color/ColorAxisDefaults.js +5 -5
  44. package/es-modules/Core/Axis/OrdinalAxis.js +5 -13
  45. package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +4 -5
  46. package/es-modules/Core/Axis/ScrollbarAxis.js +10 -3
  47. package/es-modules/Core/Axis/TreeGridAxis.js +2 -2
  48. package/es-modules/Core/Axis/TreeGridTick.js +1 -2
  49. package/es-modules/Core/Chart/Chart.js +2 -3
  50. package/es-modules/Core/Chart/ChartDefaults.js +3 -4
  51. package/es-modules/Core/Chart/ChartNavigationComposition.js +92 -0
  52. package/es-modules/Core/Chart/MapChart.js +10 -22
  53. package/es-modules/Core/Chart/StockChart.js +3 -293
  54. package/es-modules/Core/Color/Palettes.js +22 -0
  55. package/es-modules/Core/DefaultOptions.js +19 -17
  56. package/es-modules/Core/Foundation.js +39 -31
  57. package/es-modules/Core/Globals.js +1 -1
  58. package/es-modules/Core/HttpUtilities.js +3 -3
  59. package/es-modules/Core/Legend/Legend.js +7 -3
  60. package/es-modules/Core/Navigator.js +7 -8
  61. package/es-modules/Core/Pointer.js +39 -36
  62. package/es-modules/Core/Renderer/HTML/AST.js +3 -6
  63. package/es-modules/Core/Renderer/HTML/HTMLElement.js +23 -18
  64. package/es-modules/Core/Renderer/SVG/SVGElement.js +3 -4
  65. package/es-modules/Core/Renderer/SVG/SVGRenderer.js +21 -18
  66. package/es-modules/Core/Renderer/SVG/TextBuilder.js +17 -13
  67. package/es-modules/Core/ScrollbarDefaults.js +10 -9
  68. package/es-modules/Core/Series/DataLabel.js +2 -3
  69. package/es-modules/Core/Series/Point.js +5 -3
  70. package/es-modules/Core/Series/Series.js +156 -162
  71. package/es-modules/Core/Series/SeriesDefaults.js +3 -4
  72. package/es-modules/Core/Series/SeriesRegistry.js +1 -2
  73. package/es-modules/Core/Tooltip.js +44 -17
  74. package/es-modules/Core/Utilities.js +15 -7
  75. package/es-modules/Data/DataConverter.js +489 -0
  76. package/es-modules/Data/DataPromise.js +252 -0
  77. package/es-modules/Data/DataSeriesConverter.js +203 -0
  78. package/es-modules/Data/DataTable.js +1204 -0
  79. package/es-modules/Data/Modifiers/ChainModifier.js +299 -0
  80. package/es-modules/Data/Modifiers/DataModifier.js +303 -0
  81. package/es-modules/Data/Modifiers/GroupModifier.js +144 -0
  82. package/es-modules/Data/Modifiers/InvertModifier.js +254 -0
  83. package/es-modules/Data/Modifiers/RangeModifier.js +143 -0
  84. package/es-modules/Data/Modifiers/SeriesPointsModifier.js +110 -0
  85. package/es-modules/Data/Modifiers/SortModifier.js +249 -0
  86. package/es-modules/Data/Parsers/CSVParser.js +399 -0
  87. package/es-modules/Data/Parsers/DataParser.js +101 -0
  88. package/es-modules/Data/Parsers/GoogleSheetsParser.js +220 -0
  89. package/es-modules/Data/Parsers/HTMLTableParser.js +213 -0
  90. package/es-modules/Data/Stores/CSVStore.js +317 -0
  91. package/es-modules/Data/Stores/DataStore.js +276 -0
  92. package/es-modules/Data/Stores/GoogleSheetsStore.js +167 -0
  93. package/es-modules/Data/Stores/HTMLTableStore.js +351 -0
  94. package/es-modules/Extensions/Annotations/Annotations.js +61 -11
  95. package/es-modules/Extensions/Annotations/ControlPoint.js +1 -1
  96. package/es-modules/Extensions/Annotations/Controllables/ControllableEllipse.js +199 -0
  97. package/es-modules/Extensions/Annotations/Mixins/ControllableMixin.js +7 -1
  98. package/es-modules/Extensions/Annotations/NavigationBindings.js +90 -28
  99. package/es-modules/Extensions/Annotations/Popup.js +479 -141
  100. package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +51 -2
  101. package/es-modules/Extensions/Annotations/Types/CrookedLine.js +1 -1
  102. package/es-modules/Extensions/Annotations/Types/Fibonacci.js +2 -3
  103. package/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +219 -0
  104. package/es-modules/Extensions/Annotations/Types/InfinityLine.js +1 -1
  105. package/es-modules/Extensions/Annotations/Types/Measure.js +14 -8
  106. package/es-modules/Extensions/Annotations/Types/Pitchfork.js +5 -5
  107. package/es-modules/Extensions/Annotations/Types/TimeCycles.js +207 -0
  108. package/es-modules/Extensions/Annotations/Types/Tunnel.js +3 -5
  109. package/es-modules/Extensions/Annotations/Types/VerticalLine.js +1 -1
  110. package/es-modules/Extensions/Boost/BoostOptions.js +2 -2
  111. package/es-modules/Extensions/Boost/BoostOverrides.js +3 -1
  112. package/es-modules/Extensions/Boost/WGLShader.js +4 -3
  113. package/es-modules/Extensions/BoostCanvas.js +1 -2
  114. package/es-modules/Extensions/CurrentDateIndication.js +2 -3
  115. package/es-modules/Extensions/Data.js +73 -67
  116. package/es-modules/Extensions/DataGrouping.js +33 -18
  117. package/es-modules/Extensions/Debugger/ErrorMessages.js +2 -2
  118. package/es-modules/Extensions/DownloadURL.js +2 -2
  119. package/es-modules/Extensions/DragPanes.js +1 -2
  120. package/es-modules/Extensions/Drilldown.js +2 -3
  121. package/es-modules/Extensions/Exporting/Exporting.js +12 -11
  122. package/es-modules/Extensions/Exporting/ExportingDefaults.js +8 -15
  123. package/es-modules/Extensions/GeoJSON.js +39 -63
  124. package/es-modules/Extensions/MarkerClusters.js +115 -97
  125. package/es-modules/Extensions/NoDataToDisplay.js +1 -2
  126. package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +10 -9
  127. package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
  128. package/es-modules/Extensions/Oldie/Oldie.js +2 -3
  129. package/es-modules/Extensions/Pane.js +5 -6
  130. package/es-modules/Extensions/Polar.js +1 -1
  131. package/es-modules/Extensions/RangeSelector.js +3 -4
  132. package/es-modules/Extensions/Sonification/ChartSonify.js +247 -637
  133. package/es-modules/Extensions/Sonification/Earcon.js +136 -102
  134. package/es-modules/Extensions/Sonification/Instrument.js +496 -426
  135. package/es-modules/Extensions/Sonification/MusicalFrequencies.js +10 -0
  136. package/es-modules/Extensions/Sonification/Options.js +10 -0
  137. package/es-modules/Extensions/Sonification/PointSonify.js +203 -152
  138. package/es-modules/Extensions/Sonification/SeriesSonify.js +459 -0
  139. package/es-modules/Extensions/Sonification/SignalHandler.js +124 -0
  140. package/es-modules/Extensions/Sonification/Sonification.js +26 -52
  141. package/es-modules/Extensions/Sonification/{Utilities.js → SonificationUtilities.js} +62 -84
  142. package/es-modules/Extensions/Sonification/Timeline.js +255 -567
  143. package/es-modules/Extensions/Sonification/TimelineEvent.js +158 -0
  144. package/es-modules/Extensions/Sonification/TimelinePath.js +311 -0
  145. package/es-modules/Maps/MapNavigation.js +27 -64
  146. package/es-modules/Maps/MapNavigationOptionsDefault.js +3 -0
  147. package/es-modules/Maps/MapPointer.js +7 -5
  148. package/es-modules/Maps/MapView.js +450 -0
  149. package/es-modules/Maps/MapViewOptionsDefault.js +97 -0
  150. package/es-modules/Maps/Projection.js +436 -0
  151. package/es-modules/Maps/ProjectionDefinition.js +9 -0
  152. package/es-modules/Maps/Projections/EqualEarth.js +42 -0
  153. package/es-modules/Maps/Projections/LambertConformalConic.js +52 -0
  154. package/es-modules/Maps/Projections/Miller.js +16 -0
  155. package/es-modules/Maps/Projections/Orthographic.js +26 -0
  156. package/es-modules/Maps/Projections/ProjectionRegistry.js +19 -0
  157. package/es-modules/Maps/Projections/WebMercator.js +24 -0
  158. package/es-modules/Series/AreaRange/AreaRangeSeries.js +4 -5
  159. package/es-modules/Series/Bellcurve/BellcurveSeries.js +2 -8
  160. package/es-modules/Series/BoxPlot/BoxPlotSeries.js +1 -2
  161. package/es-modules/Series/Bubble/BubbleLegendDefaults.js +1 -2
  162. package/es-modules/Series/Bubble/BubbleLegendItem.js +3 -3
  163. package/es-modules/Series/Bubble/BubblePoint.js +5 -0
  164. package/es-modules/Series/Bubble/BubbleSeries.js +90 -50
  165. package/es-modules/Series/Candlestick/CandlestickSeries.js +10 -18
  166. package/es-modules/{Mixins/CenteredSeries.js → Series/CenteredUtilities.js} +45 -23
  167. package/es-modules/Series/ColorMapComposition.js +109 -0
  168. package/es-modules/Series/Column/ColumnDataLabel.js +5 -5
  169. package/es-modules/Series/Column/ColumnSeries.js +3 -4
  170. package/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +6 -6
  171. package/es-modules/Series/DataModifyComposition.js +539 -0
  172. package/es-modules/Series/DependencyWheel/DependencyWheelPoint.js +2 -6
  173. package/es-modules/Series/DerivedComposition.js +137 -0
  174. package/es-modules/Series/DrawPointComposition.js +111 -0
  175. package/es-modules/Series/Dumbbell/DumbbellSeries.js +2 -3
  176. package/es-modules/Series/ErrorBar/ErrorBarSeries.js +1 -2
  177. package/es-modules/Series/Flags/FlagsSeries.js +18 -25
  178. package/es-modules/Series/Funnel/FunnelSeries.js +6 -5
  179. package/es-modules/Series/Gantt/GanttSeries.js +0 -2
  180. package/es-modules/Series/Gauge/GaugePoint.js +1 -1
  181. package/es-modules/Series/Gauge/GaugeSeries.js +7 -7
  182. package/es-modules/Series/HLC/HLCPoint.js +55 -0
  183. package/es-modules/Series/HLC/HLCSeries.js +383 -0
  184. package/es-modules/Series/Heatmap/HeatmapPoint.js +3 -4
  185. package/es-modules/Series/Heatmap/HeatmapSeries.js +19 -6
  186. package/es-modules/Series/HeikinAshi/HeikinAshiSeries.js +2 -3
  187. package/es-modules/Series/Histogram/HistogramSeries.js +3 -7
  188. package/es-modules/Series/HollowCandlestick/HollowCandlestickPoint.js +2 -2
  189. package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +33 -34
  190. package/es-modules/Series/Line/LineSeries.js +1 -2
  191. package/es-modules/Series/Map/MapPoint.js +23 -16
  192. package/es-modules/Series/Map/MapSeries.js +271 -309
  193. package/es-modules/Series/MapBubble/MapBubblePoint.js +0 -3
  194. package/es-modules/Series/MapBubble/MapBubbleSeries.js +10 -1
  195. package/es-modules/Series/MapLine/MapLineSeries.js +2 -0
  196. package/es-modules/Series/MapPoint/MapPointPoint.js +5 -1
  197. package/es-modules/Series/MapPoint/MapPointSeries.js +99 -14
  198. package/es-modules/Series/Networkgraph/Networkgraph.js +5 -5
  199. package/es-modules/{Mixins/Nodes.js → Series/NodesComposition.js} +76 -29
  200. package/es-modules/Series/OHLC/OHLCPoint.js +2 -6
  201. package/es-modules/Series/OHLC/OHLCSeries.js +55 -183
  202. package/es-modules/{Mixins/OnSeries.js → Series/OnSeriesComposition.js} +53 -21
  203. package/es-modules/Series/Organization/OrganizationSeries.js +2 -3
  204. package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +46 -6
  205. package/es-modules/Series/ParetoSeries/ParetoSeries.js +3 -7
  206. package/es-modules/Series/Pie/PieDataLabel.js +1 -2
  207. package/es-modules/Series/Pie/PieSeries.js +6 -7
  208. package/es-modules/Series/Sankey/SankeyPoint.js +0 -4
  209. package/es-modules/Series/Sankey/SankeySeries.js +89 -20
  210. package/es-modules/Series/Sunburst/SunburstPoint.js +2 -3
  211. package/es-modules/Series/Sunburst/SunburstSeries.js +4 -4
  212. package/es-modules/Series/Tilemap/TilemapPoint.js +2 -3
  213. package/es-modules/Series/Timeline/TimelineSeries.js +3 -4
  214. package/es-modules/{Mixins/TreeSeries.js → Series/TreeUtilities.js} +86 -76
  215. package/es-modules/Series/Treemap/TreemapPoint.js +2 -2
  216. package/es-modules/Series/Treemap/TreemapSeries.js +8 -8
  217. package/es-modules/Series/Venn/VennPoint.js +16 -7
  218. package/es-modules/Series/Venn/VennSeries.js +5 -8
  219. package/es-modules/Series/Venn/VennUtils.js +550 -439
  220. package/es-modules/Series/Waterfall/WaterfallSeries.js +2 -3
  221. package/es-modules/Series/Windbarb/WindbarbSeries.js +23 -24
  222. package/es-modules/Series/Wordcloud/WordcloudPoint.js +8 -6
  223. package/es-modules/Series/Wordcloud/WordcloudSeries.js +24 -20
  224. package/es-modules/Series/Wordcloud/WordcloudUtils.js +673 -484
  225. package/es-modules/Series/XRange/XRangePoint.js +1 -0
  226. package/es-modules/Stock/Indicators/ABands/ABandsIndicator.js +3 -6
  227. package/es-modules/Stock/Indicators/AO/AOIndicator.js +2 -3
  228. package/es-modules/Stock/Indicators/APO/APOIndicator.js +14 -20
  229. package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +3 -6
  230. package/es-modules/Stock/Indicators/AroonOscillator/AroonOscillatorIndicator.js +11 -13
  231. package/es-modules/Stock/Indicators/ArrayUtilities.js +47 -0
  232. package/es-modules/Stock/Indicators/BB/BBIndicator.js +27 -11
  233. package/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +6 -12
  234. package/es-modules/Stock/Indicators/DEMA/DEMAIndicator.js +1 -11
  235. package/es-modules/Stock/Indicators/DMI/DMIIndicator.js +19 -11
  236. package/es-modules/Stock/Indicators/DisparityIndex/DisparityIndexIndicator.js +17 -11
  237. package/es-modules/Stock/Indicators/EMA/EMAIndicator.js +1 -3
  238. package/es-modules/Stock/Indicators/KeltnerChannels/KeltnerChannelsIndicator.js +11 -9
  239. package/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +8 -16
  240. package/es-modules/Stock/Indicators/LinearRegression/LinearRegression.js +2 -2
  241. package/es-modules/Stock/Indicators/LinearRegressionAngle/LinearRegressionAngle.js +2 -2
  242. package/es-modules/Stock/Indicators/LinearRegressionIntercept/LinearRegressionIntercept.js +2 -2
  243. package/es-modules/Stock/Indicators/LinearRegressionSlopes/LinearRegressionSlopes.js +2 -2
  244. package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +1 -2
  245. package/es-modules/{Mixins/MultipleLines.js → Stock/Indicators/MultipleLinesComposition.js} +136 -87
  246. package/es-modules/Stock/Indicators/NATR/NATRIndicator.js +1 -3
  247. package/es-modules/Stock/Indicators/PC/PCIndicator.js +14 -13
  248. package/es-modules/Stock/Indicators/PPO/PPOIndicator.js +1 -11
  249. package/es-modules/Stock/Indicators/SMA/SMAComposition.js +0 -26
  250. package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +32 -49
  251. package/es-modules/Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js +0 -8
  252. package/es-modules/Stock/Indicators/Stochastic/StochasticIndicator.js +15 -8
  253. package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +4 -6
  254. package/es-modules/Stock/Indicators/TEMA/TEMAIndicator.js +26 -11
  255. package/es-modules/Stock/Indicators/TRIX/TRIXIndicator.js +6 -12
  256. package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +23 -7
  257. package/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +2 -3
  258. package/es-modules/Stock/StockToolsBindings.js +144 -42
  259. package/es-modules/Stock/StockToolsGui.js +409 -15
  260. package/es-modules/masters/highcharts-3d.src.js +1 -1
  261. package/es-modules/masters/highcharts-gantt.src.js +1 -1
  262. package/es-modules/masters/highcharts-more.src.js +1 -1
  263. package/es-modules/masters/highcharts.src.js +1 -1
  264. package/es-modules/masters/highmaps.src.js +1 -1
  265. package/es-modules/masters/highstock.src.js +1 -1
  266. package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
  267. package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
  268. package/es-modules/masters/indicators/ao.src.js +1 -1
  269. package/es-modules/masters/indicators/apo.src.js +1 -1
  270. package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
  271. package/es-modules/masters/indicators/aroon.src.js +1 -1
  272. package/es-modules/masters/indicators/atr.src.js +1 -1
  273. package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
  274. package/es-modules/masters/indicators/cci.src.js +1 -1
  275. package/es-modules/masters/indicators/chaikin.src.js +1 -1
  276. package/es-modules/masters/indicators/cmf.src.js +1 -1
  277. package/es-modules/masters/indicators/cmo.src.js +1 -1
  278. package/es-modules/masters/indicators/dema.src.js +1 -1
  279. package/es-modules/masters/indicators/disparity-index.src.js +1 -1
  280. package/es-modules/masters/indicators/dmi.src.js +1 -1
  281. package/es-modules/masters/indicators/dpo.src.js +1 -1
  282. package/es-modules/masters/indicators/ema.src.js +4 -10
  283. package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
  284. package/es-modules/masters/indicators/indicators-all.src.js +2 -2
  285. package/es-modules/masters/indicators/indicators.src.js +2 -1
  286. package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
  287. package/es-modules/masters/indicators/klinger.src.js +1 -1
  288. package/es-modules/masters/indicators/macd.src.js +1 -1
  289. package/es-modules/masters/indicators/mfi.src.js +1 -1
  290. package/es-modules/masters/indicators/momentum.src.js +1 -1
  291. package/es-modules/masters/indicators/natr.src.js +1 -1
  292. package/es-modules/masters/indicators/obv.src.js +1 -1
  293. package/es-modules/masters/indicators/pivot-points.src.js +1 -1
  294. package/es-modules/masters/indicators/ppo.src.js +1 -1
  295. package/es-modules/masters/indicators/price-channel.src.js +1 -1
  296. package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
  297. package/es-modules/masters/indicators/psar.src.js +1 -1
  298. package/es-modules/masters/indicators/regressions.src.js +1 -1
  299. package/es-modules/masters/indicators/roc.src.js +1 -1
  300. package/es-modules/masters/indicators/rsi.src.js +1 -1
  301. package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
  302. package/es-modules/masters/indicators/stochastic.src.js +1 -1
  303. package/es-modules/masters/indicators/supertrend.src.js +1 -1
  304. package/es-modules/masters/indicators/tema.src.js +1 -1
  305. package/es-modules/masters/indicators/trendline.src.js +1 -1
  306. package/es-modules/masters/indicators/trix.src.js +1 -1
  307. package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
  308. package/es-modules/masters/indicators/vwap.src.js +1 -1
  309. package/es-modules/masters/indicators/williams-r.src.js +1 -1
  310. package/es-modules/masters/indicators/wma.src.js +1 -1
  311. package/es-modules/masters/indicators/zigzag.src.js +1 -1
  312. package/es-modules/masters/modules/accessibility.src.js +16 -2
  313. package/es-modules/masters/modules/annotations-advanced.src.js +3 -1
  314. package/es-modules/masters/modules/annotations.src.js +1 -1
  315. package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
  316. package/es-modules/masters/modules/boost-canvas.src.js +1 -1
  317. package/es-modules/masters/modules/boost.src.js +1 -1
  318. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  319. package/es-modules/masters/modules/bullet.src.js +1 -1
  320. package/es-modules/masters/modules/coloraxis.src.js +1 -1
  321. package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
  322. package/es-modules/masters/modules/cylinder.src.js +1 -1
  323. package/es-modules/masters/modules/data.src.js +6 -3
  324. package/es-modules/masters/modules/datagrouping.src.js +1 -1
  325. package/es-modules/masters/modules/debugger.src.js +1 -1
  326. package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
  327. package/es-modules/masters/modules/dotplot.src.js +1 -1
  328. package/es-modules/masters/modules/drag-panes.src.js +1 -1
  329. package/es-modules/masters/modules/draggable-points.src.js +1 -1
  330. package/es-modules/masters/modules/drilldown.src.js +1 -1
  331. package/es-modules/masters/modules/dumbbell.src.js +1 -1
  332. package/es-modules/masters/modules/export-data.src.js +1 -1
  333. package/es-modules/masters/modules/exporting.src.js +1 -1
  334. package/es-modules/masters/modules/full-screen.src.js +1 -1
  335. package/es-modules/masters/modules/funnel.src.js +1 -1
  336. package/es-modules/masters/modules/funnel3d.src.js +1 -1
  337. package/es-modules/masters/modules/gantt.src.js +1 -1
  338. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  339. package/es-modules/masters/modules/heatmap.src.js +1 -2
  340. package/es-modules/masters/modules/heikinashi.src.js +1 -1
  341. package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
  342. package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
  343. package/es-modules/masters/modules/item-series.src.js +1 -1
  344. package/es-modules/masters/modules/lollipop.src.js +1 -1
  345. package/es-modules/masters/modules/map.src.js +1 -3
  346. package/es-modules/masters/modules/marker-clusters.src.js +1 -1
  347. package/es-modules/masters/modules/networkgraph.src.js +1 -1
  348. package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
  349. package/es-modules/masters/modules/offline-exporting.src.js +1 -1
  350. package/es-modules/masters/modules/oldie-polyfills.src.js +1 -1
  351. package/es-modules/masters/modules/oldie.src.js +1 -1
  352. package/es-modules/masters/modules/organization.src.js +1 -1
  353. package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  354. package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
  355. package/es-modules/masters/modules/pareto.src.js +1 -1
  356. package/es-modules/masters/modules/pathfinder.src.js +1 -1
  357. package/es-modules/masters/modules/pattern-fill.src.js +1 -1
  358. package/es-modules/masters/modules/price-indicator.src.js +1 -1
  359. package/es-modules/masters/modules/pyramid3d.src.js +1 -1
  360. package/es-modules/masters/modules/sankey.src.js +1 -1
  361. package/es-modules/masters/modules/series-label.src.js +1 -1
  362. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  363. package/es-modules/masters/modules/sonification.src.js +33 -2
  364. package/es-modules/masters/modules/static-scale.src.js +1 -1
  365. package/es-modules/masters/modules/stock-tools.src.js +1 -1
  366. package/es-modules/masters/modules/stock.src.js +4 -1
  367. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  368. package/es-modules/masters/modules/sunburst.src.js +1 -1
  369. package/es-modules/masters/modules/tilemap.src.js +1 -1
  370. package/es-modules/masters/modules/timeline.src.js +1 -1
  371. package/es-modules/masters/modules/treegrid.src.js +1 -1
  372. package/es-modules/masters/modules/treemap.src.js +1 -1
  373. package/es-modules/masters/modules/variable-pie.src.js +1 -1
  374. package/es-modules/masters/modules/variwide.src.js +1 -1
  375. package/es-modules/masters/modules/vector.src.js +1 -1
  376. package/es-modules/masters/modules/venn.src.js +1 -1
  377. package/es-modules/masters/modules/windbarb.src.js +1 -1
  378. package/es-modules/masters/modules/wordcloud.src.js +1 -1
  379. package/es-modules/masters/modules/xrange.src.js +1 -1
  380. package/es-modules/masters/themes/avocado.src.js +1 -1
  381. package/es-modules/masters/themes/dark-blue.src.js +1 -1
  382. package/es-modules/masters/themes/dark-green.src.js +1 -1
  383. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  384. package/es-modules/masters/themes/gray.src.js +1 -1
  385. package/es-modules/masters/themes/grid-light.src.js +1 -1
  386. package/es-modules/masters/themes/grid.src.js +1 -1
  387. package/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
  388. package/es-modules/masters/themes/high-contrast-light.src.js +1 -1
  389. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  390. package/es-modules/masters/themes/skies.src.js +1 -1
  391. package/es-modules/masters/themes/sunset.src.js +1 -1
  392. package/highcharts-3d.js +1 -1
  393. package/highcharts-3d.src.js +1 -1
  394. package/highcharts-gantt.js +799 -801
  395. package/highcharts-gantt.js.map +1 -1
  396. package/highcharts-gantt.src.js +793 -755
  397. package/highcharts-more.js +194 -193
  398. package/highcharts-more.js.map +1 -1
  399. package/highcharts-more.src.js +208 -120
  400. package/highcharts.d.ts +9814 -4231
  401. package/highcharts.js +585 -587
  402. package/highcharts.js.map +1 -1
  403. package/highcharts.src.d.ts +9814 -4231
  404. package/highcharts.src.js +626 -603
  405. package/highmaps.js +728 -707
  406. package/highmaps.js.map +1 -1
  407. package/highmaps.src.js +2824 -1613
  408. package/highstock.js +788 -782
  409. package/highstock.js.map +1 -1
  410. package/highstock.src.js +1913 -1284
  411. package/indicators/acceleration-bands.js +10 -9
  412. package/indicators/acceleration-bands.js.map +1 -1
  413. package/indicators/acceleration-bands.src.js +156 -112
  414. package/indicators/accumulation-distribution.js +1 -1
  415. package/indicators/accumulation-distribution.src.js +1 -1
  416. package/indicators/ao.js +6 -6
  417. package/indicators/ao.js.map +1 -1
  418. package/indicators/ao.src.js +4 -4
  419. package/indicators/apo.js +5 -6
  420. package/indicators/apo.js.map +1 -1
  421. package/indicators/apo.src.js +16 -84
  422. package/indicators/aroon-oscillator.js +9 -9
  423. package/indicators/aroon-oscillator.js.map +1 -1
  424. package/indicators/aroon-oscillator.src.js +160 -177
  425. package/indicators/aroon.js +9 -9
  426. package/indicators/aroon.js.map +1 -1
  427. package/indicators/aroon.src.js +156 -112
  428. package/indicators/atr.js +1 -1
  429. package/indicators/atr.src.js +1 -1
  430. package/indicators/bollinger-bands.js +10 -9
  431. package/indicators/bollinger-bands.js.map +1 -1
  432. package/indicators/bollinger-bands.src.js +180 -117
  433. package/indicators/cci.js +1 -1
  434. package/indicators/cci.src.js +1 -1
  435. package/indicators/chaikin.js +8 -9
  436. package/indicators/chaikin.js.map +1 -1
  437. package/indicators/chaikin.src.js +8 -76
  438. package/indicators/cmf.js +1 -1
  439. package/indicators/cmf.src.js +1 -1
  440. package/indicators/cmo.js +1 -1
  441. package/indicators/cmo.src.js +1 -1
  442. package/indicators/dema.js +5 -6
  443. package/indicators/dema.js.map +1 -1
  444. package/indicators/dema.src.js +3 -75
  445. package/indicators/disparity-index.js +6 -7
  446. package/indicators/disparity-index.js.map +1 -1
  447. package/indicators/disparity-index.src.js +19 -74
  448. package/indicators/dmi.js +11 -11
  449. package/indicators/dmi.js.map +1 -1
  450. package/indicators/dmi.src.js +173 -116
  451. package/indicators/dpo.js +1 -1
  452. package/indicators/dpo.src.js +1 -1
  453. package/indicators/ema.js +1 -13
  454. package/indicators/ema.js.map +1 -1
  455. package/indicators/ema.src.js +7 -188
  456. package/indicators/ichimoku-kinko-hyo.js +1 -1
  457. package/indicators/ichimoku-kinko-hyo.src.js +1 -1
  458. package/indicators/indicators-all.js +197 -203
  459. package/indicators/indicators-all.js.map +1 -1
  460. package/indicators/indicators-all.src.js +677 -743
  461. package/indicators/indicators.js +12 -12
  462. package/indicators/indicators.js.map +1 -1
  463. package/indicators/indicators.src.js +213 -143
  464. package/indicators/keltner-channels.js +10 -10
  465. package/indicators/keltner-channels.js.map +1 -1
  466. package/indicators/keltner-channels.src.js +164 -118
  467. package/indicators/klinger.js +12 -13
  468. package/indicators/klinger.js.map +1 -1
  469. package/indicators/klinger.src.js +161 -184
  470. package/indicators/macd.js +2 -2
  471. package/indicators/macd.js.map +1 -1
  472. package/indicators/macd.src.js +2 -3
  473. package/indicators/mfi.js +1 -1
  474. package/indicators/mfi.src.js +1 -1
  475. package/indicators/momentum.js +1 -1
  476. package/indicators/momentum.src.js +1 -1
  477. package/indicators/natr.js +3 -3
  478. package/indicators/natr.js.map +1 -1
  479. package/indicators/natr.src.js +2 -4
  480. package/indicators/obv.js +1 -1
  481. package/indicators/obv.src.js +1 -1
  482. package/indicators/pivot-points.js +1 -1
  483. package/indicators/pivot-points.src.js +1 -1
  484. package/indicators/ppo.js +5 -6
  485. package/indicators/ppo.js.map +1 -1
  486. package/indicators/ppo.src.js +3 -75
  487. package/indicators/price-channel.js +9 -9
  488. package/indicators/price-channel.js.map +1 -1
  489. package/indicators/price-channel.src.js +207 -168
  490. package/indicators/price-envelopes.js +1 -1
  491. package/indicators/price-envelopes.src.js +1 -1
  492. package/indicators/psar.js +1 -1
  493. package/indicators/psar.src.js +1 -1
  494. package/indicators/regressions.js +1 -1
  495. package/indicators/regressions.src.js +9 -9
  496. package/indicators/roc.js +1 -1
  497. package/indicators/roc.src.js +1 -1
  498. package/indicators/rsi.js +1 -1
  499. package/indicators/rsi.src.js +1 -1
  500. package/indicators/slow-stochastic.js +5 -6
  501. package/indicators/slow-stochastic.js.map +1 -1
  502. package/indicators/slow-stochastic.src.js +2 -72
  503. package/indicators/stochastic.js +10 -10
  504. package/indicators/stochastic.js.map +1 -1
  505. package/indicators/stochastic.src.js +209 -164
  506. package/indicators/supertrend.js +10 -10
  507. package/indicators/supertrend.js.map +1 -1
  508. package/indicators/supertrend.src.js +6 -7
  509. package/indicators/tema.js +6 -7
  510. package/indicators/tema.js.map +1 -1
  511. package/indicators/tema.src.js +28 -75
  512. package/indicators/trendline.js +1 -1
  513. package/indicators/trendline.src.js +1 -1
  514. package/indicators/trix.js +4 -5
  515. package/indicators/trix.js.map +1 -1
  516. package/indicators/trix.src.js +8 -76
  517. package/indicators/volume-by-price.js +16 -16
  518. package/indicators/volume-by-price.js.map +1 -1
  519. package/indicators/volume-by-price.src.js +24 -7
  520. package/indicators/vwap.js +1 -1
  521. package/indicators/vwap.src.js +1 -1
  522. package/indicators/williams-r.js +5 -6
  523. package/indicators/williams-r.js.map +1 -1
  524. package/indicators/williams-r.src.js +41 -51
  525. package/indicators/wma.js +1 -1
  526. package/indicators/wma.src.js +1 -1
  527. package/indicators/zigzag.js +1 -1
  528. package/indicators/zigzag.src.js +1 -1
  529. package/modules/accessibility.d.ts +5 -0
  530. package/modules/accessibility.js +237 -216
  531. package/modules/accessibility.js.map +1 -1
  532. package/modules/accessibility.src.d.ts +5 -0
  533. package/modules/accessibility.src.js +7400 -6078
  534. package/modules/annotations-advanced.d.ts +30 -0
  535. package/modules/annotations-advanced.js +192 -165
  536. package/modules/annotations-advanced.js.map +1 -1
  537. package/modules/annotations-advanced.src.d.ts +30 -0
  538. package/modules/annotations-advanced.src.js +1604 -332
  539. package/modules/annotations.js +121 -106
  540. package/modules/annotations.js.map +1 -1
  541. package/modules/annotations.src.js +981 -238
  542. package/modules/arrow-symbols.js +1 -1
  543. package/modules/arrow-symbols.src.js +1 -1
  544. package/modules/boost-canvas.js +15 -15
  545. package/modules/boost-canvas.js.map +1 -1
  546. package/modules/boost-canvas.src.js +3 -3
  547. package/modules/boost.js +79 -79
  548. package/modules/boost.js.map +1 -1
  549. package/modules/boost.src.js +10 -9
  550. package/modules/broken-axis.js +1 -1
  551. package/modules/broken-axis.src.js +1 -1
  552. package/modules/bullet.js +1 -1
  553. package/modules/bullet.src.js +1 -1
  554. package/modules/coloraxis.js +24 -24
  555. package/modules/coloraxis.js.map +1 -1
  556. package/modules/coloraxis.src.js +69 -98
  557. package/modules/current-date-indicator.js +4 -4
  558. package/modules/current-date-indicator.js.map +1 -1
  559. package/modules/current-date-indicator.src.js +4 -4
  560. package/modules/cylinder.js +1 -1
  561. package/modules/cylinder.src.js +1 -1
  562. package/modules/data.js +32 -32
  563. package/modules/data.js.map +1 -1
  564. package/modules/data.src.js +85 -88
  565. package/modules/datagrouping.js +20 -20
  566. package/modules/datagrouping.js.map +1 -1
  567. package/modules/datagrouping.src.js +35 -19
  568. package/modules/debugger.js +3 -3
  569. package/modules/debugger.js.map +1 -1
  570. package/modules/debugger.src.js +3 -3
  571. package/modules/dependency-wheel.js +11 -11
  572. package/modules/dependency-wheel.js.map +1 -1
  573. package/modules/dependency-wheel.src.js +4 -7
  574. package/modules/dotplot.js +1 -1
  575. package/modules/dotplot.src.js +1 -1
  576. package/modules/drag-panes.js +8 -8
  577. package/modules/drag-panes.js.map +1 -1
  578. package/modules/drag-panes.src.js +3 -3
  579. package/modules/draggable-points.js +1 -1
  580. package/modules/draggable-points.src.js +1 -1
  581. package/modules/drilldown.js +24 -24
  582. package/modules/drilldown.js.map +1 -1
  583. package/modules/drilldown.src.js +4 -4
  584. package/modules/dumbbell.js +17 -17
  585. package/modules/dumbbell.js.map +1 -1
  586. package/modules/dumbbell.src.js +4 -4
  587. package/modules/export-data.js +1 -1
  588. package/modules/export-data.js.map +1 -1
  589. package/modules/export-data.src.js +3 -3
  590. package/modules/exporting.js +39 -38
  591. package/modules/exporting.js.map +1 -1
  592. package/modules/exporting.src.js +102 -72
  593. package/modules/full-screen.js +1 -1
  594. package/modules/full-screen.src.js +1 -1
  595. package/modules/funnel.js +12 -12
  596. package/modules/funnel.js.map +1 -1
  597. package/modules/funnel.src.js +9 -6
  598. package/modules/funnel3d.js +1 -1
  599. package/modules/funnel3d.src.js +1 -1
  600. package/modules/gantt.js +217 -218
  601. package/modules/gantt.js.map +1 -1
  602. package/modules/gantt.src.js +167 -152
  603. package/modules/grid-axis.js +1 -1
  604. package/modules/grid-axis.src.js +1 -1
  605. package/modules/heatmap.js +39 -39
  606. package/modules/heatmap.js.map +1 -1
  607. package/modules/heatmap.src.js +177 -162
  608. package/modules/heikinashi.js +1 -1
  609. package/modules/heikinashi.src.js +4 -4
  610. package/modules/histogram-bellcurve.js +13 -13
  611. package/modules/histogram-bellcurve.js.map +1 -1
  612. package/modules/histogram-bellcurve.src.js +91 -86
  613. package/modules/hollowcandlestick.js +9 -9
  614. package/modules/hollowcandlestick.js.map +1 -1
  615. package/modules/hollowcandlestick.src.js +37 -37
  616. package/modules/item-series.js +1 -1
  617. package/modules/item-series.src.js +1 -1
  618. package/modules/lollipop.js +1 -1
  619. package/modules/lollipop.src.js +1 -1
  620. package/modules/map.d.ts +136 -14
  621. package/modules/map.js +144 -122
  622. package/modules/map.js.map +1 -1
  623. package/modules/map.src.d.ts +136 -14
  624. package/modules/map.src.js +2227 -1039
  625. package/modules/marker-clusters.js +36 -36
  626. package/modules/marker-clusters.js.map +1 -1
  627. package/modules/marker-clusters.src.js +173 -142
  628. package/modules/networkgraph.d.ts +12 -1
  629. package/modules/networkgraph.js +49 -49
  630. package/modules/networkgraph.js.map +1 -1
  631. package/modules/networkgraph.src.d.ts +12 -1
  632. package/modules/networkgraph.src.js +91 -43
  633. package/modules/no-data-to-display.js +5 -5
  634. package/modules/no-data-to-display.js.map +1 -1
  635. package/modules/no-data-to-display.src.js +3 -3
  636. package/modules/offline-exporting.js +18 -17
  637. package/modules/offline-exporting.js.map +1 -1
  638. package/modules/offline-exporting.src.js +14 -14
  639. package/modules/oldie-polyfills.js +1 -1
  640. package/modules/oldie-polyfills.src.js +1 -1
  641. package/modules/oldie.js +26 -26
  642. package/modules/oldie.js.map +1 -1
  643. package/modules/oldie.src.js +4 -4
  644. package/modules/organization.js +13 -13
  645. package/modules/organization.js.map +1 -1
  646. package/modules/organization.src.js +4 -4
  647. package/modules/overlapping-datalabels.js +1 -1
  648. package/modules/overlapping-datalabels.src.js +1 -1
  649. package/modules/parallel-coordinates.js +1 -1
  650. package/modules/parallel-coordinates.src.js +1 -1
  651. package/modules/pareto.js +7 -7
  652. package/modules/pareto.js.map +1 -1
  653. package/modules/pareto.src.js +89 -78
  654. package/modules/pathfinder.js +1 -1
  655. package/modules/pathfinder.src.js +1 -1
  656. package/modules/pattern-fill.js +1 -1
  657. package/modules/pattern-fill.src.js +1 -1
  658. package/modules/price-indicator.js +1 -1
  659. package/modules/price-indicator.src.js +1 -1
  660. package/modules/pyramid3d.js +1 -1
  661. package/modules/pyramid3d.src.js +1 -1
  662. package/modules/sankey.d.ts +12 -1
  663. package/modules/sankey.js +29 -29
  664. package/modules/sankey.js.map +1 -1
  665. package/modules/sankey.src.d.ts +12 -1
  666. package/modules/sankey.src.js +300 -176
  667. package/modules/series-label.js +1 -1
  668. package/modules/series-label.src.js +1 -1
  669. package/modules/solid-gauge.js +1 -1
  670. package/modules/solid-gauge.src.js +1 -1
  671. package/modules/sonification.js +59 -55
  672. package/modules/sonification.js.map +1 -1
  673. package/modules/sonification.src.js +3034 -2553
  674. package/modules/static-scale.js +1 -1
  675. package/modules/static-scale.src.js +1 -1
  676. package/modules/stock-tools.js +178 -163
  677. package/modules/stock-tools.js.map +1 -1
  678. package/modules/stock-tools.src.js +1028 -144
  679. package/modules/stock.d.ts +39 -6
  680. package/modules/stock.js +204 -196
  681. package/modules/stock.js.map +1 -1
  682. package/modules/stock.src.d.ts +39 -6
  683. package/modules/stock.src.js +1667 -1061
  684. package/modules/streamgraph.js +1 -1
  685. package/modules/streamgraph.src.js +1 -1
  686. package/modules/sunburst.js +61 -60
  687. package/modules/sunburst.js.map +1 -1
  688. package/modules/sunburst.src.js +329 -266
  689. package/modules/tilemap.js +17 -17
  690. package/modules/tilemap.js.map +1 -1
  691. package/modules/tilemap.src.js +3 -4
  692. package/modules/timeline.js +18 -18
  693. package/modules/timeline.js.map +1 -1
  694. package/modules/timeline.src.js +5 -5
  695. package/modules/treegrid.js +56 -57
  696. package/modules/treegrid.js.map +1 -1
  697. package/modules/treegrid.src.js +126 -120
  698. package/modules/treemap.js +41 -41
  699. package/modules/treemap.js.map +1 -1
  700. package/modules/treemap.src.js +319 -254
  701. package/modules/variable-pie.js +1 -1
  702. package/modules/variable-pie.src.js +1 -1
  703. package/modules/variwide.js +1 -1
  704. package/modules/variwide.src.js +1 -1
  705. package/modules/vector.js +1 -1
  706. package/modules/vector.src.js +1 -1
  707. package/modules/venn.js +31 -31
  708. package/modules/venn.js.map +1 -1
  709. package/modules/venn.src.js +731 -721
  710. package/modules/windbarb.js +15 -15
  711. package/modules/windbarb.js.map +1 -1
  712. package/modules/windbarb.src.js +90 -62
  713. package/modules/wordcloud.js +23 -24
  714. package/modules/wordcloud.js.map +1 -1
  715. package/modules/wordcloud.src.js +897 -949
  716. package/modules/xrange.js +2 -2
  717. package/modules/xrange.js.map +1 -1
  718. package/modules/xrange.src.js +2 -1
  719. package/package.json +1 -1
  720. package/themes/avocado.js +1 -1
  721. package/themes/avocado.src.js +1 -1
  722. package/themes/dark-blue.js +1 -1
  723. package/themes/dark-blue.src.js +1 -1
  724. package/themes/dark-green.js +1 -1
  725. package/themes/dark-green.src.js +1 -1
  726. package/themes/dark-unica.js +1 -1
  727. package/themes/dark-unica.src.js +1 -1
  728. package/themes/gray.js +1 -1
  729. package/themes/gray.src.js +1 -1
  730. package/themes/grid-light.js +1 -1
  731. package/themes/grid-light.src.js +1 -1
  732. package/themes/grid.js +1 -1
  733. package/themes/grid.src.js +1 -1
  734. package/themes/high-contrast-dark.js +1 -1
  735. package/themes/high-contrast-dark.src.js +1 -1
  736. package/themes/high-contrast-light.js +1 -1
  737. package/themes/high-contrast-light.src.js +1 -1
  738. package/themes/sand-signika.js +1 -1
  739. package/themes/sand-signika.src.js +1 -1
  740. package/themes/skies.js +1 -1
  741. package/themes/skies.src.js +1 -1
  742. package/themes/sunset.js +1 -1
  743. package/themes/sunset.src.js +1 -1
  744. package/es-modules/Core/Axis/MapAxis.js +0 -157
  745. package/es-modules/Core/Color/Palette.js +0 -82
  746. package/es-modules/Extensions/Sonification/InstrumentDefinitions.js +0 -32
  747. package/es-modules/Mixins/ColorMapSeries.js +0 -82
  748. package/es-modules/Mixins/ColorSeries.js +0 -77
  749. package/es-modules/Mixins/DerivedSeries.js +0 -118
  750. package/es-modules/Mixins/DrawPoint.js +0 -81
  751. package/es-modules/Mixins/IndicatorRequired.js +0 -56
  752. package/es-modules/Mixins/Navigation.js +0 -54
  753. package/es-modules/Mixins/NelderMead.js +0 -132
  754. package/es-modules/Mixins/Polygon.js +0 -259
  755. package/es-modules/Mixins/ReduceArray.js +0 -54
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highstock JS v9.2.0 (2021-08-18)
2
+ * @license Highstock JS v9.3.1 (2021-11-05)
3
3
  *
4
4
  * Indicator series type for Highcharts Stock
5
5
  *
@@ -28,7 +28,7 @@
28
28
  obj[path] = fn.apply(null, args);
29
29
  }
30
30
  }
31
- _registerModule(_modules, 'Mixins/MultipleLines.js', [_modules['Core/Globals.js'], _modules['Core/Utilities.js']], function (H, U) {
31
+ _registerModule(_modules, 'Stock/Indicators/MultipleLinesComposition.js', [_modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (SeriesRegistry, U) {
32
32
  /**
33
33
  *
34
34
  * (c) 2010-2021 Wojciech Chmiel
@@ -38,118 +38,96 @@
38
38
  * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
39
39
  *
40
40
  * */
41
+ var SMAIndicator = SeriesRegistry.seriesTypes.sma;
41
42
  var defined = U.defined,
42
43
  error = U.error,
43
44
  merge = U.merge;
44
- var SMA = H.seriesTypes.sma;
45
+ /* *
46
+ *
47
+ * Composition
48
+ *
49
+ * */
45
50
  /**
46
- * Mixin useful for all indicators that have more than one line.
47
- * Merge it with your implementation where you will provide
48
- * getValues method appropriate to your indicator and pointArrayMap,
49
- * pointValKey, linesApiNames properites. Notice that pointArrayMap
50
- * should be consistent with amount of lines calculated in getValues method.
51
+ * Composition useful for all indicators that have more than one line. Compose
52
+ * it with your implementation where you will provide the `getValues` method
53
+ * appropriate to your indicator and `pointArrayMap`, `pointValKey`,
54
+ * `linesApiNames` properties. Notice that `pointArrayMap` should be consistent
55
+ * with the amount of lines calculated in the `getValues` method.
51
56
  *
52
57
  * @private
53
58
  * @mixin multipleLinesMixin
54
59
  */
55
- var multipleLinesMixin = {
56
- /* eslint-disable valid-jsdoc */
57
- /**
58
- * Lines ids. Required to plot appropriate amount of lines.
59
- * Notice that pointArrayMap should have more elements than
60
- * linesApiNames, because it contains main line and additional lines ids.
61
- * Also it should be consistent with amount of lines calculated in
62
- * getValues method from your implementation.
63
- *
64
- * @private
65
- * @name multipleLinesMixin.pointArrayMap
66
- * @type {Array<string>}
67
- */
68
- pointArrayMap: ['top', 'bottom'],
69
- /**
70
- * Main line id.
71
- *
72
- * @private
73
- * @name multipleLinesMixin.pointValKey
74
- * @type {string}
75
- */
76
- pointValKey: 'top',
77
- /**
78
- * Additional lines DOCS names. Elements of linesApiNames array should
79
- * be consistent with DOCS line names defined in your implementation.
80
- * Notice that linesApiNames should have decreased amount of elements
81
- * relative to pointArrayMap (without pointValKey).
82
- *
83
- * @private
84
- * @name multipleLinesMixin.linesApiNames
85
- * @type {Array<string>}
86
- */
87
- linesApiNames: ['bottomLine'],
88
- /**
89
- * Create translatedLines Collection based on pointArrayMap.
90
- *
91
- * @private
92
- * @function multipleLinesMixin.getTranslatedLinesNames
93
- * @param {string} [excludedValue]
94
- * Main line id
95
- * @return {Array<string>}
96
- * Returns translated lines names without excluded value.
97
- */
98
- getTranslatedLinesNames: function (excludedValue) {
99
- var translatedLines = [];
100
- (this.pointArrayMap || []).forEach(function (propertyName) {
101
- if (propertyName !== excludedValue) {
102
- translatedLines.push('plot' +
103
- propertyName.charAt(0).toUpperCase() +
104
- propertyName.slice(1));
105
- }
106
- });
107
- return translatedLines;
108
- },
60
+ var MultipleLinesComposition;
61
+ (function (MultipleLinesComposition) {
62
+ /* *
63
+ *
64
+ * Declarations
65
+ *
66
+ * */
67
+ /* *
68
+ *
69
+ * Constants
70
+ *
71
+ * */
72
+ var composedClasses = [];
109
73
  /**
74
+ * Additional lines DOCS names. Elements of linesApiNames array should
75
+ * be consistent with DOCS line names defined in your implementation.
76
+ * Notice that linesApiNames should have decreased amount of elements
77
+ * relative to pointArrayMap (without pointValKey).
78
+ *
110
79
  * @private
111
- * @function multipleLinesMixin.toYData
112
- * @param {Highcharts.Point} point
113
- * Indicator point
114
- * @return {Array<number>}
115
- * Returns point Y value for all lines
80
+ * @name multipleLinesMixin.linesApiNames
81
+ * @type {Array<string>}
116
82
  */
117
- toYData: function (point) {
118
- var pointColl = [];
119
- (this.pointArrayMap || []).forEach(function (propertyName) {
120
- pointColl.push(point[propertyName]);
121
- });
122
- return pointColl;
123
- },
83
+ var linesApiNames = ['bottomLine'];
124
84
  /**
125
- * Add lines plot pixel values.
85
+ * Lines ids. Required to plot appropriate amount of lines.
86
+ * Notice that pointArrayMap should have more elements than
87
+ * linesApiNames, because it contains main line and additional lines ids.
88
+ * Also it should be consistent with amount of lines calculated in
89
+ * getValues method from your implementation.
126
90
  *
127
91
  * @private
128
- * @function multipleLinesMixin.translate
129
- * @return {void}
92
+ * @name multipleLinesMixin.pointArrayMap
93
+ * @type {Array<string>}
130
94
  */
131
- translate: function () {
132
- var indicator = this,
133
- pointArrayMap = indicator.pointArrayMap,
134
- LinesNames = [],
135
- value;
136
- var modfidyValue = indicator.modifyValue;
137
- LinesNames = indicator.getTranslatedLinesNames();
138
- SMA.prototype.translate.apply(indicator, arguments);
139
- indicator.points.forEach(function (point) {
140
- pointArrayMap.forEach(function (propertyName, i) {
141
- value = point[propertyName];
142
- // If the modifier, like for example compare exists,
143
- // modified the original value by that method, #15867.
144
- if (modfidyValue) {
145
- value = modfidyValue.call(indicator, value);
146
- }
147
- if (value !== null) {
148
- point[LinesNames[i]] = indicator.yAxis.toPixels(value, true);
149
- }
150
- });
151
- });
152
- },
95
+ var pointArrayMap = ['top', 'bottom'];
96
+ /**
97
+ * Main line id.
98
+ *
99
+ * @private
100
+ * @name multipleLinesMixin.pointValKey
101
+ * @type {string}
102
+ */
103
+ var pointValKey = 'top';
104
+ /* *
105
+ *
106
+ * Functions
107
+ *
108
+ * */
109
+ /* eslint-disable valid-jsdoc */
110
+ /**
111
+ * @private
112
+ */
113
+ function compose(IndicatorClass) {
114
+ if (composedClasses.indexOf(IndicatorClass) === -1) {
115
+ composedClasses.push(IndicatorClass);
116
+ var proto = IndicatorClass.prototype;
117
+ proto.linesApiNames = (proto.linesApiNames ||
118
+ linesApiNames.slice());
119
+ proto.pointArrayMap = (proto.pointArrayMap ||
120
+ pointArrayMap.slice());
121
+ proto.pointValKey = (proto.pointValKey ||
122
+ pointValKey);
123
+ proto.drawGraph = drawGraph;
124
+ proto.toYData = toYData;
125
+ proto.translate = translate;
126
+ proto.getTranslatedLinesNames = getTranslatedLinesNames;
127
+ }
128
+ return IndicatorClass;
129
+ }
130
+ MultipleLinesComposition.compose = compose;
153
131
  /**
154
132
  * Draw main and additional lines.
155
133
  *
@@ -157,12 +135,11 @@
157
135
  * @function multipleLinesMixin.drawGraph
158
136
  * @return {void}
159
137
  */
160
- drawGraph: function () {
138
+ function drawGraph() {
161
139
  var indicator = this,
162
140
  pointValKey = indicator.pointValKey,
163
141
  linesApiNames = indicator.linesApiNames,
164
142
  mainLinePoints = indicator.points,
165
- pointsLength = mainLinePoints.length,
166
143
  mainLineOptions = indicator.options,
167
144
  mainLinePath = indicator.graph,
168
145
  gappedExtend = {
@@ -172,7 +149,8 @@
172
149
  },
173
150
  // additional lines point place holders:
174
151
  secondaryLines = [],
175
- secondaryLinesNames = indicator.getTranslatedLinesNames(pointValKey),
152
+ secondaryLinesNames = indicator.getTranslatedLinesNames(pointValKey);
153
+ var pointsLength = mainLinePoints.length,
176
154
  point;
177
155
  // Generate points for additional lines:
178
156
  secondaryLinesNames.forEach(function (plotLine, index) {
@@ -203,7 +181,7 @@
203
181
  ' at mixin/multiple-line.js:34');
204
182
  }
205
183
  indicator.graph = indicator['graph' + lineName];
206
- SMA.prototype.drawGraph.call(indicator);
184
+ SMAIndicator.prototype.drawGraph.call(indicator);
207
185
  // Now save lines:
208
186
  indicator['graph' + lineName] = indicator.graph;
209
187
  }
@@ -217,75 +195,82 @@
217
195
  indicator.points = mainLinePoints;
218
196
  indicator.options = mainLineOptions;
219
197
  indicator.graph = mainLinePath;
220
- SMA.prototype.drawGraph.call(indicator);
198
+ SMAIndicator.prototype.drawGraph.call(indicator);
199
+ }
200
+ /**
201
+ * Create translatedLines Collection based on pointArrayMap.
202
+ *
203
+ * @private
204
+ * @function multipleLinesMixin.getTranslatedLinesNames
205
+ * @param {string} [excludedValue]
206
+ * Main line id
207
+ * @return {Array<string>}
208
+ * Returns translated lines names without excluded value.
209
+ */
210
+ function getTranslatedLinesNames(excludedValue) {
211
+ var translatedLines = [];
212
+ (this.pointArrayMap || []).forEach(function (propertyName) {
213
+ if (propertyName !== excludedValue) {
214
+ translatedLines.push('plot' +
215
+ propertyName.charAt(0).toUpperCase() +
216
+ propertyName.slice(1));
217
+ }
218
+ });
219
+ return translatedLines;
221
220
  }
222
- };
223
-
224
- return multipleLinesMixin;
225
- });
226
- _registerModule(_modules, 'Mixins/IndicatorRequired.js', [_modules['Core/Utilities.js']], function (U) {
227
- /**
228
- *
229
- * (c) 2010-2021 Daniel Studencki
230
- *
231
- * License: www.highcharts.com/license
232
- *
233
- * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
234
- *
235
- * */
236
- var error = U.error;
237
- /* eslint-disable no-invalid-this, valid-jsdoc */
238
- var requiredIndicatorMixin = {
239
- /**
240
- * Check whether given indicator is loaded,
241
- else throw error.
242
- * @private
243
- * @param {Highcharts.Indicator} indicator
244
- * Indicator constructor function.
245
- * @param {string} requiredIndicator
246
- * Required indicator type.
247
- * @param {string} type
248
- * Type of indicator where function was called (parent).
249
- * @param {Highcharts.IndicatorCallbackFunction} callback
250
- * Callback which is triggered if the given indicator is loaded.
251
- * Takes indicator as an argument.
252
- * @param {string} errMessage
253
- * Error message that will be logged in console.
254
- * @return {boolean}
255
- * Returns false when there is no required indicator loaded.
256
- */
257
- isParentLoaded: function (indicator,
258
- requiredIndicator,
259
- type,
260
- callback,
261
- errMessage) {
262
- if (indicator) {
263
- return callback ? callback(indicator) : true;
264
- }
265
- error(errMessage || this.generateMessage(type, requiredIndicator));
266
- return false;
267
- },
268
221
  /**
269
222
  * @private
270
- * @param {string} indicatorType
271
- * Indicator type
272
- * @param {string} required
273
- * Required indicator
274
- * @return {string}
275
- * Error message
223
+ * @function multipleLinesMixin.toYData
224
+ * @param {Highcharts.Point} point
225
+ * Indicator point
226
+ * @return {Array<number>}
227
+ * Returns point Y value for all lines
276
228
  */
277
- generateMessage: function (indicatorType, required) {
278
- return 'Error: "' + indicatorType +
279
- '" indicator type requires "' + required +
280
- '" indicator loaded before. Please read docs: ' +
281
- 'https://api.highcharts.com/highstock/plotOptions.' +
282
- indicatorType;
229
+ function toYData(point) {
230
+ var pointColl = [];
231
+ (this.pointArrayMap || []).forEach(function (propertyName) {
232
+ pointColl.push(point[propertyName]);
233
+ });
234
+ return pointColl;
283
235
  }
284
- };
236
+ /**
237
+ * Add lines plot pixel values.
238
+ *
239
+ * @private
240
+ * @function multipleLinesMixin.translate
241
+ * @return {void}
242
+ */
243
+ function translate() {
244
+ var indicator = this,
245
+ pointArrayMap = indicator.pointArrayMap;
246
+ var LinesNames = [],
247
+ value;
248
+ LinesNames = indicator.getTranslatedLinesNames();
249
+ SMAIndicator.prototype.translate.apply(indicator, arguments);
250
+ indicator.points.forEach(function (point) {
251
+ pointArrayMap.forEach(function (propertyName, i) {
252
+ value = point[propertyName];
253
+ // If the modifier, like for example compare exists,
254
+ // modified the original value by that method, #15867.
255
+ if (indicator.dataModify) {
256
+ value = indicator.dataModify.modifyValue(value);
257
+ }
258
+ if (value !== null) {
259
+ point[LinesNames[i]] = indicator.yAxis.toPixels(value, true);
260
+ }
261
+ });
262
+ });
263
+ }
264
+ })(MultipleLinesComposition || (MultipleLinesComposition = {}));
265
+ /* *
266
+ *
267
+ * Default Export
268
+ *
269
+ * */
285
270
 
286
- return requiredIndicatorMixin;
271
+ return MultipleLinesComposition;
287
272
  });
288
- _registerModule(_modules, 'Stock/Indicators/AroonOscillator/AroonOscillatorIndicator.js', [_modules['Mixins/MultipleLines.js'], _modules['Mixins/IndicatorRequired.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (multipleLinesMixin, requiredIndicator, SeriesRegistry, U) {
273
+ _registerModule(_modules, 'Stock/Indicators/AroonOscillator/AroonOscillatorIndicator.js', [_modules['Stock/Indicators/MultipleLinesComposition.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (MultipleLinesComposition, SeriesRegistry, U) {
289
274
  /* *
290
275
  *
291
276
  * License: www.highcharts.com/license
@@ -330,6 +315,11 @@
330
315
  var AroonOscillatorIndicator = /** @class */ (function (_super) {
331
316
  __extends(AroonOscillatorIndicator, _super);
332
317
  function AroonOscillatorIndicator() {
318
+ /* *
319
+ *
320
+ * Static Properties
321
+ *
322
+ * */
333
323
  var _this = _super !== null && _super.apply(this,
334
324
  arguments) || this;
335
325
  /* *
@@ -372,14 +362,6 @@
372
362
  yData: yData
373
363
  };
374
364
  };
375
- AroonOscillatorIndicator.prototype.init = function () {
376
- var args = arguments,
377
- ctx = this;
378
- requiredIndicator.isParentLoaded(AROON, 'aroon', ctx.type, function (indicator) {
379
- indicator.prototype.init.apply(ctx, args);
380
- return;
381
- });
382
- };
383
365
  /**
384
366
  * Aroon Oscillator. This series requires the `linkedTo` option to be set
385
367
  * and should be loaded after the `stock/indicators/indicators.js` and
@@ -407,12 +389,13 @@
407
389
  });
408
390
  return AroonOscillatorIndicator;
409
391
  }(AroonIndicator));
410
- extend(AroonOscillatorIndicator.prototype, merge(multipleLinesMixin, {
392
+ extend(AroonOscillatorIndicator.prototype, {
411
393
  nameBase: 'Aroon Oscillator',
394
+ linesApiNames: [],
412
395
  pointArrayMap: ['y'],
413
- pointValKey: 'y',
414
- linesApiNames: []
415
- }));
396
+ pointValKey: 'y'
397
+ });
398
+ MultipleLinesComposition.compose(AroonIndicator);
416
399
  SeriesRegistry.registerSeriesType('aroonoscillator', AroonOscillatorIndicator);
417
400
  /* *
418
401
  *
@@ -1,5 +1,5 @@
1
1
  /*
2
- Highstock JS v9.2.0 (2021-08-18)
2
+ Highstock JS v9.3.1 (2021-11-05)
3
3
 
4
4
  Indicator series type for Highcharts Stock
5
5
 
@@ -7,12 +7,12 @@
7
7
 
8
8
  License: www.highcharts.com/license
9
9
  */
10
- 'use strict';(function(a){"object"===typeof module&&module.exports?(a["default"]=a,module.exports=a):"function"===typeof define&&define.amd?define("highcharts/indicators/aroon",["highcharts","highcharts/modules/stock"],function(l){a(l);a.Highcharts=l;return a}):a("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(a){function l(a,g,h,r){a.hasOwnProperty(g)||(a[g]=r.apply(null,h))}a=a?a._modules:{};l(a,"Mixins/MultipleLines.js",[a["Core/Globals.js"],a["Core/Utilities.js"]],function(a,g){var h=
11
- g.defined,r=g.error,l=g.merge,m=a.seriesTypes.sma;return{pointArrayMap:["top","bottom"],pointValKey:"top",linesApiNames:["bottomLine"],getTranslatedLinesNames:function(e){var a=[];(this.pointArrayMap||[]).forEach(function(f){f!==e&&a.push("plot"+f.charAt(0).toUpperCase()+f.slice(1))});return a},toYData:function(e){var a=[];(this.pointArrayMap||[]).forEach(function(f){a.push(e[f])});return a},translate:function(){var e=this,a=e.pointArrayMap,f=[],d,c=e.modifyValue;f=e.getTranslatedLinesNames();m.prototype.translate.apply(e,
12
- arguments);e.points.forEach(function(b){a.forEach(function(a,k){d=b[a];c&&(d=c.call(e,d));null!==d&&(b[f[k]]=e.yAxis.toPixels(d,!0))})})},drawGraph:function(){var a=this,g=a.linesApiNames,f=a.points,d=f.length,c=a.options,b=a.graph,v={options:{gapSize:c.gapSize}},k=[],q;a.getTranslatedLinesNames(a.pointValKey).forEach(function(a,b){for(k[b]=[];d--;)q=f[d],k[b].push({x:q.x,plotX:q.plotX,plotY:q[a],isNull:!h(q[a])});d=f.length});g.forEach(function(b,d){k[d]?(a.points=k[d],c[b]?a.options=l(c[b].styles,
13
- v):r('Error: "There is no '+b+' in DOCS options declared. Check if linesApiNames are consistent with your DOCS line names." at mixin/multiple-line.js:34'),a.graph=a["graph"+b],m.prototype.drawGraph.call(a),a["graph"+b]=a.graph):r('Error: "'+b+" doesn't have equivalent in pointArrayMap. To many elements in linesApiNames relative to pointArrayMap.\"")});a.points=f;a.options=c;a.graph=b;m.prototype.drawGraph.call(a)}}});l(a,"Stock/Indicators/Aroon/AroonIndicator.js",[a["Mixins/MultipleLines.js"],a["Core/Series/SeriesRegistry.js"],
14
- a["Core/Utilities.js"]],function(a,g,h){function l(a,c){var b=a[0],d=0,k;for(k=1;k<a.length;k++)if("max"===c&&a[k]>=b||"min"===c&&a[k]<=b)b=a[k],d=k;return d}var t=this&&this.__extends||function(){var a=function(c,b){a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(a,b){a.__proto__=b}||function(a,b){for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c])};return a(c,b)};return function(c,b){function d(){this.constructor=c}a(c,b);c.prototype=null===b?Object.create(b):(d.prototype=b.prototype,
15
- new d)}}(),m=g.seriesTypes.sma,e=h.extend,u=h.merge,f=h.pick;h=function(a){function c(){var b=null!==a&&a.apply(this,arguments)||this;b.data=void 0;b.options=void 0;b.points=void 0;return b}t(c,a);c.prototype.getValues=function(a,c){c=c.period;var b=a.xData,d=(a=a.yData)?a.length:0,e=[],g=[],h=[],n;for(n=c-1;n<d;n++){var p=a.slice(n-c+1,n+2);var m=l(p.map(function(a){return f(a[2],a)}),"min");p=l(p.map(function(a){return f(a[1],a)}),"max");p=p/c*100;m=m/c*100;b[n+1]&&(e.push([b[n+1],p,m]),g.push(b[n+
16
- 1]),h.push([p,m]))}return{values:e,xData:g,yData:h}};c.defaultOptions=u(m.defaultOptions,{params:{index:void 0,period:25},marker:{enabled:!1},tooltip:{pointFormat:'<span style="color:{point.color}">\u25cf</span><b> {series.name}</b><br/>Aroon Up: {point.y}<br/>Aroon Down: {point.aroonDown}<br/>'},aroonDown:{styles:{lineWidth:1,lineColor:void 0}},dataGrouping:{approximation:"averages"}});return c}(m);e(h.prototype,{linesApiNames:["aroonDown"],nameBase:"Aroon",pointArrayMap:["y","aroonDown"],pointValKey:"y",
17
- drawGraph:a.drawGraph,getTranslatedLinesNames:a.getTranslatedLinesNames,toYData:a.toYData,translate:a.translate});g.registerSeriesType("aroon",h);"";return h});l(a,"masters/indicators/aroon.src.js",[],function(){})});
10
+ 'use strict';(function(a){"object"===typeof module&&module.exports?(a["default"]=a,module.exports=a):"function"===typeof define&&define.amd?define("highcharts/indicators/aroon",["highcharts","highcharts/modules/stock"],function(l){a(l);a.Highcharts=l;return a}):a("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(a){function l(a,k,g,l){a.hasOwnProperty(k)||(a[k]=l.apply(null,g))}a=a?a._modules:{};l(a,"Stock/Indicators/MultipleLinesComposition.js",[a["Core/Series/SeriesRegistry.js"],a["Core/Utilities.js"]],
11
+ function(a,k){var g=a.seriesTypes.sma,l=k.defined,m=k.error,q=k.merge,f;(function(a){function k(){var c=this,a=c.linesApiNames,b=c.points,d=c.options,h=c.graph,r={options:{gapSize:d.gapSize}},e=[],k=c.getTranslatedLinesNames(c.pointValKey),p=b.length,f;k.forEach(function(c,a){for(e[a]=[];p--;)f=b[p],e[a].push({x:f.x,plotX:f.plotX,plotY:f[c],isNull:!l(f[c])});p=b.length});a.forEach(function(a,b){e[b]?(c.points=e[b],d[a]?c.options=q(d[a].styles,r):m('Error: "There is no '+a+' in DOCS options declared. Check if linesApiNames are consistent with your DOCS line names." at mixin/multiple-line.js:34'),
12
+ c.graph=c["graph"+a],g.prototype.drawGraph.call(c),c["graph"+a]=c.graph):m('Error: "'+a+" doesn't have equivalent in pointArrayMap. To many elements in linesApiNames relative to pointArrayMap.\"")});c.points=b;c.options=d;c.graph=h;g.prototype.drawGraph.call(c)}function r(c){var a=[];(this.pointArrayMap||[]).forEach(function(b){b!==c&&a.push("plot"+b.charAt(0).toUpperCase()+b.slice(1))});return a}function e(a){var c=[];(this.pointArrayMap||[]).forEach(function(b){c.push(a[b])});return c}function b(){var a=
13
+ this,b=a.pointArrayMap,d=[],h;d=a.getTranslatedLinesNames();g.prototype.translate.apply(a,arguments);a.points.forEach(function(c){b.forEach(function(b,e){h=c[b];a.dataModify&&(h=a.dataModify.modifyValue(h));null!==h&&(c[d[e]]=a.yAxis.toPixels(h,!0))})})}var d=[],h=["bottomLine"],p=["top","bottom"];a.compose=function(a){if(-1===d.indexOf(a)){d.push(a);var c=a.prototype;c.linesApiNames=c.linesApiNames||h.slice();c.pointArrayMap=c.pointArrayMap||p.slice();c.pointValKey=c.pointValKey||"top";c.drawGraph=
14
+ k;c.toYData=e;c.translate=b;c.getTranslatedLinesNames=r}return a}})(f||(f={}));return f});l(a,"Stock/Indicators/Aroon/AroonIndicator.js",[a["Stock/Indicators/MultipleLinesComposition.js"],a["Core/Series/SeriesRegistry.js"],a["Core/Utilities.js"]],function(a,k,g){function l(a,e){var b=a[0],d=0,h;for(h=1;h<a.length;h++)if("max"===e&&a[h]>=b||"min"===e&&a[h]<=b)b=a[h],d=h;return d}var m=this&&this.__extends||function(){var a=function(e,b){a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(a,
15
+ b){a.__proto__=b}||function(a,b){for(var d in b)b.hasOwnProperty(d)&&(a[d]=b[d])};return a(e,b)};return function(e,b){function d(){this.constructor=e}a(e,b);e.prototype=null===b?Object.create(b):(d.prototype=b.prototype,new d)}}(),q=k.seriesTypes.sma,f=g.extend,u=g.merge,t=g.pick;g=function(a){function e(){var b=null!==a&&a.apply(this,arguments)||this;b.data=void 0;b.options=void 0;b.points=void 0;return b}m(e,a);e.prototype.getValues=function(a,d){d=d.period;var b=a.xData,e=(a=a.yData)?a.length:
16
+ 0,c=[],g=[],k=[],f;for(f=d-1;f<e;f++){var n=a.slice(f-d+1,f+2);var m=l(n.map(function(a){return t(a[2],a)}),"min");n=l(n.map(function(a){return t(a[1],a)}),"max");n=n/d*100;m=m/d*100;b[f+1]&&(c.push([b[f+1],n,m]),g.push(b[f+1]),k.push([n,m]))}return{values:c,xData:g,yData:k}};e.defaultOptions=u(q.defaultOptions,{params:{index:void 0,period:25},marker:{enabled:!1},tooltip:{pointFormat:'<span style="color:{point.color}">\u25cf</span><b> {series.name}</b><br/>Aroon Up: {point.y}<br/>Aroon Down: {point.aroonDown}<br/>'},
17
+ aroonDown:{styles:{lineWidth:1,lineColor:void 0}},dataGrouping:{approximation:"averages"}});return e}(q);f(g.prototype,{linesApiNames:["aroonDown"],nameBase:"Aroon",pointArrayMap:["y","aroonDown"],pointValKey:"y"});a.compose(g);k.registerSeriesType("aroon",g);"";return g});l(a,"masters/indicators/aroon.src.js",[],function(){})});
18
18
  //# sourceMappingURL=aroon.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"aroon.js.map","lineCount":17,"mappings":"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","sources":["aroon.src.js"],"names":["factory","module","exports","define","amd","Highcharts","undefined","_registerModule","obj","path","args","fn","hasOwnProperty","apply","_modules","H","U","defined","error","merge","SMA","seriesTypes","sma","multipleLinesMixin","pointArrayMap","pointValKey","linesApiNames","getTranslatedLinesNames","excludedValue","translatedLines","forEach","propertyName","push","charAt","toUpperCase","slice","toYData","point","pointColl","translate","indicator","LinesNames","value","modfidyValue","modifyValue","prototype","arguments","points","i","call","yAxis","toPixels","drawGraph","mainLinePoints","pointsLength","length","mainLineOptions","options","mainLinePath","graph","gappedExtend","gapSize","secondaryLines","secondaryLinesNames","plotLine","index","x","plotX","plotY","isNull","lineName","styles","MultipleLinesMixin","SeriesRegistry","getExtremeIndexInArray","arr","extreme","extremeValue","valueIndex","__extends","extendStatics","d","b","Object","setPrototypeOf","__proto__","Array","p","__","constructor","create","SMAIndicator","extend","pick","AroonIndicator","_super","_this","data","getValues","AroonIndicator.prototype.getValues","series","params","period","xVal","xData","yValLen","yVal","yData","AR","slicedY","xLow","map","elem","low","xHigh","high","aroonUp","aroonDown","values","defaultOptions","marker","enabled","tooltip","pointFormat","lineWidth","lineColor","dataGrouping","approximation","nameBase","registerSeriesType"]}
1
+ {"version":3,"file":"aroon.js.map","lineCount":17,"mappings":"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","sources":["aroon.src.js"],"names":["factory","module","exports","define","amd","Highcharts","undefined","_registerModule","obj","path","args","fn","hasOwnProperty","apply","_modules","SeriesRegistry","U","SMAIndicator","seriesTypes","sma","defined","error","merge","MultipleLinesComposition","drawGraph","indicator","linesApiNames","mainLinePoints","points","mainLineOptions","options","mainLinePath","graph","gappedExtend","gapSize","secondaryLines","secondaryLinesNames","getTranslatedLinesNames","pointValKey","pointsLength","length","point","forEach","plotLine","index","push","x","plotX","plotY","isNull","lineName","i","styles","prototype","call","excludedValue","translatedLines","pointArrayMap","propertyName","charAt","toUpperCase","slice","toYData","pointColl","translate","LinesNames","value","arguments","dataModify","modifyValue","yAxis","toPixels","composedClasses","compose","IndicatorClass","indexOf","proto","getExtremeIndexInArray","arr","extreme","extremeValue","valueIndex","__extends","extendStatics","d","b","Object","setPrototypeOf","__proto__","Array","p","__","constructor","create","extend","pick","AroonIndicator","_super","_this","data","getValues","AroonIndicator.prototype.getValues","series","params","period","xVal","xData","yValLen","yVal","yData","AR","slicedY","xLow","map","elem","low","xHigh","high","aroonUp","aroonDown","values","defaultOptions","marker","enabled","tooltip","pointFormat","lineWidth","lineColor","dataGrouping","approximation","nameBase","registerSeriesType"]}