highcharts 10.2.1 → 10.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (732) hide show
  1. package/bower.json +1 -1
  2. package/es-modules/Accessibility/Accessibility.js +1 -1
  3. package/es-modules/Accessibility/Components/InfoRegionsComponent.js +9 -6
  4. package/es-modules/Accessibility/Components/LegendComponent.js +36 -32
  5. package/es-modules/Accessibility/Components/RangeSelectorComponent.js +1 -1
  6. package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +16 -16
  7. package/es-modules/Accessibility/Options/LangDefaults.js +4 -0
  8. package/es-modules/Core/Axis/Axis.js +42 -32
  9. package/es-modules/Core/Axis/Axis3DComposition.js +501 -0
  10. package/es-modules/Core/Axis/Axis3DDefaults.js +130 -0
  11. package/es-modules/Core/Axis/AxisDefaults.js +20 -7
  12. package/es-modules/Core/Axis/Color/ColorAxis.js +46 -52
  13. package/es-modules/Core/Axis/Color/ColorAxisComposition.js +4 -2
  14. package/es-modules/Core/Axis/NavigatorAxisComposition.js +161 -0
  15. package/es-modules/Core/Axis/OrdinalAxis.js +2 -1
  16. package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +1 -1
  17. package/es-modules/Core/Axis/RadialAxis.js +19 -5
  18. package/es-modules/Core/Axis/Tick.js +1 -1
  19. package/es-modules/Core/Axis/Tick3DComposition.js +71 -0
  20. package/es-modules/Core/Chart/Chart.js +16 -20
  21. package/es-modules/Core/Chart/Chart3D.js +4 -4
  22. package/es-modules/Core/Chart/ChartDefaults.js +33 -43
  23. package/es-modules/Core/Chart/GanttChart.js +1 -1
  24. package/es-modules/Core/Chart/MapChart.js +1 -1
  25. package/es-modules/Core/Chart/StockChart.js +11 -28
  26. package/es-modules/Core/{DefaultOptions.js → Defaults.js} +21 -37
  27. package/es-modules/Core/FormatUtilities.js +1 -1
  28. package/es-modules/Core/Globals.js +1 -1
  29. package/es-modules/Core/Legend/Legend.js +114 -110
  30. package/es-modules/Core/Legend/LegendSymbol.js +9 -6
  31. package/es-modules/Core/MSPointer.js +4 -2
  32. package/es-modules/Core/Pointer.js +125 -75
  33. package/es-modules/Core/Renderer/SVG/SVGElement.js +0 -3
  34. package/es-modules/Core/Renderer/SVG/SVGRenderer.js +28 -14
  35. package/es-modules/Core/Series/DataLabel.js +8 -5
  36. package/es-modules/Core/Series/Point.js +38 -22
  37. package/es-modules/Core/Series/Series.js +12 -9
  38. package/es-modules/Core/Series/SeriesDefaults.js +36 -24
  39. package/es-modules/Core/Series/SeriesRegistry.js +2 -2
  40. package/es-modules/Core/Time.js +6 -5
  41. package/es-modules/Core/Tooltip.js +6 -28
  42. package/es-modules/Core/Utilities.js +6 -8
  43. package/es-modules/Extensions/Annotations/Annotation.js +1 -1
  44. package/es-modules/Extensions/Annotations/AnnotationDefaults.js +13 -8
  45. package/es-modules/Extensions/Annotations/MockPoint.js +2 -1
  46. package/es-modules/Extensions/Annotations/NavigationBindings.js +4 -5
  47. package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +1 -1
  48. package/es-modules/Extensions/Annotations/Popup/Popup.js +2 -2
  49. package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +4 -4
  50. package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +1 -1
  51. package/es-modules/Extensions/Boost/BoostSeries.js +11 -8
  52. package/es-modules/Extensions/Breadcrumbs.js +2 -2
  53. package/es-modules/Extensions/Data.js +2 -2
  54. package/es-modules/Extensions/DataGrouping/ApproximationDefaults.js +157 -0
  55. package/es-modules/Extensions/DataGrouping/ApproximationRegistry.js +35 -0
  56. package/es-modules/Extensions/DataGrouping/DataGrouping.js +469 -0
  57. package/es-modules/Extensions/DataGrouping/DataGroupingAxisComposition.js +174 -0
  58. package/es-modules/Extensions/DataGrouping/DataGroupingDefaults.js +143 -0
  59. package/es-modules/Extensions/DataGrouping/DataGroupingSeriesComposition.js +479 -0
  60. package/es-modules/Extensions/Debugger/Debugger.js +1 -1
  61. package/es-modules/Extensions/DraggablePoints.js +6 -2
  62. package/es-modules/Extensions/Drilldown.js +3 -5
  63. package/es-modules/Extensions/ExportData/ExportData.js +31 -5
  64. package/es-modules/Extensions/Exporting/Exporting.js +47 -60
  65. package/es-modules/Extensions/Exporting/ExportingDefaults.js +22 -24
  66. package/es-modules/Extensions/GeoJSON.js +3 -1
  67. package/es-modules/Extensions/MarkerClusters.js +1 -1
  68. package/es-modules/Extensions/NoDataToDisplay.js +1 -1
  69. package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +5 -5
  70. package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
  71. package/es-modules/Extensions/Oldie/Oldie.js +3 -3
  72. package/es-modules/Extensions/Oldie/VMLRenderer3D.js +1 -1
  73. package/es-modules/Extensions/OldiePolyfills.js +3 -1
  74. package/es-modules/Extensions/Pane.js +42 -5
  75. package/es-modules/Extensions/ParallelCoordinates.js +5 -1
  76. package/es-modules/Extensions/PatternFill.js +10 -10
  77. package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +2 -2
  78. package/es-modules/Extensions/SeriesLabel/SeriesLabelDefaults.js +4 -0
  79. package/es-modules/Extensions/Sonification/Sonification.js +1 -1
  80. package/es-modules/Extensions/Themes/Avocado.js +1 -1
  81. package/es-modules/Extensions/Themes/BrandDark.js +1 -1
  82. package/es-modules/Extensions/Themes/BrandLight.js +1 -1
  83. package/es-modules/Extensions/Themes/DarkBlue.js +1 -1
  84. package/es-modules/Extensions/Themes/DarkGreen.js +1 -1
  85. package/es-modules/Extensions/Themes/DarkUnica.js +1 -1
  86. package/es-modules/Extensions/Themes/Gray.js +1 -1
  87. package/es-modules/Extensions/Themes/Grid.js +1 -1
  88. package/es-modules/Extensions/Themes/GridLight.js +1 -1
  89. package/es-modules/Extensions/Themes/HighContrastDark.js +1 -1
  90. package/es-modules/Extensions/Themes/HighContrastLight.js +1 -1
  91. package/es-modules/Extensions/Themes/SandSignika.js +1 -1
  92. package/es-modules/Extensions/Themes/Skies.js +1 -1
  93. package/es-modules/Extensions/Themes/Sunset.js +1 -1
  94. package/es-modules/Gantt/Connection.js +5 -5
  95. package/es-modules/Gantt/Pathfinder.js +6 -6
  96. package/es-modules/Maps/MapNavigation.js +1 -1
  97. package/es-modules/Maps/{MapNavigationOptionsDefault.js → MapNavigationDefaults.js} +4 -4
  98. package/es-modules/Maps/MapViewOptionsDefault.js +4 -4
  99. package/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +3 -5
  100. package/es-modules/Series/AreaRange/AreaRangePoint.js +6 -10
  101. package/es-modules/Series/AreaRange/AreaRangeSeries.js +59 -48
  102. package/es-modules/Series/BoxPlot/BoxPlotSeries.js +4 -1
  103. package/es-modules/Series/Bubble/BubbleLegendComposition.js +22 -16
  104. package/es-modules/Series/Bubble/BubbleLegendItem.js +17 -21
  105. package/es-modules/Series/Candlestick/CandlestickSeries.js +15 -175
  106. package/es-modules/Series/Candlestick/CandlestickSeriesDefaults.js +179 -0
  107. package/es-modules/Series/Column/ColumnSeries.js +25 -506
  108. package/es-modules/Series/Column/ColumnSeriesDefaults.js +487 -0
  109. package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +40 -36
  110. package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +2 -106
  111. package/es-modules/Series/DependencyWheel/DependencyWheelSeriesDefaults.js +183 -0
  112. package/es-modules/Series/DotPlot/DotPlotSeries.js +11 -12
  113. package/es-modules/Series/DrawPointUtilities.js +2 -14
  114. package/es-modules/Series/Dumbbell/DumbbellPoint.js +5 -4
  115. package/es-modules/Series/Dumbbell/DumbbellSeries.js +11 -7
  116. package/es-modules/Series/ErrorBar/ErrorBarSeries.js +19 -136
  117. package/es-modules/Series/ErrorBar/ErrorBarSeriesDefaults.js +147 -0
  118. package/es-modules/Series/Flags/FlagsPoint.js +2 -3
  119. package/es-modules/Series/Flags/FlagsSeries.js +31 -298
  120. package/es-modules/Series/Flags/FlagsSeriesDefaults.js +295 -0
  121. package/es-modules/Series/Flags/FlagsSymbols.js +96 -71
  122. package/es-modules/Series/HLC/HLCPoint.js +2 -2
  123. package/es-modules/Series/HLC/HLCSeries.js +7 -172
  124. package/es-modules/Series/HLC/HLCSeriesDefaults.js +184 -0
  125. package/es-modules/Series/Heatmap/HeatmapSeries.js +3 -0
  126. package/es-modules/Series/HeikinAshi/HeikinAshiPoint.js +3 -20
  127. package/es-modules/Series/HeikinAshi/HeikinAshiSeries.js +78 -139
  128. package/es-modules/Series/HeikinAshi/HeikinAshiSeriesDefaults.js +102 -0
  129. package/es-modules/Series/Item/ItemPoint.js +0 -1
  130. package/es-modules/Series/Item/ItemSeries.js +13 -8
  131. package/es-modules/Series/Line/LineSeries.js +8 -4
  132. package/es-modules/Series/Map/MapPoint.js +19 -1
  133. package/es-modules/Series/Map/MapSeries.js +7 -3
  134. package/es-modules/Series/MapBubble/MapBubbleSeries.js +4 -0
  135. package/es-modules/Series/MapPoint/MapPointPoint.js +0 -5
  136. package/es-modules/Series/MapPoint/MapPointSeries.js +24 -9
  137. package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +2 -5
  138. package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +2 -0
  139. package/es-modules/Series/OHLC/OHLCPoint.js +0 -2
  140. package/es-modules/Series/OHLC/OHLCSeries.js +64 -160
  141. package/es-modules/Series/OHLC/OHLCSeriesDefaults.js +151 -0
  142. package/es-modules/Series/Organization/OrganizationPoint.js +0 -2
  143. package/es-modules/Series/Organization/OrganizationSeries.js +96 -469
  144. package/es-modules/Series/Organization/OrganizationSeriesDefaults.js +415 -0
  145. package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +3 -10
  146. package/es-modules/Series/PackedBubble/PackedBubbleSeriesDefaults.js +2 -0
  147. package/es-modules/Series/PathUtilities.js +74 -0
  148. package/es-modules/Series/Pie/PieSeries.js +2 -644
  149. package/es-modules/Series/Pie/PieSeriesDefaults.js +660 -0
  150. package/es-modules/Series/PolarComposition.js +233 -15
  151. package/es-modules/Series/Sankey/SankeySeries.js +27 -530
  152. package/es-modules/Series/Sankey/SankeySeriesDefaults.js +522 -0
  153. package/es-modules/Series/Scatter/ScatterSeries.js +2 -172
  154. package/es-modules/Series/Scatter/ScatterSeriesDefaults.js +188 -0
  155. package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +12 -182
  156. package/es-modules/Series/SolidGauge/SolidGaugeSeriesDefaults.js +199 -0
  157. package/es-modules/Series/Sunburst/SunburstNode.js +34 -0
  158. package/es-modules/Series/Sunburst/SunburstPoint.js +2 -1
  159. package/es-modules/Series/Sunburst/SunburstSeries.js +3 -1
  160. package/es-modules/Series/Timeline/TimelineSeries.js +2 -231
  161. package/es-modules/Series/Timeline/TimelineSeriesDefaults.js +248 -0
  162. package/es-modules/Series/TreeUtilities.js +1 -2
  163. package/es-modules/Series/Treegraph/TreegraphLayout.js +338 -0
  164. package/es-modules/Series/Treegraph/TreegraphLink.js +92 -0
  165. package/es-modules/Series/Treegraph/TreegraphNode.js +206 -0
  166. package/es-modules/Series/Treegraph/TreegraphPoint.js +175 -0
  167. package/es-modules/Series/Treegraph/TreegraphSeries.js +510 -0
  168. package/es-modules/Series/Treegraph/TreegraphSeriesDefaults.js +231 -0
  169. package/es-modules/Series/Treemap/TreemapNode.js +48 -0
  170. package/es-modules/Series/Treemap/TreemapPoint.js +2 -1
  171. package/es-modules/Series/Treemap/TreemapSeries.js +29 -27
  172. package/es-modules/Series/Variwide/VariwideComposition.js +70 -26
  173. package/es-modules/Series/Variwide/VariwidePoint.js +8 -7
  174. package/es-modules/Series/Variwide/VariwideSeries.js +19 -14
  175. package/es-modules/Series/Vector/VectorSeries.js +2 -2
  176. package/es-modules/Series/Venn/VennSeries.js +14 -0
  177. package/es-modules/Series/Waterfall/WaterfallSeries.js +0 -1
  178. package/es-modules/Series/Windbarb/WindbarbSeries.js +3 -2
  179. package/es-modules/Series/Wordcloud/WordcloudSeries.js +3 -0
  180. package/es-modules/Stock/Indicators/AO/AOIndicator.js +1 -2
  181. package/es-modules/Stock/Indicators/BB/BBIndicator.js +15 -4
  182. package/es-modules/Stock/Indicators/IKH/IKHIndicator.js +21 -18
  183. package/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +1 -2
  184. package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +1 -2
  185. package/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +1 -1
  186. package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +0 -1
  187. package/es-modules/Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js +3 -4
  188. package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +1 -2
  189. package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +6 -7
  190. package/es-modules/{Core → Stock/Navigator}/Navigator.js +112 -686
  191. package/es-modules/Stock/Navigator/NavigatorComposition.js +218 -0
  192. package/es-modules/Stock/Navigator/NavigatorDefaults.js +490 -0
  193. package/es-modules/Stock/Navigator/NavigatorSymbols.js +44 -0
  194. package/es-modules/{Extensions → Stock/RangeSelector}/RangeSelector.js +154 -818
  195. package/es-modules/Stock/RangeSelector/RangeSelectorComposition.js +286 -0
  196. package/es-modules/Stock/RangeSelector/RangeSelectorDefaults.js +521 -0
  197. package/es-modules/{Core → Stock/Scrollbar}/Scrollbar.js +4 -4
  198. package/es-modules/{Core → Stock/Scrollbar}/ScrollbarDefaults.js +1 -1
  199. package/es-modules/Stock/{StockToolbar.js → StockTools/StockToolbar.js} +2 -2
  200. package/es-modules/Stock/{StockTools.js → StockTools/StockTools.js} +3 -3
  201. package/es-modules/Stock/{StockToolsBindings.js → StockTools/StockToolsBindings.js} +3 -3
  202. package/es-modules/Stock/{StockToolsDefaults.js → StockTools/StockToolsDefaults.js} +4 -4
  203. package/es-modules/Stock/{StockToolsGui.js → StockTools/StockToolsGui.js} +4 -4
  204. package/es-modules/Stock/{StockToolsUtilities.js → StockTools/StockToolsUtilities.js} +4 -4
  205. package/es-modules/masters/highcharts-3d.src.js +3 -5
  206. package/es-modules/masters/highcharts-gantt.src.js +1 -1
  207. package/es-modules/masters/highcharts-more.src.js +1 -1
  208. package/es-modules/masters/highcharts.src.js +6 -6
  209. package/es-modules/masters/highmaps.src.js +1 -1
  210. package/es-modules/masters/highstock.src.js +1 -1
  211. package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
  212. package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
  213. package/es-modules/masters/indicators/ao.src.js +1 -1
  214. package/es-modules/masters/indicators/apo.src.js +1 -1
  215. package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
  216. package/es-modules/masters/indicators/aroon.src.js +1 -1
  217. package/es-modules/masters/indicators/atr.src.js +1 -1
  218. package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
  219. package/es-modules/masters/indicators/cci.src.js +1 -1
  220. package/es-modules/masters/indicators/chaikin.src.js +1 -1
  221. package/es-modules/masters/indicators/cmf.src.js +1 -1
  222. package/es-modules/masters/indicators/cmo.src.js +1 -1
  223. package/es-modules/masters/indicators/dema.src.js +1 -1
  224. package/es-modules/masters/indicators/disparity-index.src.js +1 -1
  225. package/es-modules/masters/indicators/dmi.src.js +1 -1
  226. package/es-modules/masters/indicators/dpo.src.js +1 -1
  227. package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
  228. package/es-modules/masters/indicators/indicators-all.src.js +1 -1
  229. package/es-modules/masters/indicators/indicators.src.js +1 -1
  230. package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
  231. package/es-modules/masters/indicators/klinger.src.js +1 -1
  232. package/es-modules/masters/indicators/macd.src.js +1 -1
  233. package/es-modules/masters/indicators/mfi.src.js +1 -1
  234. package/es-modules/masters/indicators/momentum.src.js +1 -1
  235. package/es-modules/masters/indicators/natr.src.js +1 -1
  236. package/es-modules/masters/indicators/obv.src.js +1 -1
  237. package/es-modules/masters/indicators/pivot-points.src.js +1 -1
  238. package/es-modules/masters/indicators/ppo.src.js +1 -1
  239. package/es-modules/masters/indicators/price-channel.src.js +1 -1
  240. package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
  241. package/es-modules/masters/indicators/psar.src.js +1 -1
  242. package/es-modules/masters/indicators/regressions.src.js +1 -1
  243. package/es-modules/masters/indicators/roc.src.js +1 -1
  244. package/es-modules/masters/indicators/rsi.src.js +1 -1
  245. package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
  246. package/es-modules/masters/indicators/stochastic.src.js +1 -1
  247. package/es-modules/masters/indicators/supertrend.src.js +1 -1
  248. package/es-modules/masters/indicators/tema.src.js +1 -1
  249. package/es-modules/masters/indicators/trendline.src.js +1 -1
  250. package/es-modules/masters/indicators/trix.src.js +1 -1
  251. package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
  252. package/es-modules/masters/indicators/vwap.src.js +1 -1
  253. package/es-modules/masters/indicators/williams-r.src.js +1 -1
  254. package/es-modules/masters/indicators/wma.src.js +1 -1
  255. package/es-modules/masters/indicators/zigzag.src.js +1 -1
  256. package/es-modules/masters/modules/accessibility.src.js +1 -1
  257. package/es-modules/masters/modules/annotations-advanced.src.js +1 -1
  258. package/es-modules/masters/modules/annotations.src.js +1 -1
  259. package/es-modules/masters/modules/arc-diagram.src.js +1 -1
  260. package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
  261. package/es-modules/masters/modules/boost-canvas.src.js +1 -1
  262. package/es-modules/masters/modules/boost.src.js +1 -1
  263. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  264. package/es-modules/masters/modules/bullet.src.js +1 -1
  265. package/es-modules/masters/modules/coloraxis.src.js +1 -1
  266. package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
  267. package/es-modules/masters/modules/cylinder.src.js +1 -1
  268. package/es-modules/masters/modules/data.src.js +1 -1
  269. package/es-modules/masters/modules/datagrouping.src.js +11 -3
  270. package/es-modules/masters/modules/debugger.src.js +1 -1
  271. package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
  272. package/es-modules/masters/modules/dotplot.src.js +1 -1
  273. package/es-modules/masters/modules/drag-panes.src.js +1 -1
  274. package/es-modules/masters/modules/draggable-points.src.js +1 -1
  275. package/es-modules/masters/modules/drilldown.src.js +1 -1
  276. package/es-modules/masters/modules/dumbbell.src.js +1 -1
  277. package/es-modules/masters/modules/export-data.src.js +1 -1
  278. package/es-modules/masters/modules/exporting.src.js +1 -1
  279. package/es-modules/masters/modules/full-screen.src.js +1 -1
  280. package/es-modules/masters/modules/funnel.src.js +1 -1
  281. package/es-modules/masters/modules/funnel3d.src.js +1 -1
  282. package/es-modules/masters/modules/gantt.src.js +9 -5
  283. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  284. package/es-modules/masters/modules/heatmap.src.js +1 -1
  285. package/es-modules/masters/modules/heikinashi.src.js +5 -2
  286. package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
  287. package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
  288. package/es-modules/masters/modules/item-series.src.js +1 -1
  289. package/es-modules/masters/modules/lollipop.src.js +1 -1
  290. package/es-modules/masters/modules/map.src.js +1 -1
  291. package/es-modules/masters/modules/marker-clusters.src.js +1 -1
  292. package/es-modules/masters/modules/networkgraph.src.js +1 -1
  293. package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
  294. package/es-modules/masters/modules/offline-exporting.src.js +1 -1
  295. package/es-modules/masters/modules/oldie-polyfills.src.js +1 -1
  296. package/es-modules/masters/modules/oldie.src.js +1 -1
  297. package/es-modules/masters/modules/organization.src.js +1 -1
  298. package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  299. package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
  300. package/es-modules/masters/modules/pareto.src.js +1 -1
  301. package/es-modules/masters/modules/pathfinder.src.js +1 -1
  302. package/es-modules/masters/modules/pattern-fill.src.js +1 -1
  303. package/es-modules/masters/modules/price-indicator.src.js +1 -1
  304. package/es-modules/masters/modules/pyramid3d.src.js +1 -1
  305. package/es-modules/masters/modules/sankey.src.js +1 -1
  306. package/es-modules/masters/modules/series-label.src.js +1 -1
  307. package/es-modules/masters/modules/series-on-point.src.js +1 -1
  308. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  309. package/es-modules/masters/modules/sonification.src.js +1 -1
  310. package/es-modules/masters/modules/static-scale.src.js +1 -1
  311. package/es-modules/masters/modules/stock-tools.src.js +4 -4
  312. package/es-modules/masters/modules/stock.src.js +17 -11
  313. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  314. package/es-modules/masters/modules/sunburst.src.js +1 -1
  315. package/es-modules/masters/modules/tilemap.src.js +1 -1
  316. package/es-modules/masters/modules/timeline.src.js +1 -1
  317. package/es-modules/masters/modules/treegraph.src.js +13 -0
  318. package/es-modules/masters/modules/treegrid.src.js +1 -1
  319. package/es-modules/masters/modules/treemap.src.js +1 -1
  320. package/es-modules/masters/modules/variable-pie.src.js +1 -1
  321. package/es-modules/masters/modules/variwide.src.js +5 -2
  322. package/es-modules/masters/modules/vector.src.js +1 -1
  323. package/es-modules/masters/modules/venn.src.js +1 -1
  324. package/es-modules/masters/modules/windbarb.src.js +1 -1
  325. package/es-modules/masters/modules/wordcloud.src.js +1 -1
  326. package/es-modules/masters/modules/xrange.src.js +1 -1
  327. package/es-modules/masters/themes/avocado.src.js +1 -1
  328. package/es-modules/masters/themes/brand-dark.src.js +1 -1
  329. package/es-modules/masters/themes/brand-light.src.js +1 -1
  330. package/es-modules/masters/themes/dark-blue.src.js +1 -1
  331. package/es-modules/masters/themes/dark-green.src.js +1 -1
  332. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  333. package/es-modules/masters/themes/gray.src.js +1 -1
  334. package/es-modules/masters/themes/grid-light.src.js +1 -1
  335. package/es-modules/masters/themes/grid.src.js +1 -1
  336. package/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
  337. package/es-modules/masters/themes/high-contrast-light.src.js +1 -1
  338. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  339. package/es-modules/masters/themes/skies.src.js +1 -1
  340. package/es-modules/masters/themes/sunset.src.js +1 -1
  341. package/highcharts-3d.js +97 -98
  342. package/highcharts-3d.js.map +1 -1
  343. package/highcharts-3d.src.js +476 -449
  344. package/highcharts-gantt.js +811 -808
  345. package/highcharts-gantt.js.map +1 -1
  346. package/highcharts-gantt.src.js +14619 -14112
  347. package/highcharts-more.d.ts +0 -8
  348. package/highcharts-more.js +208 -201
  349. package/highcharts-more.js.map +1 -1
  350. package/highcharts-more.src.d.ts +0 -8
  351. package/highcharts-more.src.js +679 -289
  352. package/highcharts.d.ts +30739 -6156
  353. package/highcharts.js +590 -589
  354. package/highcharts.js.map +1 -1
  355. package/highcharts.src.d.ts +30739 -6156
  356. package/highcharts.src.js +1988 -1799
  357. package/highmaps.js +759 -757
  358. package/highmaps.js.map +1 -1
  359. package/highmaps.src.js +2339 -2077
  360. package/highstock.js +802 -794
  361. package/highstock.js.map +1 -1
  362. package/highstock.src.js +12349 -11416
  363. package/indicators/acceleration-bands.js +1 -1
  364. package/indicators/acceleration-bands.src.js +1 -1
  365. package/indicators/accumulation-distribution.js +1 -1
  366. package/indicators/accumulation-distribution.src.js +1 -1
  367. package/indicators/ao.js +6 -6
  368. package/indicators/ao.js.map +1 -1
  369. package/indicators/ao.src.js +4 -3
  370. package/indicators/apo.js +1 -1
  371. package/indicators/apo.src.js +1 -1
  372. package/indicators/aroon-oscillator.js +1 -1
  373. package/indicators/aroon-oscillator.src.js +1 -1
  374. package/indicators/aroon.js +1 -1
  375. package/indicators/aroon.src.js +1 -1
  376. package/indicators/atr.js +1 -1
  377. package/indicators/atr.src.js +1 -1
  378. package/indicators/bollinger-bands.js +1 -1
  379. package/indicators/bollinger-bands.js.map +1 -1
  380. package/indicators/bollinger-bands.src.js +16 -5
  381. package/indicators/cci.js +1 -1
  382. package/indicators/cci.src.js +1 -1
  383. package/indicators/chaikin.js +1 -1
  384. package/indicators/chaikin.src.js +1 -1
  385. package/indicators/cmf.js +1 -1
  386. package/indicators/cmf.src.js +1 -1
  387. package/indicators/cmo.d.ts +17 -0
  388. package/indicators/cmo.js +1 -1
  389. package/indicators/cmo.src.d.ts +17 -0
  390. package/indicators/cmo.src.js +1 -1
  391. package/indicators/dema.js +1 -1
  392. package/indicators/dema.src.js +1 -1
  393. package/indicators/disparity-index.d.ts +17 -0
  394. package/indicators/disparity-index.js +1 -1
  395. package/indicators/disparity-index.src.d.ts +17 -0
  396. package/indicators/disparity-index.src.js +1 -1
  397. package/indicators/dmi.d.ts +17 -0
  398. package/indicators/dmi.js +1 -1
  399. package/indicators/dmi.src.d.ts +17 -0
  400. package/indicators/dmi.src.js +1 -1
  401. package/indicators/dpo.js +1 -1
  402. package/indicators/dpo.src.js +1 -1
  403. package/indicators/ichimoku-kinko-hyo.js +14 -14
  404. package/indicators/ichimoku-kinko-hyo.js.map +1 -1
  405. package/indicators/ichimoku-kinko-hyo.src.js +22 -19
  406. package/indicators/indicators-all.js +198 -199
  407. package/indicators/indicators-all.js.map +1 -1
  408. package/indicators/indicators-all.src.js +63 -57
  409. package/indicators/indicators.js +13 -13
  410. package/indicators/indicators.js.map +1 -1
  411. package/indicators/indicators.src.js +1 -15
  412. package/indicators/keltner-channels.js +1 -1
  413. package/indicators/keltner-channels.src.js +1 -1
  414. package/indicators/klinger.d.ts +17 -0
  415. package/indicators/klinger.js +12 -12
  416. package/indicators/klinger.js.map +1 -1
  417. package/indicators/klinger.src.d.ts +17 -0
  418. package/indicators/klinger.src.js +4 -3
  419. package/indicators/macd.js +1 -1
  420. package/indicators/macd.js.map +1 -1
  421. package/indicators/macd.src.js +4 -3
  422. package/indicators/mfi.js +1 -1
  423. package/indicators/mfi.src.js +1 -1
  424. package/indicators/momentum.js +1 -1
  425. package/indicators/momentum.src.js +1 -1
  426. package/indicators/natr.js +1 -1
  427. package/indicators/natr.src.js +1 -1
  428. package/indicators/obv.d.ts +17 -0
  429. package/indicators/obv.js +1 -1
  430. package/indicators/obv.src.d.ts +17 -0
  431. package/indicators/obv.src.js +1 -1
  432. package/indicators/pivot-points.js +2 -2
  433. package/indicators/pivot-points.js.map +1 -1
  434. package/indicators/pivot-points.src.js +2 -2
  435. package/indicators/ppo.js +1 -1
  436. package/indicators/ppo.src.js +1 -1
  437. package/indicators/price-channel.js +1 -1
  438. package/indicators/price-channel.src.js +1 -1
  439. package/indicators/price-envelopes.js +1 -1
  440. package/indicators/price-envelopes.src.js +1 -1
  441. package/indicators/psar.js +1 -1
  442. package/indicators/psar.src.js +1 -1
  443. package/indicators/regressions.js +1 -1
  444. package/indicators/regressions.src.js +1 -1
  445. package/indicators/roc.js +1 -1
  446. package/indicators/roc.src.js +1 -1
  447. package/indicators/rsi.js +1 -1
  448. package/indicators/rsi.src.js +1 -1
  449. package/indicators/slow-stochastic.js +5 -5
  450. package/indicators/slow-stochastic.js.map +1 -1
  451. package/indicators/slow-stochastic.src.js +6 -5
  452. package/indicators/stochastic.js +1 -1
  453. package/indicators/stochastic.src.js +1 -1
  454. package/indicators/supertrend.js +7 -7
  455. package/indicators/supertrend.js.map +1 -1
  456. package/indicators/supertrend.src.js +4 -3
  457. package/indicators/tema.js +1 -1
  458. package/indicators/tema.src.js +1 -1
  459. package/indicators/trendline.js +1 -1
  460. package/indicators/trendline.src.js +1 -1
  461. package/indicators/trix.js +1 -1
  462. package/indicators/trix.src.js +1 -1
  463. package/indicators/volume-by-price.js +17 -17
  464. package/indicators/volume-by-price.js.map +1 -1
  465. package/indicators/volume-by-price.src.js +9 -8
  466. package/indicators/vwap.js +1 -1
  467. package/indicators/vwap.src.js +1 -1
  468. package/indicators/williams-r.js +1 -1
  469. package/indicators/williams-r.src.js +1 -1
  470. package/indicators/wma.js +1 -1
  471. package/indicators/wma.src.js +1 -1
  472. package/indicators/zigzag.js +1 -1
  473. package/indicators/zigzag.src.js +1 -1
  474. package/modules/accessibility.js +214 -213
  475. package/modules/accessibility.js.map +1 -1
  476. package/modules/accessibility.src.js +991 -835
  477. package/modules/annotations-advanced.js +16 -16
  478. package/modules/annotations-advanced.js.map +1 -1
  479. package/modules/annotations-advanced.src.js +29 -24
  480. package/modules/annotations.js +91 -91
  481. package/modules/annotations.js.map +1 -1
  482. package/modules/annotations.src.js +29 -24
  483. package/modules/arc-diagram.d.ts +17 -0
  484. package/modules/arc-diagram.js +15 -15
  485. package/modules/arc-diagram.js.map +1 -1
  486. package/modules/arc-diagram.src.d.ts +17 -0
  487. package/modules/arc-diagram.src.js +6 -6
  488. package/modules/arrow-symbols.js +1 -1
  489. package/modules/arrow-symbols.src.js +1 -1
  490. package/modules/boost-canvas.js +19 -19
  491. package/modules/boost-canvas.js.map +1 -1
  492. package/modules/boost-canvas.src.js +13 -8
  493. package/modules/boost.js +37 -37
  494. package/modules/boost.js.map +1 -1
  495. package/modules/boost.src.js +13 -8
  496. package/modules/broken-axis.js +1 -1
  497. package/modules/broken-axis.src.js +1 -1
  498. package/modules/bullet.js +1 -1
  499. package/modules/bullet.src.js +1 -1
  500. package/modules/coloraxis.js +25 -24
  501. package/modules/coloraxis.js.map +1 -1
  502. package/modules/coloraxis.src.js +77 -58
  503. package/modules/current-date-indicator.js +1 -1
  504. package/modules/current-date-indicator.src.js +1 -1
  505. package/modules/cylinder.js +1 -1
  506. package/modules/cylinder.src.js +1 -1
  507. package/modules/data.js +27 -27
  508. package/modules/data.js.map +1 -1
  509. package/modules/data.src.js +3 -3
  510. package/modules/datagrouping.d.ts +31 -0
  511. package/modules/datagrouping.js +23 -21
  512. package/modules/datagrouping.js.map +1 -1
  513. package/modules/datagrouping.src.d.ts +31 -0
  514. package/modules/datagrouping.src.js +921 -640
  515. package/modules/debugger.js +3 -3
  516. package/modules/debugger.js.map +1 -1
  517. package/modules/debugger.src.js +2 -2
  518. package/modules/dependency-wheel.js +12 -12
  519. package/modules/dependency-wheel.js.map +1 -1
  520. package/modules/dependency-wheel.src.js +191 -108
  521. package/modules/dotplot.js +6 -6
  522. package/modules/dotplot.js.map +1 -1
  523. package/modules/dotplot.src.js +10 -13
  524. package/modules/drag-panes.js +1 -1
  525. package/modules/drag-panes.src.js +1 -1
  526. package/modules/draggable-points.js +5 -5
  527. package/modules/draggable-points.js.map +1 -1
  528. package/modules/draggable-points.src.js +7 -3
  529. package/modules/drilldown.js +37 -37
  530. package/modules/drilldown.js.map +1 -1
  531. package/modules/drilldown.src.js +5 -6
  532. package/modules/dumbbell.js +17 -17
  533. package/modules/dumbbell.js.map +1 -1
  534. package/modules/dumbbell.src.js +27 -22
  535. package/modules/export-data.js +26 -25
  536. package/modules/export-data.js.map +1 -1
  537. package/modules/export-data.src.js +33 -6
  538. package/modules/exporting.js +36 -35
  539. package/modules/exporting.js.map +1 -1
  540. package/modules/exporting.src.js +81 -88
  541. package/modules/full-screen.js +1 -1
  542. package/modules/full-screen.src.js +1 -1
  543. package/modules/funnel.js +1 -1
  544. package/modules/funnel.src.js +1 -1
  545. package/modules/funnel3d.js +1 -1
  546. package/modules/funnel3d.src.js +1 -1
  547. package/modules/gantt.js +221 -219
  548. package/modules/gantt.js.map +1 -1
  549. package/modules/gantt.src.js +12842 -12524
  550. package/modules/grid-axis.js +1 -1
  551. package/modules/grid-axis.src.js +1 -1
  552. package/modules/heatmap.js +40 -40
  553. package/modules/heatmap.js.map +1 -1
  554. package/modules/heatmap.src.js +80 -58
  555. package/modules/heikinashi.d.ts +17 -0
  556. package/modules/heikinashi.js +9 -8
  557. package/modules/heikinashi.js.map +1 -1
  558. package/modules/heikinashi.src.d.ts +17 -0
  559. package/modules/heikinashi.src.js +192 -165
  560. package/modules/histogram-bellcurve.js +1 -1
  561. package/modules/histogram-bellcurve.src.js +1 -1
  562. package/modules/hollowcandlestick.d.ts +17 -0
  563. package/modules/hollowcandlestick.js +1 -1
  564. package/modules/hollowcandlestick.src.d.ts +17 -0
  565. package/modules/hollowcandlestick.src.js +1 -1
  566. package/modules/item-series.js +12 -12
  567. package/modules/item-series.js.map +1 -1
  568. package/modules/item-series.src.js +14 -10
  569. package/modules/lollipop.js +1 -1
  570. package/modules/lollipop.src.js +1 -1
  571. package/modules/map.js +172 -171
  572. package/modules/map.js.map +1 -1
  573. package/modules/map.src.js +194 -121
  574. package/modules/marker-clusters.js +2 -2
  575. package/modules/marker-clusters.js.map +1 -1
  576. package/modules/marker-clusters.src.js +2 -2
  577. package/modules/networkgraph.js +8 -8
  578. package/modules/networkgraph.js.map +1 -1
  579. package/modules/networkgraph.src.js +5 -6
  580. package/modules/no-data-to-display.js +4 -4
  581. package/modules/no-data-to-display.js.map +1 -1
  582. package/modules/no-data-to-display.src.js +2 -2
  583. package/modules/offline-exporting.js +4 -4
  584. package/modules/offline-exporting.js.map +1 -1
  585. package/modules/offline-exporting.src.js +7 -7
  586. package/modules/oldie-polyfills.js +7 -7
  587. package/modules/oldie-polyfills.js.map +1 -1
  588. package/modules/oldie-polyfills.src.js +9 -7
  589. package/modules/oldie.js +30 -30
  590. package/modules/oldie.js.map +1 -1
  591. package/modules/oldie.src.js +5 -5
  592. package/modules/organization.js +18 -16
  593. package/modules/organization.js.map +1 -1
  594. package/modules/organization.src.js +659 -495
  595. package/modules/overlapping-datalabels.js +1 -1
  596. package/modules/overlapping-datalabels.src.js +1 -1
  597. package/modules/parallel-coordinates.js +10 -10
  598. package/modules/parallel-coordinates.js.map +1 -1
  599. package/modules/parallel-coordinates.src.js +6 -2
  600. package/modules/pareto.js +1 -1
  601. package/modules/pareto.src.js +1 -1
  602. package/modules/pathfinder.js +31 -31
  603. package/modules/pathfinder.js.map +1 -1
  604. package/modules/pathfinder.src.js +19 -23
  605. package/modules/pattern-fill.js +2 -2
  606. package/modules/pattern-fill.js.map +1 -1
  607. package/modules/pattern-fill.src.js +11 -11
  608. package/modules/price-indicator.js +1 -1
  609. package/modules/price-indicator.src.js +1 -1
  610. package/modules/pyramid3d.js +1 -1
  611. package/modules/pyramid3d.src.js +1 -1
  612. package/modules/sankey.js +33 -32
  613. package/modules/sankey.js.map +1 -1
  614. package/modules/sankey.src.js +571 -550
  615. package/modules/series-label.js +17 -17
  616. package/modules/series-label.js.map +1 -1
  617. package/modules/series-label.src.js +7 -3
  618. package/modules/series-on-point.d.ts +17 -0
  619. package/modules/series-on-point.js +1 -1
  620. package/modules/series-on-point.src.d.ts +17 -0
  621. package/modules/series-on-point.src.js +1 -1
  622. package/modules/solid-gauge.js +11 -10
  623. package/modules/solid-gauge.js.map +1 -1
  624. package/modules/solid-gauge.src.js +220 -192
  625. package/modules/sonification.js +2 -2
  626. package/modules/sonification.js.map +1 -1
  627. package/modules/sonification.src.js +2 -2
  628. package/modules/static-scale.js +1 -1
  629. package/modules/static-scale.src.js +1 -1
  630. package/modules/stock-tools.js +59 -59
  631. package/modules/stock-tools.js.map +1 -1
  632. package/modules/stock-tools.src.js +19 -21
  633. package/modules/stock.d.ts +26 -6
  634. package/modules/stock.js +212 -205
  635. package/modules/stock.js.map +1 -1
  636. package/modules/stock.src.d.ts +26 -6
  637. package/modules/stock.src.js +11361 -10617
  638. package/modules/streamgraph.js +1 -1
  639. package/modules/streamgraph.src.js +1 -1
  640. package/modules/sunburst.js +75 -73
  641. package/modules/sunburst.js.map +1 -1
  642. package/modules/sunburst.src.js +133 -57
  643. package/modules/tilemap.js +1 -1
  644. package/modules/tilemap.src.js +1 -1
  645. package/modules/timeline.js +18 -18
  646. package/modules/timeline.js.map +1 -1
  647. package/modules/timeline.src.js +257 -233
  648. package/modules/treegraph.d.ts +17 -0
  649. package/modules/treegraph.js +44 -0
  650. package/modules/treegraph.js.map +1 -0
  651. package/modules/treegraph.src.d.ts +17 -0
  652. package/modules/treegraph.src.js +1829 -0
  653. package/modules/treegrid.js +2 -2
  654. package/modules/treegrid.js.map +1 -1
  655. package/modules/treegrid.src.js +2 -3
  656. package/modules/treemap.js +54 -53
  657. package/modules/treemap.js.map +1 -1
  658. package/modules/treemap.src.js +90 -52
  659. package/modules/variable-pie.js +1 -1
  660. package/modules/variable-pie.src.js +1 -1
  661. package/modules/variwide.js +12 -12
  662. package/modules/variwide.js.map +1 -1
  663. package/modules/variwide.src.js +158 -106
  664. package/modules/vector.js +1 -1
  665. package/modules/vector.src.js +3 -3
  666. package/modules/venn.js +31 -31
  667. package/modules/venn.js.map +1 -1
  668. package/modules/venn.src.js +17 -16
  669. package/modules/windbarb.js +15 -15
  670. package/modules/windbarb.js.map +1 -1
  671. package/modules/windbarb.src.js +41 -4
  672. package/modules/wordcloud.js +23 -23
  673. package/modules/wordcloud.js.map +1 -1
  674. package/modules/wordcloud.src.js +6 -15
  675. package/modules/xrange.js +1 -1
  676. package/modules/xrange.src.js +1 -1
  677. package/package.json +1 -1
  678. package/themes/avocado.js +2 -3
  679. package/themes/avocado.js.map +1 -1
  680. package/themes/avocado.src.js +2 -2
  681. package/themes/brand-dark.d.ts +22 -0
  682. package/themes/brand-dark.js +3 -3
  683. package/themes/brand-dark.js.map +1 -1
  684. package/themes/brand-dark.src.d.ts +22 -0
  685. package/themes/brand-dark.src.js +2 -2
  686. package/themes/brand-light.d.ts +22 -0
  687. package/themes/brand-light.js +2 -2
  688. package/themes/brand-light.js.map +1 -1
  689. package/themes/brand-light.src.d.ts +22 -0
  690. package/themes/brand-light.src.js +2 -2
  691. package/themes/dark-blue.js +2 -2
  692. package/themes/dark-blue.js.map +1 -1
  693. package/themes/dark-blue.src.js +2 -2
  694. package/themes/dark-green.js +2 -2
  695. package/themes/dark-green.js.map +1 -1
  696. package/themes/dark-green.src.js +2 -2
  697. package/themes/dark-unica.js +2 -2
  698. package/themes/dark-unica.js.map +1 -1
  699. package/themes/dark-unica.src.js +2 -2
  700. package/themes/gray.js +2 -2
  701. package/themes/gray.js.map +1 -1
  702. package/themes/gray.src.js +2 -2
  703. package/themes/grid-light.js +2 -2
  704. package/themes/grid-light.js.map +1 -1
  705. package/themes/grid-light.src.js +2 -2
  706. package/themes/grid.js +2 -2
  707. package/themes/grid.js.map +1 -1
  708. package/themes/grid.src.js +2 -2
  709. package/themes/high-contrast-dark.d.ts +22 -0
  710. package/themes/high-contrast-dark.js +2 -2
  711. package/themes/high-contrast-dark.js.map +1 -1
  712. package/themes/high-contrast-dark.src.d.ts +22 -0
  713. package/themes/high-contrast-dark.src.js +2 -2
  714. package/themes/high-contrast-light.d.ts +22 -0
  715. package/themes/high-contrast-light.js +2 -2
  716. package/themes/high-contrast-light.js.map +1 -1
  717. package/themes/high-contrast-light.src.d.ts +22 -0
  718. package/themes/high-contrast-light.src.js +2 -2
  719. package/themes/sand-signika.js +2 -2
  720. package/themes/sand-signika.js.map +1 -1
  721. package/themes/sand-signika.src.js +2 -2
  722. package/themes/skies.js +2 -2
  723. package/themes/skies.js.map +1 -1
  724. package/themes/skies.src.js +2 -2
  725. package/themes/sunset.js +2 -2
  726. package/themes/sunset.js.map +1 -1
  727. package/themes/sunset.src.js +2 -2
  728. package/es-modules/Core/Axis/Axis3D.js +0 -612
  729. package/es-modules/Core/Axis/NavigatorAxis.js +0 -159
  730. package/es-modules/Core/Axis/Tick3D.js +0 -68
  731. package/es-modules/Extensions/DataGrouping.js +0 -1177
  732. package/es-modules/Stock/Indicators/SMA/SMAComposition.js +0 -12
