highcharts 13.0.0 → 13.0.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 (1148) hide show
  1. package/bower.json +3 -2
  2. package/css/highcharts.css +2 -1
  3. package/es-modules/Accessibility/Accessibility.js +38 -1
  4. package/es-modules/Accessibility/Components/LegendComponent.js +1 -2
  5. package/es-modules/Accessibility/Components/NavigatorComponent.js +1 -2
  6. package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +8 -4
  7. package/es-modules/Accessibility/Options/A11yDefaults.js +12 -3
  8. package/es-modules/Accessibility/ProxyElement.js +1 -0
  9. package/es-modules/Core/Animation/AnimationUtilities.js +31 -41
  10. package/es-modules/Core/Animation/Fx.js +16 -19
  11. package/es-modules/Core/Axis/Axis.js +1 -2
  12. package/es-modules/Core/Axis/AxisDefaults.js +12 -2
  13. package/es-modules/Core/Axis/Color/ColorAxis.js +7 -2
  14. package/es-modules/Core/Axis/Color/ColorAxisComposition.js +1 -1
  15. package/es-modules/Core/Axis/GridAxis.js +8 -1
  16. package/es-modules/Core/Axis/OrdinalAxis.js +12 -4
  17. package/es-modules/Core/Axis/RadialAxis.js +9 -14
  18. package/es-modules/Core/Axis/Stacking/StackingAxis.js +1 -2
  19. package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +1 -1
  20. package/es-modules/Core/Chart/Chart.js +44 -39
  21. package/es-modules/Core/Chart/ChartDefaults.js +1 -1
  22. package/es-modules/Core/Chart/MapChart.js +0 -5
  23. package/es-modules/Core/Defaults.js +9 -2
  24. package/es-modules/Core/Globals.js +1 -1
  25. package/es-modules/Core/Legend/Legend.js +4 -5
  26. package/es-modules/Core/Pointer.js +11 -1
  27. package/es-modules/Core/Renderer/HTML/AST.js +5 -1
  28. package/es-modules/Core/Renderer/HTML/HTMLElement.js +23 -16
  29. package/es-modules/Core/Renderer/SVG/SVGElement.js +1 -2
  30. package/es-modules/Core/Renderer/SVG/SVGRenderer.js +2 -2
  31. package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +2 -3
  32. package/es-modules/Core/Series/DataLabel.js +1 -2
  33. package/es-modules/Core/Series/Point.js +28 -21
  34. package/es-modules/Core/Series/Series.js +89 -62
  35. package/es-modules/Core/Series/SeriesDefaults.js +33 -0
  36. package/es-modules/Core/Templating.js +16 -13
  37. package/es-modules/Core/Tooltip.js +1 -2
  38. package/es-modules/Data/DataTableCore.js +1 -1
  39. package/es-modules/Extensions/Annotations/Annotation.js +1 -2
  40. package/es-modules/Extensions/Annotations/AnnotationDefaults.js +4 -4
  41. package/es-modules/Extensions/Annotations/MockPoint.js +7 -9
  42. package/es-modules/Extensions/Annotations/NavigationBindingsUtilities.js +30 -3
  43. package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +2 -2
  44. package/es-modules/Extensions/Annotations/Types/CrookedLine.js +4 -4
  45. package/es-modules/Extensions/Annotations/Types/Measure.js +25 -7
  46. package/es-modules/Extensions/Annotations/Types/TimeCycles.js +4 -2
  47. package/es-modules/Extensions/Annotations/Types/Tunnel.js +3 -1
  48. package/es-modules/Extensions/Boost/Boost.js +13 -0
  49. package/es-modules/Extensions/Boost/BoostSeries.js +9 -2
  50. package/es-modules/Extensions/BorderRadius.js +12 -10
  51. package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +1 -1
  52. package/es-modules/Extensions/DraggablePoints/DraggableChart.js +1 -2
  53. package/es-modules/Extensions/Drilldown/Drilldown.js +1 -2
  54. package/es-modules/Extensions/Drilldown/DrilldownSeries.js +1 -2
  55. package/es-modules/Extensions/ExportData/ExportData.js +5 -1
  56. package/es-modules/Extensions/Exporting/Exporting.js +21 -21
  57. package/es-modules/Extensions/Exporting/ExportingDefaults.js +32 -0
  58. package/es-modules/Extensions/MarkerClusters/MarkerClusterScatter.js +1 -2
  59. package/es-modules/Extensions/MarkerClusters/MarkerClusters.js +1 -2
  60. package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +31 -4
  61. package/es-modules/Extensions/Pane/PaneDefaults.js +1 -1
  62. package/es-modules/Extensions/ParallelCoordinates/ParallelCoordinates.js +3 -0
  63. package/es-modules/Extensions/ScrollablePlotArea.js +8 -2
  64. package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +1 -2
  65. package/es-modules/Extensions/Sonification/SynthPatch.js +1 -1
  66. package/es-modules/Maps/GeoJSONComposition.js +14 -1
  67. package/es-modules/Maps/MapView.js +1 -1
  68. package/es-modules/Series/AreaRange/AreaRangeSeries.js +87 -147
  69. package/es-modules/Series/AreaRange/AreaRangeSeriesDefaults.js +42 -4
  70. package/es-modules/Series/Bellcurve/BellcurveSeries.js +10 -6
  71. package/es-modules/Series/BoxPlot/BoxPlotSeries.js +27 -28
  72. package/es-modules/Series/BoxPlot/BoxPlotSeriesDefaults.js +33 -1
  73. package/es-modules/Series/Bubble/BubbleSeries.js +15 -0
  74. package/es-modules/Series/Bullet/BulletSeries.js +1 -1
  75. package/es-modules/Series/Candlestick/CandlestickSeries.js +3 -3
  76. package/es-modules/Series/CenteredUtilities.js +5 -4
  77. package/es-modules/Series/ColorMapComposition.js +7 -4
  78. package/es-modules/Series/Column/ColumnPoint.js +2 -0
  79. package/es-modules/Series/Column/ColumnSeries.js +12 -12
  80. package/es-modules/Series/Column/ColumnSeriesDefaults.js +4 -2
  81. package/es-modules/Series/Column3D/Column3DComposition.js +16 -14
  82. package/es-modules/Series/ColumnPyramid/ColumnPyramidPoint.js +18 -0
  83. package/es-modules/Series/ColumnPyramid/ColumnPyramidPointOptions.js +12 -0
  84. package/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +3 -2
  85. package/es-modules/Series/ColumnPyramid/ColumnPyramidSeriesOptions.js +12 -0
  86. package/es-modules/Series/ColumnRange/ColumnRangePoint.js +2 -0
  87. package/es-modules/Series/ColumnRange/ColumnRangePointOptions.js +12 -0
  88. package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +9 -142
  89. package/es-modules/Series/ColumnRange/ColumnRangeSeriesDefaults.js +148 -0
  90. package/es-modules/Series/ColumnRange/ColumnRangeSeriesOptions.js +12 -0
  91. package/es-modules/Series/Contour/ContourPoint.js +2 -0
  92. package/es-modules/Series/Contour/ContourSeries.js +1 -0
  93. package/es-modules/Series/Contour/ContourSeriesDefaults.js +7 -0
  94. package/es-modules/Series/Contour/ContourShader.js +9 -1
  95. package/es-modules/Series/CrossSymbol.js +3 -2
  96. package/es-modules/Series/Cylinder/CylinderComposition.js +10 -10
  97. package/es-modules/Series/Cylinder/CylinderPoint.js +2 -0
  98. package/es-modules/Series/Cylinder/CylinderPointOptions.js +15 -0
  99. package/es-modules/Series/Cylinder/CylinderSeries.js +2 -1
  100. package/es-modules/Series/Cylinder/CylinderSeriesOptions.js +15 -0
  101. package/es-modules/Series/Cylinder/SVGElement3DCylinder.js +2 -0
  102. package/es-modules/Series/DependencyWheel/DependencyWheelPoint.js +3 -1
  103. package/es-modules/Series/DependencyWheel/DependencyWheelPointOptions.js +14 -0
  104. package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +8 -8
  105. package/es-modules/Series/DependencyWheel/DependencyWheelSeriesOptions.js +14 -0
  106. package/es-modules/Series/DerivedComposition.js +9 -8
  107. package/es-modules/Series/DotPlot/DotPlotPoint.js +18 -0
  108. package/es-modules/Series/DotPlot/DotPlotPointOptions.js +12 -0
  109. package/es-modules/Series/DotPlot/DotPlotSeries.js +3 -2
  110. package/es-modules/Series/DotPlot/DotPlotSeriesOptions.js +12 -0
  111. package/es-modules/Series/DragNodesComposition.js +11 -8
  112. package/es-modules/Series/DrawPointUtilities.js +3 -1
  113. package/es-modules/Series/Dumbbell/DumbbellPoint.js +5 -3
  114. package/es-modules/Series/Dumbbell/DumbbellPointOptions.js +12 -0
  115. package/es-modules/Series/Dumbbell/DumbbellSeries.js +9 -8
  116. package/es-modules/Series/Dumbbell/DumbbellSeriesOptions.js +12 -0
  117. package/es-modules/Series/ErrorBar/ErrorBarPoint.js +18 -0
  118. package/es-modules/Series/ErrorBar/ErrorBarPointOptions.js +12 -0
  119. package/es-modules/Series/ErrorBar/ErrorBarSeries.js +6 -9
  120. package/es-modules/Series/ErrorBar/ErrorBarSeriesDefaults.js +15 -1
  121. package/es-modules/Series/ErrorBar/ErrorBarSeriesOptions.js +12 -0
  122. package/es-modules/Series/Flags/FlagsSeries.js +5 -14
  123. package/es-modules/Series/Flags/FlagsSeriesDefaults.js +2 -1
  124. package/es-modules/Series/Funnel/FunnelSeries.js +23 -24
  125. package/es-modules/Series/Funnel/FunnelSeriesDefaults.js +12 -0
  126. package/es-modules/Series/Gantt/GanttSeries.js +2 -1
  127. package/es-modules/Series/GeoHeatmap/GeoHeatmapSeries.js +5 -5
  128. package/es-modules/Series/GraphLayoutComposition.js +3 -3
  129. package/es-modules/Series/Histogram/HistogramSeries.js +1 -1
  130. package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +9 -9
  131. package/es-modules/Series/Map/MapSeries.js +1 -2
  132. package/es-modules/Series/Map/MapSeriesDefaults.js +11 -1
  133. package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +10 -7
  134. package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +12 -0
  135. package/es-modules/Series/OHLC/OHLCPoint.js +2 -2
  136. package/es-modules/Series/OHLC/OHLCSeries.js +1 -0
  137. package/es-modules/Series/Organization/OrganizationSeries.js +29 -7
  138. package/es-modules/Series/Organization/OrganizationSeriesDefaults.js +11 -4
  139. package/es-modules/Series/Pie/PiePoint.js +1 -2
  140. package/es-modules/Series/PolarComposition.js +5 -7
  141. package/es-modules/Series/Polygon/PolygonSeries.js +2 -2
  142. package/es-modules/Series/Polygon/PolygonSeriesDefaults.js +20 -0
  143. package/es-modules/Series/RangeDataLabel.js +128 -0
  144. package/es-modules/Series/Sankey/SankeySeries.js +2 -2
  145. package/es-modules/Series/Sankey/SankeySeriesDefaults.js +2 -2
  146. package/es-modules/Series/Scatter/ScatterSeriesDefaults.js +2 -0
  147. package/es-modules/Series/SimulationSeriesUtilities.js +1 -2
  148. package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +2 -2
  149. package/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +8 -0
  150. package/es-modules/Series/TiledWebMap/TiledWebMapSeries.js +12 -6
  151. package/es-modules/Series/Tilemap/TilemapSeriesDefaults.js +2 -1
  152. package/es-modules/Series/Timeline/TimelineSeries.js +9 -3
  153. package/es-modules/Series/Treegraph/TreegraphSeries.js +22 -13
  154. package/es-modules/Series/Treemap/TreemapSeriesDefaults.js +22 -1
  155. package/es-modules/Series/VariablePie/VariablePieSeriesDefaults.js +3 -2
  156. package/es-modules/Series/Vector/VectorSeries.js +7 -9
  157. package/es-modules/Series/Venn/VennSeries.js +3 -4
  158. package/es-modules/Series/Waterfall/WaterfallSeries.js +1 -1
  159. package/es-modules/Series/Windbarb/WindbarbSeries.js +6 -8
  160. package/es-modules/Series/XRange/XRangeSeries.js +8 -8
  161. package/es-modules/Shared/TimeBase.js +5 -6
  162. package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +1 -2
  163. package/es-modules/Stock/Navigator/NavigatorDefaults.js +9 -2
  164. package/es-modules/Stock/Navigator/NavigatorSymbols.js +2 -1
  165. package/es-modules/Stock/Navigator/StandaloneNavigator.js +51 -10
  166. package/es-modules/Stock/StockTools/StockToolbar.js +1 -1
  167. package/es-modules/Stock/StockTools/StockToolsBindings.js +7 -7
  168. package/es-modules/Stock/StockTools/StockToolsGui.js +2 -2
  169. package/es-modules/masters/highcharts-3d.src.js +1 -1
  170. package/es-modules/masters/highcharts-autoload.src.js +1 -1
  171. package/es-modules/masters/highcharts-gantt.src.js +1 -1
  172. package/es-modules/masters/highcharts-more.src.js +1 -1
  173. package/es-modules/masters/highcharts.src.js +7 -7
  174. package/es-modules/masters/highmaps.src.js +1 -1
  175. package/es-modules/masters/highstock.src.js +1 -1
  176. package/es-modules/masters/i18n/fr-FR.src.d.ts +1 -1
  177. package/es-modules/masters/i18n/fr-FR.src.js +1 -1
  178. package/es-modules/masters/i18n/nb-NO.src.d.ts +1 -1
  179. package/es-modules/masters/i18n/nb-NO.src.js +1 -1
  180. package/es-modules/masters/i18n/zh-CN.src.d.ts +1 -1
  181. package/es-modules/masters/i18n/zh-CN.src.js +1 -1
  182. package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
  183. package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
  184. package/es-modules/masters/indicators/ao.src.js +1 -1
  185. package/es-modules/masters/indicators/apo.src.js +1 -1
  186. package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
  187. package/es-modules/masters/indicators/aroon.src.js +1 -1
  188. package/es-modules/masters/indicators/atr.src.js +1 -1
  189. package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
  190. package/es-modules/masters/indicators/cci.src.js +1 -1
  191. package/es-modules/masters/indicators/chaikin.src.js +1 -1
  192. package/es-modules/masters/indicators/cmf.src.js +1 -1
  193. package/es-modules/masters/indicators/cmo.src.js +1 -1
  194. package/es-modules/masters/indicators/dema.src.js +1 -1
  195. package/es-modules/masters/indicators/disparity-index.src.js +1 -1
  196. package/es-modules/masters/indicators/dmi.src.js +1 -1
  197. package/es-modules/masters/indicators/dpo.src.js +1 -1
  198. package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
  199. package/es-modules/masters/indicators/indicators-all.src.js +1 -1
  200. package/es-modules/masters/indicators/indicators.src.js +1 -1
  201. package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
  202. package/es-modules/masters/indicators/klinger.src.js +1 -1
  203. package/es-modules/masters/indicators/macd.src.js +1 -1
  204. package/es-modules/masters/indicators/mfi.src.js +1 -1
  205. package/es-modules/masters/indicators/momentum.src.js +1 -1
  206. package/es-modules/masters/indicators/natr.src.js +1 -1
  207. package/es-modules/masters/indicators/obv.src.js +1 -1
  208. package/es-modules/masters/indicators/pivot-points.src.js +1 -1
  209. package/es-modules/masters/indicators/ppo.src.js +1 -1
  210. package/es-modules/masters/indicators/price-channel.src.js +1 -1
  211. package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
  212. package/es-modules/masters/indicators/psar.src.js +1 -1
  213. package/es-modules/masters/indicators/regressions.src.js +1 -1
  214. package/es-modules/masters/indicators/roc.src.js +1 -1
  215. package/es-modules/masters/indicators/rsi.src.js +1 -1
  216. package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
  217. package/es-modules/masters/indicators/stochastic.src.js +1 -1
  218. package/es-modules/masters/indicators/supertrend.src.js +1 -1
  219. package/es-modules/masters/indicators/tema.src.js +1 -1
  220. package/es-modules/masters/indicators/trendline.src.js +1 -1
  221. package/es-modules/masters/indicators/trix.src.js +1 -1
  222. package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
  223. package/es-modules/masters/indicators/vwap.src.js +1 -1
  224. package/es-modules/masters/indicators/williams-r.src.js +1 -1
  225. package/es-modules/masters/indicators/wma.src.js +1 -1
  226. package/es-modules/masters/indicators/zigzag.src.js +1 -1
  227. package/es-modules/masters/modules/accessibility.src.js +1 -1
  228. package/es-modules/masters/modules/annotations-advanced.src.js +1 -1
  229. package/es-modules/masters/modules/annotations.src.js +1 -1
  230. package/es-modules/masters/modules/arc-diagram.src.js +1 -1
  231. package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
  232. package/es-modules/masters/modules/boost-canvas.src.js +1 -1
  233. package/es-modules/masters/modules/boost.src.js +1 -1
  234. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  235. package/es-modules/masters/modules/bullet.src.js +1 -1
  236. package/es-modules/masters/modules/coloraxis.src.js +1 -1
  237. package/es-modules/masters/modules/contour.src.js +1 -1
  238. package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
  239. package/es-modules/masters/modules/cylinder.src.js +1 -1
  240. package/es-modules/masters/modules/data-sorting.src.js +1 -1
  241. package/es-modules/masters/modules/data-tools.src.js +1 -1
  242. package/es-modules/masters/modules/data.src.js +1 -1
  243. package/es-modules/masters/modules/datagrouping.src.js +1 -1
  244. package/es-modules/masters/modules/debugger.src.js +1 -1
  245. package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
  246. package/es-modules/masters/modules/dotplot.src.js +1 -1
  247. package/es-modules/masters/modules/drag-panes.src.js +1 -1
  248. package/es-modules/masters/modules/draggable-points.src.js +1 -1
  249. package/es-modules/masters/modules/drilldown.src.js +1 -1
  250. package/es-modules/masters/modules/dumbbell.src.js +1 -1
  251. package/es-modules/masters/modules/export-data.src.js +1 -1
  252. package/es-modules/masters/modules/exporting.src.js +1 -1
  253. package/es-modules/masters/modules/flowmap.src.js +2 -1
  254. package/es-modules/masters/modules/full-screen.src.js +1 -1
  255. package/es-modules/masters/modules/funnel.src.js +1 -1
  256. package/es-modules/masters/modules/funnel3d.src.js +1 -1
  257. package/es-modules/masters/modules/gantt.src.js +1 -1
  258. package/es-modules/masters/modules/geoheatmap.src.js +1 -1
  259. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  260. package/es-modules/masters/modules/heatmap.src.js +1 -1
  261. package/es-modules/masters/modules/heikinashi.src.js +1 -1
  262. package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
  263. package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
  264. package/es-modules/masters/modules/item-series.src.js +1 -1
  265. package/es-modules/masters/modules/lollipop.src.js +1 -1
  266. package/es-modules/masters/modules/map.src.js +1 -1
  267. package/es-modules/masters/modules/marker-clusters.src.js +1 -1
  268. package/es-modules/masters/modules/mouse-wheel-zoom.src.js +1 -1
  269. package/es-modules/masters/modules/navigator.src.js +1 -1
  270. package/es-modules/masters/modules/networkgraph.src.js +1 -1
  271. package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
  272. package/es-modules/masters/modules/non-cartesian-zoom.src.js +1 -1
  273. package/es-modules/masters/modules/offline-exporting.src.js +1 -1
  274. package/es-modules/masters/modules/organization.src.js +1 -1
  275. package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
  276. package/es-modules/masters/modules/pareto.src.js +1 -1
  277. package/es-modules/masters/modules/pathfinder.src.js +1 -1
  278. package/es-modules/masters/modules/pattern-fill.src.js +1 -1
  279. package/es-modules/masters/modules/pictorial.src.js +1 -1
  280. package/es-modules/masters/modules/pointandfigure.src.js +1 -1
  281. package/es-modules/masters/modules/price-indicator.src.js +1 -1
  282. package/es-modules/masters/modules/pyramid3d.src.js +1 -1
  283. package/es-modules/masters/modules/renko.src.js +1 -1
  284. package/es-modules/masters/modules/sankey.src.js +1 -1
  285. package/es-modules/masters/modules/series-label.src.js +1 -1
  286. package/es-modules/masters/modules/series-on-point.src.js +1 -1
  287. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  288. package/es-modules/masters/modules/sonification.src.js +1 -1
  289. package/es-modules/masters/modules/static-scale.src.js +1 -1
  290. package/es-modules/masters/modules/stock-tools.src.js +1 -1
  291. package/es-modules/masters/modules/stock.src.js +1 -1
  292. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  293. package/es-modules/masters/modules/sunburst.src.js +3 -2
  294. package/es-modules/masters/modules/textpath.src.js +1 -1
  295. package/es-modules/masters/modules/tiledwebmap.src.js +1 -1
  296. package/es-modules/masters/modules/tilemap.src.js +1 -1
  297. package/es-modules/masters/modules/timeline.src.js +1 -1
  298. package/es-modules/masters/modules/treegraph.src.js +1 -1
  299. package/es-modules/masters/modules/treegrid.src.js +1 -1
  300. package/es-modules/masters/modules/treemap.src.js +1 -1
  301. package/es-modules/masters/modules/variable-pie.src.js +1 -1
  302. package/es-modules/masters/modules/variwide.src.js +1 -1
  303. package/es-modules/masters/modules/vector.src.js +1 -1
  304. package/es-modules/masters/modules/venn.src.js +1 -1
  305. package/es-modules/masters/modules/windbarb.src.js +1 -1
  306. package/es-modules/masters/modules/wordcloud.src.js +1 -1
  307. package/es-modules/masters/modules/xrange.src.js +1 -1
  308. package/es-modules/masters/standalone-navigator.src.js +1 -1
  309. package/es-modules/masters/themes/adaptive.src.js +1 -1
  310. package/es-modules/masters/themes/avocado.src.js +1 -1
  311. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  312. package/es-modules/masters/themes/grid-light.src.js +1 -1
  313. package/es-modules/masters/themes/high-contrast.src.js +1 -1
  314. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  315. package/es-modules/masters/themes/sunset.src.js +1 -1
  316. package/es-modules/tsconfig.tsbuildinfo +1 -1
  317. package/esm/highcharts-3d.js +2 -2
  318. package/esm/highcharts-3d.src.js +40 -25
  319. package/esm/highcharts-autoload.js +2 -2
  320. package/esm/highcharts-autoload.src.js +22 -8
  321. package/esm/highcharts-gantt.js +2 -2
  322. package/esm/highcharts-gantt.src.js +1 -24
  323. package/esm/highcharts-more.js +2 -2
  324. package/esm/highcharts-more.src.js +1109 -926
  325. package/esm/highcharts.js +5 -5
  326. package/esm/highcharts.src.js +396 -314
  327. package/esm/highmaps.js +2 -2
  328. package/esm/highmaps.src.js +1 -24
  329. package/esm/highstock.js +2 -2
  330. package/esm/highstock.src.js +1 -24
  331. package/esm/i18n/fr-FR.js +2 -2
  332. package/esm/i18n/fr-FR.src.js +22 -8
  333. package/esm/i18n/nb-NO.js +2 -2
  334. package/esm/i18n/nb-NO.src.js +22 -8
  335. package/esm/i18n/zh-CN.js +2 -2
  336. package/esm/i18n/zh-CN.src.js +22 -8
  337. package/esm/indicators/acceleration-bands.js +2 -2
  338. package/esm/indicators/acceleration-bands.src.js +22 -8
  339. package/esm/indicators/accumulation-distribution.js +2 -2
  340. package/esm/indicators/accumulation-distribution.src.js +22 -8
  341. package/esm/indicators/ao.js +2 -2
  342. package/esm/indicators/ao.src.js +22 -8
  343. package/esm/indicators/apo.js +2 -2
  344. package/esm/indicators/apo.src.js +22 -8
  345. package/esm/indicators/aroon-oscillator.js +2 -2
  346. package/esm/indicators/aroon-oscillator.src.js +22 -8
  347. package/esm/indicators/aroon.js +2 -2
  348. package/esm/indicators/aroon.src.js +22 -8
  349. package/esm/indicators/atr.js +2 -2
  350. package/esm/indicators/atr.src.js +22 -8
  351. package/esm/indicators/bollinger-bands.js +2 -2
  352. package/esm/indicators/bollinger-bands.src.js +22 -8
  353. package/esm/indicators/cci.js +2 -2
  354. package/esm/indicators/cci.src.js +22 -8
  355. package/esm/indicators/chaikin.js +2 -2
  356. package/esm/indicators/chaikin.src.js +22 -8
  357. package/esm/indicators/cmf.js +2 -2
  358. package/esm/indicators/cmf.src.js +22 -8
  359. package/esm/indicators/cmo.js +2 -2
  360. package/esm/indicators/cmo.src.js +22 -8
  361. package/esm/indicators/dema.js +2 -2
  362. package/esm/indicators/dema.src.js +22 -8
  363. package/esm/indicators/disparity-index.js +2 -2
  364. package/esm/indicators/disparity-index.src.js +22 -8
  365. package/esm/indicators/dmi.js +2 -2
  366. package/esm/indicators/dmi.src.js +22 -8
  367. package/esm/indicators/dpo.js +2 -2
  368. package/esm/indicators/dpo.src.js +22 -8
  369. package/esm/indicators/ichimoku-kinko-hyo.js +2 -2
  370. package/esm/indicators/ichimoku-kinko-hyo.src.js +22 -8
  371. package/esm/indicators/indicators-all.js +2 -2
  372. package/esm/indicators/indicators-all.src.js +24 -11
  373. package/esm/indicators/indicators.js +2 -2
  374. package/esm/indicators/indicators.src.js +23 -9
  375. package/esm/indicators/keltner-channels.js +2 -2
  376. package/esm/indicators/keltner-channels.src.js +22 -8
  377. package/esm/indicators/klinger.js +2 -2
  378. package/esm/indicators/klinger.src.js +22 -8
  379. package/esm/indicators/macd.js +2 -2
  380. package/esm/indicators/macd.src.js +22 -8
  381. package/esm/indicators/mfi.js +2 -2
  382. package/esm/indicators/mfi.src.js +22 -8
  383. package/esm/indicators/momentum.js +2 -2
  384. package/esm/indicators/momentum.src.js +22 -8
  385. package/esm/indicators/natr.js +2 -2
  386. package/esm/indicators/natr.src.js +22 -8
  387. package/esm/indicators/obv.js +2 -2
  388. package/esm/indicators/obv.src.js +22 -8
  389. package/esm/indicators/pivot-points.js +2 -2
  390. package/esm/indicators/pivot-points.src.js +22 -8
  391. package/esm/indicators/ppo.js +2 -2
  392. package/esm/indicators/ppo.src.js +22 -8
  393. package/esm/indicators/price-channel.js +2 -2
  394. package/esm/indicators/price-channel.src.js +22 -8
  395. package/esm/indicators/price-envelopes.js +2 -2
  396. package/esm/indicators/price-envelopes.src.js +22 -8
  397. package/esm/indicators/psar.js +2 -2
  398. package/esm/indicators/psar.src.js +22 -8
  399. package/esm/indicators/regressions.js +2 -2
  400. package/esm/indicators/regressions.src.js +22 -8
  401. package/esm/indicators/roc.js +2 -2
  402. package/esm/indicators/roc.src.js +22 -8
  403. package/esm/indicators/rsi.js +2 -2
  404. package/esm/indicators/rsi.src.js +22 -8
  405. package/esm/indicators/slow-stochastic.js +2 -2
  406. package/esm/indicators/slow-stochastic.src.js +22 -8
  407. package/esm/indicators/stochastic.js +2 -2
  408. package/esm/indicators/stochastic.src.js +22 -8
  409. package/esm/indicators/supertrend.js +2 -2
  410. package/esm/indicators/supertrend.src.js +22 -8
  411. package/esm/indicators/tema.js +2 -2
  412. package/esm/indicators/tema.src.js +22 -8
  413. package/esm/indicators/trendline.js +2 -2
  414. package/esm/indicators/trendline.src.js +22 -8
  415. package/esm/indicators/trix.js +2 -2
  416. package/esm/indicators/trix.src.js +22 -8
  417. package/esm/indicators/volume-by-price.js +2 -2
  418. package/esm/indicators/volume-by-price.src.js +23 -10
  419. package/esm/indicators/vwap.js +2 -2
  420. package/esm/indicators/vwap.src.js +22 -8
  421. package/esm/indicators/williams-r.js +2 -2
  422. package/esm/indicators/williams-r.src.js +22 -8
  423. package/esm/indicators/wma.js +2 -2
  424. package/esm/indicators/wma.src.js +22 -8
  425. package/esm/indicators/zigzag.js +2 -2
  426. package/esm/indicators/zigzag.src.js +22 -8
  427. package/esm/modules/accessibility.js +2 -2
  428. package/esm/modules/accessibility.src.js +498 -32
  429. package/esm/modules/annotations-advanced.js +11 -11
  430. package/esm/modules/annotations-advanced.src.js +201 -141
  431. package/esm/modules/annotations.js +11 -11
  432. package/esm/modules/annotations.src.js +165 -127
  433. package/esm/modules/arc-diagram.js +2 -2
  434. package/esm/modules/arc-diagram.src.js +22 -8
  435. package/esm/modules/arrow-symbols.js +3 -3
  436. package/esm/modules/arrow-symbols.src.js +22 -8
  437. package/esm/modules/boost-canvas.js +2 -2
  438. package/esm/modules/boost-canvas.src.js +32 -11
  439. package/esm/modules/boost.js +2 -2
  440. package/esm/modules/boost.src.js +45 -11
  441. package/esm/modules/broken-axis.js +2 -2
  442. package/esm/modules/broken-axis.src.js +22 -8
  443. package/esm/modules/bullet.js +2 -2
  444. package/esm/modules/bullet.src.js +23 -9
  445. package/esm/modules/coloraxis.js +2 -2
  446. package/esm/modules/coloraxis.src.js +30 -11
  447. package/esm/modules/contour.js +3 -3
  448. package/esm/modules/contour.src.js +46 -13
  449. package/esm/modules/current-date-indicator.js +2 -2
  450. package/esm/modules/current-date-indicator.src.js +22 -8
  451. package/esm/modules/cylinder.js +2 -2
  452. package/esm/modules/cylinder.src.js +38 -19
  453. package/esm/modules/data-sorting.js +2 -2
  454. package/esm/modules/data-sorting.src.js +22 -8
  455. package/esm/modules/data-tools.js +2 -2
  456. package/esm/modules/data-tools.src.js +25 -11
  457. package/esm/modules/data.js +4 -4
  458. package/esm/modules/data.src.js +23 -9
  459. package/esm/modules/datagrouping.js +2 -2
  460. package/esm/modules/datagrouping.src.js +23 -9
  461. package/esm/modules/debugger.js +2 -2
  462. package/esm/modules/debugger.src.js +22 -8
  463. package/esm/modules/dependency-wheel.js +2 -2
  464. package/esm/modules/dependency-wheel.src.js +428 -17
  465. package/esm/modules/dotplot.js +2 -2
  466. package/esm/modules/dotplot.src.js +25 -10
  467. package/esm/modules/drag-panes.js +2 -2
  468. package/esm/modules/drag-panes.src.js +22 -8
  469. package/esm/modules/draggable-points.js +2 -2
  470. package/esm/modules/draggable-points.src.js +23 -10
  471. package/esm/modules/drilldown.js +2 -2
  472. package/esm/modules/drilldown.src.js +34 -22
  473. package/esm/modules/dumbbell.js +2 -2
  474. package/esm/modules/dumbbell.src.js +36 -19
  475. package/esm/modules/export-data.js +2 -2
  476. package/esm/modules/export-data.src.js +27 -9
  477. package/esm/modules/exporting.js +2 -2
  478. package/esm/modules/exporting.src.js +77 -31
  479. package/esm/modules/flowmap.js +3 -2
  480. package/esm/modules/flowmap.src.js +23 -8
  481. package/esm/modules/full-screen.js +2 -2
  482. package/esm/modules/full-screen.src.js +22 -8
  483. package/esm/modules/funnel.js +2 -2
  484. package/esm/modules/funnel.src.js +72 -41
  485. package/esm/modules/funnel3d.js +2 -2
  486. package/esm/modules/funnel3d.src.js +22 -8
  487. package/esm/modules/gantt.js +2 -2
  488. package/esm/modules/gantt.src.js +450 -25
  489. package/esm/modules/geoheatmap.js +2 -2
  490. package/esm/modules/geoheatmap.src.js +28 -14
  491. package/esm/modules/grid-axis.js +2 -2
  492. package/esm/modules/grid-axis.src.js +30 -9
  493. package/esm/modules/heatmap.js +2 -2
  494. package/esm/modules/heatmap.src.js +29 -12
  495. package/esm/modules/heikinashi.js +2 -2
  496. package/esm/modules/heikinashi.src.js +22 -8
  497. package/esm/modules/histogram-bellcurve.js +2 -2
  498. package/esm/modules/histogram-bellcurve.src.js +42 -23
  499. package/esm/modules/hollowcandlestick.js +2 -2
  500. package/esm/modules/hollowcandlestick.src.js +31 -17
  501. package/esm/modules/item-series.js +2 -2
  502. package/esm/modules/item-series.src.js +55 -8
  503. package/esm/modules/lollipop.js +2 -2
  504. package/esm/modules/lollipop.src.js +22 -8
  505. package/esm/modules/map.js +2 -2
  506. package/esm/modules/map.src.js +84 -35
  507. package/esm/modules/marker-clusters.js +2 -2
  508. package/esm/modules/marker-clusters.src.js +25 -13
  509. package/esm/modules/mouse-wheel-zoom.js +2 -2
  510. package/esm/modules/mouse-wheel-zoom.src.js +52 -11
  511. package/esm/modules/navigator.js +2 -2
  512. package/esm/modules/navigator.src.js +488 -30
  513. package/esm/modules/networkgraph.js +2 -2
  514. package/esm/modules/networkgraph.src.js +57 -26
  515. package/esm/modules/no-data-to-display.js +2 -2
  516. package/esm/modules/no-data-to-display.src.js +22 -8
  517. package/esm/modules/non-cartesian-zoom.js +2 -2
  518. package/esm/modules/non-cartesian-zoom.src.js +22 -8
  519. package/esm/modules/offline-exporting.js +2 -2
  520. package/esm/modules/offline-exporting.src.js +53 -12
  521. package/esm/modules/organization.js +4 -2
  522. package/esm/modules/organization.src.js +61 -18
  523. package/esm/modules/parallel-coordinates.js +2 -2
  524. package/esm/modules/parallel-coordinates.src.js +25 -8
  525. package/esm/modules/pareto.js +2 -2
  526. package/esm/modules/pareto.src.js +31 -16
  527. package/esm/modules/pathfinder.js +2 -2
  528. package/esm/modules/pathfinder.src.js +22 -8
  529. package/esm/modules/pattern-fill.js +2 -2
  530. package/esm/modules/pattern-fill.src.js +22 -8
  531. package/esm/modules/pictorial.js +2 -2
  532. package/esm/modules/pictorial.src.js +27 -14
  533. package/esm/modules/pointandfigure.js +2 -2
  534. package/esm/modules/pointandfigure.src.js +26 -11
  535. package/esm/modules/price-indicator.js +2 -2
  536. package/esm/modules/price-indicator.src.js +22 -8
  537. package/esm/modules/pyramid3d.js +2 -2
  538. package/esm/modules/pyramid3d.src.js +22 -8
  539. package/esm/modules/renko.js +2 -2
  540. package/esm/modules/renko.src.js +22 -8
  541. package/esm/modules/sankey.js +2 -2
  542. package/esm/modules/sankey.src.js +26 -12
  543. package/esm/modules/series-label.js +2 -2
  544. package/esm/modules/series-label.src.js +25 -12
  545. package/esm/modules/series-on-point.js +2 -2
  546. package/esm/modules/series-on-point.src.js +23 -9
  547. package/esm/modules/solid-gauge.js +2 -2
  548. package/esm/modules/solid-gauge.src.js +39 -19
  549. package/esm/modules/sonification.js +2 -2
  550. package/esm/modules/sonification.src.js +27 -12
  551. package/esm/modules/static-scale.js +2 -2
  552. package/esm/modules/static-scale.src.js +22 -8
  553. package/esm/modules/stock-tools.js +3 -3
  554. package/esm/modules/stock-tools.src.js +59 -18
  555. package/esm/modules/stock.js +2 -2
  556. package/esm/modules/stock.src.js +465 -47
  557. package/esm/modules/streamgraph.js +2 -2
  558. package/esm/modules/streamgraph.src.js +22 -8
  559. package/esm/modules/sunburst.js +2 -2
  560. package/esm/modules/sunburst.src.js +70 -20
  561. package/esm/modules/textpath.js +2 -2
  562. package/esm/modules/textpath.src.js +22 -8
  563. package/esm/modules/tiledwebmap.js +3 -3
  564. package/esm/modules/tiledwebmap.src.js +37 -14
  565. package/esm/modules/tilemap.js +2 -2
  566. package/esm/modules/tilemap.src.js +25 -10
  567. package/esm/modules/timeline.js +2 -2
  568. package/esm/modules/timeline.src.js +31 -11
  569. package/esm/modules/treegraph.js +2 -2
  570. package/esm/modules/treegraph.src.js +43 -20
  571. package/esm/modules/treegrid.js +2 -2
  572. package/esm/modules/treegrid.src.js +31 -10
  573. package/esm/modules/treemap.js +2 -2
  574. package/esm/modules/treemap.src.js +55 -15
  575. package/esm/modules/variable-pie.js +2 -2
  576. package/esm/modules/variable-pie.src.js +25 -10
  577. package/esm/modules/variwide.js +2 -2
  578. package/esm/modules/variwide.src.js +22 -8
  579. package/esm/modules/vector.js +2 -2
  580. package/esm/modules/vector.src.js +28 -16
  581. package/esm/modules/venn.js +2 -2
  582. package/esm/modules/venn.src.js +28 -13
  583. package/esm/modules/windbarb.js +2 -2
  584. package/esm/modules/windbarb.src.js +28 -16
  585. package/esm/modules/wordcloud.js +2 -2
  586. package/esm/modules/wordcloud.src.js +25 -9
  587. package/esm/modules/xrange.js +2 -2
  588. package/esm/modules/xrange.src.js +29 -15
  589. package/esm/standalone-navigator.js +5 -5
  590. package/esm/standalone-navigator.src.js +461 -329
  591. package/esm/themes/adaptive.js +3 -3
  592. package/esm/themes/adaptive.src.js +22 -8
  593. package/esm/themes/avocado.js +2 -2
  594. package/esm/themes/avocado.src.js +22 -8
  595. package/esm/themes/dark-unica.js +2 -2
  596. package/esm/themes/dark-unica.src.js +22 -8
  597. package/esm/themes/grid-light.js +2 -2
  598. package/esm/themes/grid-light.src.js +22 -8
  599. package/esm/themes/high-contrast.js +2 -2
  600. package/esm/themes/high-contrast.src.js +22 -8
  601. package/esm/themes/sand-signika.js +2 -2
  602. package/esm/themes/sand-signika.src.js +22 -8
  603. package/esm/themes/sunset.js +2 -2
  604. package/esm/themes/sunset.src.js +22 -8
  605. package/highcharts-3d.js +2 -2
  606. package/highcharts-3d.src.js +78 -62
  607. package/highcharts-autoload.d.ts +7 -3
  608. package/highcharts-autoload.js +4 -4
  609. package/highcharts-autoload.src.d.ts +7 -3
  610. package/highcharts-autoload.src.js +418 -298
  611. package/highcharts-gantt.js +4 -4
  612. package/highcharts-gantt.src.js +458 -318
  613. package/highcharts-more.d.ts +7 -3
  614. package/highcharts-more.js +2 -2
  615. package/highcharts-more.src.d.ts +7 -3
  616. package/highcharts-more.src.js +1224 -1040
  617. package/highcharts.d.ts +34734 -25643
  618. package/highcharts.js +4 -4
  619. package/highcharts.src.d.ts +34734 -25643
  620. package/highcharts.src.js +417 -297
  621. package/highmaps.js +4 -4
  622. package/highmaps.src.js +482 -320
  623. package/highstock.js +4 -4
  624. package/highstock.src.js +497 -337
  625. package/i18n/fr-FR.js +2 -2
  626. package/i18n/fr-FR.src.js +32 -16
  627. package/i18n/nb-NO.js +2 -2
  628. package/i18n/nb-NO.src.js +32 -16
  629. package/i18n/zh-CN.js +2 -2
  630. package/i18n/zh-CN.src.js +32 -16
  631. package/indicators/acceleration-bands.js +2 -2
  632. package/indicators/acceleration-bands.src.js +31 -16
  633. package/indicators/accumulation-distribution.js +2 -2
  634. package/indicators/accumulation-distribution.src.js +31 -16
  635. package/indicators/ao.js +2 -2
  636. package/indicators/ao.src.js +31 -16
  637. package/indicators/apo.js +2 -2
  638. package/indicators/apo.src.js +31 -16
  639. package/indicators/aroon-oscillator.js +2 -2
  640. package/indicators/aroon-oscillator.src.js +31 -16
  641. package/indicators/aroon.js +2 -2
  642. package/indicators/aroon.src.js +31 -16
  643. package/indicators/atr.js +2 -2
  644. package/indicators/atr.src.js +31 -16
  645. package/indicators/bollinger-bands.js +2 -2
  646. package/indicators/bollinger-bands.src.js +31 -16
  647. package/indicators/cci.js +2 -2
  648. package/indicators/cci.src.js +31 -16
  649. package/indicators/chaikin.js +2 -2
  650. package/indicators/chaikin.src.js +31 -16
  651. package/indicators/cmf.js +2 -2
  652. package/indicators/cmf.src.js +31 -16
  653. package/indicators/cmo.js +2 -2
  654. package/indicators/cmo.src.js +31 -16
  655. package/indicators/dema.js +2 -2
  656. package/indicators/dema.src.js +31 -16
  657. package/indicators/disparity-index.js +2 -2
  658. package/indicators/disparity-index.src.js +31 -16
  659. package/indicators/dmi.js +2 -2
  660. package/indicators/dmi.src.js +31 -16
  661. package/indicators/dpo.js +2 -2
  662. package/indicators/dpo.src.js +31 -16
  663. package/indicators/ichimoku-kinko-hyo.js +2 -2
  664. package/indicators/ichimoku-kinko-hyo.src.js +41 -26
  665. package/indicators/indicators-all.js +2 -2
  666. package/indicators/indicators-all.src.js +45 -31
  667. package/indicators/indicators.js +2 -2
  668. package/indicators/indicators.src.js +38 -23
  669. package/indicators/keltner-channels.js +2 -2
  670. package/indicators/keltner-channels.src.js +31 -16
  671. package/indicators/klinger.js +2 -2
  672. package/indicators/klinger.src.js +31 -16
  673. package/indicators/macd.js +2 -2
  674. package/indicators/macd.src.js +31 -16
  675. package/indicators/mfi.js +2 -2
  676. package/indicators/mfi.src.js +31 -16
  677. package/indicators/momentum.js +2 -2
  678. package/indicators/momentum.src.js +31 -16
  679. package/indicators/natr.js +2 -2
  680. package/indicators/natr.src.js +31 -16
  681. package/indicators/obv.js +2 -2
  682. package/indicators/obv.src.js +31 -16
  683. package/indicators/pivot-points.js +2 -2
  684. package/indicators/pivot-points.src.js +31 -16
  685. package/indicators/ppo.js +2 -2
  686. package/indicators/ppo.src.js +31 -16
  687. package/indicators/price-channel.js +2 -2
  688. package/indicators/price-channel.src.js +31 -16
  689. package/indicators/price-envelopes.js +2 -2
  690. package/indicators/price-envelopes.src.js +31 -16
  691. package/indicators/psar.js +2 -2
  692. package/indicators/psar.src.js +31 -16
  693. package/indicators/regressions.js +2 -2
  694. package/indicators/regressions.src.js +31 -16
  695. package/indicators/roc.js +2 -2
  696. package/indicators/roc.src.js +31 -16
  697. package/indicators/rsi.js +2 -2
  698. package/indicators/rsi.src.js +31 -16
  699. package/indicators/slow-stochastic.js +2 -2
  700. package/indicators/slow-stochastic.src.js +31 -16
  701. package/indicators/stochastic.js +2 -2
  702. package/indicators/stochastic.src.js +31 -16
  703. package/indicators/supertrend.js +2 -2
  704. package/indicators/supertrend.src.js +31 -16
  705. package/indicators/tema.js +2 -2
  706. package/indicators/tema.src.js +31 -16
  707. package/indicators/trendline.js +2 -2
  708. package/indicators/trendline.src.js +31 -16
  709. package/indicators/trix.js +2 -2
  710. package/indicators/trix.src.js +31 -16
  711. package/indicators/volume-by-price.js +2 -2
  712. package/indicators/volume-by-price.src.js +32 -18
  713. package/indicators/vwap.js +2 -2
  714. package/indicators/vwap.src.js +31 -16
  715. package/indicators/williams-r.js +2 -2
  716. package/indicators/williams-r.src.js +31 -16
  717. package/indicators/wma.js +2 -2
  718. package/indicators/wma.src.js +31 -16
  719. package/indicators/zigzag.js +2 -2
  720. package/indicators/zigzag.src.js +31 -16
  721. package/modules/accessibility.d.ts +47 -0
  722. package/modules/accessibility.js +2 -2
  723. package/modules/accessibility.src.d.ts +47 -0
  724. package/modules/accessibility.src.js +537 -70
  725. package/modules/annotations-advanced.js +11 -11
  726. package/modules/annotations-advanced.src.js +223 -162
  727. package/modules/annotations.js +11 -11
  728. package/modules/annotations.src.js +187 -148
  729. package/modules/arc-diagram.js +2 -2
  730. package/modules/arc-diagram.src.js +43 -28
  731. package/modules/arrow-symbols.js +2 -2
  732. package/modules/arrow-symbols.src.js +28 -13
  733. package/modules/boost-canvas.js +2 -2
  734. package/modules/boost-canvas.src.js +41 -19
  735. package/modules/boost.js +2 -2
  736. package/modules/boost.src.js +54 -19
  737. package/modules/broken-axis.js +2 -2
  738. package/modules/broken-axis.src.js +31 -16
  739. package/modules/bullet.js +2 -2
  740. package/modules/bullet.src.js +35 -20
  741. package/modules/coloraxis.js +2 -2
  742. package/modules/coloraxis.src.js +48 -28
  743. package/modules/contour.js +5 -5
  744. package/modules/contour.src.js +74 -34
  745. package/modules/current-date-indicator.js +2 -2
  746. package/modules/current-date-indicator.src.js +28 -13
  747. package/modules/cylinder.js +2 -2
  748. package/modules/cylinder.src.js +59 -39
  749. package/modules/data-sorting.js +2 -2
  750. package/modules/data-sorting.src.js +28 -13
  751. package/modules/data-tools.js +2 -2
  752. package/modules/data-tools.src.js +31 -16
  753. package/modules/data.js +2 -2
  754. package/modules/data.src.js +50 -35
  755. package/modules/datagrouping.js +2 -2
  756. package/modules/datagrouping.src.js +37 -22
  757. package/modules/debugger.js +2 -2
  758. package/modules/debugger.src.js +28 -13
  759. package/modules/dependency-wheel.d.ts +7 -1
  760. package/modules/dependency-wheel.js +2 -2
  761. package/modules/dependency-wheel.src.d.ts +7 -1
  762. package/modules/dependency-wheel.src.js +440 -28
  763. package/modules/dotplot.js +2 -2
  764. package/modules/dotplot.src.js +34 -18
  765. package/modules/drag-panes.js +2 -2
  766. package/modules/drag-panes.src.js +28 -13
  767. package/modules/draggable-points.js +2 -2
  768. package/modules/draggable-points.src.js +29 -15
  769. package/modules/drilldown.js +2 -2
  770. package/modules/drilldown.src.js +45 -32
  771. package/modules/dumbbell.js +2 -2
  772. package/modules/dumbbell.src.js +50 -32
  773. package/modules/export-data.d.ts +66 -1
  774. package/modules/export-data.js +2 -2
  775. package/modules/export-data.src.d.ts +66 -1
  776. package/modules/export-data.src.js +41 -22
  777. package/modules/exporting.d.ts +0 -103
  778. package/modules/exporting.js +2 -2
  779. package/modules/exporting.src.d.ts +0 -103
  780. package/modules/exporting.src.js +91 -44
  781. package/modules/flowmap.js +3 -2
  782. package/modules/flowmap.src.js +32 -16
  783. package/modules/full-screen.js +2 -2
  784. package/modules/full-screen.src.js +31 -16
  785. package/modules/funnel.d.ts +3 -3
  786. package/modules/funnel.js +2 -2
  787. package/modules/funnel.src.d.ts +3 -3
  788. package/modules/funnel.src.js +81 -49
  789. package/modules/funnel3d.js +2 -2
  790. package/modules/funnel3d.src.js +43 -28
  791. package/modules/gantt.d.ts +47 -0
  792. package/modules/gantt.js +8 -8
  793. package/modules/gantt.src.d.ts +47 -0
  794. package/modules/gantt.src.js +510 -81
  795. package/modules/geoheatmap.d.ts +13 -0
  796. package/modules/geoheatmap.js +2 -2
  797. package/modules/geoheatmap.src.d.ts +13 -0
  798. package/modules/geoheatmap.src.js +37 -22
  799. package/modules/grid-axis.js +2 -2
  800. package/modules/grid-axis.src.js +39 -17
  801. package/modules/heatmap.js +4 -4
  802. package/modules/heatmap.src.js +64 -40
  803. package/modules/heikinashi.js +2 -2
  804. package/modules/heikinashi.src.js +31 -16
  805. package/modules/histogram-bellcurve.js +2 -2
  806. package/modules/histogram-bellcurve.src.js +56 -36
  807. package/modules/hollowcandlestick.js +2 -2
  808. package/modules/hollowcandlestick.src.js +45 -30
  809. package/modules/item-series.js +2 -2
  810. package/modules/item-series.src.js +64 -16
  811. package/modules/lollipop.js +2 -2
  812. package/modules/lollipop.src.js +36 -21
  813. package/modules/map.d.ts +0 -8
  814. package/modules/map.js +4 -4
  815. package/modules/map.src.d.ts +0 -8
  816. package/modules/map.src.js +131 -74
  817. package/modules/marker-clusters.js +2 -2
  818. package/modules/marker-clusters.src.js +31 -18
  819. package/modules/mouse-wheel-zoom.js +2 -2
  820. package/modules/mouse-wheel-zoom.src.js +58 -16
  821. package/modules/navigator.d.ts +47 -0
  822. package/modules/navigator.js +2 -2
  823. package/modules/navigator.src.d.ts +47 -0
  824. package/modules/navigator.src.js +510 -51
  825. package/modules/networkgraph.js +2 -2
  826. package/modules/networkgraph.src.js +69 -37
  827. package/modules/no-data-to-display.js +2 -2
  828. package/modules/no-data-to-display.src.js +31 -16
  829. package/modules/non-cartesian-zoom.js +2 -2
  830. package/modules/non-cartesian-zoom.src.js +28 -13
  831. package/modules/offline-exporting.js +2 -2
  832. package/modules/offline-exporting.src.js +67 -25
  833. package/modules/organization.js +4 -2
  834. package/modules/organization.src.js +73 -29
  835. package/modules/parallel-coordinates.js +2 -2
  836. package/modules/parallel-coordinates.src.js +36 -18
  837. package/modules/pareto.js +2 -2
  838. package/modules/pareto.src.js +45 -29
  839. package/modules/pathfinder.js +2 -2
  840. package/modules/pathfinder.src.js +31 -16
  841. package/modules/pattern-fill.js +2 -2
  842. package/modules/pattern-fill.src.js +28 -13
  843. package/modules/pictorial.js +2 -2
  844. package/modules/pictorial.src.js +53 -38
  845. package/modules/pointandfigure.js +2 -2
  846. package/modules/pointandfigure.src.js +35 -19
  847. package/modules/price-indicator.js +2 -2
  848. package/modules/price-indicator.src.js +28 -13
  849. package/modules/pyramid3d.js +2 -2
  850. package/modules/pyramid3d.src.js +31 -16
  851. package/modules/renko.js +2 -2
  852. package/modules/renko.src.js +34 -19
  853. package/modules/sankey.js +2 -2
  854. package/modules/sankey.src.js +47 -32
  855. package/modules/series-label.js +2 -2
  856. package/modules/series-label.src.js +36 -22
  857. package/modules/series-on-point.js +2 -2
  858. package/modules/series-on-point.src.js +40 -25
  859. package/modules/solid-gauge.d.ts +3 -3
  860. package/modules/solid-gauge.js +2 -2
  861. package/modules/solid-gauge.src.d.ts +3 -3
  862. package/modules/solid-gauge.src.js +53 -32
  863. package/modules/sonification.js +2 -2
  864. package/modules/sonification.src.js +38 -22
  865. package/modules/static-scale.js +2 -2
  866. package/modules/static-scale.src.js +28 -13
  867. package/modules/stock-tools.js +3 -3
  868. package/modules/stock-tools.src.js +76 -34
  869. package/modules/stock.d.ts +47 -0
  870. package/modules/stock.js +6 -6
  871. package/modules/stock.src.d.ts +47 -0
  872. package/modules/stock.src.js +549 -100
  873. package/modules/streamgraph.js +2 -2
  874. package/modules/streamgraph.src.js +31 -16
  875. package/modules/sunburst.js +2 -2
  876. package/modules/sunburst.src.js +97 -46
  877. package/modules/textpath.js +2 -2
  878. package/modules/textpath.src.js +28 -13
  879. package/modules/tiledwebmap.js +3 -3
  880. package/modules/tiledwebmap.src.js +58 -27
  881. package/modules/tilemap.js +2 -2
  882. package/modules/tilemap.src.js +39 -23
  883. package/modules/timeline.js +2 -2
  884. package/modules/timeline.src.js +43 -22
  885. package/modules/treegraph.js +2 -2
  886. package/modules/treegraph.src.js +67 -43
  887. package/modules/treegrid.js +2 -2
  888. package/modules/treegrid.src.js +49 -27
  889. package/modules/treemap.js +2 -2
  890. package/modules/treemap.src.js +82 -41
  891. package/modules/variable-pie.js +2 -2
  892. package/modules/variable-pie.src.js +34 -18
  893. package/modules/variwide.js +2 -2
  894. package/modules/variwide.src.js +31 -16
  895. package/modules/vector.js +2 -2
  896. package/modules/vector.src.js +37 -24
  897. package/modules/venn.js +2 -2
  898. package/modules/venn.src.js +42 -26
  899. package/modules/windbarb.js +2 -2
  900. package/modules/windbarb.src.js +50 -37
  901. package/modules/wordcloud.js +2 -2
  902. package/modules/wordcloud.src.js +34 -17
  903. package/modules/xrange.js +2 -2
  904. package/modules/xrange.src.js +43 -28
  905. package/options/abands.d.ts +722 -83
  906. package/options/abands.src.d.ts +722 -83
  907. package/options/ad.d.ts +381 -26
  908. package/options/ad.src.d.ts +381 -26
  909. package/options/ao.d.ts +744 -70
  910. package/options/ao.src.d.ts +744 -70
  911. package/options/apo.d.ts +381 -26
  912. package/options/apo.src.d.ts +381 -26
  913. package/options/arcdiagram.d.ts +80 -534
  914. package/options/arcdiagram.src.d.ts +80 -534
  915. package/options/area.d.ts +432 -129
  916. package/options/area.src.d.ts +432 -129
  917. package/options/arearange.d.ts +46 -4
  918. package/options/arearange.src.d.ts +46 -4
  919. package/options/areaspline.d.ts +141 -866
  920. package/options/areaspline.src.d.ts +141 -866
  921. package/options/areasplinerange.d.ts +221 -871
  922. package/options/areasplinerange.src.d.ts +221 -871
  923. package/options/aroon.d.ts +432 -124
  924. package/options/aroon.src.d.ts +432 -124
  925. package/options/aroonoscillator.d.ts +127 -689
  926. package/options/aroonoscillator.src.d.ts +127 -689
  927. package/options/atr.d.ts +381 -71
  928. package/options/atr.src.d.ts +381 -71
  929. package/options/bar.d.ts +103 -12
  930. package/options/bar.src.d.ts +103 -12
  931. package/options/bb.d.ts +87 -762
  932. package/options/bb.src.d.ts +87 -762
  933. package/options/bellcurve.d.ts +87 -364
  934. package/options/bellcurve.src.d.ts +87 -364
  935. package/options/boxplot.d.ts +82 -13
  936. package/options/boxplot.src.d.ts +82 -13
  937. package/options/bubble.d.ts +83 -874
  938. package/options/bubble.src.d.ts +83 -874
  939. package/options/bullet.d.ts +354 -717
  940. package/options/bullet.src.d.ts +354 -717
  941. package/options/candlestick.d.ts +99 -1214
  942. package/options/candlestick.src.d.ts +99 -1214
  943. package/options/cci.d.ts +381 -26
  944. package/options/cci.src.d.ts +381 -26
  945. package/options/chaikin.d.ts +728 -83
  946. package/options/chaikin.src.d.ts +728 -83
  947. package/options/cmf.d.ts +381 -26
  948. package/options/cmf.src.d.ts +381 -26
  949. package/options/cmo.d.ts +730 -79
  950. package/options/cmo.src.d.ts +730 -79
  951. package/options/column.d.ts +1265 -99
  952. package/options/column.src.d.ts +1265 -99
  953. package/options/columnpyramid.d.ts +102 -1158
  954. package/options/columnpyramid.src.d.ts +102 -1158
  955. package/options/columnrange.d.ts +952 -95
  956. package/options/columnrange.src.d.ts +952 -95
  957. package/options/contour.d.ts +31 -443
  958. package/options/contour.src.d.ts +31 -443
  959. package/options/cylinder.d.ts +100 -12
  960. package/options/cylinder.src.d.ts +100 -12
  961. package/options/dema.d.ts +80 -736
  962. package/options/dema.src.d.ts +80 -736
  963. package/options/dependencywheel.d.ts +599 -218
  964. package/options/dependencywheel.src.d.ts +599 -218
  965. package/options/disparityindex.d.ts +84 -365
  966. package/options/disparityindex.src.d.ts +84 -365
  967. package/options/dmi.d.ts +86 -775
  968. package/options/dmi.src.d.ts +86 -775
  969. package/options/dpo.d.ts +83 -365
  970. package/options/dpo.src.d.ts +83 -365
  971. package/options/dumbbell.d.ts +27 -4
  972. package/options/dumbbell.src.d.ts +27 -4
  973. package/options/ema.d.ts +81 -703
  974. package/options/ema.src.d.ts +81 -703
  975. package/options/errorbar.d.ts +91 -1161
  976. package/options/errorbar.src.d.ts +91 -1161
  977. package/options/flags.d.ts +98 -1192
  978. package/options/flags.src.d.ts +98 -1192
  979. package/options/flowmap.d.ts +48 -373
  980. package/options/flowmap.src.d.ts +48 -373
  981. package/options/funnel.d.ts +40 -3
  982. package/options/funnel.src.d.ts +40 -3
  983. package/options/gantt.d.ts +37 -40
  984. package/options/gantt.src.d.ts +37 -40
  985. package/options/gauge.d.ts +398 -472
  986. package/options/gauge.src.d.ts +398 -472
  987. package/options/geoheatmap.d.ts +462 -63
  988. package/options/geoheatmap.src.d.ts +462 -63
  989. package/options/heatmap.d.ts +31 -380
  990. package/options/heatmap.src.d.ts +31 -380
  991. package/options/heikinashi.d.ts +20 -2
  992. package/options/heikinashi.src.d.ts +20 -2
  993. package/options/hlc.d.ts +20 -2
  994. package/options/hlc.src.d.ts +20 -2
  995. package/options/ikh.d.ts +750 -103
  996. package/options/ikh.src.d.ts +750 -103
  997. package/options/item.d.ts +34 -74
  998. package/options/item.src.d.ts +34 -74
  999. package/options/keltnerchannels.d.ts +87 -708
  1000. package/options/keltnerchannels.src.d.ts +87 -708
  1001. package/options/klinger.d.ts +34 -365
  1002. package/options/klinger.src.d.ts +34 -365
  1003. package/options/line.d.ts +151 -851
  1004. package/options/line.src.d.ts +151 -851
  1005. package/options/linearregression.d.ts +960 -85
  1006. package/options/linearregression.src.d.ts +960 -85
  1007. package/options/linearregressionangle.d.ts +96 -699
  1008. package/options/linearregressionangle.src.d.ts +96 -699
  1009. package/options/linearregressionintercept.d.ts +381 -26
  1010. package/options/linearregressionintercept.src.d.ts +381 -26
  1011. package/options/linearregressionslope.d.ts +381 -26
  1012. package/options/linearregressionslope.src.d.ts +381 -26
  1013. package/options/lollipop.d.ts +214 -851
  1014. package/options/lollipop.src.d.ts +214 -851
  1015. package/options/macd.d.ts +386 -83
  1016. package/options/macd.src.d.ts +386 -83
  1017. package/options/map.d.ts +470 -36
  1018. package/options/map.src.d.ts +470 -36
  1019. package/options/mapbubble.d.ts +43 -532
  1020. package/options/mapbubble.src.d.ts +43 -532
  1021. package/options/mapline.d.ts +135 -58
  1022. package/options/mapline.src.d.ts +135 -58
  1023. package/options/mappoint.d.ts +205 -283
  1024. package/options/mappoint.src.d.ts +205 -283
  1025. package/options/mfi.d.ts +772 -82
  1026. package/options/mfi.src.d.ts +772 -82
  1027. package/options/momentum.d.ts +381 -71
  1028. package/options/momentum.src.d.ts +381 -71
  1029. package/options/natr.d.ts +776 -75
  1030. package/options/natr.src.d.ts +776 -75
  1031. package/options/networkgraph.d.ts +184 -207
  1032. package/options/networkgraph.src.d.ts +184 -207
  1033. package/options/obv.d.ts +426 -26
  1034. package/options/obv.src.d.ts +426 -26
  1035. package/options/ohlc.d.ts +77 -14
  1036. package/options/ohlc.src.d.ts +77 -14
  1037. package/options/packedbubble.d.ts +76 -696
  1038. package/options/packedbubble.src.d.ts +76 -696
  1039. package/options/pareto.d.ts +28 -364
  1040. package/options/pareto.src.d.ts +28 -364
  1041. package/options/pc.d.ts +724 -85
  1042. package/options/pc.src.d.ts +724 -85
  1043. package/options/pictorial.d.ts +1093 -58
  1044. package/options/pictorial.src.d.ts +1093 -58
  1045. package/options/pie.d.ts +595 -129
  1046. package/options/pie.src.d.ts +595 -129
  1047. package/options/pivotpoints.d.ts +34 -365
  1048. package/options/pivotpoints.src.d.ts +34 -365
  1049. package/options/pointandfigure.d.ts +10 -50
  1050. package/options/pointandfigure.src.d.ts +10 -50
  1051. package/options/polygon.d.ts +803 -74
  1052. package/options/polygon.src.d.ts +803 -74
  1053. package/options/ppo.d.ts +34 -365
  1054. package/options/ppo.src.d.ts +34 -365
  1055. package/options/priceenvelopes.d.ts +93 -719
  1056. package/options/priceenvelopes.src.d.ts +93 -719
  1057. package/options/psar.d.ts +34 -365
  1058. package/options/psar.src.d.ts +34 -365
  1059. package/options/pyramid.d.ts +35 -3
  1060. package/options/pyramid.src.d.ts +35 -3
  1061. package/options/renko.d.ts +25 -2
  1062. package/options/renko.src.d.ts +25 -2
  1063. package/options/roc.d.ts +78 -712
  1064. package/options/roc.src.d.ts +78 -712
  1065. package/options/rsi.d.ts +34 -365
  1066. package/options/rsi.src.d.ts +34 -365
  1067. package/options/sankey.d.ts +27 -5
  1068. package/options/sankey.src.d.ts +27 -5
  1069. package/options/scatter.d.ts +896 -290
  1070. package/options/scatter.src.d.ts +896 -290
  1071. package/options/series.d.ts +938 -83
  1072. package/options/series.src.d.ts +938 -83
  1073. package/options/slowstochastic.d.ts +381 -26
  1074. package/options/slowstochastic.src.d.ts +381 -26
  1075. package/options/sma.d.ts +729 -79
  1076. package/options/sma.src.d.ts +729 -79
  1077. package/options/solidgauge.d.ts +882 -105
  1078. package/options/solidgauge.src.d.ts +882 -105
  1079. package/options/spline.d.ts +389 -90
  1080. package/options/spline.src.d.ts +389 -90
  1081. package/options/stochastic.d.ts +83 -716
  1082. package/options/stochastic.src.d.ts +83 -716
  1083. package/options/streamgraph.d.ts +97 -364
  1084. package/options/streamgraph.src.d.ts +97 -364
  1085. package/options/sunburst.d.ts +87 -19
  1086. package/options/sunburst.src.d.ts +87 -19
  1087. package/options/supertrend.d.ts +77 -749
  1088. package/options/supertrend.src.d.ts +77 -749
  1089. package/options/tema.d.ts +83 -365
  1090. package/options/tema.src.d.ts +83 -365
  1091. package/options/tiledwebmap.d.ts +13 -72
  1092. package/options/tiledwebmap.src.d.ts +13 -72
  1093. package/options/tilemap.d.ts +372 -533
  1094. package/options/tilemap.src.d.ts +372 -533
  1095. package/options/timeline.d.ts +49 -154
  1096. package/options/timeline.src.d.ts +49 -154
  1097. package/options/treegraph.d.ts +174 -696
  1098. package/options/treegraph.src.d.ts +174 -696
  1099. package/options/treemap.d.ts +468 -1079
  1100. package/options/treemap.src.d.ts +468 -1079
  1101. package/options/trendline.d.ts +381 -26
  1102. package/options/trendline.src.d.ts +381 -26
  1103. package/options/trix.d.ts +712 -82
  1104. package/options/trix.src.d.ts +712 -82
  1105. package/options/variablepie.d.ts +130 -587
  1106. package/options/variablepie.src.d.ts +130 -587
  1107. package/options/variwide.d.ts +1123 -94
  1108. package/options/variwide.src.d.ts +1123 -94
  1109. package/options/vbp.d.ts +57 -383
  1110. package/options/vbp.src.d.ts +57 -383
  1111. package/options/vector.d.ts +22 -58
  1112. package/options/vector.src.d.ts +22 -58
  1113. package/options/venn.d.ts +32 -78
  1114. package/options/venn.src.d.ts +32 -78
  1115. package/options/vwap.d.ts +122 -703
  1116. package/options/vwap.src.d.ts +122 -703
  1117. package/options/waterfall.d.ts +139 -1150
  1118. package/options/waterfall.src.d.ts +139 -1150
  1119. package/options/williamsr.d.ts +381 -76
  1120. package/options/williamsr.src.d.ts +381 -76
  1121. package/options/windbarb.d.ts +39 -2
  1122. package/options/windbarb.src.d.ts +39 -2
  1123. package/options/wma.d.ts +78 -704
  1124. package/options/wma.src.d.ts +78 -704
  1125. package/options/wordcloud.d.ts +98 -595
  1126. package/options/wordcloud.src.d.ts +98 -595
  1127. package/options/xrange.d.ts +166 -1056
  1128. package/options/xrange.src.d.ts +166 -1056
  1129. package/options/zigzag.d.ts +34 -410
  1130. package/options/zigzag.src.d.ts +34 -410
  1131. package/package.json +3 -2
  1132. package/standalone-navigator.js +4 -4
  1133. package/standalone-navigator.src.js +482 -312
  1134. package/themes/adaptive.js +2 -2
  1135. package/themes/adaptive.src.js +33 -18
  1136. package/themes/avocado.js +2 -2
  1137. package/themes/avocado.src.js +28 -13
  1138. package/themes/dark-unica.js +2 -2
  1139. package/themes/dark-unica.src.js +28 -13
  1140. package/themes/grid-light.js +2 -2
  1141. package/themes/grid-light.src.js +28 -13
  1142. package/themes/high-contrast.js +2 -2
  1143. package/themes/high-contrast.src.js +28 -13
  1144. package/themes/sand-signika.js +2 -2
  1145. package/themes/sand-signika.src.js +28 -13
  1146. package/themes/sunset.js +2 -2
  1147. package/themes/sunset.src.js +28 -13
  1148. package/css/.stylelintrc.json +0 -8
