highcharts 6.1.4 → 6.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (695) hide show
  1. package/bower.json +1 -1
  2. package/css/highcharts.css +17 -0
  3. package/css/highcharts.scss +14 -0
  4. package/css/themes/dark-unica.css +17 -0
  5. package/css/themes/grid-light.css +17 -0
  6. package/css/themes/sand-signika.css +17 -0
  7. package/es-modules/indicators/momentum.src.js +1 -1
  8. package/es-modules/indicators/pivot-points.src.js +6 -1
  9. package/es-modules/masters/highcharts-gantt.src.js +11 -0
  10. package/es-modules/masters/modules/annotations.src.js +1 -1
  11. package/es-modules/masters/modules/arrow-symbols.src.js +12 -0
  12. package/es-modules/masters/modules/broken-axis.src.js +1 -1
  13. package/es-modules/masters/modules/current-date-indicator.src.js +12 -0
  14. package/es-modules/masters/modules/data.src.js +1 -1
  15. package/es-modules/masters/modules/draggable-points.src.js +9 -0
  16. package/es-modules/masters/modules/export-data.src.js +1 -1
  17. package/es-modules/masters/modules/exporting.src.js +1 -1
  18. package/es-modules/masters/modules/funnel.src.js +1 -1
  19. package/es-modules/masters/modules/gantt.src.js +2 -1
  20. package/es-modules/masters/modules/grid-axis.src.js +1 -1
  21. package/es-modules/masters/modules/heatmap.src.js +1 -1
  22. package/es-modules/masters/modules/item-series.src.js +1 -1
  23. package/es-modules/masters/modules/map.src.js +1 -1
  24. package/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  25. package/es-modules/masters/modules/pathfinder.src.js +12 -0
  26. package/es-modules/masters/modules/sankey.src.js +1 -1
  27. package/es-modules/masters/modules/series-label.src.js +1 -1
  28. package/es-modules/masters/modules/solid-gauge.src.js +1 -1
  29. package/es-modules/masters/modules/stock.src.js +1 -1
  30. package/es-modules/masters/modules/streamgraph.src.js +1 -1
  31. package/es-modules/masters/modules/treegrid.src.js +12 -0
  32. package/es-modules/masters/modules/variwide.src.js +1 -1
  33. package/es-modules/masters/modules/vector.src.js +1 -1
  34. package/es-modules/masters/modules/windbarb.src.js +1 -1
  35. package/es-modules/masters/modules/xrange.src.js +1 -1
  36. package/es-modules/masters/themes/dark-blue.src.js +1 -1
  37. package/es-modules/masters/themes/dark-green.src.js +1 -1
  38. package/es-modules/masters/themes/dark-unica.src.js +1 -1
  39. package/es-modules/masters/themes/gray.src.js +1 -1
  40. package/es-modules/masters/themes/grid-light.src.js +1 -1
  41. package/es-modules/masters/themes/grid.src.js +1 -1
  42. package/es-modules/masters/themes/sand-signika.src.js +1 -1
  43. package/es-modules/masters/themes/skies.src.js +1 -1
  44. package/es-modules/mixins/centered-series.js +1 -1
  45. package/es-modules/mixins/on-series.js +1 -1
  46. package/es-modules/modules/boost.src.js +22 -14
  47. package/es-modules/modules/broken-axis.src.js +169 -134
  48. package/es-modules/modules/data.src.js +2 -2
  49. package/es-modules/modules/draggable-points.src.js +2257 -0
  50. package/es-modules/modules/drilldown.src.js +1 -0
  51. package/es-modules/modules/export-data.src.js +1 -1
  52. package/es-modules/modules/exporting.src.js +1 -1
  53. package/es-modules/modules/funnel.src.js +1 -1
  54. package/es-modules/modules/item-series.src.js +1 -1
  55. package/es-modules/modules/no-data-to-display.src.js +5 -5
  56. package/es-modules/modules/oldie.src.js +1 -1
  57. package/es-modules/modules/overlapping-datalabels.src.js +38 -22
  58. package/es-modules/modules/parallel-coordinates.src.js +3 -2
  59. package/es-modules/modules/sankey.src.js +1 -1
  60. package/es-modules/modules/series-label.src.js +2 -2
  61. package/es-modules/modules/solid-gauge.src.js +1 -1
  62. package/es-modules/modules/static-scale.src.js +67 -28
  63. package/es-modules/modules/streamgraph.src.js +1 -1
  64. package/es-modules/modules/tilemap.src.js +231 -134
  65. package/es-modules/modules/variwide.src.js +1 -1
  66. package/es-modules/modules/vector.src.js +92 -22
  67. package/es-modules/modules/windbarb.src.js +1 -1
  68. package/es-modules/modules/xrange.src.js +257 -77
  69. package/es-modules/parts/AreaSeries.js +77 -77
  70. package/es-modules/parts/AreaSplineSeries.js +64 -27
  71. package/es-modules/parts/Axis.js +160 -67
  72. package/es-modules/parts/BarSeries.js +68 -51
  73. package/es-modules/parts/CandlestickSeries.js +1 -1
  74. package/es-modules/parts/Chart.js +31 -55
  75. package/es-modules/parts/Color.js +29 -18
  76. package/es-modules/parts/ColumnSeries.js +264 -142
  77. package/es-modules/parts/DataGrouping.js +9 -6
  78. package/es-modules/parts/DataLabels.js +261 -210
  79. package/es-modules/parts/DateTimeAxis.js +26 -7
  80. package/es-modules/parts/Dynamics.js +5 -2
  81. package/es-modules/parts/FlagsSeries.js +1 -1
  82. package/es-modules/parts/Globals.js +1 -1
  83. package/es-modules/parts/Html.js +64 -12
  84. package/es-modules/parts/Interaction.js +187 -63
  85. package/es-modules/parts/Legend.js +7 -3
  86. package/es-modules/parts/LogarithmicAxis.js +35 -4
  87. package/es-modules/parts/MSPointer.js +1 -1
  88. package/es-modules/parts/Navigator.js +27 -5
  89. package/es-modules/parts/OHLCSeries.js +1 -1
  90. package/es-modules/parts/Options.js +15 -13
  91. package/es-modules/parts/OrdinalAxis.js +1 -1
  92. package/es-modules/parts/PieSeries.js +256 -140
  93. package/es-modules/parts/PlotBandSeries.experimental.js +1 -1
  94. package/es-modules/parts/PlotLineOrBand.js +7 -40
  95. package/es-modules/parts/Point.js +28 -4
  96. package/es-modules/parts/Pointer.js +8 -6
  97. package/es-modules/parts/RangeSelector.js +1 -1
  98. package/es-modules/parts/Responsive.js +82 -36
  99. package/es-modules/parts/ScatterSeries.js +57 -25
  100. package/es-modules/parts/ScrollablePlotArea.js +17 -7
  101. package/es-modules/parts/Scrollbar.js +9 -2
  102. package/es-modules/parts/Series.js +22 -9
  103. package/es-modules/parts/SplineSeries.js +51 -29
  104. package/es-modules/parts/Stacking.js +100 -6
  105. package/es-modules/parts/StockChart.js +9 -3
  106. package/es-modules/parts/SvgRenderer.js +15 -10
  107. package/es-modules/parts/Tick.js +150 -30
  108. package/es-modules/parts/Time.js +23 -5
  109. package/es-modules/parts/Tooltip.js +2 -2
  110. package/es-modules/parts/TouchPointer.js +1 -1
  111. package/es-modules/parts/Utilities.js +16 -1
  112. package/es-modules/parts-3d/Axis.js +1 -1
  113. package/es-modules/parts-3d/Chart.js +1 -1
  114. package/es-modules/parts-3d/Column.js +1 -1
  115. package/es-modules/parts-3d/Math.js +1 -1
  116. package/es-modules/parts-3d/Pie.js +1 -1
  117. package/es-modules/parts-3d/SVGRenderer.js +1 -1
  118. package/es-modules/parts-3d/Scatter.js +1 -1
  119. package/es-modules/parts-3d/Series.js +1 -1
  120. package/es-modules/parts-3d/VMLRenderer.js +1 -1
  121. package/es-modules/parts-gantt/ArrowSymbols.js +110 -0
  122. package/es-modules/parts-gantt/CurrentDateIndicator.js +92 -0
  123. package/es-modules/parts-gantt/GanttChart.js +111 -0
  124. package/es-modules/parts-gantt/GanttSeries.js +376 -0
  125. package/es-modules/parts-gantt/GridAxis.js +965 -0
  126. package/es-modules/parts-gantt/Pathfinder.js +1247 -0
  127. package/es-modules/parts-gantt/PathfinderAlgorithms.js +746 -0
  128. package/es-modules/parts-gantt/Tree.js +146 -0
  129. package/es-modules/parts-gantt/TreeGrid.js +917 -0
  130. package/es-modules/parts-map/ColorAxis.js +1 -1
  131. package/es-modules/parts-map/ColorSeriesMixin.js +1 -1
  132. package/es-modules/parts-map/GeoJSON.js +1 -1
  133. package/es-modules/parts-map/HeatmapSeries.js +124 -53
  134. package/es-modules/parts-map/Map.js +1 -1
  135. package/es-modules/parts-map/MapAxis.js +1 -1
  136. package/es-modules/parts-map/MapBubbleSeries.js +1 -1
  137. package/es-modules/parts-map/MapLineSeries.js +1 -1
  138. package/es-modules/parts-map/MapNavigation.js +1 -1
  139. package/es-modules/parts-map/MapPointSeries.js +1 -1
  140. package/es-modules/parts-map/MapPointer.js +1 -1
  141. package/es-modules/parts-map/MapSeries.js +2 -2
  142. package/es-modules/parts-more/AreaRangeSeries.js +80 -38
  143. package/es-modules/parts-more/AreaSplineRangeSeries.js +1 -1
  144. package/es-modules/parts-more/BoxPlotSeries.js +1 -1
  145. package/es-modules/parts-more/BubbleSeries.js +1 -1
  146. package/es-modules/parts-more/ColumnRangeSeries.js +1 -1
  147. package/es-modules/parts-more/ErrorBarSeries.js +1 -1
  148. package/es-modules/parts-more/GaugeSeries.js +1 -1
  149. package/es-modules/parts-more/Pane.js +2 -1
  150. package/es-modules/parts-more/Polar.js +1 -1
  151. package/es-modules/parts-more/PolygonSeries.js +1 -1
  152. package/es-modules/parts-more/RadialAxis.js +5 -4
  153. package/es-modules/parts-more/WaterfallSeries.js +1 -1
  154. package/es-modules/supplemental.docs.js +0 -1955
  155. package/es-modules/themes/dark-blue.js +1 -1
  156. package/es-modules/themes/dark-green.js +1 -1
  157. package/es-modules/themes/dark-unica.js +1 -1
  158. package/es-modules/themes/gray.js +1 -1
  159. package/es-modules/themes/grid-light.js +1 -1
  160. package/es-modules/themes/grid.js +1 -1
  161. package/es-modules/themes/sand-signika.js +1 -1
  162. package/es-modules/themes/skies.js +1 -1
  163. package/highcharts-3d.js +1 -1
  164. package/highcharts-3d.src.js +10 -10
  165. package/highcharts-gantt.js +503 -0
  166. package/highcharts-gantt.js.map +1 -0
  167. package/highcharts-gantt.src.js +49289 -0
  168. package/highcharts-more.js +65 -64
  169. package/highcharts-more.js.map +1 -1
  170. package/highcharts-more.src.js +97 -53
  171. package/highcharts.js +415 -410
  172. package/highcharts.js.map +1 -1
  173. package/highcharts.src.js +2170 -1128
  174. package/highmaps.js +443 -438
  175. package/highmaps.js.map +1 -1
  176. package/highmaps.src.js +1647 -849
  177. package/highstock.js +553 -548
  178. package/highstock.js.map +1 -1
  179. package/highstock.src.js +2398 -1283
  180. package/indicators/accumulation-distribution.js +1 -1
  181. package/indicators/accumulation-distribution.src.js +1 -1
  182. package/indicators/atr.js +1 -1
  183. package/indicators/atr.src.js +1 -1
  184. package/indicators/bollinger-bands.js +1 -1
  185. package/indicators/bollinger-bands.src.js +1 -1
  186. package/indicators/cci.js +1 -1
  187. package/indicators/cci.src.js +1 -1
  188. package/indicators/cmf.js +1 -1
  189. package/indicators/cmf.src.js +1 -1
  190. package/indicators/ema.js +1 -1
  191. package/indicators/ema.src.js +1 -1
  192. package/indicators/ichimoku-kinko-hyo.js +1 -1
  193. package/indicators/ichimoku-kinko-hyo.src.js +1 -1
  194. package/indicators/indicators.js +1 -1
  195. package/indicators/indicators.src.js +1 -1
  196. package/indicators/macd.js +1 -1
  197. package/indicators/macd.src.js +1 -1
  198. package/indicators/mfi.js +1 -1
  199. package/indicators/mfi.src.js +1 -1
  200. package/indicators/momentum.js +1 -1
  201. package/indicators/momentum.src.js +2 -2
  202. package/indicators/pivot-points.js +4 -4
  203. package/indicators/pivot-points.js.map +1 -1
  204. package/indicators/pivot-points.src.js +7 -2
  205. package/indicators/price-envelopes.js +1 -1
  206. package/indicators/price-envelopes.src.js +1 -1
  207. package/indicators/psar.js +1 -1
  208. package/indicators/psar.src.js +1 -1
  209. package/indicators/roc.js +1 -1
  210. package/indicators/roc.src.js +1 -1
  211. package/indicators/rsi.js +1 -1
  212. package/indicators/rsi.src.js +1 -1
  213. package/indicators/stochastic.js +1 -1
  214. package/indicators/stochastic.src.js +1 -1
  215. package/indicators/volume-by-price.js +1 -1
  216. package/indicators/volume-by-price.src.js +1 -1
  217. package/indicators/vwap.js +1 -1
  218. package/indicators/vwap.src.js +1 -1
  219. package/indicators/wma.js +1 -1
  220. package/indicators/wma.src.js +1 -1
  221. package/indicators/zigzag.js +1 -1
  222. package/indicators/zigzag.src.js +1 -1
  223. package/js/es-modules/indicators/momentum.src.js +1 -1
  224. package/js/es-modules/indicators/pivot-points.src.js +6 -1
  225. package/js/es-modules/masters/highcharts-gantt.src.js +11 -0
  226. package/js/es-modules/masters/modules/annotations.src.js +1 -1
  227. package/js/es-modules/masters/modules/arrow-symbols.src.js +12 -0
  228. package/js/es-modules/masters/modules/broken-axis.src.js +1 -1
  229. package/js/es-modules/masters/modules/current-date-indicator.src.js +12 -0
  230. package/js/es-modules/masters/modules/data.src.js +1 -1
  231. package/js/es-modules/masters/modules/draggable-points.src.js +9 -0
  232. package/js/es-modules/masters/modules/export-data.src.js +1 -1
  233. package/js/es-modules/masters/modules/exporting.src.js +1 -1
  234. package/js/es-modules/masters/modules/funnel.src.js +1 -1
  235. package/js/es-modules/masters/modules/gantt.src.js +2 -1
  236. package/js/es-modules/masters/modules/grid-axis.src.js +1 -1
  237. package/js/es-modules/masters/modules/heatmap.src.js +1 -1
  238. package/js/es-modules/masters/modules/item-series.src.js +1 -1
  239. package/js/es-modules/masters/modules/map.src.js +1 -1
  240. package/js/es-modules/masters/modules/overlapping-datalabels.src.js +1 -1
  241. package/js/es-modules/masters/modules/pathfinder.src.js +12 -0
  242. package/js/es-modules/masters/modules/sankey.src.js +1 -1
  243. package/js/es-modules/masters/modules/series-label.src.js +1 -1
  244. package/js/es-modules/masters/modules/solid-gauge.src.js +1 -1
  245. package/js/es-modules/masters/modules/stock.src.js +1 -1
  246. package/js/es-modules/masters/modules/streamgraph.src.js +1 -1
  247. package/js/es-modules/masters/modules/treegrid.src.js +12 -0
  248. package/js/es-modules/masters/modules/variwide.src.js +1 -1
  249. package/js/es-modules/masters/modules/vector.src.js +1 -1
  250. package/js/es-modules/masters/modules/windbarb.src.js +1 -1
  251. package/js/es-modules/masters/modules/xrange.src.js +1 -1
  252. package/js/es-modules/masters/themes/dark-blue.src.js +1 -1
  253. package/js/es-modules/masters/themes/dark-green.src.js +1 -1
  254. package/js/es-modules/masters/themes/dark-unica.src.js +1 -1
  255. package/js/es-modules/masters/themes/gray.src.js +1 -1
  256. package/js/es-modules/masters/themes/grid-light.src.js +1 -1
  257. package/js/es-modules/masters/themes/grid.src.js +1 -1
  258. package/js/es-modules/masters/themes/sand-signika.src.js +1 -1
  259. package/js/es-modules/masters/themes/skies.src.js +1 -1
  260. package/js/es-modules/mixins/centered-series.js +1 -1
  261. package/js/es-modules/mixins/on-series.js +1 -1
  262. package/js/es-modules/modules/boost.src.js +22 -14
  263. package/js/es-modules/modules/broken-axis.src.js +169 -134
  264. package/js/es-modules/modules/data.src.js +2 -2
  265. package/js/es-modules/modules/draggable-points.src.js +2257 -0
  266. package/js/es-modules/modules/drilldown.src.js +1 -0
  267. package/js/es-modules/modules/export-data.src.js +1 -1
  268. package/js/es-modules/modules/exporting.src.js +1 -1
  269. package/js/es-modules/modules/funnel.src.js +1 -1
  270. package/js/es-modules/modules/item-series.src.js +1 -1
  271. package/js/es-modules/modules/no-data-to-display.src.js +5 -5
  272. package/js/es-modules/modules/oldie.src.js +1 -1
  273. package/js/es-modules/modules/overlapping-datalabels.src.js +38 -22
  274. package/js/es-modules/modules/parallel-coordinates.src.js +3 -2
  275. package/js/es-modules/modules/sankey.src.js +1 -1
  276. package/js/es-modules/modules/series-label.src.js +2 -2
  277. package/js/es-modules/modules/solid-gauge.src.js +1 -1
  278. package/js/es-modules/modules/static-scale.src.js +67 -28
  279. package/js/es-modules/modules/streamgraph.src.js +1 -1
  280. package/js/es-modules/modules/tilemap.src.js +231 -134
  281. package/js/es-modules/modules/variwide.src.js +1 -1
  282. package/js/es-modules/modules/vector.src.js +92 -22
  283. package/js/es-modules/modules/windbarb.src.js +1 -1
  284. package/js/es-modules/modules/xrange.src.js +255 -68
  285. package/js/es-modules/parts/AreaSeries.js +77 -77
  286. package/js/es-modules/parts/AreaSplineSeries.js +64 -27
  287. package/js/es-modules/parts/Axis.js +160 -67
  288. package/js/es-modules/parts/BarSeries.js +68 -51
  289. package/js/es-modules/parts/CandlestickSeries.js +1 -1
  290. package/js/es-modules/parts/Chart.js +31 -55
  291. package/js/es-modules/parts/Color.js +29 -18
  292. package/js/es-modules/parts/ColumnSeries.js +231 -123
  293. package/js/es-modules/parts/DataGrouping.js +9 -6
  294. package/js/es-modules/parts/DataLabels.js +230 -182
  295. package/js/es-modules/parts/DateTimeAxis.js +26 -7
  296. package/js/es-modules/parts/Dynamics.js +5 -2
  297. package/js/es-modules/parts/FlagsSeries.js +1 -1
  298. package/js/es-modules/parts/Globals.js +1 -1
  299. package/js/es-modules/parts/Html.js +64 -12
  300. package/js/es-modules/parts/Interaction.js +178 -61
  301. package/js/es-modules/parts/Legend.js +7 -3
  302. package/js/es-modules/parts/LogarithmicAxis.js +35 -4
  303. package/js/es-modules/parts/MSPointer.js +1 -1
  304. package/js/es-modules/parts/Navigator.js +27 -5
  305. package/js/es-modules/parts/OHLCSeries.js +1 -1
  306. package/js/es-modules/parts/Options.js +13 -12
  307. package/js/es-modules/parts/OrdinalAxis.js +1 -1
  308. package/js/es-modules/parts/PieSeries.js +245 -132
  309. package/js/es-modules/parts/PlotBandSeries.experimental.js +1 -1
  310. package/js/es-modules/parts/PlotLineOrBand.js +7 -40
  311. package/js/es-modules/parts/Point.js +28 -4
  312. package/js/es-modules/parts/Pointer.js +8 -6
  313. package/js/es-modules/parts/RangeSelector.js +1 -1
  314. package/js/es-modules/parts/Responsive.js +82 -36
  315. package/js/es-modules/parts/ScatterSeries.js +56 -25
  316. package/js/es-modules/parts/ScrollablePlotArea.js +17 -7
  317. package/js/es-modules/parts/Scrollbar.js +9 -2
  318. package/js/es-modules/parts/Series.js +22 -9
  319. package/js/es-modules/parts/SplineSeries.js +51 -29
  320. package/js/es-modules/parts/Stacking.js +100 -6
  321. package/js/es-modules/parts/StockChart.js +9 -3
  322. package/js/es-modules/parts/SvgRenderer.js +15 -10
  323. package/js/es-modules/parts/Tick.js +150 -30
  324. package/js/es-modules/parts/Time.js +23 -5
  325. package/js/es-modules/parts/Tooltip.js +2 -2
  326. package/js/es-modules/parts/TouchPointer.js +1 -1
  327. package/js/es-modules/parts/Utilities.js +16 -1
  328. package/js/es-modules/parts-3d/Axis.js +1 -1
  329. package/js/es-modules/parts-3d/Chart.js +1 -1
  330. package/js/es-modules/parts-3d/Column.js +1 -1
  331. package/js/es-modules/parts-3d/Math.js +1 -1
  332. package/js/es-modules/parts-3d/Pie.js +1 -1
  333. package/js/es-modules/parts-3d/SVGRenderer.js +1 -1
  334. package/js/es-modules/parts-3d/Scatter.js +1 -1
  335. package/js/es-modules/parts-3d/Series.js +1 -1
  336. package/js/es-modules/parts-3d/VMLRenderer.js +1 -1
  337. package/js/es-modules/parts-gantt/ArrowSymbols.js +110 -0
  338. package/js/es-modules/parts-gantt/CurrentDateIndicator.js +92 -0
  339. package/js/es-modules/parts-gantt/GanttChart.js +111 -0
  340. package/js/es-modules/parts-gantt/GanttSeries.js +371 -0
  341. package/js/es-modules/parts-gantt/GridAxis.js +962 -0
  342. package/js/es-modules/parts-gantt/Pathfinder.js +1225 -0
  343. package/js/es-modules/parts-gantt/PathfinderAlgorithms.js +746 -0
  344. package/js/es-modules/parts-gantt/Tree.js +146 -0
  345. package/js/es-modules/parts-gantt/TreeGrid.js +891 -0
  346. package/js/es-modules/parts-map/ColorAxis.js +1 -1
  347. package/js/es-modules/parts-map/ColorSeriesMixin.js +1 -1
  348. package/js/es-modules/parts-map/GeoJSON.js +1 -1
  349. package/js/es-modules/parts-map/HeatmapSeries.js +122 -52
  350. package/js/es-modules/parts-map/Map.js +1 -1
  351. package/js/es-modules/parts-map/MapAxis.js +1 -1
  352. package/js/es-modules/parts-map/MapBubbleSeries.js +1 -1
  353. package/js/es-modules/parts-map/MapLineSeries.js +1 -1
  354. package/js/es-modules/parts-map/MapNavigation.js +1 -1
  355. package/js/es-modules/parts-map/MapPointSeries.js +1 -1
  356. package/js/es-modules/parts-map/MapPointer.js +1 -1
  357. package/js/es-modules/parts-map/MapSeries.js +2 -2
  358. package/js/es-modules/parts-more/AreaRangeSeries.js +80 -38
  359. package/js/es-modules/parts-more/AreaSplineRangeSeries.js +1 -1
  360. package/js/es-modules/parts-more/BoxPlotSeries.js +1 -1
  361. package/js/es-modules/parts-more/BubbleSeries.js +1 -1
  362. package/js/es-modules/parts-more/ColumnRangeSeries.js +1 -1
  363. package/js/es-modules/parts-more/ErrorBarSeries.js +1 -1
  364. package/js/es-modules/parts-more/GaugeSeries.js +1 -1
  365. package/js/es-modules/parts-more/Pane.js +2 -1
  366. package/js/es-modules/parts-more/Polar.js +1 -1
  367. package/js/es-modules/parts-more/PolygonSeries.js +1 -1
  368. package/js/es-modules/parts-more/RadialAxis.js +5 -4
  369. package/js/es-modules/parts-more/WaterfallSeries.js +1 -1
  370. package/js/es-modules/supplemental.docs.js +0 -1955
  371. package/js/es-modules/themes/dark-blue.js +1 -1
  372. package/js/es-modules/themes/dark-green.js +1 -1
  373. package/js/es-modules/themes/dark-unica.js +1 -1
  374. package/js/es-modules/themes/gray.js +1 -1
  375. package/js/es-modules/themes/grid-light.js +1 -1
  376. package/js/es-modules/themes/grid.js +1 -1
  377. package/js/es-modules/themes/sand-signika.js +1 -1
  378. package/js/es-modules/themes/skies.js +1 -1
  379. package/js/highcharts-3d.js +1 -1
  380. package/js/highcharts-3d.src.js +10 -10
  381. package/js/highcharts-gantt.js +480 -0
  382. package/js/highcharts-gantt.js.map +1 -0
  383. package/js/highcharts-gantt.src.js +47011 -0
  384. package/js/highcharts-more.js +62 -61
  385. package/js/highcharts-more.js.map +1 -1
  386. package/js/highcharts-more.src.js +97 -53
  387. package/js/highcharts.js +394 -390
  388. package/js/highcharts.js.map +1 -1
  389. package/js/highcharts.src.js +2083 -1070
  390. package/js/highmaps.js +420 -416
  391. package/js/highmaps.js.map +1 -1
  392. package/js/highmaps.src.js +1569 -798
  393. package/js/highstock.js +526 -520
  394. package/js/highstock.js.map +1 -1
  395. package/js/highstock.src.js +2311 -1225
  396. package/js/indicators/accumulation-distribution.js +1 -1
  397. package/js/indicators/accumulation-distribution.src.js +1 -1
  398. package/js/indicators/atr.js +1 -1
  399. package/js/indicators/atr.src.js +1 -1
  400. package/js/indicators/bollinger-bands.js +1 -1
  401. package/js/indicators/bollinger-bands.src.js +1 -1
  402. package/js/indicators/cci.js +1 -1
  403. package/js/indicators/cci.src.js +1 -1
  404. package/js/indicators/cmf.js +1 -1
  405. package/js/indicators/cmf.src.js +1 -1
  406. package/js/indicators/ema.js +1 -1
  407. package/js/indicators/ema.src.js +1 -1
  408. package/js/indicators/ichimoku-kinko-hyo.js +1 -1
  409. package/js/indicators/ichimoku-kinko-hyo.src.js +1 -1
  410. package/js/indicators/indicators.js +1 -1
  411. package/js/indicators/indicators.src.js +1 -1
  412. package/js/indicators/macd.js +1 -1
  413. package/js/indicators/macd.src.js +1 -1
  414. package/js/indicators/mfi.js +1 -1
  415. package/js/indicators/mfi.src.js +1 -1
  416. package/js/indicators/momentum.js +1 -1
  417. package/js/indicators/momentum.src.js +2 -2
  418. package/js/indicators/pivot-points.js +4 -4
  419. package/js/indicators/pivot-points.js.map +1 -1
  420. package/js/indicators/pivot-points.src.js +7 -2
  421. package/js/indicators/price-envelopes.js +1 -1
  422. package/js/indicators/price-envelopes.src.js +1 -1
  423. package/js/indicators/psar.js +1 -1
  424. package/js/indicators/psar.src.js +1 -1
  425. package/js/indicators/roc.js +1 -1
  426. package/js/indicators/roc.src.js +1 -1
  427. package/js/indicators/rsi.js +1 -1
  428. package/js/indicators/rsi.src.js +1 -1
  429. package/js/indicators/stochastic.js +1 -1
  430. package/js/indicators/stochastic.src.js +1 -1
  431. package/js/indicators/volume-by-price.js +1 -1
  432. package/js/indicators/volume-by-price.src.js +1 -1
  433. package/js/indicators/vwap.js +1 -1
  434. package/js/indicators/vwap.src.js +1 -1
  435. package/js/indicators/wma.js +1 -1
  436. package/js/indicators/wma.src.js +1 -1
  437. package/js/indicators/zigzag.js +1 -1
  438. package/js/indicators/zigzag.src.js +1 -1
  439. package/js/modules/accessibility.js +1 -1
  440. package/js/modules/accessibility.src.js +1 -1
  441. package/js/modules/annotations.js +2 -2
  442. package/js/modules/annotations.src.js +2 -2
  443. package/js/modules/arrow-symbols.js +13 -0
  444. package/js/modules/arrow-symbols.js.map +1 -0
  445. package/js/modules/arrow-symbols.src.js +138 -0
  446. package/js/modules/boost-canvas.js +1 -1
  447. package/js/modules/boost-canvas.src.js +1 -1
  448. package/js/modules/boost.js +43 -43
  449. package/js/modules/boost.js.map +1 -1
  450. package/js/modules/boost.src.js +23 -15
  451. package/js/modules/broken-axis.js +11 -10
  452. package/js/modules/broken-axis.js.map +1 -1
  453. package/js/modules/broken-axis.src.js +171 -136
  454. package/js/modules/bullet.js +1 -1
  455. package/js/modules/bullet.src.js +1 -1
  456. package/js/modules/current-date-indicator.js +13 -0
  457. package/js/modules/current-date-indicator.js.map +1 -0
  458. package/js/modules/current-date-indicator.src.js +120 -0
  459. package/js/modules/data.js +2 -2
  460. package/js/modules/data.src.js +4 -4
  461. package/js/modules/drag-panes.js +1 -1
  462. package/js/modules/drag-panes.src.js +1 -1
  463. package/js/modules/draggable-points.js +38 -0
  464. package/js/modules/draggable-points.js.map +1 -0
  465. package/js/modules/draggable-points.src.js +2281 -0
  466. package/js/modules/drilldown.js +1 -1
  467. package/js/modules/drilldown.js.map +1 -1
  468. package/js/modules/drilldown.src.js +2 -1
  469. package/js/modules/export-data.js +2 -2
  470. package/js/modules/export-data.src.js +3 -3
  471. package/js/modules/exporting.js +2 -2
  472. package/js/modules/exporting.src.js +3 -3
  473. package/js/modules/funnel.js +2 -2
  474. package/js/modules/funnel.src.js +3 -3
  475. package/js/modules/gantt.js +80 -18
  476. package/js/modules/gantt.js.map +1 -1
  477. package/js/modules/gantt.src.js +5490 -372
  478. package/js/modules/grid-axis.js +15 -11
  479. package/js/modules/grid-axis.js.map +1 -1
  480. package/js/modules/grid-axis.src.js +731 -293
  481. package/js/modules/heatmap.js +2 -2
  482. package/js/modules/heatmap.js.map +1 -1
  483. package/js/modules/heatmap.src.js +126 -56
  484. package/js/modules/histogram-bellcurve.js +1 -1
  485. package/js/modules/histogram-bellcurve.src.js +1 -1
  486. package/js/modules/item-series.js +2 -2
  487. package/js/modules/item-series.src.js +3 -3
  488. package/js/modules/map.js +2 -2
  489. package/js/modules/map.js.map +1 -1
  490. package/js/modules/map.src.js +137 -67
  491. package/js/modules/no-data-to-display.js +1 -1
  492. package/js/modules/no-data-to-display.src.js +6 -6
  493. package/js/modules/offline-exporting.js +2 -2
  494. package/js/modules/offline-exporting.src.js +2 -2
  495. package/js/modules/oldie.js +2 -2
  496. package/js/modules/oldie.src.js +3 -3
  497. package/js/modules/overlapping-datalabels.js +2 -2
  498. package/js/modules/overlapping-datalabels.src.js +2 -2
  499. package/js/modules/parallel-coordinates.js +9 -9
  500. package/js/modules/parallel-coordinates.js.map +1 -1
  501. package/js/modules/parallel-coordinates.src.js +4 -3
  502. package/js/modules/pareto.js +1 -1
  503. package/js/modules/pareto.src.js +1 -1
  504. package/js/modules/pathfinder.js +34 -0
  505. package/js/modules/pathfinder.js.map +1 -0
  506. package/js/modules/pathfinder.src.js +2106 -0
  507. package/js/modules/pattern-fill.js +1 -1
  508. package/js/modules/pattern-fill.src.js +1 -1
  509. package/js/modules/sankey.js +2 -2
  510. package/js/modules/sankey.src.js +3 -3
  511. package/js/modules/series-label.js +2 -2
  512. package/js/modules/series-label.src.js +4 -4
  513. package/js/modules/solid-gauge.js +2 -2
  514. package/js/modules/solid-gauge.src.js +3 -3
  515. package/js/modules/static-scale.js +3 -3
  516. package/js/modules/static-scale.js.map +1 -1
  517. package/js/modules/static-scale.src.js +65 -26
  518. package/js/modules/stock.js +135 -134
  519. package/js/modules/stock.js.map +1 -1
  520. package/js/modules/stock.src.js +230 -157
  521. package/js/modules/streamgraph.js +2 -2
  522. package/js/modules/streamgraph.src.js +3 -3
  523. package/js/modules/sunburst.js +1 -1
  524. package/js/modules/sunburst.src.js +1 -1
  525. package/js/modules/tilemap.js +1 -1
  526. package/js/modules/tilemap.js.map +1 -1
  527. package/js/modules/tilemap.src.js +355 -188
  528. package/js/modules/treegrid.js +51 -0
  529. package/js/modules/treegrid.js.map +1 -0
  530. package/js/modules/treegrid.src.js +2759 -0
  531. package/js/modules/treemap.js +1 -1
  532. package/js/modules/treemap.src.js +1 -1
  533. package/js/modules/variable-pie.js +1 -1
  534. package/js/modules/variable-pie.src.js +1 -1
  535. package/js/modules/variwide.js +2 -2
  536. package/js/modules/variwide.src.js +3 -3
  537. package/js/modules/vector.js +2 -2
  538. package/js/modules/vector.js.map +1 -1
  539. package/js/modules/vector.src.js +94 -24
  540. package/js/modules/windbarb.js +2 -2
  541. package/js/modules/windbarb.src.js +4 -4
  542. package/js/modules/wordcloud.js +1 -1
  543. package/js/modules/wordcloud.src.js +1 -1
  544. package/js/modules/xrange.js +11 -10
  545. package/js/modules/xrange.js.map +1 -1
  546. package/js/modules/xrange.src.js +257 -70
  547. package/js/themes/avocado.js +1 -1
  548. package/js/themes/avocado.src.js +1 -1
  549. package/js/themes/dark-blue.js +2 -2
  550. package/js/themes/dark-blue.src.js +3 -3
  551. package/js/themes/dark-green.js +2 -2
  552. package/js/themes/dark-green.src.js +3 -3
  553. package/js/themes/dark-unica.js +2 -2
  554. package/js/themes/dark-unica.src.js +3 -3
  555. package/js/themes/gray.js +2 -2
  556. package/js/themes/gray.src.js +3 -3
  557. package/js/themes/grid-light.js +2 -2
  558. package/js/themes/grid-light.src.js +3 -3
  559. package/js/themes/grid.js +2 -2
  560. package/js/themes/grid.src.js +3 -3
  561. package/js/themes/sand-signika.js +2 -2
  562. package/js/themes/sand-signika.src.js +3 -3
  563. package/js/themes/skies.js +2 -2
  564. package/js/themes/skies.src.js +3 -3
  565. package/js/themes/sunset.js +1 -1
  566. package/js/themes/sunset.src.js +1 -1
  567. package/modules/accessibility.js +1 -1
  568. package/modules/accessibility.src.js +1 -1
  569. package/modules/annotations.js +2 -2
  570. package/modules/annotations.src.js +2 -2
  571. package/modules/arrow-symbols.js +13 -0
  572. package/modules/arrow-symbols.js.map +1 -0
  573. package/modules/arrow-symbols.src.js +138 -0
  574. package/modules/boost-canvas.js +1 -1
  575. package/modules/boost-canvas.src.js +1 -1
  576. package/modules/boost.js +36 -36
  577. package/modules/boost.js.map +1 -1
  578. package/modules/boost.src.js +23 -15
  579. package/modules/broken-axis.js +11 -10
  580. package/modules/broken-axis.js.map +1 -1
  581. package/modules/broken-axis.src.js +171 -136
  582. package/modules/bullet.js +1 -1
  583. package/modules/bullet.src.js +1 -1
  584. package/modules/current-date-indicator.js +13 -0
  585. package/modules/current-date-indicator.js.map +1 -0
  586. package/modules/current-date-indicator.src.js +120 -0
  587. package/modules/data.js +2 -2
  588. package/modules/data.src.js +4 -4
  589. package/modules/drag-panes.js +1 -1
  590. package/modules/drag-panes.src.js +1 -1
  591. package/modules/draggable-points.js +38 -0
  592. package/modules/draggable-points.js.map +1 -0
  593. package/modules/draggable-points.src.js +2281 -0
  594. package/modules/drilldown.js +1 -1
  595. package/modules/drilldown.js.map +1 -1
  596. package/modules/drilldown.src.js +2 -1
  597. package/modules/export-data.js +2 -2
  598. package/modules/export-data.src.js +3 -3
  599. package/modules/exporting.js +2 -2
  600. package/modules/exporting.src.js +3 -3
  601. package/modules/funnel.js +2 -2
  602. package/modules/funnel.src.js +3 -3
  603. package/modules/gantt.js +83 -19
  604. package/modules/gantt.js.map +1 -1
  605. package/modules/gantt.src.js +5553 -379
  606. package/modules/grid-axis.js +16 -11
  607. package/modules/grid-axis.js.map +1 -1
  608. package/modules/grid-axis.src.js +732 -293
  609. package/modules/heatmap.js +2 -2
  610. package/modules/heatmap.js.map +1 -1
  611. package/modules/heatmap.src.js +128 -57
  612. package/modules/histogram-bellcurve.js +1 -1
  613. package/modules/histogram-bellcurve.src.js +1 -1
  614. package/modules/item-series.js +2 -2
  615. package/modules/item-series.src.js +3 -3
  616. package/modules/map.js +2 -2
  617. package/modules/map.js.map +1 -1
  618. package/modules/map.src.js +139 -68
  619. package/modules/no-data-to-display.js +1 -1
  620. package/modules/no-data-to-display.src.js +6 -6
  621. package/modules/offline-exporting.js +2 -2
  622. package/modules/offline-exporting.src.js +2 -2
  623. package/modules/oldie.js +2 -2
  624. package/modules/oldie.src.js +3 -3
  625. package/modules/overlapping-datalabels.js +2 -2
  626. package/modules/overlapping-datalabels.src.js +2 -2
  627. package/modules/parallel-coordinates.js +8 -8
  628. package/modules/parallel-coordinates.js.map +1 -1
  629. package/modules/parallel-coordinates.src.js +4 -3
  630. package/modules/pareto.js +1 -1
  631. package/modules/pareto.src.js +1 -1
  632. package/modules/pathfinder.js +35 -0
  633. package/modules/pathfinder.js.map +1 -0
  634. package/modules/pathfinder.src.js +2128 -0
  635. package/modules/pattern-fill.js +1 -1
  636. package/modules/pattern-fill.src.js +1 -1
  637. package/modules/sankey.js +2 -2
  638. package/modules/sankey.src.js +3 -3
  639. package/modules/series-label.js +2 -2
  640. package/modules/series-label.src.js +4 -4
  641. package/modules/solid-gauge.js +2 -2
  642. package/modules/solid-gauge.src.js +3 -3
  643. package/modules/static-scale.js +3 -3
  644. package/modules/static-scale.js.map +1 -1
  645. package/modules/static-scale.src.js +65 -26
  646. package/modules/stock.js +142 -142
  647. package/modules/stock.js.map +1 -1
  648. package/modules/stock.src.js +230 -157
  649. package/modules/streamgraph.js +2 -2
  650. package/modules/streamgraph.src.js +3 -3
  651. package/modules/sunburst.js +1 -1
  652. package/modules/sunburst.src.js +1 -1
  653. package/modules/tilemap.js +1 -1
  654. package/modules/tilemap.js.map +1 -1
  655. package/modules/tilemap.src.js +357 -189
  656. package/modules/treegrid.js +52 -0
  657. package/modules/treegrid.js.map +1 -0
  658. package/modules/treegrid.src.js +2797 -0
  659. package/modules/treemap.js +1 -1
  660. package/modules/treemap.src.js +1 -1
  661. package/modules/variable-pie.js +1 -1
  662. package/modules/variable-pie.src.js +1 -1
  663. package/modules/variwide.js +2 -2
  664. package/modules/variwide.src.js +3 -3
  665. package/modules/vector.js +2 -2
  666. package/modules/vector.js.map +1 -1
  667. package/modules/vector.src.js +94 -24
  668. package/modules/windbarb.js +2 -2
  669. package/modules/windbarb.src.js +4 -4
  670. package/modules/wordcloud.js +1 -1
  671. package/modules/wordcloud.src.js +1 -1
  672. package/modules/xrange.js +12 -11
  673. package/modules/xrange.js.map +1 -1
  674. package/modules/xrange.src.js +259 -79
  675. package/package.json +1 -1
  676. package/themes/avocado.js +1 -1
  677. package/themes/avocado.src.js +1 -1
  678. package/themes/dark-blue.js +2 -2
  679. package/themes/dark-blue.src.js +3 -3
  680. package/themes/dark-green.js +2 -2
  681. package/themes/dark-green.src.js +3 -3
  682. package/themes/dark-unica.js +2 -2
  683. package/themes/dark-unica.src.js +3 -3
  684. package/themes/gray.js +2 -2
  685. package/themes/gray.src.js +3 -3
  686. package/themes/grid-light.js +2 -2
  687. package/themes/grid-light.src.js +3 -3
  688. package/themes/grid.js +2 -2
  689. package/themes/grid.src.js +3 -3
  690. package/themes/sand-signika.js +2 -2
  691. package/themes/sand-signika.src.js +3 -3
  692. package/themes/skies.js +2 -2
  693. package/themes/skies.src.js +3 -3
  694. package/themes/sunset.js +1 -1
  695. package/themes/sunset.src.js +1 -1