@@ -0,0 +1,175 @@
1
+ /* *
2
+ *
3
+ * (c) 2010-2022 Pawel Lysy Grzegorz Blachlinski
4
+ *
5
+ * License: www.highcharts.com/license
6
+ *
7
+ * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
8
+ *
9
+ * */
10
+ 'use strict';
11
+ var __extends = (this && this.__extends) || (function () {
12
+ var extendStatics = function (d, b) {
13
+ extendStatics = Object.setPrototypeOf ||
14
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
16
+ return extendStatics(d, b);
17
+ };
18
+ return function (d, b) {
19
+ if (typeof b !== "function" && b !== null)
20
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
21
+ extendStatics(d, b);
22
+ function __() { this.constructor = d; }
23
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
24
+ };
25
+ })();
26
+ import Point from '../../Core/Series/Point.js';
27
+ import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
28
+ var TreemapPoint = SeriesRegistry.seriesTypes.treemap.prototype.pointClass;
29
+ import U from '../../Core/Utilities.js';
30
+ var addEvent = U.addEvent, fireEvent = U.fireEvent, merge = U.merge, pick = U.pick;
31
+ /* *
32
+ *
33
+ * Class
34
+ *
35
+ * */
36
+ /**
37
+ * @private
38
+ * @class
39
+ */
40
+ var TreegraphPoint = /** @class */ (function (_super) {
41
+ __extends(TreegraphPoint, _super);
42
+ function TreegraphPoint() {
43
+ /* *
44
+ *
45
+ * Properties
46
+ *
47
+ * */
48
+ var _this = _super !== null && _super.apply(this, arguments) || this;
49
+ _this.options = void 0;
50
+ _this.isLink = false;
51
+ _this.series = void 0;
52
+ _this.node = void 0;
53
+ return _this;
54
+ }
55
+ /* *
56
+ *
57
+ * Functions
58
+ *
59
+ * */
60
+ TreegraphPoint.prototype.draw = function () {
61
+ _super.prototype.draw.apply(this, arguments);
62
+ this.renderCollapseButton();
63
+ };
64
+ TreegraphPoint.prototype.renderCollapseButton = function () {
65
+ var point = this, series = point.series, parentGroup = point.graphic && point.graphic.parentGroup, levelOptions = series.mapOptionsToLevel[point.node.level || 0] || {}, btnOptions = merge(series.options.collapseButton, levelOptions.collapseButton, point.series.options.collapseButton), width = btnOptions.width, height = btnOptions.height, shape = btnOptions.shape, style = btnOptions.style, padding = 2, chart = this.series.chart;
66
+ if (!point.shapeArgs) {
67
+ return;
68
+ }
69
+ this.collapseButtonOptions = btnOptions;
70
+ if (!point.collapseButton) {
71
+ if (!point.node.children.length || !btnOptions.enabled) {
72
+ return;
73
+ }
74
+ var _a = this.getCollapseBtnPosition(btnOptions), x = _a.x, y = _a.y;
75
+ point.collapseButton = chart.renderer
76
+ .label(point.collapsed ? '+' : '-', x, y, shape)
77
+ .attr({
78
+ height: height - 2 * padding,
79
+ width: width - 2 * padding,
80
+ padding: padding,
81
+ fill: "#cccccc" /* Palette.neutralColor20 */,
82
+ rotation: chart.inverted ? 90 : 0,
83
+ rotationOriginX: width / 2,
84
+ rotationOriginY: height / 2,
85
+ stroke: "#333333" /* Palette.neutralColor80 */,
86
+ 'stroke-width': 1,
87
+ 'text-align': 'center',
88
+ align: 'center',
89
+ zIndex: 1
90
+ })
91
+ .addClass('highcharts-tracker')
92
+ .addClass('highcharts-collapse-button')
93
+ .removeClass('highcharts-no-tooltip')
94
+ .css(style || {})
95
+ .add(parentGroup);
96
+ point.collapseButton.element.point = point;
97
+ if (btnOptions.onlyOnHover && !point.collapsed) {
98
+ point.collapseButton.hide();
99
+ }
100
+ }
101
+ else {
102
+ if (!point.node.children.length || !btnOptions.enabled) {
103
+ point.collapseButton.destroy();
104
+ delete point.collapseButton;
105
+ }
106
+ else {
107
+ var _b = this.getCollapseBtnPosition(btnOptions), x = _b.x, y = _b.y;
108
+ point.collapseButton
109
+ .attr({
110
+ text: point.collapsed ? '+' : '-',
111
+ rotation: chart.inverted ? 90 : 0,
112
+ rotationOriginX: width / 2,
113
+ rotationOriginY: height / 2,
114
+ visibility: point.visible &&
115
+ (!btnOptions.onlyOnHover ||
116
+ point.state === 'hover' ||
117
+ point.collapsed) ?
118
+ 'inherit' :
119
+ 'hidden'
120
+ })
121
+ .animate({ x: x, y: y });
122
+ }
123
+ }
124
+ };
125
+ TreegraphPoint.prototype.toggleCollapse = function (state) {
126
+ this.collapsed = pick(state, !this.collapsed);
127
+ fireEvent(this.series, 'toggleCollapse');
128
+ this.series.redraw();
129
+ };
130
+ TreegraphPoint.prototype.shouldDraw = function () {
131
+ return _super.prototype.shouldDraw.call(this) && this.visible;
132
+ };
133
+ TreegraphPoint.prototype.destroy = function () {
134
+ if (this.collapseButton) {
135
+ this.collapseButton.destroy();
136
+ delete this.collapseButton;
137
+ this.collapseButton = void 0;
138
+ }
139
+ _super.prototype.destroy.apply(this, arguments);
140
+ };
141
+ TreegraphPoint.prototype.getCollapseBtnPosition = function (btnOptions) {
142
+ var point = this, chart = point.series.chart, inverted = chart.inverted, btnWidth = btnOptions.width, btnHeight = btnOptions.height, _a = point.shapeArgs || {}, _b = _a.x, x = _b === void 0 ? 0 : _b, _c = _a.y, y = _c === void 0 ? 0 : _c, _d = _a.width, width = _d === void 0 ? 0 : _d, _e = _a.height, height = _e === void 0 ? 0 : _e;
143
+ return {
144
+ x: x +
145
+ btnOptions.x +
146
+ (inverted ? -btnHeight * 0.3 : width + btnWidth * -0.3),
147
+ y: y + height / 2 - btnHeight / 2 + btnOptions.y
148
+ };
149
+ };
150
+ TreegraphPoint.prototype.setState = function () {
151
+ Point.prototype.setState.apply(this, arguments);
152
+ };
153
+ return TreegraphPoint;
154
+ }(TreemapPoint));
155
+ addEvent(TreegraphPoint, 'mouseOut', function () {
156
+ var btn = this.collapseButton, btnOptions = this.collapseButtonOptions;
157
+ if (btn && btnOptions && btnOptions.onlyOnHover && !this.collapsed) {
158
+ btn.hide();
159
+ }
160
+ });
161
+ addEvent(TreegraphPoint, 'mouseOver', function () {
162
+ if (this.collapseButton) {
163
+ this.collapseButton.show();
164
+ }
165
+ });
166
+ // Handle showing and hiding of the points
167
+ addEvent(TreegraphPoint, 'click', function () {
168
+ this.toggleCollapse();
169
+ });
170
+ /* *
171
+ *
172
+ * Export Default
173
+ *
174
+ * */
175
+ export default TreegraphPoint;
@@ -0,0 +1,510 @@
1
+ /* *
2
+ *
3
+ * (c) 2010-2022 Pawel Lysy Grzegorz Blachlinski
4
+ *
5
+ * License: www.highcharts.com/license
6
+ *
7
+ * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
8
+ *
9
+ * */
10
+ 'use strict';
11
+ var __extends = (this && this.__extends) || (function () {
12
+ var extendStatics = function (d, b) {
13
+ extendStatics = Object.setPrototypeOf ||
14
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
16
+ return extendStatics(d, b);
17
+ };
18
+ return function (d, b) {
19
+ if (typeof b !== "function" && b !== null)
20
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
21
+ extendStatics(d, b);
22
+ function __() { this.constructor = d; }
23
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
24
+ };
25
+ })();
26
+ import PU from '../PathUtilities.js';
27
+ var curvedPath = PU.curvedPath;
28
+ import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
29
+ var seriesProto = SeriesRegistry.series.prototype, _a = SeriesRegistry.seriesTypes, TreemapSeries = _a.treemap, ColumnSeries = _a.column;
30
+ import SVGRenderer from '../../Core/Renderer/SVG/SVGRenderer.js';
31
+ var symbols = SVGRenderer.prototype.symbols;
32
+ import TreegraphNode from './TreegraphNode.js';
33
+ import TreegraphPoint from './TreegraphPoint.js';
34
+ import TU from '../TreeUtilities.js';
35
+ var getLevelOptions = TU.getLevelOptions;
36
+ import U from '../../Core/Utilities.js';
37
+ var extend = U.extend, isArray = U.isArray, merge = U.merge, pick = U.pick, relativeLength = U.relativeLength;
38
+ import TreegraphLink from './TreegraphLink.js';
39
+ import TreegraphLayout from './TreegraphLayout.js';
40
+ import TreegraphSeriesDefaults from './TreegraphSeriesDefaults.js';
41
+ /* *
42
+ *
43
+ * Class
44
+ *
45
+ * */
46
+ /**
47
+ * The Treegraph series type.
48
+ *
49
+ * @private
50
+ * @class
51
+ * @name Highcharts.seriesTypes.treegraph
52
+ *
53
+ * @augments Highcharts.Series
54
+ */
55
+ var TreegraphSeries = /** @class */ (function (_super) {
56
+ __extends(TreegraphSeries, _super);
57
+ function TreegraphSeries() {
58
+ /* *
59
+ *
60
+ * Static Properties
61
+ *
62
+ * */
63
+ var _this = _super !== null && _super.apply(this, arguments) || this;
64
+ /* *
65
+ *
66
+ * Properties
67
+ *
68
+ * */
69
+ _this.data = void 0;
70
+ _this.options = void 0;
71
+ _this.points = void 0;
72
+ _this.layoutModifier = void 0;
73
+ _this.nodeMap = void 0;
74
+ _this.tree = void 0;
75
+ _this.nodeList = [];
76
+ _this.layoutAlgorythm = void 0;
77
+ _this.links = [];
78
+ _this.mapOptionsToLevel = void 0;
79
+ return _this;
80
+ }
81
+ /* *
82
+ *
83
+ * Functions
84
+ *
85
+ * */
86
+ TreegraphSeries.prototype.init = function () {
87
+ _super.prototype.init.apply(this, arguments);
88
+ this.layoutAlgorythm = new TreegraphLayout();
89
+ };
90
+ /**
91
+ * Calculate `a` and `b` parameters of linear transformation, where
92
+ * `finalPosition = a * calculatedPosition + b`.
93
+ *
94
+ * @return {LayoutModifiers} `a` and `b` parameter for x and y direction.
95
+ */
96
+ TreegraphSeries.prototype.getLayoutModifiers = function () {
97
+ var _this = this;
98
+ var chart = this.chart, series = this, plotSizeX = chart.plotSizeX, plotSizeY = chart.plotSizeY;
99
+ var minX = Infinity, maxX = -Infinity, minY = Infinity, maxY = -Infinity, maxXSize = 0, minXSize = 0, maxYSize = 0, minYSize = 0;
100
+ this.points.forEach(function (point) {
101
+ var node = point.node, level = series.mapOptionsToLevel[point.node.level] || {}, markerOptions = merge(_this.options.marker, level.marker, point.options.marker), radius = relativeLength(markerOptions.radius || 0, Math.min(plotSizeX, plotSizeY)), symbol = markerOptions.symbol, nodeSizeY = (symbol === 'circle' || !markerOptions.height) ?
102
+ radius * 2 :
103
+ relativeLength(markerOptions.height, plotSizeY), nodeSizeX = symbol === 'circle' || !markerOptions.width ?
104
+ radius * 2 :
105
+ relativeLength(markerOptions.width, plotSizeX);
106
+ node.nodeSizeX = nodeSizeX;
107
+ node.nodeSizeY = nodeSizeY;
108
+ var lineWidth;
109
+ if (node.xPosition <= minX) {
110
+ minX = node.xPosition;
111
+ lineWidth = markerOptions.lineWidth || 0;
112
+ minXSize = Math.max(nodeSizeX + lineWidth, minXSize);
113
+ }
114
+ if (node.xPosition >= maxX) {
115
+ maxX = node.xPosition;
116
+ lineWidth = markerOptions.lineWidth || 0;
117
+ maxXSize = Math.max(nodeSizeX + lineWidth, maxXSize);
118
+ }
119
+ if (node.yPosition <= minY) {
120
+ minY = node.yPosition;
121
+ lineWidth = markerOptions.lineWidth || 0;
122
+ minYSize = Math.max(nodeSizeY + lineWidth, minYSize);
123
+ }
124
+ if (node.yPosition >= maxY) {
125
+ maxY = node.yPosition;
126
+ lineWidth = markerOptions.lineWidth || 0;
127
+ maxYSize = Math.max(nodeSizeY + lineWidth, maxYSize);
128
+ }
129
+ });
130
+ // Calculate the values of linear transformation, which will later be
131
+ // applied as `nodePosition = a * x + b` for each direction.
132
+ var ay = maxY === minY ?
133
+ 1 :
134
+ (plotSizeY - (minYSize + maxYSize) / 2) / (maxY - minY), by = maxY === minY ? plotSizeY / 2 : -ay * minY + minYSize / 2, ax = maxX === minX ?
135
+ 1 :
136
+ (plotSizeX - (maxXSize + maxXSize) / 2) / (maxX - minX), bx = maxX === minX ? plotSizeX / 2 : -ax * minX + minXSize / 2;
137
+ return { ax: ax, bx: bx, ay: ay, by: by };
138
+ };
139
+ TreegraphSeries.prototype.getLinks = function () {
140
+ var series = this;
141
+ var links = [];
142
+ this.data.forEach(function (point, index) {
143
+ var levelOptions = series.mapOptionsToLevel[point.node.level || 0] || {};
144
+ if (point.node.parent) {
145
+ var pointOptions = merge(levelOptions, point.options);
146
+ if (!point.linkToParent || !point.linkToParent.update) {
147
+ var link = new series.LinkClass().init(series, pointOptions, void 0, point);
148
+ point.linkToParent = link;
149
+ }
150
+ else {
151
+ point.linkToParent.update(pointOptions, false);
152
+ }
153
+ point.linkToParent.index = links.push(point.linkToParent) - 1;
154
+ }
155
+ else {
156
+ if (point.linkToParent) {
157
+ series.links.splice(point.linkToParent.index);
158
+ point.linkToParent.destroy();
159
+ delete point.linkToParent;
160
+ }
161
+ }
162
+ });
163
+ return links;
164
+ };
165
+ TreegraphSeries.prototype.buildTree = function (id, index, level, list, parent) {
166
+ var point = this.points[index];
167
+ level = (point && point.level) || level;
168
+ return _super.prototype.buildTree.call(this, id, index, level, list, parent);
169
+ };
170
+ TreegraphSeries.prototype.setCollapsedStatus = function (node, visibility) {
171
+ var _this = this;
172
+ var point = node.point;
173
+ if (point) {
174
+ // Take the level options into account.
175
+ point.collapsed = pick(point.collapsed, (this.mapOptionsToLevel[node.level] || {}).collapsed);
176
+ point.visible = visibility;
177
+ visibility = visibility === false ? false : !point.collapsed;
178
+ }
179
+ node.children.forEach(function (childNode) {
180
+ _this.setCollapsedStatus(childNode, visibility);
181
+ });
182
+ };
183
+ /**
184
+ * Run pre-translation by generating the nodeColumns.
185
+ * @private
186
+ */
187
+ TreegraphSeries.prototype.translate = function () {
188
+ var _this = this;
189
+ var series = this, options = series.options;
190
+ // NOTE: updateRootId modifies series.
191
+ var rootId = TU.updateRootId(series), rootNode;
192
+ // Call prototype function
193
+ seriesProto.translate.call(series);
194
+ var tree = series.tree = series.getTree();
195
+ rootNode = series.nodeMap[rootId];
196
+ if (rootId !== '' && (!rootNode || !rootNode.children.length)) {
197
+ series.setRootNode('', false);
198
+ rootId = series.rootNode;
199
+ rootNode = series.nodeMap[rootId];
200
+ }
201
+ series.mapOptionsToLevel = getLevelOptions({
202
+ from: rootNode.level + 1,
203
+ levels: options.levels,
204
+ to: tree.height,
205
+ defaults: {
206
+ levelIsConstant: series.options.levelIsConstant,
207
+ colorByPoint: options.colorByPoint
208
+ }
209
+ });
210
+ this.setCollapsedStatus(tree, true);
211
+ series.links = series.getLinks();
212
+ series.setTreeValues(tree);
213
+ this.layoutAlgorythm.calculatePositions(series);
214
+ series.layoutModifier = this.getLayoutModifiers();
215
+ this.points.forEach(function (point) {
216
+ _this.translateNode(point);
217
+ });
218
+ this.points.forEach(function (point) {
219
+ if (point.linkToParent) {
220
+ _this.translateLink(point.linkToParent);
221
+ }
222
+ });
223
+ };
224
+ TreegraphSeries.prototype.translateLink = function (link) {
225
+ var fromNode = link.fromNode, toNode = link.toNode, linkWidth = this.options.link.lineWidth, crisp = (Math.round(linkWidth) % 2) / 2, factor = pick(this.options.link.curveFactor, 0.5), type = pick(link.options.link && link.options.link.type, this.options.link.type);
226
+ if (fromNode.shapeArgs && toNode.shapeArgs) {
227
+ var fromNodeWidth = (fromNode.shapeArgs.width || 0), inverted = this.chart.inverted, y1 = Math.floor((fromNode.shapeArgs.y || 0) +
228
+ (fromNode.shapeArgs.height || 0) / 2) + crisp, y2 = Math.floor((toNode.shapeArgs.y || 0) +
229
+ (toNode.shapeArgs.height || 0) / 2) + crisp;
230
+ var x1 = Math.floor((fromNode.shapeArgs.x || 0) + fromNodeWidth) +
231
+ crisp, x2 = Math.floor(toNode.shapeArgs.x || 0) + crisp;
232
+ if (inverted) {
233
+ x1 -= fromNodeWidth;
234
+ x2 += (toNode.shapeArgs.width || 0);
235
+ }
236
+ var diff = toNode.node.xPosition - fromNode.node.xPosition;
237
+ link.shapeType = 'path';
238
+ var fullWidth = Math.abs(x2 - x1) + fromNodeWidth, width = (fullWidth / diff) - fromNodeWidth, offset = width * factor * (inverted ? -1 : 1);
239
+ var xMiddle = Math.floor((x2 + x1) / 2) + crisp;
240
+ link.plotX = xMiddle;
241
+ link.plotY = y2;
242
+ if (type === 'straight') {
243
+ link.shapeArgs = {
244
+ d: [
245
+ ['M', x1, y1],
246
+ ['L', x1 + width * (inverted ? -1 : 1), y2],
247
+ ['L', x2, y2]
248
+ ]
249
+ };
250
+ }
251
+ else if (type === 'curved') {
252
+ link.shapeArgs = {
253
+ d: [
254
+ ['M', x1, y1],
255
+ [
256
+ 'C',
257
+ x1 + offset,
258
+ y1,
259
+ x1 - offset + width * (inverted ? -1 : 1),
260
+ y2,
261
+ x1 + width * (inverted ? -1 : 1),
262
+ y2
263
+ ],
264
+ ['L', x2, y2]
265
+ ]
266
+ };
267
+ }
268
+ else {
269
+ link.shapeArgs = {
270
+ d: curvedPath([
271
+ ['M', x1, y1],
272
+ ['L', x1 + width * (inverted ? -0.5 : 0.5), y1],
273
+ ['L', x1 + width * (inverted ? -0.5 : 0.5), y2],
274
+ ['L', x2, y2]
275
+ ], this.options.link.radius)
276
+ };
277
+ }
278
+ link.dlBox = {
279
+ x: (x1 + x2) / 2,
280
+ y: (y1 + y2) / 2,
281
+ height: linkWidth,
282
+ width: 0
283
+ };
284
+ link.tooltipPos = inverted ? [
285
+ (this.chart.plotSizeY || 0) - link.dlBox.y,
286
+ (this.chart.plotSizeX || 0) - link.dlBox.x
287
+ ] : [
288
+ link.dlBox.x,
289
+ link.dlBox.y
290
+ ];
291
+ }
292
+ };
293
+ /**
294
+ * Private method responsible for adjusting the dataLabel options for each
295
+ * node-point individually.
296
+ */
297
+ TreegraphSeries.prototype.drawNodeLabels = function (points) {
298
+ var series = this, mapOptionsToLevel = series.mapOptionsToLevel;
299
+ var options, level;
300
+ for (var _i = 0, points_1 = points; _i < points_1.length; _i++) {
301
+ var point = points_1[_i];
302
+ level = mapOptionsToLevel[point.node.level];
303
+ // Set options to new object to avoid problems with scope
304
+ options = { style: {} };
305
+ // If options for level exists, include them as well
306
+ if (level && level.dataLabels) {
307
+ options = merge(options, level.dataLabels);
308
+ series._hasPointLabels = true;
309
+ }
310
+ // Set dataLabel width to the width of the point shape.
311
+ if (point.shapeArgs) {
312
+ options.style.width = point.shapeArgs.width;
313
+ if (point.dataLabel) {
314
+ point.dataLabel.css({
315
+ width: point.shapeArgs.width + 'px'
316
+ });
317
+ }
318
+ }
319
+ // Merge custom options with point options
320
+ point.dlOptions = merge(options, point.options.dataLabels);
321
+ }
322
+ seriesProto.drawDataLabels.call(this, points);
323
+ };
324
+ /**
325
+ * Treegraph has two separate collecions of nodes and lines,
326
+ * render dataLabels for both sets.
327
+ */
328
+ TreegraphSeries.prototype.drawDataLabels = function () {
329
+ if (this.options.dataLabels) {
330
+ if (!isArray(this.options.dataLabels)) {
331
+ this.options.dataLabels = [this.options.dataLabels];
332
+ }
333
+ // Render node labels.
334
+ this.drawNodeLabels(this.points);
335
+ // Render link labels.
336
+ seriesProto.drawDataLabels.call(this, this.links);
337
+ }
338
+ };
339
+ TreegraphSeries.prototype.destroy = function () {
340
+ // Links must also be destroyed.
341
+ for (var _i = 0, _a = this.links; _i < _a.length; _i++) {
342
+ var link = _a[_i];
343
+ link.destroy();
344
+ }
345
+ return seriesProto.destroy.apply(this, arguments);
346
+ };
347
+ /**
348
+ * Return the presentational attributes.
349
+ * @private
350
+ */
351
+ TreegraphSeries.prototype.pointAttribs = function (point, state) {
352
+ var series = this, levelOptions = series.mapOptionsToLevel[point.node.level || 0] || {}, options = point.options, stateOptions = (levelOptions.states &&
353
+ levelOptions.states[state]) ||
354
+ {};
355
+ point.options.marker = merge(series.options.marker, levelOptions.marker, point.options.marker);
356
+ var borderRadius = pick(stateOptions.borderRadius, options.borderRadius, levelOptions.borderRadius, series.options.borderRadius), linkColor = pick(stateOptions.link && stateOptions.link.color, options.link && options.link.color, levelOptions.link && levelOptions.link.color, series.options.link && series.options.link.color), linkLineWidth = pick(stateOptions.link && stateOptions.link.lineWidth, options.link && options.link.lineWidth, levelOptions.link && levelOptions.link.lineWidth, series.options.link && series.options.link.lineWidth), attribs = seriesProto.pointAttribs.call(series, point, state);
357
+ if (point.isLink) {
358
+ attribs.stroke = linkColor;
359
+ attribs['stroke-width'] = linkLineWidth;
360
+ delete attribs.fill;
361
+ }
362
+ else {
363
+ if (borderRadius) {
364
+ attribs.r = borderRadius;
365
+ }
366
+ }
367
+ return attribs;
368
+ };
369
+ TreegraphSeries.prototype.drawPoints = function () {
370
+ _super.prototype.drawPoints.apply(this, arguments);
371
+ ColumnSeries.prototype.drawPoints.call(this, this.links);
372
+ };
373
+ /**
374
+ * Run translation operations for one node.
375
+ * @private
376
+ */
377
+ TreegraphSeries.prototype.translateNode = function (point) {
378
+ var chart = this.chart, node = point.node, plotSizeY = chart.plotSizeY, plotSizeX = chart.plotSizeX,
379
+ // Get the layout modifiers which are common for all nodes.
380
+ _a = this.layoutModifier, ax = _a.ax, bx = _a.bx, ay = _a.ay, by = _a.by, x = ax * node.xPosition + bx, y = ay * node.yPosition + by, level = this.mapOptionsToLevel[node.level] || {}, markerOptions = merge(this.options.marker, level.marker, point.options.marker), symbol = markerOptions.symbol, height = node.nodeSizeY, width = node.nodeSizeX, reversed = this.options.reversed, nodeX = node.x = (chart.inverted ?
381
+ plotSizeX - width / 2 - x :
382
+ x - width / 2), nodeY = node.y = (!reversed ?
383
+ plotSizeY - y - height / 2 :
384
+ y - height / 2);
385
+ point.shapeType = 'path';
386
+ point.plotX = nodeX;
387
+ point.plotY = nodeY;
388
+ point.shapeArgs = {
389
+ d: symbols[symbol || 'circle'](nodeX, nodeY, width, height),
390
+ x: nodeX,
391
+ y: nodeY,
392
+ width: width,
393
+ height: height,
394
+ cursor: !point.node.isLeaf ? 'pointer' : 'default'
395
+ };
396
+ // Set the anchor position for tooltip.
397
+ point.tooltipPos = chart.inverted ?
398
+ [plotSizeY - nodeY - height / 2, plotSizeX - nodeX - width / 2] :
399
+ [nodeX + width / 2, nodeY];
400
+ };
401
+ TreegraphSeries.defaultOptions = merge(TreemapSeries.defaultOptions, TreegraphSeriesDefaults);
402
+ return TreegraphSeries;
403
+ }(TreemapSeries));
404
+ extend(TreegraphSeries.prototype, {
405
+ pointClass: TreegraphPoint,
406
+ NodeClass: TreegraphNode,
407
+ LinkClass: TreegraphLink
408
+ });
409
+ SeriesRegistry.registerSeriesType('treegraph', TreegraphSeries);
410
+ /* *
411
+ *
412
+ * Default Export
413
+ *
414
+ * */
415
+ export default TreegraphSeries;
416
+ /* *
417
+ *
418
+ * API Options
419
+ *
420
+ * */
421
+ /**
422
+ * A `treegraph` series. If the [type](#series.treegraph.type)
423
+ * option is not specified, it is inherited from [chart.type](#chart.type).
424
+ *
425
+ * @extends series,plotOptions.treegraph
426
+ * @exclude allowDrillToNode, boostBlending, boostThreshold, curveFactor,
427
+ * centerInCategory, connectEnds, connectNulls, colorAxis, colorKey,
428
+ * dataSorting, dragDrop, findNearestPointBy, getExtremesFromAll, layout,
429
+ * nodePadding, pointInterval, pointIntervalUnit, pointPlacement, pointStart,
430
+ * relativeXValue, softThreshold, stack, stacking, step,
431
+ * traverseUpButton, xAxis, yAxis, zoneAxis, zones
432
+ * @product highcharts
433
+ * @requires modules/treemap.js
434
+ * @requires modules/treegraph.js
435
+ * @apioption series.treegraph
436
+ */
437
+ /**
438
+ * @extends plotOptions.series.marker
439
+ * @excluding enabled, enabledThreshold
440
+ * @apioption series.treegraph.marker
441
+ */
442
+ /**
443
+ * @type {Highcharts.SeriesTreegraphDataLabelsOptionsObject|Array<Highcharts.SeriesTreegraphDataLabelsOptionsObject>}
444
+ * @product highcharts
445
+ * @apioption series.treegraph.data.dataLabels
446
+ */
447
+ /**
448
+ * @sample highcharts/series-treegraph/level-options
449
+ * Treegraph chart with level options applied
450
+ *
451
+ * @excluding layoutStartingDirection, layoutAlgorithm, colorVariation
452
+ * @apioption series.treegraph.levels
453
+ */
454
+ /**
455
+ * Set collapsed status for nodes level-wise.
456
+ * @type {boolean}
457
+ * @apioption series.treegraph.levels.collapsed
458
+ */
459
+ /**
460
+ * An array of data points for the series. For the `treegraph` series type,
461
+ * points can be given in the following ways:
462
+ *
463
+ * 1. The array of arrays, with `keys` property, which defines how the fields in
464
+ * array should be interpretated
465
+ * ```js
466
+ * keys: ['id', 'parent'],
467
+ * data: [
468
+ * ['Category1'],
469
+ * ['Category1', 'Category2']
470
+ * ]
471
+ *
472
+ * 2. An array of objects with named values. The following snippet shows only a
473
+ * few settings, see the complete options set below. If the total number of
474
+ * data points exceeds the
475
+ * series' [turboThreshold](#series.area.turboThreshold),
476
+ * this option is not available.
477
+ * The data of the treegraph series needs to be formatted in such a way, that
478
+ * there are no circular dependencies on the nodes
479
+ *
480
+ * ```js
481
+ * data: [{
482
+ * id: 'Category1'
483
+ * }, {
484
+ * id: 'Category1',
485
+ * parent: 'Category2',
486
+ * }]
487
+ * ```
488
+ *
489
+ * @type {Array<*>}
490
+ * @extends series.treemap.data
491
+ * @product highcharts
492
+ * @excluding outgoing, weight, value
493
+ * @apioption series.treegraph.data
494
+ */
495
+ /**
496
+ * Options used for button, which toggles the collapse status of the node.
497
+ *
498
+ *
499
+ * @apioption series.treegraph.data.collapseButton
500
+ */
501
+ /**
502
+ * If point's children should be initially hidden
503
+ *
504
+ * @sample highcharts/series-treegraph/level-options
505
+ * Treegraph chart with initially hidden children
506
+ *
507
+ * @type {boolean}
508
+ * @apioption series.treegraph.data.collapsed
509
+ */
510
+ ''; // gets doclets above into transpiled version