@@ -52,699 +52,76 @@ declare module "../highcharts.src" {
52
52
  duration?: number;
53
53
  }
54
54
  /**
55
- * (Highstock) Options for the _Series on point_ feature. Only `pie` and
56
- * `sunburst` series are supported at this moment.
55
+ * (Highstock) Options for the connector in the _Series on point_ feature.
56
+ *
57
+ * In styled mode, the connector can be styled with the
58
+ * `.highcharts-connector-seriesonpoint` class name.
57
59
  */
58
- interface PlotVwapOnPointOptions {
60
+ interface PlotVwapOnPointConnectorOptions {
59
61
  /**
60
- * (Highstock) Options for the connector in the _Series on point_
61
- * feature.
62
- *
63
- * In styled mode, the connector can be styled with the
64
- * `.highcharts-connector-seriesonpoint` class name.
62
+ * (Highstock) A name for the dash style to use for the connector.
65
63
  */
66
- connectorOptions?: (Highcharts.PlotVwapOnPointConnectorOptions|Highcharts.SVGAttributes);
64
+ dashstyle?: string;
67
65
  /**
68
- * (Highstock) The `id` of the point that we connect the series to. Only
69
- * points with a given `plotX` and `plotY` values and map points are
70
- * valid.
66
+ * (Highstock) Color of the connector line. By default it's the series'
67
+ * color.
71
68
  */
72
- id?: string;
69
+ stroke?: string;
73
70
  /**
74
- * (Highstock) Options allowing to set a position and an offset of the
75
- * series in the _Series on point_ feature.
71
+ * (Highstock) Pixel width of the connector line.
76
72
  */
77
- position?: (object|Highcharts.PlotVwapOnPointPositionOptions);
73
+ width?: number;
78
74
  }
79
75
  /**
80
- * (Highstock) Volume Weighted Average Price indicator.
81
- *
82
- * This series requires `linkedTo` option to be set.
83
- *
84
- * Configuration options for the series are given in three levels:
85
- *
86
- * 1. Options for all series in a chart are defined in the
87
- * plotOptions.series object.
88
- *
89
- * 2. Options for all `vwap` series are defined in plotOptions.vwap.
90
- *
91
- * 3. Options for one single series are given in the series instance array.
92
- * (see online documentation for example)
93
- *
94
- * **TypeScript:**
95
- *
96
- * - type option should always be set, otherwise a broad set of unsupported
97
- * options is allowed.
98
- *
99
- * - when accessing an array of series, the combined set of all series types
100
- * is represented by Highcharts.SeriesOptionsType . Narrowing down to the
101
- * specific type can be done by checking the `type` property. (see online
102
- * documentation for example)
76
+ * (Highstock) Options allowing to set a position and an offset of the
77
+ * series in the _Series on point_ feature.
103
78
  */
104
- interface PlotVwapOptions {
105
- /**
106
- * (Highstock) Accessibility options for a series.
107
- */
108
- accessibility?: Highcharts.SeriesAccessibilityOptionsObject;
109
- /**
110
- * (Highstock) Allow this series' points to be selected by clicking on
111
- * the graphic (columns, point markers, pie slices, map areas etc).
112
- *
113
- * The selected points can be handled by point select and unselect
114
- * events, or collectively by the getSelectedPoints function.
115
- *
116
- * And alternative way of selecting points is through dragging.
117
- */
118
- allowPointSelect?: boolean;
119
- /**
120
- * (Highstock) Enable or disable the initial animation when a series is
121
- * displayed. The animation can also be set as a configuration object.
122
- * Please note that this option only applies to the initial animation of
123
- * the series itself. For other animations, see chart.animation and the
124
- * animation parameter under the API methods. The following properties
125
- * are supported:
126
- *
127
- * - `defer`: The animation delay time in milliseconds.
128
- *
129
- * - `duration`: The duration of the animation in milliseconds.
130
- * (Defaults to `1000`)
131
- *
132
- * - `easing`: Can be a string reference to an easing function set on
133
- * the `Math` object or a function. See the _Custom easing function_
134
- * demo below. (Defaults to `easeInOutSine`)
135
- *
136
- * Due to poor performance, animation is disabled in old IE browsers for
137
- * several chart types.
138
- */
139
- animation?: (boolean|Highcharts.AnimationOptionsObject);
140
- /**
141
- * (Highstock) For some series, there is a limit that shuts down
142
- * animation by default when the total number of points in the chart is
143
- * too high. For example, for a column chart and its derivatives,
144
- * animation does not run if there is more than 250 points totally. To
145
- * disable this cap, set `animationLimit` to `Infinity`. This option
146
- * works if animation is fired on individual points, not on a group of
147
- * points like e.g. during the initial animation.
148
- */
149
- animationLimit?: number;
150
- /**
151
- * (Highstock) Sets the color blending in the boost module.
152
- */
153
- boostBlending?: Highcharts.OptionsBoostBlendingValue;
154
- /**
155
- * (Highstock) Set the point threshold for when a series should enter
156
- * boost mode.
157
- *
158
- * Setting it to e.g. 2000 will cause the series to enter boost mode
159
- * when there are 2000 or more points in the series.
160
- *
161
- * To disable boosting on the series, set the `boostThreshold` to 0.
162
- * Setting it to 1 will force boosting.
163
- *
164
- * Note that the cropThreshold also affects this setting. When zooming
165
- * in on a series that has fewer points than the `cropThreshold`, all
166
- * points are rendered although outside the visible plot area, and the
167
- * `boostThreshold` won't take effect.
168
- */
169
- boostThreshold?: number;
170
- /**
171
- * (Highstock) An additional class name to apply to the series'
172
- * graphical elements. This option does not replace default class names
173
- * of the graphical element. Changes to the series' color will also be
174
- * reflected in a chart's legend and tooltip.
175
- */
176
- className?: string;
177
- /**
178
- * (Highstock) Disable this option to allow series rendering in the
179
- * whole plotting area.
180
- *
181
- * **Note:** Clipping should be always enabled when chart.zoomType is
182
- * set
183
- */
184
- clip?: boolean;
185
- /**
186
- * (Highstock) The main color of the series. In line type series it
187
- * applies to the line and the point markers unless otherwise specified.
188
- * In bar type series it applies to the bars unless a color is specified
189
- * per point. The default value is pulled from the `options.colors`
190
- * array.
191
- *
192
- * In styled mode, the color can be defined by the colorIndex option.
193
- * Also, the series color can be set with the `.highcharts-series`,
194
- * `.highcharts-color-{n}`, `.highcharts-{type}-series` or
195
- * `.highcharts-series-{n}` class, or individual classes given by the
196
- * `className` option.
197
- */
198
- color?: Highcharts.ColorType;
199
- /**
200
- * (Highstock) Styled mode only. A specific color index to use for the
201
- * series, so its graphic representations are given the class name
202
- * `highcharts-color-{n}`.
203
- *
204
- * Since v11, CSS variables on the form `--highcharts-color-{n}` make
205
- * changing the color scheme very convenient.
206
- */
207
- colorIndex?: number;
208
- /**
209
- * (Highcharts, Highstock, Highmaps) Determines what data value should
210
- * be used to calculate point color if `colorAxis` is used. Requires to
211
- * set `min` and `max` if some custom point property is used or if
212
- * approximation for data grouping is set to `'sum'`.
213
- */
214
- colorKey?: string;
215
- /**
216
- * (Highstock) Compare the values of the series against the first
217
- * non-null, non- zero value in the visible range. The y axis will show
218
- * percentage or absolute change depending on whether `compare` is set
219
- * to `"percent"` or `"value"`. When this is applied to multiple series,
220
- * it allows comparing the development of the series against each other.
221
- * Adds a `change` field to every point object. If a `compare` value is
222
- * not set on a linked series, it will be inherited from the parent
223
- * series.
224
- */
225
- compare?: Highcharts.OptionsCompareValue;
226
- /**
227
- * (Highstock) When compare is `percent`, this option dictates whether
228
- * to use 0 or 100 as the base of comparison.
229
- */
230
- compareBase?: (0|100);
231
- /**
232
- * (Highstock) Defines if comparison should start from the first point
233
- * within the visible range or should start from the last point
234
- * **before** the range.
235
- *
236
- * In other words, this flag determines if first point within the
237
- * visible range will have 0% (`compareStart=true`) or should have been
238
- * already calculated according to the previous point
239
- * (`compareStart=false`).
240
- */
241
- compareStart?: boolean;
242
- /**
243
- * (Highstock) Whether to compare indicator to the main series values or
244
- * indicator values.
245
- */
246
- compareToMain?: boolean;
247
- /**
248
- * (Highcharts, Highstock) Whether to connect a graph line across null
249
- * points, or render a gap between the two points on either side of the
250
- * null.
251
- *
252
- * In stacked area chart, if `connectNulls` is set to true, null points
253
- * are interpreted as 0.
254
- */
255
- connectNulls?: boolean;
256
- /**
257
- * (Highcharts, Highstock, Gantt) When true, each point or column edge
258
- * is rounded to its nearest pixel in order to render sharp on screen.
259
- * In some cases, when there are a lot of densely packed columns, this
260
- * leads to visible difference in column widths or distance between
261
- * columns. In these cases, setting `crisp` to `false` may look better,
262
- * even though each column is rendered blurry.
263
- */
264
- crisp?: boolean;
265
- /**
266
- * (Highcharts, Highstock) When the series contains less points than the
267
- * crop threshold, all points are drawn, even if the points fall outside
268
- * the visible plot area at the current zoom. The advantage of drawing
269
- * all points (including markers and columns), is that animation is
270
- * performed on updates. On the other hand, when the series contains
271
- * more points than the crop threshold, the series data is cropped to
272
- * only contain points that fall within the plot area. The advantage of
273
- * cropping away invisible points is to increase performance on large
274
- * series.
275
- */
276
- cropThreshold?: number;
277
- /**
278
- * (Highstock) Cumulative Sum feature replaces points' values with the
279
- * following formula: `sum of all previous points' values + current
280
- * point's value`. Works only for points in a visible range. Adds the
281
- * `cumulativeSum` field to each point object that can be accessed e.g.
282
- * in the tooltip.pointFormat.
283
- *
284
- * With `dataGrouping` enabled, default grouping approximation is set to
285
- * `sum`.
286
- */
287
- cumulative?: boolean;
288
- /**
289
- * (Highstock) Defines if cumulation should start from the first point
290
- * within the visible range or should start from the last point
291
- * **before** the range.
292
- *
293
- * In other words, this flag determines if first point within the
294
- * visible range will start at 0 (`cumulativeStart=true`) or should have
295
- * been already calculated according to the previous point
296
- * (`cumulativeStart=false`).
297
- */
298
- cumulativeStart?: boolean;
299
- /**
300
- * (Highstock) You can set the cursor to "pointer" if you have click
301
- * events attached to the series, to signal to the user that the points
302
- * and lines can be clicked.
303
- *
304
- * In styled mode, the series cursor can be set with the same classes as
305
- * listed under series.color.
306
- */
307
- cursor?: (string|Highcharts.CursorValue);
308
- /**
309
- * (Highstock) A reserved subspace to store options and values for
310
- * customized functionality. Here you can add additional data for your
311
- * own event callbacks and formatter callbacks.
312
- */
313
- custom?: Highcharts.Dictionary<any>;
314
- /**
315
- * (Highstock) Name of the dash style to use for the graph, or for some
316
- * series types the outline of each shape.
317
- *
318
- * In styled mode, the stroke dash-array can be set with the same
319
- * classes as listed under series.color.
320
- */
321
- dashStyle?: Highcharts.DashStyleValue;
322
- /**
323
- * (Highstock) Data grouping is the concept of sampling the data values
324
- * into larger blocks in order to ease readability and increase
325
- * performance of the JavaScript charts. Highcharts Stock by default
326
- * applies data grouping when the points become closer than a certain
327
- * pixel value, determined by the `groupPixelWidth` option.
328
- *
329
- * If data grouping is applied, the grouping information of grouped
330
- * points can be read from the Point.dataGroup. If point options other
331
- * than the data itself are set, for example `name` or `color` or custom
332
- * properties, the grouping logic doesn't know how to group it. In this
333
- * case the options of the first point instance are copied over to the
334
- * group point. This can be altered through a custom `approximation`
335
- * callback function.
336
- */
337
- dataGrouping?: Highcharts.DataGroupingOptionsObject;
338
- /**
339
- * (Highcharts, Highstock, Highmaps, Gantt) Options for the series data
340
- * labels, appearing next to each data point.
341
- *
342
- * Since v6.2.0, multiple data labels can be applied to each single
343
- * point by defining them as an array of configs.
344
- *
345
- * In styled mode, the data labels can be styled with the
346
- * `.highcharts-data-label-box` and `.highcharts-data-label` class names
347
- * (see example).
348
- */
349
- dataLabels?: (Highcharts.PlotVwapDataLabelsOptions|Array<Highcharts.PlotVwapDataLabelsOptions>);
350
- /**
351
- * (Highstock) The mapping between the data table and the series data
352
- * points. This is used in conjunction with the `dataTable` option (on
353
- * chart or series level) to map columns from the data table to the
354
- * properties of the data points. The keys of the `dataMapping` object
355
- * correspond to the properties of the data points (e.g. `x`, `y`,
356
- * `name`), and the values are objects that specify which column from
357
- * which data table to use for that property.
358
- *
359
- * The keys can also be nested paths, for example `dataLabel.format`, to
360
- * map to nested properties of the data points.
361
- *
362
- * The values can also be strings, in which case they are interpreted as
363
- * column id's from the first data table.
364
- *
365
- * A typical use case is that multiple series share a common column,
366
- * like `name` or `x`. In this case, to avoid repetition, the common
367
- * column can be applied in `plotOptions.series.dataMapping` and the
368
- * individual series can specify only the columns that are unique to
369
- * them.
370
- *
371
- * The series name defaults to the column ID of the main data column in
372
- * the mapping. The main data column is typically the `y` data for
373
- * cartesian series, or `value` for map series. For example, if the
374
- * mapping is `{ y: 'Cost' }`, the series name will be `Cost`. (see
375
- * online documentation for example)
376
- *
377
- * If the columns of the DataTable have keys matching the series keys,
378
- * the data mapping is not necessary. For example, this DataTable will
379
- * connect directly to the series' `x` and `y` keys: (see online
380
- * documentation for example)
381
- */
382
- dataMapping?: Highcharts.DataMappingOptionsObject;
383
- /**
384
- * (Highcharts, Highstock) Options for series data sorting.
385
- */
386
- dataSorting?: Highcharts.PlotVwapDataSortingOptions;
387
- /**
388
- * (Highstock) Deprecated. Use
389
- * plotOptions.series.accessibility.description instead.
390
- *
391
- * A description of the series to add to the screen reader information
392
- * about the series.
393
- *
394
- * @deprecated 8.0.0
395
- */
396
- description?: string;
397
- /**
398
- * (Highstock) Enable or disable the mouse tracking for a specific
399
- * series. This includes point tooltips and click events on graphs and
400
- * points. For large datasets it improves performance.
401
- */
402
- enableMouseTracking?: boolean;
403
- /**
404
- * (Highstock) General event handlers for the series items. These event
405
- * hooks can also be attached to the series at run time using the
406
- * `Highcharts.addEvent` function.
407
- */
408
- events?: Highcharts.SeriesEventsOptionsObject;
409
- /**
410
- * (Highstock) Determines whether the series should look for the nearest
411
- * point in both dimensions or just the x-dimension when hovering the
412
- * series. Defaults to `'xy'` for scatter series and `'x'` for most
413
- * other series. If the data has duplicate x-values, it is recommended
414
- * to set this to `'xy'` to allow hovering over all points.
415
- *
416
- * Applies only to series types using nearest neighbor search (not
417
- * direct hover) for tooltip.
418
- */
419
- findNearestPointBy?: Highcharts.OptionsFindNearestPointByValue;
420
- /**
421
- * (Highcharts, Highstock) Defines when to display a gap in the graph,
422
- * together with the gapUnit option.
423
- *
424
- * In case when `dataGrouping` is enabled, points can be grouped into a
425
- * larger time span. This can make the grouped points to have a greater
426
- * distance than the absolute value of `gapSize` property, which will
427
- * result in disappearing graph completely. To prevent this situation
428
- * the mentioned distance between grouped points is used instead of
429
- * previously defined `gapSize`.
430
- *
431
- * In practice, this option is most often used to visualize gaps in time
432
- * series. In a stock chart, intraday data is available for daytime
433
- * hours, while gaps will appear in nights and weekends.
434
- */
435
- gapSize?: number;
436
- /**
437
- * (Highcharts, Highstock) Together with gapSize, this option defines
438
- * where to draw gaps in the graph.
439
- *
440
- * When the `gapUnit` is `"relative"` (default), a gap size of 5 means
441
- * that if the distance between two points is greater than 5 times that
442
- * of the two closest points, the graph will be broken.
443
- *
444
- * When the `gapUnit` is `"value"`, the gap is based on absolute axis
445
- * values, which on a datetime axis is milliseconds. This also applies
446
- * to the navigator series that inherits gap options from the base
447
- * series.
448
- */
449
- gapUnit?: Highcharts.OptionsGapUnitValue;
450
- /**
451
- * (Highcharts, Highstock, Gantt) Whether to use the Y extremes of the
452
- * total chart width or only the zoomed area when zooming in on parts of
453
- * the X axis. By default, the Y axis adjusts to the min and max of the
454
- * visible data. Cartesian series only.
455
- */
456
- getExtremesFromAll?: boolean;
79
+ interface PlotVwapOnPointPositionOptions {
457
80
  /**
458
- * (Highstock) Highlight only the hovered point and fade the remaining
459
- * points.
460
- *
461
- * Scatter-type series require enabling the 'inactive' marker state and
462
- * adjusting opacity. Note that this approach could affect performance
463
- * with large datasets.
464
- */
465
- inactiveOtherPoints?: boolean;
466
- /**
467
- * (Highstock) When set to `false` will prevent the series data from
468
- * being included in any form of data export.
469
- *
470
- * Since version 6.0.0 until 7.1.0 the option was existing undocumented
471
- * as `includeInCSVExport`.
81
+ * (Highstock) Series center offset from the original x position. If
82
+ * defined, the connector line is drawn connecting original position
83
+ * with new position.
472
84
  */
473
- includeInDataExport?: boolean;
85
+ offsetX?: number;
474
86
  /**
475
- * (Highcharts, Highstock, Gantt) Series labels are placed as close to
476
- * the series as possible in a natural way, seeking to avoid other
477
- * series. The goal of this feature is to make the chart more easily
478
- * readable, like if a human designer placed the labels in the optimal
87
+ * (Highstock) Series center offset from the original y position. If
88
+ * defined, the connector line is drawn from original position to a new
479
89
  * position.
480
- *
481
- * The series labels currently work with series types having a `graph`
482
- * or an `area`.
483
- */
484
- label?: Highcharts.SeriesLabelOptionsObject;
485
- /**
486
- * (Highstock) The line marks the last price from all points.
487
- */
488
- lastPrice?: Highcharts.SeriesLastPriceOptionsObject;
489
- /**
490
- * (Highstock) The line marks the last price from visible range of
491
- * points.
492
- */
493
- lastVisiblePrice?: Highcharts.SeriesLastVisiblePriceOptionsObject;
494
- /**
495
- * (Highstock) What type of legend symbol to render for this series. Can
496
- * be one of `areaMarker`, `lineMarker` or `rectangle`.
497
- */
498
- legendSymbol?: Highcharts.OptionsLegendSymbolValue;
499
- /**
500
- * (Highcharts, Highstock, Highmaps) Defines the color of the legend
501
- * symbol for this series. Defaults to undefined, in which case the
502
- * series color is used. Does not work with styled mode.
503
- */
504
- legendSymbolColor?: Highcharts.ColorType;
505
- /**
506
- * (Highstock) The line cap used for line ends and line joins on the
507
- * graph.
508
- */
509
- linecap?: Highcharts.SeriesLinecapValue;
510
- /**
511
- * (Highcharts, Highstock) Pixel width of the graph line.
512
- */
513
- lineWidth?: number;
514
- /**
515
- * (Highcharts, Highstock, Gantt) The main series ID that indicator will
516
- * be based on. Required for this indicator.
517
- */
518
- linkedTo?: string;
519
- /**
520
- * (Highstock) Options for the point markers of line and scatter-like
521
- * series. Properties like `fillColor`, `lineColor` and `lineWidth`
522
- * define the visual appearance of the markers. The `symbol` option
523
- * defines the shape. Other series types, like column series, don't have
524
- * markers, but have visual options on the series level instead.
525
- *
526
- * In styled mode, the markers can be styled with the
527
- * `.highcharts-point`, `.highcharts-point-hover` and
528
- * `.highcharts-point-select` class names.
529
- */
530
- marker?: Highcharts.PointMarkerOptionsObject;
531
- /**
532
- * (Highstock) The name of the series as shown in the legend, tooltip
533
- * etc. If not set, it will be based on a technical indicator type and
534
- * default params.
535
- */
536
- name?: string;
537
- /**
538
- * (Highstock) The color for the parts of the graph or points that are
539
- * below the threshold. Note that `zones` takes precedence over the
540
- * negative color. Using `negativeColor` is equivalent to applying a
541
- * zone with value of 0.
542
- */
543
- negativeColor?: Highcharts.ColorType;
544
- /**
545
- * (Highcharts, Highstock) Whether or not data-points with the value of
546
- * `null` should be interactive. When this is set to `true`, tooltips
547
- * may highlight these points, and this option also enables keyboard
548
- * navigation for such points. Format options for such points include
549
- * `nullFormat` and `nullFormatter`. Works for these series: `line`,
550
- * `spline`, `area`, `area-spline`, `column`, `bar`, and `timeline`.
551
- */
552
- nullInteraction?: (boolean|undefined);
553
- /**
554
- * (Highstock) Options for the _Series on point_ feature. Only `pie` and
555
- * `sunburst` series are supported at this moment.
556
- */
557
- onPoint?: (object|Highcharts.PlotVwapOnPointOptions);
558
- /**
559
- * (Highstock) Opacity of a series parts: line, fill (e.g. area) and
560
- * dataLabels.
561
- */
562
- opacity?: number;
563
- /**
564
- * (Highstock) Parameters used in calculation of regression series'
565
- * points.
566
- */
567
- params?: Highcharts.PlotVwapParamsOptions;
568
- /**
569
- * (Highstock) Properties for each single point.
570
- */
571
- point?: Highcharts.PlotSeriesPointOptions;
572
- /**
573
- * (Highstock) Deprecated. Use
574
- * series.accessibility.point.descriptionFormat instead.
575
- *
576
- * Same as accessibility.point.descriptionFormat, but for an individual
577
- * series. Overrides the chart wide configuration.
578
- *
579
- * @deprecated 12.6.0
580
- */
581
- pointDescriptionFormat?: Function;
582
- /**
583
- * (Highstock) Deprecated. Use
584
- * series.accessibility.point.descriptionFormatter instead.
585
- *
586
- * Same as accessibility.series.descriptionFormatter, but for an
587
- * individual series. Overrides the chart wide configuration.
588
- *
589
- * @deprecated 8.0.0
590
- */
591
- pointDescriptionFormatter?: Function;
592
- /**
593
- * (Highcharts, Highstock) When true, X values in the data set are
594
- * relative to the current `pointStart`, `pointInterval` and
595
- * `pointIntervalUnit` settings. This allows compression of the data for
596
- * datasets with irregular X values.
597
- *
598
- * The real X values are computed on the formula `f(x) = ax + b`, where
599
- * `a` is the `pointInterval` (optionally with a time unit given by
600
- * `pointIntervalUnit`), and `b` is the `pointStart`.
601
- */
602
- relativeXValue?: boolean;
603
- /**
604
- * (Highstock) Whether to select the series initially. If `showCheckbox`
605
- * is true, the checkbox next to the series name in the legend will be
606
- * checked for a selected series.
607
- */
608
- selected?: boolean;
609
- /**
610
- * (Highstock) Whether to apply a drop shadow to the graph line. Since
611
- * 2.3 the shadow can be an object configuration containing `color`,
612
- * `offsetX`, `offsetY`, `opacity` and `width`.
613
- *
614
- * Note that in some cases, like stacked columns or other dense layouts,
615
- * the series may cast shadows on each other. In that case, the
616
- * `chart.seriesGroupShadow` allows applying a common drop shadow to the
617
- * whole series group.
618
- */
619
- shadow?: (boolean|Highcharts.ShadowOptionsObject);
620
- /**
621
- * (Highstock) If true, a checkbox is displayed next to the legend item
622
- * to allow selecting the series. The state of the checkbox is
623
- * determined by the `selected` option.
624
- */
625
- showCheckbox?: boolean;
626
- /**
627
- * (Highstock) Whether to display this particular series or series type
628
- * in the legend. Standalone series are shown in legend by default, and
629
- * linked series are not. Since v7.2.0 it is possible to show series
630
- * that use colorAxis by setting this option to `true`.
631
- */
632
- showInLegend?: boolean;
633
- /**
634
- * (Highstock) Deprecated. Use series.accessibility.keyboardNavigation
635
- * instead.
636
- *
637
- * If set to `true`, the accessibility module will skip past the points
638
- * in this series for keyboard navigation.
639
- *
640
- * @deprecated 8.0.0
641
- */
642
- skipKeyboardNavigation?: boolean;
643
- /**
644
- * (Highcharts, Highstock) When this is true, the series will not cause
645
- * the Y axis to cross the zero plane (or threshold option) unless the
646
- * data actually crosses the plane.
647
- *
648
- * For example, if `softThreshold` is `false`, a series of 0, 1, 2, 3
649
- * will make the Y axis show negative values according to the
650
- * `minPadding` option. If `softThreshold` is `true`, the Y axis starts
651
- * at 0.
652
- */
653
- softThreshold?: boolean;
654
- /**
655
- * (Highstock) Sonification/audio chart options for a series.
656
- */
657
- sonification?: Highcharts.SeriesSonificationOptions;
658
- /**
659
- * (Highstock) A collection of options for different series states.
660
- */
661
- states?: Highcharts.SeriesStatesOptionsObject;
662
- /**
663
- * (Highcharts, Highstock) Whether to apply steps to the line. Possible
664
- * values are `left`, `center` and `right`.
665
- */
666
- step?: Highcharts.OptionsStepValue;
667
- /**
668
- * (Highstock) Sticky tracking of mouse events. When true, the
669
- * `mouseOut` event on a series isn't triggered until the mouse moves
670
- * over another series, or out of the plot area. When false, the
671
- * `mouseOut` event on a series is triggered when the mouse leaves the
672
- * area around the series' graph or markers. This also implies the
673
- * tooltip when not shared. When `stickyTracking` is false and
674
- * `tooltip.shared` is false, the tooltip will be hidden when moving the
675
- * mouse between series. Defaults to true for line and area type series,
676
- * but to false for columns, pies etc.
677
- *
678
- * **Note:** The boost module will force this option because of
679
- * technical limitations.
680
- */
681
- stickyTracking?: boolean;
682
- /**
683
- * (Highcharts, Highstock) The threshold, also called zero level or base
684
- * level. For line type series this is only used in conjunction with
685
- * negativeColor.
686
90
  */
687
- threshold?: (number|null);
91
+ offsetY?: number;
688
92
  /**
689
- * (Highstock) A configuration object for the tooltip rendering of each
690
- * single series. Properties are inherited from tooltip, but only the
691
- * following properties can be defined on a series level.
93
+ * (Highstock) X position of the series center. By default, the series
94
+ * is displayed on the point that it is connected to.
692
95
  */
693
- tooltip?: Highcharts.SeriesTooltipOptionsObject;
96
+ x?: number;
694
97
  /**
695
- * (Highcharts, Highstock, Gantt) When a series contains a `data` array
696
- * that is longer than this, the Series class looks for data
697
- * configurations of plain numbers or arrays of numbers. The first and
698
- * last valid points are checked. If found, the rest of the data is
699
- * assumed to be the same. This saves expensive data checking and
700
- * indexing in long series, and makes data-heavy charts render faster.
701
- *
702
- * Set it to `0` disable.
703
- *
704
- * Note:
705
- *
706
- * - In boost mode turbo threshold is forced. Only array of numbers or
707
- * two dimensional arrays are allowed.
708
- *
709
- * - In version 11.4.3 and earlier, if object configurations were passed
710
- * beyond the turbo threshold, a warning was logged in the console and
711
- * the data series didn't render.
98
+ * (Highstock) Y position of the series center. By default, the series
99
+ * is displayed on the point that it is connected to.
712
100
  */
713
- turboThreshold?: number;
714
- /**
715
- * (Highstock) Set the initial visibility of the series.
716
- */
717
- visible?: boolean;
101
+ y?: number;
102
+ }
103
+ /**
104
+ * (Highstock) Parameters used in calculation of regression series' points.
105
+ */
106
+ interface PlotVwapParamsOptions {
107
+ index?: string;
718
108
  /**
719
- * (Highcharts, Highstock) Defines the Axis on which the zones are
720
- * applied.
109
+ * (Highstock) The base period for indicator calculations. This is the
110
+ * number of data points which are taken into account for the indicator
111
+ * calculations.
721
112
  */
722
- zoneAxis?: string;
113
+ period?: number;
723
114
  /**
724
- * (Highcharts, Highstock) An array defining zones within a series.
725
- * Zones can be applied to the X axis, Y axis or Z axis for bubbles,
726
- * according to the `zoneAxis` option. The zone definitions have to be
727
- * in ascending order regarding to the value.
728
- *
729
- * In styled mode, the color zones are styled with the
730
- * `.highcharts-zone-{n}` class, or custom classed from the `className`
731
- * option (view live demo).
115
+ * (Highstock) The id of volume series which is mandatory. For example
116
+ * using OHLC data, volumeSeriesID='volume' means the indicator will be
117
+ * calculated using OHLC and volume values.
732
118
  */
733
- zones?: Array<Highcharts.SeriesZonesOptionsObject>;
734
- /**
735
- * (Highstock) Whether to zoom non-cartesian series. If `chart.zooming`
736
- * is set, the option allows to disable zooming on an individual
737
- * non-cartesian series. By default zooming is enabled for all series.
738
- *
739
- * **Note**: This option works only for non-cartesian series.
740
- */
741
- zoomEnabled?: boolean;
119
+ volumeSeriesID?: string;
742
120
  }
743
121
  /**
744
- * (Highcharts, Highstock) Animation setting for hovering the graph in
745
- * line-type series.
122
+ * (Highcharts, Highstock) Animation when not hovering over the marker.
746
123
  */
747
- interface PlotVwapStatesHoverAnimationOptions {
124
+ interface PlotVwapStatesInactiveAnimationOptions {
748
125
  /**
749
126
  * (Highcharts, Highstock) The duration of the hover animation in
750
127
  * milliseconds. By default the hover state animates quickly in, and
@@ -753,57 +130,99 @@ declare module "../highcharts.src" {
753
130
  duration?: number;
754
131
  }
755
132
  /**
756
- * (Highcharts, Highstock) Animation setting for hovering the graph in
757
- * line-type series.
133
+ * (Highcharts, Highstock, Gantt) For series on datetime axes, the date
134
+ * format in the tooltip's header will by default be guessed based on the
135
+ * closest data points. This member gives the default string representations
136
+ * used for each unit. For an overview of the string or object
137
+ * configuration, see dateFormat.
758
138
  */
759
- interface PlotVwapStatesSelectAnimationOptions {
760
- /**
761
- * (Highcharts, Highstock) The duration of the hover animation in
762
- * milliseconds. By default the hover state animates quickly in, and
763
- * slowly back to normal.
764
- */
765
- duration?: number;
139
+ interface PlotVwapTooltipDateTimeLabelFormatsOptions {
140
+ day?: string;
141
+ hour?: string;
142
+ millisecond?: string;
143
+ minute?: string;
144
+ month?: string;
145
+ second?: string;
146
+ week?: string;
147
+ year?: string;
766
148
  }
767
149
  /**
768
- * (Highstock) Options for the tooltip header when tooltip.split is enabled.
769
- * The header is the box containing the X value in a split tooltip.
150
+ * (Highstock) Positioning options for fixed tooltip, taking effect only
151
+ * when tooltip.fixed is `true`.
770
152
  */
771
- interface PlotVwapTooltipHeaderOptions {
153
+ interface PlotVwapTooltipPositionOptions {
772
154
  /**
773
- * (Highstock) Background color for the tooltip header when
774
- * tooltip.split is enabled.
155
+ * (Highstock) The horizontal alignment of the fixed tooltip.
775
156
  */
776
- backgroundColor?: Highcharts.ColorType;
157
+ align?: Highcharts.AlignValue;
777
158
  /**
778
- * (Highstock) Border color for the tooltip header when tooltip.split is
779
- * enabled.
159
+ * (Highstock) What the fixed tooltip alignment should be relative to.
160
+ *
161
+ * The default, `pane`, means that it is aligned within the plot area
162
+ * for that given series. If the tooltip is split (as default in Stock
163
+ * charts), each partial tooltip is aligned within the series' pane.
780
164
  */
781
- borderColor?: Highcharts.ColorType;
165
+ relativeTo?: Highcharts.OptionsRelativeToValue;
782
166
  /**
783
- * (Highstock) The width of the border for the tooltip header when
784
- * tooltip.split is enabled.
167
+ * (Highstock) The vertical alignment of the fixed tooltip.
785
168
  */
786
- borderWidth?: number;
169
+ verticalAlign?: Highcharts.VerticalAlignValue;
787
170
  /**
788
- * (Highstock) Distance between the plot area and the header (except the
789
- * chevron) in a split tooltip, in pixels. The default value makes the
790
- * header text align with the axis labels.
171
+ * (Highstock) X pixel offset from the given position. Can be used to
172
+ * shy away from axis lines, grid lines etc to avoid the tooltip
173
+ * overlapping other elements.
791
174
  */
792
- distance?: number;
175
+ x?: number;
793
176
  /**
794
- * (Highstock) The name of a symbol to use for the border around the
795
- * tooltip header. Applies only when tooltip.split is enabled.
796
- *
797
- * Custom callbacks for symbol path generation can also be added to
798
- * `Highcharts.SVGRenderer.prototype.symbols` the same way as for
799
- * series.marker.symbol.
177
+ * (Highstock) Y pixel offset from the given position. Can be used to
178
+ * shy away from axis lines, grid lines etc to avoid the tooltip
179
+ * overlapping other elements.
180
+ */
181
+ y?: number;
182
+ }
183
+ /**
184
+ * (Highstock) A `Volume Weighted Average Price (VWAP)` series. If the type
185
+ * option is not specified, it is inherited from chart.type.
186
+ *
187
+ * Configuration options for the series are given in three levels:
188
+ *
189
+ * 1. Options for all series in a chart are defined in the
190
+ * plotOptions.series object.
191
+ *
192
+ * 2. Options for all `vwap` series are defined in plotOptions.vwap.
193
+ *
194
+ * 3. Options for one single series are given in the series instance array.
195
+ * (see online documentation for example)
196
+ *
197
+ * **TypeScript:**
198
+ *
199
+ * - type option should always be set, otherwise a broad set of unsupported
200
+ * options is allowed.
201
+ *
202
+ * - when accessing an array of series, the combined set of all series types
203
+ * is represented by Highcharts.SeriesOptionsType . Narrowing down to the
204
+ * specific type can be done by checking the `type` property. (see online
205
+ * documentation for example)
206
+ *
207
+ * You have to extend the `SeriesVwapOptions` via an interface to allow
208
+ * custom properties: ``` declare interface SeriesVwapOptions {
209
+ * customProperty: string; }
210
+ *
211
+ */
212
+ interface SeriesVwapOptions extends Highcharts.PlotVwapOptions, Highcharts.SeriesOptions {
213
+ /**
214
+ * Not available
215
+ */
216
+ dataParser?: undefined;
217
+ /**
218
+ * Not available
800
219
  */
801
- shape?: string;
220
+ dataURL?: undefined;
802
221
  /**
803
- * (Highstock) CSS styles for the tooltip header. The default is `{
804
- * fontSize: '1em' }`, ensuring that the header text is the same size as
805
- * the axis labels.
222
+ * (Highcharts, Highstock, Highmaps, Gantt) This property is only in
223
+ * TypeScript non-optional and might be `undefined` in series objects
224
+ * from unknown sources.
806
225
  */
807
- style?: object;
226
+ type: "vwap";
808
227
  }
809
228
  }