@@ -1,68 +1,69 @@
1
1
  /*
2
- Highcharts JS v6.1.4 (2018-09-25)
2
+ Highcharts JS v6.2.0 (2018-10-17)
3
3
 
4
4
  (c) 2009-2016 Torstein Honsi
5
5
 
6
6
  License: www.highcharts.com/license
7
7
  */
8
- (function(x){"object"===typeof module&&module.exports?module.exports=x:"function"===typeof define&&define.amd?define(function(){return x}):x(Highcharts)})(function(x){(function(b){function h(b,a){this.init(b,a)}var v=b.CenteredSeriesMixin,u=b.each,l=b.extend,r=b.merge,t=b.splat;l(h.prototype,{coll:"pane",init:function(b,a){this.chart=a;this.background=[];a.pane.push(this);this.setOptions(b)},setOptions:function(b){this.options=r(this.defaultOptions,this.chart.angular?{background:{}}:void 0,b)},render:function(){var b=
9
- this.options,a=this.options.background,c=this.chart.renderer;this.group||(this.group=c.g("pane-group").attr({zIndex:b.zIndex||0}).add());this.updateCenter();if(a)for(a=t(a),b=Math.max(a.length,this.background.length||0),c=0;c<b;c++)a[c]&&this.axis?this.renderBackground(r(this.defaultBackgroundOptions,a[c]),c):this.background[c]&&(this.background[c]=this.background[c].destroy(),this.background.splice(c,1))},renderBackground:function(b,a){var c="animate";this.background[a]||(this.background[a]=this.chart.renderer.path().add(this.group),
10
- c="attr");this.background[a][c]({d:this.axis.getPlotBandPath(b.from,b.to,b)}).attr({"class":"highcharts-pane "+(b.className||"")})},defaultOptions:{center:["50%","50%"],size:"85%",startAngle:0},defaultBackgroundOptions:{shape:"circle",from:-Number.MAX_VALUE,innerRadius:0,to:Number.MAX_VALUE,outerRadius:"105%"},updateCenter:function(b){this.center=(b||this.axis||{}).center=v.getCenter.call(this)},update:function(b,a){r(!0,this.options,b);this.setOptions(this.options);this.render();u(this.chart.axes,
11
- function(c){c.pane===this&&(c.pane=null,c.update({},a))},this)}});b.Pane=h})(x);(function(b){var h=b.addEvent,v=b.Axis,u=b.each,l=b.extend,r=b.map,t=b.merge,p=b.noop,a=b.pick,c=b.pInt,f=b.Tick,g=b.wrap,d=b.correctFloat,e,n,m=v.prototype,k=f.prototype;b.radialAxisExtended||(b.radialAxisExtended=!0,e={getOffset:p,redraw:function(){this.isDirty=!1},render:function(){this.isDirty=!1},setScale:p,setCategories:p,setTitle:p},n={defaultRadialGaugeOptions:{labels:{align:"center",x:0,y:null},minorGridLineWidth:0,
12
- minorTickInterval:"auto",minorTickLength:10,minorTickPosition:"inside",minorTickWidth:1,tickLength:10,tickPosition:"inside",tickWidth:2,title:{rotation:0},zIndex:2},defaultRadialXOptions:{gridLineWidth:1,labels:{align:null,distance:15,x:0,y:null,style:{textOverflow:"none"}},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},defaultRadialYOptions:{gridLineInterpolation:"circle",labels:{align:"right",x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},setOptions:function(a){a=this.options=
13
- t(this.defaultOptions,this.defaultRadialOptions,a);a.plotBands||(a.plotBands=[]);b.fireEvent(this,"afterSetOptions")},getOffset:function(){m.getOffset.call(this);this.chart.axisOffset[this.side]=0},getLinePath:function(c,d){c=this.center;var e=this.chart,f=a(d,c[2]/2-this.offset);this.isCircular||void 0!==d?(d=this.chart.renderer.symbols.arc(this.left+c[0],this.top+c[1],f,f,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0}),d.xBounds=[this.left+c[0]],d.yBounds=[this.top+c[1]-f]):(d=
14
- this.postTranslate(this.angleRad,f),d=["M",c[0]+e.plotLeft,c[1]+e.plotTop,"L",d.x,d.y]);return d},setAxisTranslation:function(){m.setAxisTranslation.call(this);this.center&&(this.transA=this.isCircular?(this.endAngleRad-this.startAngleRad)/(this.max-this.min||1):this.center[2]/2/(this.max-this.min||1),this.minPixelPadding=this.isXAxis?this.transA*this.minPointOffset:0)},beforeSetTickPositions:function(){if(this.autoConnect=this.isCircular&&void 0===a(this.userMax,this.options.max)&&d(this.endAngleRad-
15
- this.startAngleRad)===d(2*Math.PI))this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0},setAxisSize:function(){m.setAxisSize.call(this);this.isRadial&&(this.pane.updateCenter(this),this.isCircular&&(this.sector=this.endAngleRad-this.startAngleRad),this.len=this.width=this.height=this.center[2]*a(this.sector,1)/2)},getPosition:function(c,d){return this.postTranslate(this.isCircular?this.translate(c):this.angleRad,a(this.isCircular?d:this.translate(c),this.center[2]/2)-this.offset)},
16
- postTranslate:function(a,c){var d=this.chart,e=this.center;a=this.startAngleRad+a;return{x:d.plotLeft+e[0]+Math.cos(a)*c,y:d.plotTop+e[1]+Math.sin(a)*c}},getPlotBandPath:function(d,e,f){var b=this.center,g=this.startAngleRad,w=b[2]/2,q=[a(f.outerRadius,"100%"),f.innerRadius,a(f.thickness,10)],n=Math.min(this.offset,0),m=/%$/,k,z=this.isCircular;"polygon"===this.options.gridLineInterpolation?b=this.getPlotLinePath(d).concat(this.getPlotLinePath(e,!0)):(d=Math.max(d,this.min),e=Math.min(e,this.max),
17
- z||(q[0]=this.translate(d),q[1]=this.translate(e)),q=r(q,function(a){m.test(a)&&(a=c(a,10)*w/100);return a}),"circle"!==f.shape&&z?(d=g+this.translate(d),e=g+this.translate(e)):(d=-Math.PI/2,e=1.5*Math.PI,k=!0),q[0]-=n,q[2]-=n,b=this.chart.renderer.symbols.arc(this.left+b[0],this.top+b[1],q[0],q[0],{start:Math.min(d,e),end:Math.max(d,e),innerR:a(q[1],q[0]-q[2]),open:k}));return b},getPlotLinePath:function(a,c){var d=this,e=d.center,f=d.chart,b=d.getPosition(a),g,q,n;d.isCircular?n=["M",e[0]+f.plotLeft,
18
- e[1]+f.plotTop,"L",b.x,b.y]:"circle"===d.options.gridLineInterpolation?(a=d.translate(a))&&(n=d.getLinePath(0,a)):(u(f.xAxis,function(a){a.pane===d.pane&&(g=a)}),n=[],a=d.translate(a),e=g.tickPositions,g.autoConnect&&(e=e.concat([e[0]])),c&&(e=[].concat(e).reverse()),u(e,function(c,d){q=g.getPosition(c,a);n.push(d?"L":"M",q.x,q.y)}));return n},getTitlePosition:function(){var a=this.center,c=this.chart,d=this.options.title;return{x:c.plotLeft+a[0]+(d.x||0),y:c.plotTop+a[1]-{high:.5,middle:.25,low:0}[d.align]*
19
- a[2]+(d.y||0)}}},h(v,"init",function(a){var c=this.chart,d=c.angular,f=c.polar,b=this.isXAxis,g=d&&b,m,k=c.options;a=a.userOptions.pane||0;a=this.pane=c.pane&&c.pane[a];if(d){if(l(this,g?e:n),m=!b)this.defaultRadialOptions=this.defaultRadialGaugeOptions}else f&&(l(this,n),this.defaultRadialOptions=(m=b)?this.defaultRadialXOptions:t(this.defaultYAxisOptions,this.defaultRadialYOptions));d||f?(this.isRadial=!0,c.inverted=!1,k.chart.zoomType=null):this.isRadial=!1;a&&m&&(a.axis=this);this.isCircular=
20
- m}),h(v,"afterInit",function(){var c=this.chart,d=this.options,e=this.pane,f=e&&e.options;c.angular&&this.isXAxis||!e||!c.angular&&!c.polar||(this.angleRad=(d.angle||0)*Math.PI/180,this.startAngleRad=(f.startAngle-90)*Math.PI/180,this.endAngleRad=(a(f.endAngle,f.startAngle+360)-90)*Math.PI/180,this.offset=d.offset||0)}),g(m,"autoLabelAlign",function(a){if(!this.isRadial)return a.apply(this,[].slice.call(arguments,1))}),h(f,"afterGetPosition",function(a){this.axis.getPosition&&l(a.pos,this.axis.getPosition(this.pos))}),
21
- h(f,"afterGetLabelPosition",function(c){var d=this.axis,e=this.label,f=d.options.labels,b=f.y,g,n=20,m=f.align,k=(d.translate(this.pos)+d.startAngleRad+Math.PI/2)/Math.PI*180%360;d.isRadial&&(g=d.getPosition(this.pos,d.center[2]/2+a(f.distance,-25)),"auto"===f.rotation?e.attr({rotation:k}):null===b&&(b=d.chart.renderer.fontMetrics(e.styles&&e.styles.fontSize).b-e.getBBox().height/2),null===m&&(d.isCircular?(this.label.getBBox().width>d.len*d.tickInterval/(d.max-d.min)&&(n=0),m=k>n&&k<180-n?"left":
22
- k>180+n&&k<360-n?"right":"center"):m="center",e.attr({align:m})),c.pos.x=g.x+f.x,c.pos.y=g.y+b)}),g(k,"getMarkPath",function(a,c,d,e,f,b,g){var n=this.axis;n.isRadial?(a=n.getPosition(this.pos,n.center[2]/2+e),c=["M",c,d,"L",a.x,a.y]):c=a.call(this,c,d,e,f,b,g);return c}))})(x);(function(b){var h=b.each,v=b.pick,u=b.defined,l=b.seriesType,r=b.seriesTypes,t=b.Series.prototype,p=b.Point.prototype;l("arearange","area",{threshold:null,tooltip:{pointFormat:'\x3cspan class\x3d"highcharts-color-{series.colorIndex}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},
23
- trackByArea:!0,dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0}},{pointArrayMap:["low","high"],dataLabelCollections:["dataLabel","dataLabelUpper"],toYData:function(a){return[a.low,a.high]},pointValKey:"low",deferTranslatePolar:!0,highToXY:function(a){var c=this.chart,f=this.xAxis.postTranslate(a.rectPlotX,this.yAxis.len-a.plotHigh);a.plotHighX=f.x-c.plotLeft;a.plotHigh=f.y-c.plotTop;a.plotLowX=a.plotX},translate:function(){var a=this,c=a.yAxis,f=!!a.modifyValue;r.area.prototype.translate.apply(a);
24
- h(a.points,function(b){var d=b.low,e=b.high,g=b.plotY;null===e||null===d?(b.isNull=!0,b.plotY=null):(b.plotLow=g,b.plotHigh=c.translate(f?a.modifyValue(e,b):e,0,1,0,1),f&&(b.yBottom=b.plotHigh))});this.chart.polar&&h(this.points,function(c){a.highToXY(c);c.tooltipPos=[(c.plotHighX+c.plotLowX)/2,(c.plotHigh+c.plotLow)/2]})},getGraphPath:function(a){var c=[],f=[],b,d=r.area.prototype.getGraphPath,e,n,m;m=this.options;var k=this.chart.polar&&!1!==m.connectEnds,w=m.connectNulls,q=m.step;a=a||this.points;
25
- for(b=a.length;b--;)e=a[b],e.isNull||k||w||a[b+1]&&!a[b+1].isNull||f.push({plotX:e.plotX,plotY:e.plotY,doCurve:!1}),n={polarPlotY:e.polarPlotY,rectPlotX:e.rectPlotX,yBottom:e.yBottom,plotX:v(e.plotHighX,e.plotX),plotY:e.plotHigh,isNull:e.isNull},f.push(n),c.push(n),e.isNull||k||w||a[b-1]&&!a[b-1].isNull||f.push({plotX:e.plotX,plotY:e.plotY,doCurve:!1});a=d.call(this,a);q&&(!0===q&&(q="left"),m.step={left:"right",center:"center",right:"left"}[q]);c=d.call(this,c);f=d.call(this,f);m.step=q;m=[].concat(a,
26
- c);this.chart.polar||"M"!==f[0]||(f[0]="L");this.graphPath=m;this.areaPath=a.concat(f);m.isArea=!0;m.xMap=a.xMap;this.areaPath.xMap=a.xMap;return m},drawDataLabels:function(){var a=this.data,c=a.length,b,g=[],d=this.options.dataLabels,e=d.align,n=d.verticalAlign,m=d.inside,k,w,q=this.chart.inverted;if(d.enabled||this._hasPointLabels){for(b=c;b--;)if(k=a[b])w=m?k.plotHigh<k.plotLow:k.plotHigh>k.plotLow,k.y=k.high,k._plotY=k.plotY,k.plotY=k.plotHigh,g[b]=k.dataLabel,k.dataLabel=k.dataLabelUpper,k.below=
27
- w,q?e||(d.align=w?"right":"left"):n||(d.verticalAlign=w?"top":"bottom"),d.x=d.xHigh,d.y=d.yHigh;t.drawDataLabels&&t.drawDataLabels.apply(this,arguments);for(b=c;b--;)if(k=a[b])w=m?k.plotHigh<k.plotLow:k.plotHigh>k.plotLow,k.dataLabelUpper=k.dataLabel,k.dataLabel=g[b],k.y=k.low,k.plotY=k._plotY,k.below=!w,q?e||(d.align=w?"left":"right"):n||(d.verticalAlign=w?"bottom":"top"),d.x=d.xLow,d.y=d.yLow;t.drawDataLabels&&t.drawDataLabels.apply(this,arguments)}d.align=e;d.verticalAlign=n},alignDataLabel:function(){r.column.prototype.alignDataLabel.apply(this,
28
- arguments)},drawPoints:function(){var a=this.points.length,c,f;t.drawPoints.apply(this,arguments);for(f=0;f<a;)c=this.points[f],c.origProps={plotY:c.plotY,plotX:c.plotX,isInside:c.isInside,negative:c.negative,zone:c.zone,y:c.y},c.lowerGraphic=c.graphic,c.graphic=c.upperGraphic,c.plotY=c.plotHigh,u(c.plotHighX)&&(c.plotX=c.plotHighX),c.y=c.high,c.negative=c.high<(this.options.threshold||0),c.zone=this.zones.length&&c.getZone(),this.chart.polar||(c.isInside=c.isTopInside=void 0!==c.plotY&&0<=c.plotY&&
29
- c.plotY<=this.yAxis.len&&0<=c.plotX&&c.plotX<=this.xAxis.len),f++;t.drawPoints.apply(this,arguments);for(f=0;f<a;)c=this.points[f],c.upperGraphic=c.graphic,c.graphic=c.lowerGraphic,b.extend(c,c.origProps),delete c.origProps,f++},setStackedPoints:b.noop},{setState:function(){var a=this.state,c=this.series,b=c.chart.polar;u(this.plotHigh)||(this.plotHigh=c.yAxis.toPixels(this.high,!0));u(this.plotLow)||(this.plotLow=this.plotY=c.yAxis.toPixels(this.low,!0));c.stateMarkerGraphic&&(c.lowerStateMarkerGraphic=
30
- c.stateMarkerGraphic,c.stateMarkerGraphic=c.upperStateMarkerGraphic);this.graphic=this.upperGraphic;this.plotY=this.plotHigh;b&&(this.plotX=this.plotHighX);p.setState.apply(this,arguments);this.state=a;this.plotY=this.plotLow;this.graphic=this.lowerGraphic;b&&(this.plotX=this.plotLowX);c.stateMarkerGraphic&&(c.upperStateMarkerGraphic=c.stateMarkerGraphic,c.stateMarkerGraphic=c.lowerStateMarkerGraphic,c.lowerStateMarkerGraphic=void 0);p.setState.apply(this,arguments)},haloPath:function(){var a=this.series.chart.polar,
31
- c=[];this.plotY=this.plotLow;a&&(this.plotX=this.plotLowX);this.isInside&&(c=p.haloPath.apply(this,arguments));this.plotY=this.plotHigh;a&&(this.plotX=this.plotHighX);this.isTopInside&&(c=c.concat(p.haloPath.apply(this,arguments)));return c},destroyElements:function(){h(["lowerGraphic","upperGraphic"],function(a){this[a]&&(this[a]=this[a].destroy())},this);this.graphic=null;return p.destroyElements.apply(this,arguments)}})})(x);(function(b){var h=b.seriesType;h("areasplinerange","arearange",null,
32
- {getPointSpline:b.seriesTypes.spline.prototype.getPointSpline})})(x);(function(b){var h=b.defaultPlotOptions,v=b.each,u=b.merge,l=b.noop,r=b.pick,t=b.seriesType,p=b.seriesTypes.column.prototype;t("columnrange","arearange",u(h.column,h.arearange,{pointRange:null,marker:null,states:{hover:{halo:!1}}}),{translate:function(){var a=this,c=a.yAxis,b=a.xAxis,g=b.startAngleRad,d,e=a.chart,n=a.xAxis.isRadial,m=Math.max(e.chartWidth,e.chartHeight)+999,k;p.translate.apply(a);v(a.points,function(f){var q=f.shapeArgs,
33
- w=a.options.minPointLength,l,p;f.plotHigh=k=Math.min(Math.max(-m,c.translate(f.high,0,1,0,1)),m);f.plotLow=Math.min(Math.max(-m,f.plotY),m);p=k;l=r(f.rectPlotY,f.plotY)-k;Math.abs(l)<w?(w-=l,l+=w,p-=w/2):0>l&&(l*=-1,p-=l);n?(d=f.barX+g,f.shapeType="path",f.shapeArgs={d:a.polarArc(p+l,p,d,d+f.pointWidth)}):(q.height=l,q.y=p,f.tooltipPos=e.inverted?[c.len+c.pos-e.plotLeft-p-l/2,b.len+b.pos-e.plotTop-q.x-q.width/2,l]:[b.left-e.plotLeft+q.x+q.width/2,c.pos-e.plotTop+p+l/2,l])})},directTouch:!0,trackerGroups:["group",
34
- "dataLabelsGroup"],drawGraph:l,getSymbol:l,crispCol:p.crispCol,drawPoints:p.drawPoints,drawTracker:p.drawTracker,getColumnMetrics:p.getColumnMetrics,pointAttribs:p.pointAttribs,animate:function(){return p.animate.apply(this,arguments)},polarArc:function(){return p.polarArc.apply(this,arguments)},translate3dPoints:function(){return p.translate3dPoints.apply(this,arguments)},translate3dShapes:function(){return p.translate3dShapes.apply(this,arguments)}},{setState:p.pointClass.prototype.setState})})(x);
35
- (function(b){var h=b.each,v=b.isNumber,u=b.merge,l=b.pick,r=b.pInt,t=b.Series,p=b.seriesType,a=b.TrackerMixin;p("gauge","line",{dataLabels:{enabled:!0,defer:!1,y:15,borderRadius:3,crop:!1,verticalAlign:"top",zIndex:2},dial:{},pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:b.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],translate:function(){var a=this.yAxis,b=this.options,g=a.center;this.generatePoints();h(this.points,
36
- function(c){var d=u(b.dial,c.dial),f=r(l(d.radius,80))*g[2]/200,m=r(l(d.baseLength,70))*f/100,k=r(l(d.rearLength,10))*f/100,w=d.baseWidth||3,q=d.topWidth||1,p=b.overshoot,h=a.startAngleRad+a.translate(c.y,null,null,null,!0);v(p)?(p=p/180*Math.PI,h=Math.max(a.startAngleRad-p,Math.min(a.endAngleRad+p,h))):!1===b.wrap&&(h=Math.max(a.startAngleRad,Math.min(a.endAngleRad,h)));h=180*h/Math.PI;c.shapeType="path";c.shapeArgs={d:d.path||["M",-k,-w/2,"L",m,-w/2,f,-q/2,f,q/2,m,w/2,-k,w/2,"z"],translateX:g[0],
37
- translateY:g[1],rotation:h};c.plotX=g[0];c.plotY=g[1]})},drawPoints:function(){var a=this,b=a.yAxis.center,g=a.pivot,d=a.options,e=d.pivot,n=a.chart.renderer;h(a.points,function(c){var b=c.graphic,e=c.shapeArgs,f=e.d;u(d.dial,c.dial);b?(b.animate(e),e.d=f):c.graphic=n[c.shapeType](e).attr({rotation:e.rotation,zIndex:1}).addClass("highcharts-dial").add(a.group)});g?g.animate({translateX:b[0],translateY:b[1]}):a.pivot=n.circle(0,0,l(e.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(b[0],
38
- b[1]).add(a.group)},animate:function(a){var c=this;a||(h(c.points,function(a){var d=a.graphic;d&&(d.attr({rotation:180*c.yAxis.startAngleRad/Math.PI}),d.animate({rotation:a.shapeArgs.rotation},c.options.animation))}),c.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup);t.prototype.render.call(this);this.group.clip(this.chart.clipRect)},setData:function(a,b){t.prototype.setData.call(this,a,!1);this.processData();
39
- this.generatePoints();l(b,!0)&&this.chart.redraw()},drawTracker:a&&a.drawTrackerPoint},{setState:function(a){this.state=a}})})(x);(function(b){var h=b.each,v=b.noop,u=b.seriesType,l=b.seriesTypes;u("boxplot","column",{threshold:null,tooltip:{pointFormat:'\x3cspan class\x3d"highcharts-color-{point.colorIndex}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eMaximum: {point.high}\x3cbr/\x3eUpper quartile: {point.q3}\x3cbr/\x3eMedian: {point.median}\x3cbr/\x3eLower quartile: {point.q1}\x3cbr/\x3eMinimum: {point.low}\x3cbr/\x3e'},
40
- whiskerLength:"50%"},{pointArrayMap:["low","q1","median","q3","high"],toYData:function(b){return[b.low,b.q1,b.median,b.q3,b.high]},pointValKey:"high",drawDataLabels:v,translate:function(){var b=this.yAxis,t=this.pointArrayMap;l.column.prototype.translate.apply(this);h(this.points,function(l){h(t,function(a){null!==l[a]&&(l[a+"Plot"]=b.translate(l[a],0,1,0,1))})})},drawPoints:function(){var b=this,l=b.chart.renderer,p,a,c,f,g,d,e=0,n,m,k,w,q=!1!==b.doQuartiles,u,v=b.options.whiskerLength;h(b.points,
41
- function(h){var r=h.graphic,t=r?"animate":"attr",z=h.shapeArgs;void 0!==h.plotY&&(n=z.width,m=Math.floor(z.x),k=m+n,w=Math.round(n/2),p=Math.floor(q?h.q1Plot:h.lowPlot),a=Math.floor(q?h.q3Plot:h.lowPlot),c=Math.floor(h.highPlot),f=Math.floor(h.lowPlot),r||(h.graphic=r=l.g("point").add(b.group),h.stem=l.path().addClass("highcharts-boxplot-stem").add(r),v&&(h.whiskers=l.path().addClass("highcharts-boxplot-whisker").add(r)),q&&(h.box=l.path(void 0).addClass("highcharts-boxplot-box").add(r)),h.medianShape=
42
- l.path(void 0).addClass("highcharts-boxplot-median").add(r)),d=h.stem.strokeWidth()%2/2,e=m+w+d,h.stem[t]({d:["M",e,a,"L",e,c,"M",e,p,"L",e,f]}),q&&(d=h.box.strokeWidth()%2/2,p=Math.floor(p)+d,a=Math.floor(a)+d,m+=d,k+=d,h.box[t]({d:["M",m,a,"L",m,p,"L",k,p,"L",k,a,"L",m,a,"z"]})),v&&(d=h.whiskers.strokeWidth()%2/2,c+=d,f+=d,u=/%$/.test(v)?w*parseFloat(v)/100:v/2,h.whiskers[t]({d:["M",e-u,c,"L",e+u,c,"M",e-u,f,"L",e+u,f]})),g=Math.round(h.medianPlot),d=h.medianShape.strokeWidth()%2/2,g+=d,h.medianShape[t]({d:["M",
43
- m,g,"L",k,g]}))})},setStackedPoints:v})})(x);(function(b){var h=b.each,v=b.noop,u=b.seriesType,l=b.seriesTypes;u("errorbar","boxplot",{grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},whiskerWidth:null},{type:"errorbar",pointArrayMap:["low","high"],toYData:function(b){return[b.low,b.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:l.arearange?
44
- function(){var b=this.pointValKey;l.arearange.prototype.drawDataLabels.call(this);h(this.data,function(h){h.y=h[b]})}:v,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||l.column.prototype.getColumnMetrics.call(this)}})})(x);(function(b){var h=b.correctFloat,v=b.isNumber,u=b.pick,l=b.Point,r=b.Series,t=b.seriesType,p=b.seriesTypes;t("waterfall","column",{dataLabels:{inside:!0}},{pointValKey:"y",showLine:!0,generatePoints:function(){var a=this.options.threshold,
45
- c,b,g,d;p.column.prototype.generatePoints.apply(this);g=0;for(b=this.points.length;g<b;g++)c=this.points[g],d=this.processedYData[g],c.isSum?c.y=h(d):c.isIntermediateSum&&(c.y=h(d-a),a=d)},translate:function(){var a=this.options,c=this.yAxis,b,g,d,e,n,m,k,h,q,l,r=u(a.minPointLength,5),t=r/2,v=a.threshold,x=a.stacking,y;p.column.prototype.translate.apply(this);h=q=v;g=this.points;b=0;for(a=g.length;b<a;b++)d=g[b],k=this.processedYData[b],e=d.shapeArgs,n=x&&c.stacks[(this.negStacks&&k<v?"-":"")+this.stackKey],
46
- y=this.getStackIndicator(y,d.x,this.index),l=u(n&&n[d.x].points[y.key],[0,k]),m=Math.max(h,h+d.y)+l[0],e.y=c.translate(m,0,1,0,1),d.isSum?(e.y=c.translate(l[1],0,1,0,1),e.height=Math.min(c.translate(l[0],0,1,0,1),c.len)-e.y):d.isIntermediateSum?(e.y=c.translate(l[1],0,1,0,1),e.height=Math.min(c.translate(q,0,1,0,1),c.len)-e.y,q=l[1]):(e.height=0<k?c.translate(h,0,1,0,1)-e.y:c.translate(h,0,1,0,1)-c.translate(h-k,0,1,0,1),h+=n&&n[d.x]?n[d.x].total:k,d.below=h<u(v,0)),0>e.height&&(e.y+=e.height,e.height*=
47
- -1),d.plotY=e.y=Math.round(e.y)-this.borderWidth%2/2,e.height=Math.max(Math.round(e.height),.001),d.yBottom=e.y+e.height,e.height<=r&&!d.isNull?(e.height=r,e.y-=t,d.plotY=e.y,d.minPointLengthOffset=0>d.y?-t:t):(d.isNull&&(e.width=0),d.minPointLengthOffset=0),e=d.plotY+(d.negative?e.height:0),this.chart.inverted?d.tooltipPos[0]=c.len-e:d.tooltipPos[1]=e},processData:function(a){var c=this.yData,b=this.options.data,g,d=c.length,e,n,m,k,l,q;n=e=m=k=this.options.threshold||0;for(q=0;q<d;q++)l=c[q],g=
48
- b&&b[q]?b[q]:{},"sum"===l||g.isSum?c[q]=h(n):"intermediateSum"===l||g.isIntermediateSum?c[q]=h(e):(n+=l,e+=l),m=Math.min(n,m),k=Math.max(n,k);r.prototype.processData.call(this,a);this.options.stacking||(this.dataMin=m,this.dataMax=k)},toYData:function(a){return a.isSum?0===a.x?null:"sum":a.isIntermediateSum?0===a.x?null:"intermediateSum":a.y},getGraphPath:function(){return["M",0,0]},getCrispPath:function(){var a=this.data,c=a.length,b=this.graph.strokeWidth()+this.borderWidth,b=Math.round(b)%2/2,
49
- g=this.xAxis.reversed,d=this.yAxis.reversed,e=[],n,m,k;for(k=1;k<c;k++){m=a[k].shapeArgs;n=a[k-1].shapeArgs;m=["M",n.x+(g?0:n.width),n.y+a[k-1].minPointLengthOffset+b,"L",m.x+(g?n.width:0),n.y+a[k-1].minPointLengthOffset+b];if(0>a[k-1].y&&!d||0<a[k-1].y&&d)m[2]+=n.height,m[5]+=n.height;e=e.concat(m)}return e},drawGraph:function(){r.prototype.drawGraph.call(this);this.graph.attr({d:this.getCrispPath()})},setStackedPoints:function(){var a=this.options,c,b;r.prototype.setStackedPoints.apply(this,arguments);
50
- c=this.stackedYData?this.stackedYData.length:0;for(b=1;b<c;b++)a.data[b].isSum||a.data[b].isIntermediateSum||(this.stackedYData[b]+=this.stackedYData[b-1])},getExtremes:function(){if(this.options.stacking)return r.prototype.getExtremes.apply(this,arguments)}},{getClassName:function(){var a=l.prototype.getClassName.call(this);this.isSum?a+=" highcharts-sum":this.isIntermediateSum&&(a+=" highcharts-intermediate-sum");return a},isValid:function(){return v(this.y,!0)||this.isSum||this.isIntermediateSum}})})(x);
51
- (function(b){var h=b.Series,v=b.seriesType,u=b.seriesTypes;v("polygon","scatter",{marker:{enabled:!1,states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0},{type:"polygon",getGraphPath:function(){for(var b=h.prototype.getGraphPath.call(this),r=b.length+1;r--;)(r===b.length||"M"===b[r])&&0<r&&b.splice(r,0,"z");return this.areaPath=b},drawGraph:function(){u.area.prototype.drawGraph.call(this)},drawLegendSymbol:b.LegendSymbolMixin.drawRectangle,drawTracker:h.prototype.drawTracker,
52
- setStackedPoints:b.noop})})(x);(function(b){var h=b.arrayMax,v=b.arrayMin,u=b.Axis,l=b.each,r=b.isNumber,t=b.noop,p=b.pick,a=b.pInt,c=b.Point,f=b.seriesType,g=b.seriesTypes;f("bubble","scatter",{dataLabels:{formatter:function(){return this.point.z},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},
53
- turboThreshold:0,zThreshold:0,zoneAxis:"z"},{pointArrayMap:["y","z"],parallelArrays:["x","y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",bubblePadding:!0,zoneAxis:"z",directTouch:!0,getRadii:function(a,c,b,f){var d,e,g,n=this.zData,m=[],h=this.options,l="width"!==h.sizeBy,p=h.zThreshold,t=c-a;e=0;for(d=n.length;e<d;e++)g=n[e],h.sizeByAbsoluteValue&&null!==g&&(g=Math.abs(g-p),c=t=Math.max(c-p,Math.abs(a-p)),a=0),r(g)?g<a?g=b/2-1:(g=0<t?(g-a)/t:.5,l&&0<=g&&(g=Math.sqrt(g)),g=
54
- Math.ceil(b+g*(f-b))/2):g=null,m.push(g);this.radii=m},animate:function(a){!a&&this.points.length<this.options.animationLimit&&(l(this.points,function(a){var c=a.graphic,b;c&&c.width&&(b={x:c.x,y:c.y,width:c.width,height:c.height},c.attr({x:a.plotX,y:a.plotY,width:1,height:1}),c.animate(b,this.options.animation))},this),this.animate=null)},translate:function(){var a,c=this.data,f,m,k=this.radii;g.scatter.prototype.translate.call(this);for(a=c.length;a--;)f=c[a],m=k?k[a]:0,r(m)&&m>=this.minPxSize/
55
- 2?(f.marker=b.extend(f.marker,{radius:m,width:2*m,height:2*m}),f.dlBox={x:f.plotX-m,y:f.plotY-m,width:2*m,height:2*m}):f.shapeArgs=f.plotY=f.dlBox=void 0},alignDataLabel:g.column.prototype.alignDataLabel,buildKDTree:t,applyZones:t},{haloPath:function(a){return c.prototype.haloPath.call(this,0===a?0:(this.marker?this.marker.radius||0:0)+a)},ttBelow:!1});u.prototype.beforePadding=function(){var c=this,e=this.len,f=this.chart,g=0,k=e,t=this.isXAxis,q=t?"xData":"yData",u=this.min,x={},E=Math.min(f.plotWidth,
56
- f.plotHeight),B=Number.MAX_VALUE,C=-Number.MAX_VALUE,y=this.max-u,A=e/y,D=[];l(this.series,function(d){var e=d.options;!d.bubblePadding||!d.visible&&f.options.chart.ignoreHiddenSeries||(c.allowZoomOutside=!0,D.push(d),t&&(l(["minSize","maxSize"],function(c){var b=e[c],d=/%$/.test(b),b=a(b);x[c]=d?E*b/100:b}),d.minPxSize=x.minSize,d.maxPxSize=Math.max(x.maxSize,x.minSize),d=b.grep(d.zData,b.isNumber),d.length&&(B=p(e.zMin,Math.min(B,Math.max(v(d),!1===e.displayNegative?e.zThreshold:-Number.MAX_VALUE))),
57
- C=p(e.zMax,Math.max(C,h(d))))))});l(D,function(a){var b=a[q],d=b.length,e;t&&a.getRadii(B,C,a.minPxSize,a.maxPxSize);if(0<y)for(;d--;)r(b[d])&&c.dataMin<=b[d]&&b[d]<=c.dataMax&&(e=a.radii[d],g=Math.min((b[d]-u)*A-e,g),k=Math.max((b[d]-u)*A+e,k))});D.length&&0<y&&!this.isLog&&(k-=e,A*=(e+Math.max(0,g)-Math.min(k,e))/e,l([["min","userMin",g],["max","userMax",k]],function(a){void 0===p(c.options[a[0]],c[a[1]])&&(c[a[0]]+=a[2]/A)}))}})(x);(function(b){var h=b.each,v=b.pick,u=b.Series,l=b.seriesTypes,
58
- r=b.wrap,t=u.prototype,p=b.Pointer.prototype;b.polarExtended||(b.polarExtended=!0,t.searchPointByAngle=function(a){var c=this.chart,b=this.xAxis.pane.center;return this.searchKDTree({clientX:180+-180/Math.PI*Math.atan2(a.chartX-b[0]-c.plotLeft,a.chartY-b[1]-c.plotTop)})},t.getConnectors=function(a,c,b,g){var d,e,f,m,k,h,l,p;e=g?1:0;d=0<=c&&c<=a.length-1?c:0>c?a.length-1+c:0;c=0>d-1?a.length-(1+e):d-1;e=d+1>a.length-1?e:d+1;f=a[c];e=a[e];m=f.plotX;f=f.plotY;k=e.plotX;h=e.plotY;e=a[d].plotX;d=a[d].plotY;
59
- m=(1.5*e+m)/2.5;f=(1.5*d+f)/2.5;k=(1.5*e+k)/2.5;l=(1.5*d+h)/2.5;h=Math.sqrt(Math.pow(m-e,2)+Math.pow(f-d,2));p=Math.sqrt(Math.pow(k-e,2)+Math.pow(l-d,2));m=Math.atan2(f-d,m-e);l=Math.PI/2+(m+Math.atan2(l-d,k-e))/2;Math.abs(m-l)>Math.PI/2&&(l-=Math.PI);m=e+Math.cos(l)*h;f=d+Math.sin(l)*h;k=e+Math.cos(Math.PI+l)*p;l=d+Math.sin(Math.PI+l)*p;e={rightContX:k,rightContY:l,leftContX:m,leftContY:f,plotX:e,plotY:d};b&&(e.prevPointCont=this.getConnectors(a,c,!1,g));return e},r(t,"buildKDTree",function(a){this.chart.polar&&
60
- (this.kdByAngle?this.searchPoint=this.searchPointByAngle:this.options.findNearestPointBy="xy");a.apply(this)}),t.toXY=function(a){var c,b=this.chart,g=a.plotX;c=a.plotY;a.rectPlotX=g;a.rectPlotY=c;c=this.xAxis.postTranslate(a.plotX,this.yAxis.len-c);a.plotX=a.polarPlotX=c.x-b.plotLeft;a.plotY=a.polarPlotY=c.y-b.plotTop;this.kdByAngle?(b=(g/Math.PI*180+this.xAxis.pane.options.startAngle)%360,0>b&&(b+=360),a.clientX=b):a.clientX=a.plotX},l.spline&&(r(l.spline.prototype,"getPointSpline",function(a,b,
61
- f,g){this.chart.polar?g?(a=this.getConnectors(b,g,!0,this.connectEnds),a=["C",a.prevPointCont.rightContX,a.prevPointCont.rightContY,a.leftContX,a.leftContY,a.plotX,a.plotY]):a=["M",f.plotX,f.plotY]:a=a.call(this,b,f,g);return a}),l.areasplinerange&&(l.areasplinerange.prototype.getPointSpline=l.spline.prototype.getPointSpline)),b.addEvent(u,"afterTranslate",function(){var a=this.chart,c,f;if(a.polar){this.kdByAngle=a.tooltip&&a.tooltip.shared;if(!this.preventPostTranslate)for(c=this.points,f=c.length;f--;)this.toXY(c[f]);
62
- this.hasClipCircleSetter||(this.hasClipCircleSetter=!!b.addEvent(this,"afterRender",function(){var c;a.polar&&(c=this.yAxis.center,this.group.clip(a.renderer.clipCircle(c[0],c[1],c[2]/2)),this.setClip=b.noop)}))}},{order:2}),r(t,"getGraphPath",function(a,b){var c=this,g,d,e;if(this.chart.polar){b=b||this.points;for(g=0;g<b.length;g++)if(!b[g].isNull){d=g;break}!1!==this.options.connectEnds&&void 0!==d&&(this.connectEnds=!0,b.splice(b.length,0,b[d]),e=!0);h(b,function(a){void 0===a.polarPlotY&&c.toXY(a)})}g=
63
- a.apply(this,[].slice.call(arguments,1));e&&b.pop();return g}),u=function(a,b){var c=this.chart,g=this.options.animation,d=this.group,e=this.markerGroup,h=this.xAxis.center,m=c.plotLeft,k=c.plotTop;c.polar?c.renderer.isSVG&&(!0===g&&(g={}),b?(a={translateX:h[0]+m,translateY:h[1]+k,scaleX:.001,scaleY:.001},d.attr(a),e&&e.attr(a)):(a={translateX:m,translateY:k,scaleX:1,scaleY:1},d.animate(a,g),e&&e.animate(a,g),this.animate=null)):a.call(this,b)},r(t,"animate",u),l.column&&(l=l.column.prototype,l.polarArc=
64
- function(a,b,f,g){var c=this.xAxis.center,e=this.yAxis.len;return this.chart.renderer.symbols.arc(c[0],c[1],e-b,null,{start:f,end:g,innerR:e-v(a,e)})},r(l,"animate",u),r(l,"translate",function(a){var b=this.xAxis,f=b.startAngleRad,g,d,e;this.preventPostTranslate=!0;a.call(this);if(b.isRadial)for(g=this.points,e=g.length;e--;)d=g[e],a=d.barX+f,d.shapeType="path",d.shapeArgs={d:this.polarArc(d.yBottom,d.plotY,a,a+d.pointWidth)},this.toXY(d),d.tooltipPos=[d.plotX,d.plotY],d.ttBelow=d.plotY>b.center[1]}),
65
- r(l,"alignDataLabel",function(a,b,f,g,d,e){this.chart.polar?(a=b.rectPlotX/Math.PI*180,null===g.align&&(g.align=20<a&&160>a?"left":200<a&&340>a?"right":"center"),null===g.verticalAlign&&(g.verticalAlign=45>a||315<a?"bottom":135<a&&225>a?"top":"middle"),t.alignDataLabel.call(this,b,f,g,d,e)):a.call(this,b,f,g,d,e)})),r(p,"getCoordinates",function(a,b){var c=this.chart,g={xAxis:[],yAxis:[]};c.polar?h(c.axes,function(a){var d=a.isXAxis,f=a.center,h=b.chartX-f[0]-c.plotLeft,f=b.chartY-f[1]-c.plotTop;
66
- g[d?"xAxis":"yAxis"].push({axis:a,value:a.translate(d?Math.PI-Math.atan2(h,f):Math.sqrt(Math.pow(h,2)+Math.pow(f,2)),!0)})}):g=a.call(this,b);return g}),b.SVGRenderer.prototype.clipCircle=function(a,c,f){var g=b.uniqueKey(),d=this.createElement("clipPath").attr({id:g}).add(this.defs);a=this.circle(a,c,f).add(d);a.id=g;a.clipPath=d;return a},b.addEvent(b.Chart,"getAxes",function(){this.pane||(this.pane=[]);h(b.splat(this.options.pane),function(a){new b.Pane(a,this)},this)}),b.addEvent(b.Chart,"afterDrawChartBox",
67
- function(){h(this.pane,function(a){a.render()})}),r(b.Chart.prototype,"get",function(a,c){return b.find(this.pane,function(a){return a.options.id===c})||a.call(this,c)}))})(x)});
8
+ (function(x){"object"===typeof module&&module.exports?module.exports=x:"function"===typeof define&&define.amd?define(function(){return x}):x(Highcharts)})(function(x){(function(a){function n(a,b){this.init(a,b)}var v=a.CenteredSeriesMixin,r=a.each,h=a.extend,k=a.merge,t=a.splat;h(n.prototype,{coll:"pane",init:function(a,b){this.chart=b;this.background=[];b.pane.push(this);this.setOptions(a)},setOptions:function(a){this.options=k(this.defaultOptions,this.chart.angular?{background:{}}:void 0,a)},render:function(){var a=
9
+ this.options,b=this.options.background,g=this.chart.renderer;this.group||(this.group=g.g("pane-group").attr({zIndex:a.zIndex||0}).add());this.updateCenter();if(b)for(b=t(b),a=Math.max(b.length,this.background.length||0),g=0;g<a;g++)b[g]&&this.axis?this.renderBackground(k(this.defaultBackgroundOptions,b[g]),g):this.background[g]&&(this.background[g]=this.background[g].destroy(),this.background.splice(g,1))},renderBackground:function(a,b){var g="animate";this.background[b]||(this.background[b]=this.chart.renderer.path().add(this.group),
10
+ g="attr");this.background[b][g]({d:this.axis.getPlotBandPath(a.from,a.to,a)}).attr({"class":"highcharts-pane "+(a.className||"")})},defaultOptions:{center:["50%","50%"],size:"85%",startAngle:0},defaultBackgroundOptions:{shape:"circle",from:-Number.MAX_VALUE,innerRadius:0,to:Number.MAX_VALUE,outerRadius:"105%"},updateCenter:function(a){this.center=(a||this.axis||{}).center=v.getCenter.call(this)},update:function(a,b){k(!0,this.options,a);this.setOptions(this.options);this.render();r(this.chart.axes,
11
+ function(g){g.pane===this&&(g.pane=null,g.update({},b))},this)}});a.Pane=n})(x);(function(a){var n=a.addEvent,v=a.Axis,r=a.each,h=a.extend,k=a.map,t=a.merge,p=a.noop,b=a.pick,g=a.pInt,f=a.Tick,d=a.wrap,c=a.correctFloat,e,u,l=v.prototype,w=f.prototype;a.radialAxisExtended||(a.radialAxisExtended=!0,e={getOffset:p,redraw:function(){this.isDirty=!1},render:function(){this.isDirty=!1},setScale:p,setCategories:p,setTitle:p},u={defaultRadialGaugeOptions:{labels:{align:"center",x:0,y:null},minorGridLineWidth:0,
12
+ minorTickInterval:"auto",minorTickLength:10,minorTickPosition:"inside",minorTickWidth:1,tickLength:10,tickPosition:"inside",tickWidth:2,title:{rotation:0},zIndex:2},defaultRadialXOptions:{gridLineWidth:1,labels:{align:null,distance:15,x:0,y:null,style:{textOverflow:"none"}},maxPadding:0,minPadding:0,showLastLabel:!1,tickLength:0},defaultRadialYOptions:{gridLineInterpolation:"circle",labels:{align:"right",x:-3,y:-2},showLastLabel:!1,title:{x:4,text:null,rotation:90}},setOptions:function(c){c=this.options=
13
+ t(this.defaultOptions,this.defaultRadialOptions,c);c.plotBands||(c.plotBands=[]);a.fireEvent(this,"afterSetOptions")},getOffset:function(){l.getOffset.call(this);this.chart.axisOffset[this.side]=0},getLinePath:function(c,d){c=this.center;var e=this.chart,f=b(d,c[2]/2-this.offset);this.isCircular||void 0!==d?(d=this.chart.renderer.symbols.arc(this.left+c[0],this.top+c[1],f,f,{start:this.startAngleRad,end:this.endAngleRad,open:!0,innerR:0}),d.xBounds=[this.left+c[0]],d.yBounds=[this.top+c[1]-f]):(d=
14
+ this.postTranslate(this.angleRad,f),d=["M",c[0]+e.plotLeft,c[1]+e.plotTop,"L",d.x,d.y]);return d},setAxisTranslation:function(){l.setAxisTranslation.call(this);this.center&&(this.transA=this.isCircular?(this.endAngleRad-this.startAngleRad)/(this.max-this.min||1):this.center[2]/2/(this.max-this.min||1),this.minPixelPadding=this.isXAxis?this.transA*this.minPointOffset:0)},beforeSetTickPositions:function(){if(this.autoConnect=this.isCircular&&void 0===b(this.userMax,this.options.max)&&c(this.endAngleRad-
15
+ this.startAngleRad)===c(2*Math.PI))this.max+=this.categories&&1||this.pointRange||this.closestPointRange||0},setAxisSize:function(){l.setAxisSize.call(this);this.isRadial&&(this.pane.updateCenter(this),this.isCircular&&(this.sector=this.endAngleRad-this.startAngleRad),this.len=this.width=this.height=this.center[2]*b(this.sector,1)/2)},getPosition:function(c,d){return this.postTranslate(this.isCircular?this.translate(c):this.angleRad,b(this.isCircular?d:this.translate(c),this.center[2]/2)-this.offset)},
16
+ postTranslate:function(c,b){var d=this.chart,e=this.center;c=this.startAngleRad+c;return{x:d.plotLeft+e[0]+Math.cos(c)*b,y:d.plotTop+e[1]+Math.sin(c)*b}},getPlotBandPath:function(c,d,e){var f=this.center,l=this.startAngleRad,a=f[2]/2,m=[b(e.outerRadius,"100%"),e.innerRadius,b(e.thickness,10)],u=Math.min(this.offset,0),q=/%$/,z,w=this.isCircular;"polygon"===this.options.gridLineInterpolation?f=this.getPlotLinePath(c).concat(this.getPlotLinePath(d,!0)):(c=Math.max(c,this.min),d=Math.min(d,this.max),
17
+ w||(m[0]=this.translate(c),m[1]=this.translate(d)),m=k(m,function(c){q.test(c)&&(c=g(c,10)*a/100);return c}),"circle"!==e.shape&&w?(c=l+this.translate(c),d=l+this.translate(d)):(c=-Math.PI/2,d=1.5*Math.PI,z=!0),m[0]-=u,m[2]-=u,f=this.chart.renderer.symbols.arc(this.left+f[0],this.top+f[1],m[0],m[0],{start:Math.min(c,d),end:Math.max(c,d),innerR:b(m[1],m[0]-m[2]),open:z}));return f},getPlotLinePath:function(c,d){var b=this,e=b.center,f=b.chart,g=b.getPosition(c),l,a,m;b.isCircular?m=["M",e[0]+f.plotLeft,
18
+ e[1]+f.plotTop,"L",g.x,g.y]:"circle"===b.options.gridLineInterpolation?(c=b.translate(c),m=b.getLinePath(0,c)):(r(f.xAxis,function(c){c.pane===b.pane&&(l=c)}),m=[],c=b.translate(c),e=l.tickPositions,l.autoConnect&&(e=e.concat([e[0]])),d&&(e=[].concat(e).reverse()),r(e,function(b,d){a=l.getPosition(b,c);m.push(d?"L":"M",a.x,a.y)}));return m},getTitlePosition:function(){var c=this.center,b=this.chart,d=this.options.title;return{x:b.plotLeft+c[0]+(d.x||0),y:b.plotTop+c[1]-{high:.5,middle:.25,low:0}[d.align]*
19
+ c[2]+(d.y||0)}}},n(v,"init",function(c){var b=this.chart,d=b.angular,f=b.polar,g=this.isXAxis,l=d&&g,a,q=b.options;c=c.userOptions.pane||0;c=this.pane=b.pane&&b.pane[c];if(d){if(h(this,l?e:u),a=!g)this.defaultRadialOptions=this.defaultRadialGaugeOptions}else f&&(h(this,u),this.defaultRadialOptions=(a=g)?this.defaultRadialXOptions:t(this.defaultYAxisOptions,this.defaultRadialYOptions));d||f?(this.isRadial=!0,b.inverted=!1,q.chart.zoomType=null):this.isRadial=!1;c&&a&&(c.axis=this);this.isCircular=
20
+ a}),n(v,"afterInit",function(){var c=this.chart,d=this.options,e=this.pane,f=e&&e.options;c.angular&&this.isXAxis||!e||!c.angular&&!c.polar||(this.angleRad=(d.angle||0)*Math.PI/180,this.startAngleRad=(f.startAngle-90)*Math.PI/180,this.endAngleRad=(b(f.endAngle,f.startAngle+360)-90)*Math.PI/180,this.offset=d.offset||0)}),d(l,"autoLabelAlign",function(c){if(!this.isRadial)return c.apply(this,[].slice.call(arguments,1))}),n(f,"afterGetPosition",function(c){this.axis.getPosition&&h(c.pos,this.axis.getPosition(this.pos))}),
21
+ n(f,"afterGetLabelPosition",function(c){var d=this.axis,e=this.label,f=d.options.labels,g=f.y,l,a=20,u=f.align,q=(d.translate(this.pos)+d.startAngleRad+Math.PI/2)/Math.PI*180%360;d.isRadial&&(l=d.getPosition(this.pos,d.center[2]/2+b(f.distance,-25)),"auto"===f.rotation?e.attr({rotation:q}):null===g&&(g=d.chart.renderer.fontMetrics(e.styles&&e.styles.fontSize).b-e.getBBox().height/2),null===u&&(d.isCircular?(this.label.getBBox().width>d.len*d.tickInterval/(d.max-d.min)&&(a=0),u=q>a&&q<180-a?"left":
22
+ q>180+a&&q<360-a?"right":"center"):u="center",e.attr({align:u})),c.pos.x=l.x+f.x,c.pos.y=l.y+g)}),d(w,"getMarkPath",function(c,d,b,e,f,g,a){var l=this.axis;l.isRadial?(c=l.getPosition(this.pos,l.center[2]/2+e),d=["M",d,b,"L",c.x,c.y]):d=c.call(this,d,b,e,f,g,a);return d}))})(x);(function(a){var n=a.each,v=a.pick,r=a.extend,h=a.isArray,k=a.defined,t=a.seriesType,p=a.seriesTypes,b=a.Series.prototype,g=a.Point.prototype;t("arearange","area",{threshold:null,tooltip:{pointFormat:'\x3cspan class\x3d"highcharts-color-{series.colorIndex}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},
23
+ trackByArea:!0,dataLabels:{align:null,verticalAlign:null,xLow:0,xHigh:0,yLow:0,yHigh:0}},{pointArrayMap:["low","high"],toYData:function(b){return[b.low,b.high]},pointValKey:"low",deferTranslatePolar:!0,highToXY:function(b){var d=this.chart,c=this.xAxis.postTranslate(b.rectPlotX,this.yAxis.len-b.plotHigh);b.plotHighX=c.x-d.plotLeft;b.plotHigh=c.y-d.plotTop;b.plotLowX=b.plotX},translate:function(){var b=this,d=b.yAxis,c=!!b.modifyValue;p.area.prototype.translate.apply(b);n(b.points,function(e){var f=
24
+ e.low,g=e.high,a=e.plotY;null===g||null===f?(e.isNull=!0,e.plotY=null):(e.plotLow=a,e.plotHigh=d.translate(c?b.modifyValue(g,e):g,0,1,0,1),c&&(e.yBottom=e.plotHigh))});this.chart.polar&&n(this.points,function(c){b.highToXY(c);c.tooltipPos=[(c.plotHighX+c.plotLowX)/2,(c.plotHigh+c.plotLow)/2]})},getGraphPath:function(b){var d=[],c=[],e,g=p.area.prototype.getGraphPath,a,f,q;q=this.options;var m=this.chart.polar&&!1!==q.connectEnds,k=q.connectNulls,h=q.step;b=b||this.points;for(e=b.length;e--;)a=b[e],
25
+ a.isNull||m||k||b[e+1]&&!b[e+1].isNull||c.push({plotX:a.plotX,plotY:a.plotY,doCurve:!1}),f={polarPlotY:a.polarPlotY,rectPlotX:a.rectPlotX,yBottom:a.yBottom,plotX:v(a.plotHighX,a.plotX),plotY:a.plotHigh,isNull:a.isNull},c.push(f),d.push(f),a.isNull||m||k||b[e-1]&&!b[e-1].isNull||c.push({plotX:a.plotX,plotY:a.plotY,doCurve:!1});b=g.call(this,b);h&&(!0===h&&(h="left"),q.step={left:"right",center:"center",right:"left"}[h]);d=g.call(this,d);c=g.call(this,c);q.step=h;q=[].concat(b,d);this.chart.polar||
26
+ "M"!==c[0]||(c[0]="L");this.graphPath=q;this.areaPath=b.concat(c);q.isArea=!0;q.xMap=b.xMap;this.areaPath.xMap=b.xMap;return q},drawDataLabels:function(){var a=this.points,d=a.length,c,e=[],g=this.options.dataLabels,l,w,q=this.chart.inverted,m,k;h(g)?1<g.length?(m=g[0],k=g[1]):(m=g[0],k={enabled:!1}):(m=r({},g),m.x=g.xHigh,m.y=g.yHigh,k=r({},g),k.x=g.xLow,k.y=g.yLow);if(m.enabled||this._hasPointLabels){for(c=d;c--;)if(l=a[c])w=m.inside?l.plotHigh<l.plotLow:l.plotHigh>l.plotLow,l.y=l.high,l._plotY=
27
+ l.plotY,l.plotY=l.plotHigh,e[c]=l.dataLabel,l.dataLabel=l.dataLabelUpper,l.below=w,q?m.align||(m.align=w?"right":"left"):m.verticalAlign||(m.verticalAlign=w?"top":"bottom");this.options.dataLabels=m;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments);for(c=d;c--;)if(l=a[c])l.dataLabelUpper=l.dataLabel,l.dataLabel=e[c],delete l.dataLabels,l.y=l.low,l.plotY=l._plotY}if(k.enabled||this._hasPointLabels){for(c=d;c--;)if(l=a[c])w=k.inside?l.plotHigh<l.plotLow:l.plotHigh>l.plotLow,l.below=!w,q?k.align||
28
+ (k.align=w?"left":"right"):k.verticalAlign||(k.verticalAlign=w?"bottom":"top");this.options.dataLabels=k;b.drawDataLabels&&b.drawDataLabels.apply(this,arguments)}if(m.enabled)for(c=d;c--;)(l=a[c])&&l.dataLabelUpper&&(l.dataLabels=[l.dataLabelUpper,l.dataLabel]);this.options.dataLabels=g},alignDataLabel:function(){p.column.prototype.alignDataLabel.apply(this,arguments)},drawPoints:function(){var g=this.points.length,d,c;b.drawPoints.apply(this,arguments);for(c=0;c<g;)d=this.points[c],d.origProps={plotY:d.plotY,
29
+ plotX:d.plotX,isInside:d.isInside,negative:d.negative,zone:d.zone,y:d.y},d.lowerGraphic=d.graphic,d.graphic=d.upperGraphic,d.plotY=d.plotHigh,k(d.plotHighX)&&(d.plotX=d.plotHighX),d.y=d.high,d.negative=d.high<(this.options.threshold||0),d.zone=this.zones.length&&d.getZone(),this.chart.polar||(d.isInside=d.isTopInside=void 0!==d.plotY&&0<=d.plotY&&d.plotY<=this.yAxis.len&&0<=d.plotX&&d.plotX<=this.xAxis.len),c++;b.drawPoints.apply(this,arguments);for(c=0;c<g;)d=this.points[c],d.upperGraphic=d.graphic,
30
+ d.graphic=d.lowerGraphic,a.extend(d,d.origProps),delete d.origProps,c++},setStackedPoints:a.noop},{setState:function(){var b=this.state,d=this.series,c=d.chart.polar;k(this.plotHigh)||(this.plotHigh=d.yAxis.toPixels(this.high,!0));k(this.plotLow)||(this.plotLow=this.plotY=d.yAxis.toPixels(this.low,!0));d.stateMarkerGraphic&&(d.lowerStateMarkerGraphic=d.stateMarkerGraphic,d.stateMarkerGraphic=d.upperStateMarkerGraphic);this.graphic=this.upperGraphic;this.plotY=this.plotHigh;c&&(this.plotX=this.plotHighX);
31
+ g.setState.apply(this,arguments);this.state=b;this.plotY=this.plotLow;this.graphic=this.lowerGraphic;c&&(this.plotX=this.plotLowX);d.stateMarkerGraphic&&(d.upperStateMarkerGraphic=d.stateMarkerGraphic,d.stateMarkerGraphic=d.lowerStateMarkerGraphic,d.lowerStateMarkerGraphic=void 0);g.setState.apply(this,arguments)},haloPath:function(){var b=this.series.chart.polar,d=[];this.plotY=this.plotLow;b&&(this.plotX=this.plotLowX);this.isInside&&(d=g.haloPath.apply(this,arguments));this.plotY=this.plotHigh;
32
+ b&&(this.plotX=this.plotHighX);this.isTopInside&&(d=d.concat(g.haloPath.apply(this,arguments)));return d},destroyElements:function(){n(["lowerGraphic","upperGraphic"],function(b){this[b]&&(this[b]=this[b].destroy())},this);this.graphic=null;return g.destroyElements.apply(this,arguments)}})})(x);(function(a){var n=a.seriesType;n("areasplinerange","arearange",null,{getPointSpline:a.seriesTypes.spline.prototype.getPointSpline})})(x);(function(a){var n=a.defaultPlotOptions,v=a.each,r=a.merge,h=a.noop,
33
+ k=a.pick,t=a.seriesType,p=a.seriesTypes.column.prototype;t("columnrange","arearange",r(n.column,n.arearange,{pointRange:null,marker:null,states:{hover:{halo:!1}}}),{translate:function(){var b=this,g=b.yAxis,a=b.xAxis,d=a.startAngleRad,c,e=b.chart,u=b.xAxis.isRadial,l=Math.max(e.chartWidth,e.chartHeight)+999,w;p.translate.apply(b);v(b.points,function(f){var m=f.shapeArgs,q=b.options.minPointLength,h,p;f.plotHigh=w=Math.min(Math.max(-l,g.translate(f.high,0,1,0,1)),l);f.plotLow=Math.min(Math.max(-l,
34
+ f.plotY),l);p=w;h=k(f.rectPlotY,f.plotY)-w;Math.abs(h)<q?(q-=h,h+=q,p-=q/2):0>h&&(h*=-1,p-=h);u?(c=f.barX+d,f.shapeType="path",f.shapeArgs={d:b.polarArc(p+h,p,c,c+f.pointWidth)}):(m.height=h,m.y=p,f.tooltipPos=e.inverted?[g.len+g.pos-e.plotLeft-p-h/2,a.len+a.pos-e.plotTop-m.x-m.width/2,h]:[a.left-e.plotLeft+m.x+m.width/2,g.pos-e.plotTop+p+h/2,h])})},directTouch:!0,trackerGroups:["group","dataLabelsGroup"],drawGraph:h,getSymbol:h,crispCol:p.crispCol,drawPoints:p.drawPoints,drawTracker:p.drawTracker,
35
+ getColumnMetrics:p.getColumnMetrics,pointAttribs:p.pointAttribs,animate:function(){return p.animate.apply(this,arguments)},polarArc:function(){return p.polarArc.apply(this,arguments)},translate3dPoints:function(){return p.translate3dPoints.apply(this,arguments)},translate3dShapes:function(){return p.translate3dShapes.apply(this,arguments)}},{setState:p.pointClass.prototype.setState})})(x);(function(a){var n=a.each,v=a.isNumber,r=a.merge,h=a.pick,k=a.pInt,t=a.Series,p=a.seriesType,b=a.TrackerMixin;
36
+ p("gauge","line",{dataLabels:{enabled:!0,defer:!1,y:15,borderRadius:3,crop:!1,verticalAlign:"top",zIndex:2},dial:{},pivot:{},tooltip:{headerFormat:""},showInLegend:!1},{angular:!0,directTouch:!0,drawGraph:a.noop,fixedBox:!0,forceDL:!0,noSharedTooltip:!0,trackerGroups:["group","dataLabelsGroup"],translate:function(){var b=this.yAxis,a=this.options,d=b.center;this.generatePoints();n(this.points,function(c){var e=r(a.dial,c.dial),g=k(h(e.radius,80))*d[2]/200,f=k(h(e.baseLength,70))*g/100,w=k(h(e.rearLength,
37
+ 10))*g/100,q=e.baseWidth||3,m=e.topWidth||1,p=a.overshoot,n=b.startAngleRad+b.translate(c.y,null,null,null,!0);v(p)?(p=p/180*Math.PI,n=Math.max(b.startAngleRad-p,Math.min(b.endAngleRad+p,n))):!1===a.wrap&&(n=Math.max(b.startAngleRad,Math.min(b.endAngleRad,n)));n=180*n/Math.PI;c.shapeType="path";c.shapeArgs={d:e.path||["M",-w,-q/2,"L",f,-q/2,g,-m/2,g,m/2,f,q/2,-w,q/2,"z"],translateX:d[0],translateY:d[1],rotation:n};c.plotX=d[0];c.plotY=d[1]})},drawPoints:function(){var b=this,a=b.yAxis.center,d=b.pivot,
38
+ c=b.options,e=c.pivot,u=b.chart.renderer;n(b.points,function(d){var a=d.graphic,e=d.shapeArgs,g=e.d;r(c.dial,d.dial);a?(a.animate(e),e.d=g):d.graphic=u[d.shapeType](e).attr({rotation:e.rotation,zIndex:1}).addClass("highcharts-dial").add(b.group)});d?d.animate({translateX:a[0],translateY:a[1]}):b.pivot=u.circle(0,0,h(e.radius,5)).attr({zIndex:2}).addClass("highcharts-pivot").translate(a[0],a[1]).add(b.group)},animate:function(b){var a=this;b||(n(a.points,function(b){var c=b.graphic;c&&(c.attr({rotation:180*
39
+ a.yAxis.startAngleRad/Math.PI}),c.animate({rotation:b.shapeArgs.rotation},a.options.animation))}),a.animate=null)},render:function(){this.group=this.plotGroup("group","series",this.visible?"visible":"hidden",this.options.zIndex,this.chart.seriesGroup);t.prototype.render.call(this);this.group.clip(this.chart.clipRect)},setData:function(b,a){t.prototype.setData.call(this,b,!1);this.processData();this.generatePoints();h(a,!0)&&this.chart.redraw()},drawTracker:b&&b.drawTrackerPoint},{setState:function(b){this.state=
40
+ b}})})(x);(function(a){var n=a.each,v=a.noop,r=a.seriesType,h=a.seriesTypes;r("boxplot","column",{threshold:null,tooltip:{pointFormat:'\x3cspan class\x3d"highcharts-color-{point.colorIndex}"\x3e\u25cf\x3c/span\x3e \x3cb\x3e {series.name}\x3c/b\x3e\x3cbr/\x3eMaximum: {point.high}\x3cbr/\x3eUpper quartile: {point.q3}\x3cbr/\x3eMedian: {point.median}\x3cbr/\x3eLower quartile: {point.q1}\x3cbr/\x3eMinimum: {point.low}\x3cbr/\x3e'},whiskerLength:"50%"},{pointArrayMap:["low","q1","median","q3","high"],
41
+ toYData:function(a){return[a.low,a.q1,a.median,a.q3,a.high]},pointValKey:"high",drawDataLabels:v,translate:function(){var a=this.yAxis,t=this.pointArrayMap;h.column.prototype.translate.apply(this);n(this.points,function(h){n(t,function(b){null!==h[b]&&(h[b+"Plot"]=a.translate(h[b],0,1,0,1))})})},drawPoints:function(){var a=this,h=a.chart.renderer,p,b,g,f,d,c,e=0,u,l,w,q,m=!1!==a.doQuartiles,r,v=a.options.whiskerLength;n(a.points,function(k){var n=k.graphic,t=n?"animate":"attr",z=k.shapeArgs;void 0!==
42
+ k.plotY&&(u=z.width,l=Math.floor(z.x),w=l+u,q=Math.round(u/2),p=Math.floor(m?k.q1Plot:k.lowPlot),b=Math.floor(m?k.q3Plot:k.lowPlot),g=Math.floor(k.highPlot),f=Math.floor(k.lowPlot),n||(k.graphic=n=h.g("point").add(a.group),k.stem=h.path().addClass("highcharts-boxplot-stem").add(n),v&&(k.whiskers=h.path().addClass("highcharts-boxplot-whisker").add(n)),m&&(k.box=h.path(void 0).addClass("highcharts-boxplot-box").add(n)),k.medianShape=h.path(void 0).addClass("highcharts-boxplot-median").add(n)),c=k.stem.strokeWidth()%
43
+ 2/2,e=l+q+c,k.stem[t]({d:["M",e,b,"L",e,g,"M",e,p,"L",e,f]}),m&&(c=k.box.strokeWidth()%2/2,p=Math.floor(p)+c,b=Math.floor(b)+c,l+=c,w+=c,k.box[t]({d:["M",l,b,"L",l,p,"L",w,p,"L",w,b,"L",l,b,"z"]})),v&&(c=k.whiskers.strokeWidth()%2/2,g+=c,f+=c,r=/%$/.test(v)?q*parseFloat(v)/100:v/2,k.whiskers[t]({d:["M",e-r,g,"L",e+r,g,"M",e-r,f,"L",e+r,f]})),d=Math.round(k.medianPlot),c=k.medianShape.strokeWidth()%2/2,d+=c,k.medianShape[t]({d:["M",l,d,"L",w,d]}))})},setStackedPoints:v})})(x);(function(a){var n=a.each,
44
+ v=a.noop,r=a.seriesType,h=a.seriesTypes;r("errorbar","boxplot",{grouping:!1,linkedTo:":previous",tooltip:{pointFormat:'\x3cspan style\x3d"color:{point.color}"\x3e\u25cf\x3c/span\x3e {series.name}: \x3cb\x3e{point.low}\x3c/b\x3e - \x3cb\x3e{point.high}\x3c/b\x3e\x3cbr/\x3e'},whiskerWidth:null},{type:"errorbar",pointArrayMap:["low","high"],toYData:function(a){return[a.low,a.high]},pointValKey:"high",doQuartiles:!1,drawDataLabels:h.arearange?function(){var a=this.pointValKey;h.arearange.prototype.drawDataLabels.call(this);
45
+ n(this.data,function(k){k.y=k[a]})}:v,getColumnMetrics:function(){return this.linkedParent&&this.linkedParent.columnMetrics||h.column.prototype.getColumnMetrics.call(this)}})})(x);(function(a){var n=a.correctFloat,v=a.isNumber,r=a.pick,h=a.Point,k=a.Series,t=a.seriesType,p=a.seriesTypes;t("waterfall","column",{dataLabels:{inside:!0}},{pointValKey:"y",showLine:!0,generatePoints:function(){var b=this.options.threshold,a,f,d,c;p.column.prototype.generatePoints.apply(this);d=0;for(f=this.points.length;d<
46
+ f;d++)a=this.points[d],c=this.processedYData[d],a.isSum?a.y=n(c):a.isIntermediateSum&&(a.y=n(c-b),b=c)},translate:function(){var b=this.options,a=this.yAxis,f,d,c,e,u,l,k,h,m,n,t=r(b.minPointLength,5),v=t/2,x=b.threshold,A=b.stacking,y;p.column.prototype.translate.apply(this);h=m=x;d=this.points;f=0;for(b=d.length;f<b;f++)c=d[f],k=this.processedYData[f],e=c.shapeArgs,u=A&&a.stacks[(this.negStacks&&k<x?"-":"")+this.stackKey],y=this.getStackIndicator(y,c.x,this.index),n=r(u&&u[c.x].points[y.key],[0,
47
+ k]),l=Math.max(h,h+c.y)+n[0],e.y=a.translate(l,0,1,0,1),c.isSum?(e.y=a.translate(n[1],0,1,0,1),e.height=Math.min(a.translate(n[0],0,1,0,1),a.len)-e.y):c.isIntermediateSum?(e.y=a.translate(n[1],0,1,0,1),e.height=Math.min(a.translate(m,0,1,0,1),a.len)-e.y,m=n[1]):(e.height=0<k?a.translate(h,0,1,0,1)-e.y:a.translate(h,0,1,0,1)-a.translate(h-k,0,1,0,1),h+=u&&u[c.x]?u[c.x].total:k,c.below=h<r(x,0)),0>e.height&&(e.y+=e.height,e.height*=-1),c.plotY=e.y=Math.round(e.y)-this.borderWidth%2/2,e.height=Math.max(Math.round(e.height),
48
+ .001),c.yBottom=e.y+e.height,e.height<=t&&!c.isNull?(e.height=t,e.y-=v,c.plotY=e.y,c.minPointLengthOffset=0>c.y?-v:v):(c.isNull&&(e.width=0),c.minPointLengthOffset=0),e=c.plotY+(c.negative?e.height:0),this.chart.inverted?c.tooltipPos[0]=a.len-e:c.tooltipPos[1]=e},processData:function(b){var a=this.yData,f=this.options.data,d,c=a.length,e,u,l,h,q,m;u=e=l=h=this.options.threshold||0;for(m=0;m<c;m++)q=a[m],d=f&&f[m]?f[m]:{},"sum"===q||d.isSum?a[m]=n(u):"intermediateSum"===q||d.isIntermediateSum?a[m]=
49
+ n(e):(u+=q,e+=q),l=Math.min(u,l),h=Math.max(u,h);k.prototype.processData.call(this,b);this.options.stacking||(this.dataMin=l,this.dataMax=h)},toYData:function(b){return b.isSum?0===b.x?null:"sum":b.isIntermediateSum?0===b.x?null:"intermediateSum":b.y},getGraphPath:function(){return["M",0,0]},getCrispPath:function(){var b=this.data,a=b.length,f=this.graph.strokeWidth()+this.borderWidth,f=Math.round(f)%2/2,d=this.xAxis.reversed,c=this.yAxis.reversed,e=[],h,l,k;for(k=1;k<a;k++){l=b[k].shapeArgs;h=b[k-
50
+ 1].shapeArgs;l=["M",h.x+(d?0:h.width),h.y+b[k-1].minPointLengthOffset+f,"L",l.x+(d?h.width:0),h.y+b[k-1].minPointLengthOffset+f];if(0>b[k-1].y&&!c||0<b[k-1].y&&c)l[2]+=h.height,l[5]+=h.height;e=e.concat(l)}return e},drawGraph:function(){k.prototype.drawGraph.call(this);this.graph.attr({d:this.getCrispPath()})},setStackedPoints:function(){var b=this.options,a,f;k.prototype.setStackedPoints.apply(this,arguments);a=this.stackedYData?this.stackedYData.length:0;for(f=1;f<a;f++)b.data[f].isSum||b.data[f].isIntermediateSum||
51
+ (this.stackedYData[f]+=this.stackedYData[f-1])},getExtremes:function(){if(this.options.stacking)return k.prototype.getExtremes.apply(this,arguments)}},{getClassName:function(){var b=h.prototype.getClassName.call(this);this.isSum?b+=" highcharts-sum":this.isIntermediateSum&&(b+=" highcharts-intermediate-sum");return b},isValid:function(){return v(this.y,!0)||this.isSum||this.isIntermediateSum}})})(x);(function(a){var n=a.Series,v=a.seriesType,r=a.seriesTypes;v("polygon","scatter",{marker:{enabled:!1,
52
+ states:{hover:{enabled:!1}}},stickyTracking:!1,tooltip:{followPointer:!0,pointFormat:""},trackByArea:!0},{type:"polygon",getGraphPath:function(){for(var a=n.prototype.getGraphPath.call(this),k=a.length+1;k--;)(k===a.length||"M"===a[k])&&0<k&&a.splice(k,0,"z");return this.areaPath=a},drawGraph:function(){r.area.prototype.drawGraph.call(this)},drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,drawTracker:n.prototype.drawTracker,setStackedPoints:a.noop})})(x);(function(a){var n=a.arrayMax,v=a.arrayMin,
53
+ r=a.Axis,h=a.each,k=a.isNumber,t=a.noop,p=a.pick,b=a.pInt,g=a.Point,f=a.seriesType,d=a.seriesTypes;f("bubble","scatter",{dataLabels:{formatter:function(){return this.point.z},inside:!0,verticalAlign:"middle"},animationLimit:250,marker:{radius:null,states:{hover:{radiusPlus:0}},symbol:"circle"},minSize:8,maxSize:"20%",softThreshold:!1,states:{hover:{halo:{size:5}}},tooltip:{pointFormat:"({point.x}, {point.y}), Size: {point.z}"},turboThreshold:0,zThreshold:0,zoneAxis:"z"},{pointArrayMap:["y","z"],parallelArrays:["x",
54
+ "y","z"],trackerGroups:["group","dataLabelsGroup"],specialGroup:"group",bubblePadding:!0,zoneAxis:"z",directTouch:!0,getRadii:function(b,a,d,g){var c,e,f,l=this.zData,h=[],u=this.options,n="width"!==u.sizeBy,p=u.zThreshold,r=a-b;e=0;for(c=l.length;e<c;e++)f=l[e],u.sizeByAbsoluteValue&&null!==f&&(f=Math.abs(f-p),a=r=Math.max(a-p,Math.abs(b-p)),b=0),k(f)?f<b?f=d/2-1:(f=0<r?(f-b)/r:.5,n&&0<=f&&(f=Math.sqrt(f)),f=Math.ceil(d+f*(g-d))/2):f=null,h.push(f);this.radii=h},animate:function(b){!b&&this.points.length<
55
+ this.options.animationLimit&&(h(this.points,function(b){var c=b.graphic,a;c&&c.width&&(a={x:c.x,y:c.y,width:c.width,height:c.height},c.attr({x:b.plotX,y:b.plotY,width:1,height:1}),c.animate(a,this.options.animation))},this),this.animate=null)},translate:function(){var b,e=this.data,f,g,h=this.radii;d.scatter.prototype.translate.call(this);for(b=e.length;b--;)f=e[b],g=h?h[b]:0,k(g)&&g>=this.minPxSize/2?(f.marker=a.extend(f.marker,{radius:g,width:2*g,height:2*g}),f.dlBox={x:f.plotX-g,y:f.plotY-g,width:2*
56
+ g,height:2*g}):f.shapeArgs=f.plotY=f.dlBox=void 0},alignDataLabel:d.column.prototype.alignDataLabel,buildKDTree:t,applyZones:t},{haloPath:function(b){return g.prototype.haloPath.call(this,0===b?0:(this.marker?this.marker.radius||0:0)+b)},ttBelow:!1});r.prototype.beforePadding=function(){var c=this,d=this.len,f=this.chart,g=0,w=d,q=this.isXAxis,m=q?"xData":"yData",r=this.min,t={},x=Math.min(f.plotWidth,f.plotHeight),C=Number.MAX_VALUE,A=-Number.MAX_VALUE,y=this.max-r,B=d/y,D=[];h(this.series,function(d){var e=
57
+ d.options;!d.bubblePadding||!d.visible&&f.options.chart.ignoreHiddenSeries||(c.allowZoomOutside=!0,D.push(d),q&&(h(["minSize","maxSize"],function(c){var a=e[c],d=/%$/.test(a),a=b(a);t[c]=d?x*a/100:a}),d.minPxSize=t.minSize,d.maxPxSize=Math.max(t.maxSize,t.minSize),d=a.grep(d.zData,a.isNumber),d.length&&(C=p(e.zMin,Math.min(C,Math.max(v(d),!1===e.displayNegative?e.zThreshold:-Number.MAX_VALUE))),A=p(e.zMax,Math.max(A,n(d))))))});h(D,function(b){var a=b[m],d=a.length,e;q&&b.getRadii(C,A,b.minPxSize,
58
+ b.maxPxSize);if(0<y)for(;d--;)k(a[d])&&c.dataMin<=a[d]&&a[d]<=c.dataMax&&(e=b.radii[d],g=Math.min((a[d]-r)*B-e,g),w=Math.max((a[d]-r)*B+e,w))});D.length&&0<y&&!this.isLog&&(w-=d,B*=(d+Math.max(0,g)-Math.min(w,d))/d,h([["min","userMin",g],["max","userMax",w]],function(b){void 0===p(c.options[b[0]],c[b[1]])&&(c[b[0]]+=b[2]/B)}))}})(x);(function(a){var n=a.each,v=a.pick,r=a.Series,h=a.seriesTypes,k=a.wrap,t=r.prototype,p=a.Pointer.prototype;a.polarExtended||(a.polarExtended=!0,t.searchPointByAngle=function(b){var a=
59
+ this.chart,f=this.xAxis.pane.center;return this.searchKDTree({clientX:180+-180/Math.PI*Math.atan2(b.chartX-f[0]-a.plotLeft,b.chartY-f[1]-a.plotTop)})},t.getConnectors=function(b,a,f,d){var c,e,g,l,h,k,m,n;e=d?1:0;c=0<=a&&a<=b.length-1?a:0>a?b.length-1+a:0;a=0>c-1?b.length-(1+e):c-1;e=c+1>b.length-1?e:c+1;g=b[a];e=b[e];l=g.plotX;g=g.plotY;h=e.plotX;k=e.plotY;e=b[c].plotX;c=b[c].plotY;l=(1.5*e+l)/2.5;g=(1.5*c+g)/2.5;h=(1.5*e+h)/2.5;m=(1.5*c+k)/2.5;k=Math.sqrt(Math.pow(l-e,2)+Math.pow(g-c,2));n=Math.sqrt(Math.pow(h-
60
+ e,2)+Math.pow(m-c,2));l=Math.atan2(g-c,l-e);m=Math.PI/2+(l+Math.atan2(m-c,h-e))/2;Math.abs(l-m)>Math.PI/2&&(m-=Math.PI);l=e+Math.cos(m)*k;g=c+Math.sin(m)*k;h=e+Math.cos(Math.PI+m)*n;m=c+Math.sin(Math.PI+m)*n;e={rightContX:h,rightContY:m,leftContX:l,leftContY:g,plotX:e,plotY:c};f&&(e.prevPointCont=this.getConnectors(b,a,!1,d));return e},k(t,"buildKDTree",function(b){this.chart.polar&&(this.kdByAngle?this.searchPoint=this.searchPointByAngle:this.options.findNearestPointBy="xy");b.apply(this)}),t.toXY=
61
+ function(b){var a,f=this.chart,d=b.plotX;a=b.plotY;b.rectPlotX=d;b.rectPlotY=a;a=this.xAxis.postTranslate(b.plotX,this.yAxis.len-a);b.plotX=b.polarPlotX=a.x-f.plotLeft;b.plotY=b.polarPlotY=a.y-f.plotTop;this.kdByAngle?(f=(d/Math.PI*180+this.xAxis.pane.options.startAngle)%360,0>f&&(f+=360),b.clientX=f):b.clientX=b.plotX},h.spline&&(k(h.spline.prototype,"getPointSpline",function(b,a,f,d){this.chart.polar?d?(b=this.getConnectors(a,d,!0,this.connectEnds),b=["C",b.prevPointCont.rightContX,b.prevPointCont.rightContY,
62
+ b.leftContX,b.leftContY,b.plotX,b.plotY]):b=["M",f.plotX,f.plotY]:b=b.call(this,a,f,d);return b}),h.areasplinerange&&(h.areasplinerange.prototype.getPointSpline=h.spline.prototype.getPointSpline)),a.addEvent(r,"afterTranslate",function(){var b=this.chart,g,f;if(b.polar){this.kdByAngle=b.tooltip&&b.tooltip.shared;if(!this.preventPostTranslate)for(g=this.points,f=g.length;f--;)this.toXY(g[f]);this.hasClipCircleSetter||(this.hasClipCircleSetter=!!a.addEvent(this,"afterRender",function(){var d;b.polar&&
63
+ (d=this.yAxis.center,this.group.clip(b.renderer.clipCircle(d[0],d[1],d[2]/2)),this.setClip=a.noop)}))}},{order:2}),k(t,"getGraphPath",function(b,a){var f=this,d,c,e;if(this.chart.polar){a=a||this.points;for(d=0;d<a.length;d++)if(!a[d].isNull){c=d;break}!1!==this.options.connectEnds&&void 0!==c&&(this.connectEnds=!0,a.splice(a.length,0,a[c]),e=!0);n(a,function(b){void 0===b.polarPlotY&&f.toXY(b)})}d=b.apply(this,[].slice.call(arguments,1));e&&a.pop();return d}),r=function(b,a){var f=this.chart,d=this.options.animation,
64
+ c=this.group,e=this.markerGroup,g=this.xAxis.center,h=f.plotLeft,k=f.plotTop;f.polar?f.renderer.isSVG&&(!0===d&&(d={}),a?(b={translateX:g[0]+h,translateY:g[1]+k,scaleX:.001,scaleY:.001},c.attr(b),e&&e.attr(b)):(b={translateX:h,translateY:k,scaleX:1,scaleY:1},c.animate(b,d),e&&e.animate(b,d),this.animate=null)):b.call(this,a)},k(t,"animate",r),h.column&&(h=h.column.prototype,h.polarArc=function(b,a,f,d){var c=this.xAxis.center,e=this.yAxis.len;return this.chart.renderer.symbols.arc(c[0],c[1],e-a,null,
65
+ {start:f,end:d,innerR:e-v(b,e)})},k(h,"animate",r),k(h,"translate",function(a){var b=this.xAxis,f=b.startAngleRad,d,c,e;this.preventPostTranslate=!0;a.call(this);if(b.isRadial)for(d=this.points,e=d.length;e--;)c=d[e],a=c.barX+f,c.shapeType="path",c.shapeArgs={d:this.polarArc(c.yBottom,c.plotY,a,a+c.pointWidth)},this.toXY(c),c.tooltipPos=[c.plotX,c.plotY],c.ttBelow=c.plotY>b.center[1]}),k(h,"alignDataLabel",function(a,g,f,d,c,e){this.chart.polar?(a=g.rectPlotX/Math.PI*180,null===d.align&&(d.align=
66
+ 20<a&&160>a?"left":200<a&&340>a?"right":"center"),null===d.verticalAlign&&(d.verticalAlign=45>a||315<a?"bottom":135<a&&225>a?"top":"middle"),t.alignDataLabel.call(this,g,f,d,c,e)):a.call(this,g,f,d,c,e)})),k(p,"getCoordinates",function(a,g){var b=this.chart,d={xAxis:[],yAxis:[]};b.polar?n(b.axes,function(a){var c=a.isXAxis,f=a.center,h=g.chartX-f[0]-b.plotLeft,f=g.chartY-f[1]-b.plotTop;d[c?"xAxis":"yAxis"].push({axis:a,value:a.translate(c?Math.PI-Math.atan2(h,f):Math.sqrt(Math.pow(h,2)+Math.pow(f,
67
+ 2)),!0)})}):d=a.call(this,g);return d}),a.SVGRenderer.prototype.clipCircle=function(b,g,f){var d=a.uniqueKey(),c=this.createElement("clipPath").attr({id:d}).add(this.defs);b=this.circle(b,g,f).add(c);b.id=d;b.clipPath=c;return b},a.addEvent(a.Chart,"getAxes",function(){this.pane||(this.pane=[]);n(a.splat(this.options.pane),function(b){new a.Pane(b,this)},this)}),a.addEvent(a.Chart,"afterDrawChartBox",function(){n(this.pane,function(a){a.render()})}),k(a.Chart.prototype,"get",function(b,g){return a.find(this.pane,
68
+ function(a){return a.options.id===g})||b.call(this,g)}))})(x)});
68
69
  //# sourceMappingURL=highcharts-more.js.map