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,1956 +1 @@
1
- /*
2
- * This file contains things that are referrenced in the old API dump, which *
3
- * can't be found in the source code. All items here should be moved over to *
4
- * the appropriate location in the source. *
5
- *******************************************************************************/
6
-
7
- /* eslint max-len: 0 */
8
-
9
- /**
10
- * An optional scrollbar to display on the X axis in response to limiting
11
- * the minimum and maximum of the axis values.
12
- *
13
- * In styled mode, all the presentational options for the scrollbar
14
- * are replaced by the classes `.highcharts-scrollbar-thumb`, `.highcharts-scrollbar-arrow`, `.highcharts-scrollbar-button`, `.highcharts-scrollbar-rifles` and `.highcharts-scrollbar-track`.
15
- *
16
- * @extends scrollbar
17
- * @sample {highstock} stock/yaxis/heatmap-scrollbars/ Heatmap with both scrollbars
18
- * @since 4.2.6
19
- * @product highstock
20
- * @apioption xAxis.scrollbar
21
- */
22
-
23
- /**
24
- * Whether to show the axis line and title when the axis has no data.
25
- *
26
- * @type {Boolean}
27
- * @sample {highcharts} highcharts/yaxis/showempty/ When clicking the legend to hide series, one axis preserves line and title, the other doesn't
28
- * @sample {highstock} highcharts/yaxis/showempty/ When clicking the legend to hide series, one axis preserves line and title, the other doesn't
29
- * @default true
30
- * @since 1.1
31
- * @apioption xAxis.showEmpty
32
- */
33
-
34
- /**
35
- * Whether to show the first tick label.
36
- *
37
- * @type {Boolean}
38
- * @sample {highcharts} highcharts/xaxis/showfirstlabel-false/ Set to false on X axis
39
- * @sample {highstock} stock/xaxis/showfirstlabel/ Labels below plot lines on Y axis
40
- * @default true
41
- * @apioption xAxis.showFirstLabel
42
- */
43
-
44
- /**
45
- * A soft maximum for the axis. If the series data maximum is less than
46
- * this, the axis will stay at this maximum, but if the series data
47
- * maximum is higher, the axis will flex to show all data.
48
- *
49
- * @type {Number}
50
- * @sample highcharts/yaxis/softmin-softmax/ Soft min and max
51
- * @since 5.0.1
52
- * @product highcharts highstock
53
- * @apioption xAxis.softMax
54
- */
55
-
56
- /**
57
- * A soft minimum for the axis. If the series data minimum is greater
58
- * than this, the axis will stay at this minimum, but if the series
59
- * data minimum is lower, the axis will flex to show all data.
60
- *
61
- * @type {Number}
62
- * @sample highcharts/yaxis/softmin-softmax/ Soft min and max
63
- * @since 5.0.1
64
- * @product highcharts highstock
65
- * @apioption xAxis.softMin
66
- */
67
-
68
- /**
69
- * The amount of ticks to draw on the axis. This opens up for aligning
70
- * the ticks of multiple charts or panes within a chart. This option
71
- * overrides the `tickPixelInterval` option.
72
- *
73
- * This option only has an effect on linear axes. Datetime, logarithmic
74
- * or category axes are not affected.
75
- *
76
- * @type {Number}
77
- * @sample {highcharts} highcharts/yaxis/tickamount/ 8 ticks on Y axis
78
- * @sample {highstock} highcharts/yaxis/tickamount/ 8 ticks on Y axis
79
- * @since 4.1.0
80
- * @product highcharts highstock
81
- * @apioption xAxis.tickAmount
82
- */
83
-
84
- /**
85
- * The interval of the tick marks in axis units. When `null`, the tick
86
- * interval is computed to approximately follow the [tickPixelInterval](
87
- * #xAxis.tickPixelInterval) on linear and datetime axes. On categorized axes,
88
- * a `null` tickInterval will default to 1, one category. Note that
89
- * datetime axes are based on milliseconds, so for example an interval
90
- * of one day is expressed as `24 * 3600 * 1000`.
91
- *
92
- * On logarithmic axes, the tickInterval is based on powers, so a tickInterval
93
- * of 1 means one tick on each of 0.1, 1, 10, 100 etc. A tickInterval
94
- * of 2 means a tick of 0.1, 10, 1000 etc. A tickInterval of 0.2 puts
95
- * a tick on 0.1, 0.2, 0.4, 0.6, 0.8, 1, 2, 4, 6, 8, 10, 20, 40 etc.
96
- *
97
- *
98
- * If the tickInterval is too dense for labels to be drawn, Highcharts
99
- * may remove ticks.
100
- *
101
- * If the chart has multiple axes, the [alignTicks](#chart.alignTicks)
102
- * option may interfere with the `tickInterval` setting.
103
- *
104
- * @type {Number}
105
- * @see [tickPixelInterval](#xAxis.tickPixelInterval),
106
- * [tickPositions](#xAxis.tickPositions),
107
- * [tickPositioner](#xAxis.tickPositioner)
108
- * @sample {highcharts} highcharts/xaxis/tickinterval-5/ Tick interval of 5 on a linear axis
109
- * @sample {highstock} stock/xaxis/tickinterval/ Tick interval of 0.01 on Y axis
110
- * @default null
111
- * @apioption xAxis.tickInterval
112
- */
113
-
114
- /**
115
- * A callback function returning array defining where the ticks are
116
- * laid out on the axis. This overrides the default behaviour of
117
- * [tickPixelInterval](#xAxis.tickPixelInterval) and
118
- * [tickInterval](#xAxis.tickInterval). The automatic tick positions are
119
- * accessible through `this.tickPositions` and can be modified by the callback.
120
- *
121
- * @type {Function}
122
- * @see [tickPositions](#xAxis.tickPositions)
123
- * @sample {highcharts} highcharts/xaxis/tickpositions-tickpositioner/ Demo of tickPositions and tickPositioner
124
- * @sample {highstock} highcharts/xaxis/tickpositions-tickpositioner/ Demo of tickPositions and tickPositioner
125
- * @apioption xAxis.tickPositioner
126
- */
127
-
128
- /**
129
- * An array defining where the ticks are laid out on the axis. This
130
- * overrides the default behaviour of [tickPixelInterval](#xAxis.tickPixelInterval)
131
- * and [tickInterval](#xAxis.tickInterval).
132
- *
133
- * @type {Array<Number>}
134
- * @see [tickPositioner](#xAxis.tickPositioner)
135
- * @sample {highcharts} highcharts/xaxis/tickpositions-tickpositioner/ Demo of tickPositions and tickPositioner
136
- * @sample {highstock} highcharts/xaxis/tickpositions-tickpositioner/ Demo of tickPositions and tickPositioner
137
- * @apioption xAxis.tickPositions
138
- */
139
-
140
- /**
141
- * The pixel width of the major tick marks.
142
- *
143
- * In styled mode, the stroke width is given in the `.highcharts-tick` class.
144
- *
145
- * @type {Number}
146
- * @sample {highcharts} highcharts/xaxis/tickwidth/ 10 px width
147
- * @sample {highcharts} highcharts/css/axis-grid/ Styled mode
148
- * @sample {highstock} stock/xaxis/ticks/ Formatted ticks on X axis
149
- * @sample {highstock} highcharts/css/axis-grid/ Styled mode
150
- * @default {highcharts} 1
151
- * @default {highstock} 1
152
- * @default {highmaps} 0
153
- * @apioption xAxis.tickWidth
154
- */
155
-
156
- /**
157
- * Applies only when the axis `type` is `category`. When `uniqueNames`
158
- * is true, points are placed on the X axis according to their names.
159
- * If the same point name is repeated in the same or another series,
160
- * the point is placed on the same X position as other points of the
161
- * same name. When `uniqueNames` is false, the points are laid out in
162
- * increasing X positions regardless of their names, and the X axis
163
- * category will take the name of the last point in each position.
164
- *
165
- * @type {Boolean}
166
- * @sample {highcharts} highcharts/xaxis/uniquenames-true/ True by default
167
- * @sample {highcharts} highcharts/xaxis/uniquenames-false/ False
168
- * @default true
169
- * @since 4.2.7
170
- * @product highcharts
171
- * @apioption xAxis.uniqueNames
172
- */
173
-
174
- /**
175
- * Datetime axis only. An array determining what time intervals the
176
- * ticks are allowed to fall on. Each array item is an array where the
177
- * first value is the time unit and the second value another array of
178
- * allowed multiples. Defaults to:
179
- *
180
- * <pre>units: [[
181
- * 'millisecond', // unit name
182
- * [1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples
183
- * ], [
184
- * 'second',
185
- * [1, 2, 5, 10, 15, 30]
186
- * ], [
187
- * 'minute',
188
- * [1, 2, 5, 10, 15, 30]
189
- * ], [
190
- * 'hour',
191
- * [1, 2, 3, 4, 6, 8, 12]
192
- * ], [
193
- * 'day',
194
- * [1]
195
- * ], [
196
- * 'week',
197
- * [1]
198
- * ], [
199
- * 'month',
200
- * [1, 3, 6]
201
- * ], [
202
- * 'year',
203
- * null
204
- * ]]</pre>
205
- *
206
- * @type {Array}
207
- * @product highcharts highstock
208
- * @apioption xAxis.units
209
- */
210
-
211
- /**
212
- * Whether axis, including axis title, line, ticks and labels, should
213
- * be visible.
214
- *
215
- * @type {Boolean}
216
- * @default true
217
- * @since 4.1.9
218
- * @product highcharts highstock
219
- * @apioption xAxis.visible
220
- */
221
-
222
-
223
- /**
224
- * An array of colored bands stretching across the plot area marking
225
- * an interval on the axis.
226
- *
227
- * In styled mode, the plot bands are styled by the `.highcharts-plot-band` class in addition to the `className` option.
228
- *
229
- * @productdesc {highcharts}
230
- * In a gauge, a plot band on the Y axis (value axis) will stretch along
231
- * the perimeter of the gauge.
232
- *
233
- * @type {Array<Object>}
234
- * @product highcharts highstock
235
- * @apioption xAxis.plotBands
236
- */
237
-
238
- /**
239
- * Border color for the plot band. Also requires `borderWidth` to be
240
- * set.
241
- *
242
- * @type {Color}
243
- * @default null
244
- * @product highcharts highstock
245
- * @apioption xAxis.plotBands.borderColor
246
- */
247
-
248
- /**
249
- * Border width for the plot band. Also requires `borderColor` to be
250
- * set.
251
- *
252
- * @type {Number}
253
- * @default 0
254
- * @product highcharts highstock
255
- * @apioption xAxis.plotBands.borderWidth
256
- */
257
-
258
- /**
259
- * A custom class name, in addition to the default `highcharts-plot-band`, to
260
- * apply to each individual band.
261
- *
262
- * @type {String}
263
- * @since 5.0.0
264
- * @apioption xAxis.plotBands.className
265
- */
266
-
267
- /**
268
- * The color of the plot band.
269
- *
270
- * @type {Color}
271
- * @sample {highcharts} highcharts/xaxis/plotbands-color/ Color band
272
- * @sample {highstock} stock/xaxis/plotbands/ Plot band on Y axis
273
- * @default null
274
- * @product highcharts highstock
275
- * @apioption xAxis.plotBands.color
276
- */
277
-
278
- /**
279
- * An object defining mouse events for the plot band. Supported properties
280
- * are `click`, `mouseover`, `mouseout`, `mousemove`.
281
- *
282
- * @type {Object}
283
- * @context PlotLineOrBand
284
- * @sample {highcharts} highcharts/xaxis/plotbands-events/ Mouse events demonstrated
285
- * @since 1.2
286
- * @product highcharts highstock
287
- * @apioption xAxis.plotBands.events
288
- */
289
-
290
- /**
291
- * The start position of the plot band in axis units.
292
- *
293
- * @type {Number}
294
- * @sample {highcharts} highcharts/xaxis/plotbands-color/ Datetime axis
295
- * @sample {highcharts} highcharts/xaxis/plotbands-from/ Categorized axis
296
- * @sample {highstock} stock/xaxis/plotbands/ Plot band on Y axis
297
- * @default null
298
- * @product highcharts highstock
299
- * @apioption xAxis.plotBands.from
300
- */
301
-
302
- /**
303
- * An id used for identifying the plot band in Axis.removePlotBand.
304
- *
305
- * @type {String}
306
- * @sample {highcharts} highcharts/xaxis/plotbands-id/ Remove plot band by id
307
- * @sample {highstock} highcharts/xaxis/plotbands-id/ Remove plot band by id
308
- * @default null
309
- * @product highcharts highstock
310
- * @apioption xAxis.plotBands.id
311
- */
312
-
313
- /**
314
- * The end position of the plot band in axis units.
315
- *
316
- * @type {Number}
317
- * @sample {highcharts} highcharts/xaxis/plotbands-color/ Datetime axis
318
- * @sample {highcharts} highcharts/xaxis/plotbands-from/ Categorized axis
319
- * @sample {highstock} stock/xaxis/plotbands/ Plot band on Y axis
320
- * @default null
321
- * @product highcharts highstock
322
- * @apioption xAxis.plotBands.to
323
- */
324
-
325
- /**
326
- * The z index of the plot band within the chart, relative to other
327
- * elements. Using the same z index as another element may give unpredictable
328
- * results, as the last rendered element will be on top. Values from
329
- * 0 to 20 make sense.
330
- *
331
- * @type {Number}
332
- * @sample {highcharts} highcharts/xaxis/plotbands-color/ Behind plot lines by default
333
- * @sample {highcharts} highcharts/xaxis/plotbands-zindex/ Above plot lines
334
- * @sample {highcharts} highcharts/xaxis/plotbands-zindex-above-series/ Above plot lines and series
335
- * @default null
336
- * @since 1.2
337
- * @product highcharts highstock
338
- * @apioption xAxis.plotBands.zIndex
339
- */
340
-
341
- /**
342
- * Text labels for the plot bands
343
- *
344
- * @product highcharts highstock
345
- * @apioption xAxis.plotBands.label
346
- */
347
-
348
- /**
349
- * Horizontal alignment of the label. Can be one of "left", "center"
350
- * or "right".
351
- *
352
- * @type {String}
353
- * @sample {highcharts} highcharts/xaxis/plotbands-label-align/ Aligned to the right
354
- * @sample {highstock} stock/xaxis/plotbands-label/ Plot band with labels
355
- * @default center
356
- * @since 2.1
357
- * @product highcharts highstock
358
- * @apioption xAxis.plotBands.label.align
359
- */
360
-
361
- /**
362
- * Rotation of the text label in degrees .
363
- *
364
- * @type {Number}
365
- * @sample {highcharts} highcharts/xaxis/plotbands-label-rotation/ Vertical text
366
- * @default 0
367
- * @since 2.1
368
- * @product highcharts highstock
369
- * @apioption xAxis.plotBands.label.rotation
370
- */
371
-
372
- /**
373
- * CSS styles for the text label.
374
- *
375
- * In styled mode, the labels are styled by the `.highcharts-plot-band-label` class.
376
- *
377
- * @type {Object}
378
- * @sample {highcharts} highcharts/xaxis/plotbands-label-style/ Blue and bold label
379
- * @since 2.1
380
- * @product highcharts highstock
381
- * @apioption xAxis.plotBands.label.style
382
- */
383
-
384
- /**
385
- * The string text itself. A subset of HTML is supported.
386
- *
387
- * @type {String}
388
- * @since 2.1
389
- * @product highcharts
390
- * @apioption xAxis.plotBands.label.text
391
- */
392
-
393
- /**
394
- * The text alignment for the label. While `align` determines where
395
- * the texts anchor point is placed within the plot band, `textAlign`
396
- * determines how the text is aligned against its anchor point. Possible
397
- * values are "left", "center" and "right". Defaults to the same as
398
- * the `align` option.
399
- *
400
- * @type {String}
401
- * @sample {highcharts} highcharts/xaxis/plotbands-label-rotation/ Vertical text in center position but text-aligned left
402
- * @since 2.1
403
- * @product highcharts highstock
404
- * @apioption xAxis.plotBands.label.textAlign
405
- */
406
-
407
- /**
408
- * Whether to [use HTML](http://www.highcharts.com/docs/chart-concepts/labels-
409
- * and-string-formatting#html) to render the labels.
410
- *
411
- * @type {Boolean}
412
- * @default false
413
- * @since 3.0.3
414
- * @product highcharts highstock
415
- * @apioption xAxis.plotBands.label.useHTML
416
- */
417
-
418
- /**
419
- * Vertical alignment of the label relative to the plot band. Can be
420
- * one of "top", "middle" or "bottom".
421
- *
422
- * @type {String}
423
- * @sample {highcharts} highcharts/xaxis/plotbands-label-verticalalign/ Vertically centered label
424
- * @sample {highstock} stock/xaxis/plotbands-label/ Plot band with labels
425
- * @default top
426
- * @since 2.1
427
- * @product highcharts highstock
428
- * @apioption xAxis.plotBands.label.verticalAlign
429
- */
430
-
431
- /**
432
- * Horizontal position relative the alignment. Default varies by orientation.
433
- *
434
- * @type {Number}
435
- * @sample {highcharts} highcharts/xaxis/plotbands-label-align/ Aligned 10px from the right edge
436
- * @sample {highstock} stock/xaxis/plotbands-label/ Plot band with labels
437
- * @since 2.1
438
- * @product highcharts highstock
439
- * @apioption xAxis.plotBands.label.x
440
- */
441
-
442
- /**
443
- * Vertical position of the text baseline relative to the alignment.
444
- * Default varies by orientation.
445
- *
446
- * @type {Number}
447
- * @sample {highcharts} highcharts/xaxis/plotbands-label-y/ Label on x axis
448
- * @sample {highstock} stock/xaxis/plotbands-label/ Plot band with labels
449
- * @since 2.1
450
- * @product highcharts highstock
451
- * @apioption xAxis.plotBands.label.y
452
- */
453
-
454
- /**
455
- * An array of lines stretching across the plot area, marking a specific
456
- * value on one of the axes.
457
- *
458
- * In styled mode, the plot lines are styled by the `.highcharts-plot-line` class in addition to the `className` option.
459
- *
460
- * @type {Array<Object>}
461
- * @product highcharts highstock
462
- * @apioption xAxis.plotLines
463
- */
464
-
465
- /**
466
- * A custom class name, in addition to the default `highcharts-plot-line`, to
467
- * apply to each individual line.
468
- *
469
- * @type {String}
470
- * @since 5.0.0
471
- * @apioption xAxis.plotLines.className
472
- */
473
-
474
- /**
475
- * The color of the line.
476
- *
477
- * @type {Color}
478
- * @sample {highcharts} highcharts/xaxis/plotlines-color/ A red line from X axis
479
- * @sample {highstock} stock/xaxis/plotlines/ Plot line on Y axis
480
- * @default null
481
- * @product highcharts highstock
482
- * @apioption xAxis.plotLines.color
483
- */
484
-
485
- /**
486
- * The dashing or dot style for the plot line. For possible values see
487
- * [this overview](http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-
488
- * dashstyle-all/).
489
- *
490
- * @validvalue ["Solid", "ShortDash", "ShortDot", "ShortDashDot", "ShortDashDotDot", "Dot", "Dash" ,"LongDash", "DashDot", "LongDashDot", "LongDashDotDot"]
491
- * @type {String}
492
- * @sample {highcharts} highcharts/xaxis/plotlines-dashstyle/ Dash and dot pattern
493
- * @sample {highstock} stock/xaxis/plotlines/ Plot line on Y axis
494
- * @default Solid
495
- * @since 1.2
496
- * @product highcharts highstock
497
- * @apioption xAxis.plotLines.dashStyle
498
- */
499
-
500
- /**
501
- * An object defining mouse events for the plot line. Supported properties
502
- * are `click`, `mouseover`, `mouseout`, `mousemove`.
503
- *
504
- * @type {Object}
505
- * @context PlotLineOrBand
506
- * @sample {highcharts} highcharts/xaxis/plotlines-events/ Mouse events demonstrated
507
- * @since 1.2
508
- * @product highcharts highstock
509
- * @apioption xAxis.plotLines.events
510
- */
511
-
512
- /**
513
- * An id used for identifying the plot line in Axis.removePlotLine.
514
- *
515
- * @type {String}
516
- * @sample {highcharts} highcharts/xaxis/plotlines-id/ Remove plot line by id
517
- * @default null
518
- * @product highcharts highstock
519
- * @apioption xAxis.plotLines.id
520
- */
521
-
522
- /**
523
- * The position of the line in axis units.
524
- *
525
- * @type {Number}
526
- * @sample {highcharts} highcharts/xaxis/plotlines-color/ Between two categories on X axis
527
- * @sample {highstock} stock/xaxis/plotlines/ Plot line on Y axis
528
- * @default null
529
- * @product highcharts highstock
530
- * @apioption xAxis.plotLines.value
531
- */
532
-
533
- /**
534
- * The width or thickness of the plot line.
535
- *
536
- * @type {Number}
537
- * @sample {highcharts} highcharts/xaxis/plotlines-color/ 2px wide line from X axis
538
- * @sample {highstock} stock/xaxis/plotlines/ Plot line on Y axis
539
- * @default null
540
- * @product highcharts highstock
541
- * @apioption xAxis.plotLines.width
542
- */
543
-
544
- /**
545
- * The z index of the plot line within the chart.
546
- *
547
- * @type {Number}
548
- * @sample {highcharts} highcharts/xaxis/plotlines-zindex-behind/ Behind plot lines by default
549
- * @sample {highcharts} highcharts/xaxis/plotlines-zindex-above/ Above plot lines
550
- * @sample {highcharts} highcharts/xaxis/plotlines-zindex-above-all/ Above plot lines and series
551
- * @default null
552
- * @since 1.2
553
- * @product highcharts highstock
554
- * @apioption xAxis.plotLines.zIndex
555
- */
556
-
557
- /**
558
- * Text labels for the plot bands
559
- *
560
- * @product highcharts highstock
561
- * @apioption xAxis.plotLines.label
562
- */
563
-
564
- /**
565
- * Horizontal alignment of the label. Can be one of "left", "center"
566
- * or "right".
567
- *
568
- * @type {String}
569
- * @sample {highcharts} highcharts/xaxis/plotlines-label-align-right/ Aligned to the right
570
- * @sample {highstock} stock/xaxis/plotlines/ Plot line on Y axis
571
- * @default left
572
- * @since 2.1
573
- * @product highcharts highstock
574
- * @apioption xAxis.plotLines.label.align
575
- */
576
-
577
- /**
578
- * Rotation of the text label in degrees. Defaults to 0 for horizontal
579
- * plot lines and 90 for vertical lines.
580
- *
581
- * @type {Number}
582
- * @sample {highcharts} highcharts/xaxis/plotlines-label-verticalalign-middle/ Slanted text
583
- * @since 2.1
584
- * @product highcharts highstock
585
- * @apioption xAxis.plotLines.label.rotation
586
- */
587
-
588
- /**
589
- * CSS styles for the text label.
590
- *
591
- * In styled mode, the labels are styled by the
592
- * `.highcharts-plot-line-label` class.
593
- *
594
- * @type {Object}
595
- * @sample {highcharts} highcharts/xaxis/plotlines-label-style/ Blue and bold label
596
- * @since 2.1
597
- * @product highcharts highstock
598
- * @apioption xAxis.plotLines.label.style
599
- */
600
-
601
- /**
602
- * The text itself. A subset of HTML is supported.
603
- *
604
- * @type {String}
605
- * @since 2.1
606
- * @product highcharts
607
- * @apioption xAxis.plotLines.label.text
608
- */
609
-
610
- /**
611
- * The text alignment for the label. While `align` determines where
612
- * the texts anchor point is placed within the plot band, `textAlign`
613
- * determines how the text is aligned against its anchor point. Possible
614
- * values are "left", "center" and "right". Defaults to the same as
615
- * the `align` option.
616
- *
617
- * @type {String}
618
- * @sample {highcharts} highcharts/xaxis/plotlines-label-textalign/ Text label in bottom position
619
- * @since 2.1
620
- * @product highcharts highstock
621
- * @apioption xAxis.plotLines.label.textAlign
622
- */
623
-
624
- /**
625
- * Whether to [use HTML](http://www.highcharts.com/docs/chart-concepts/labels-
626
- * and-string-formatting#html) to render the labels.
627
- *
628
- * @type {Boolean}
629
- * @default false
630
- * @since 3.0.3
631
- * @product highcharts highstock
632
- * @apioption xAxis.plotLines.label.useHTML
633
- */
634
-
635
- /**
636
- * Vertical alignment of the label relative to the plot line. Can be
637
- * one of "top", "middle" or "bottom".
638
- *
639
- * @validvalue ["top", "middle", "bottom"]
640
- * @type {String}
641
- * @sample {highcharts} highcharts/xaxis/plotlines-label-verticalalign-middle/ Vertically centered label
642
- * @default {highcharts} top
643
- * @default {highstock} "top"
644
- * @since 2.1
645
- * @product highcharts highstock
646
- * @apioption xAxis.plotLines.label.verticalAlign
647
- */
648
-
649
- /**
650
- * Horizontal position relative the alignment. Default varies by orientation.
651
- *
652
- * @type {Number}
653
- * @sample {highcharts} highcharts/xaxis/plotlines-label-align-right/ Aligned 10px from the right edge
654
- * @sample {highstock} stock/xaxis/plotlines/ Plot line on Y axis
655
- * @since 2.1
656
- * @product highcharts highstock
657
- * @apioption xAxis.plotLines.label.x
658
- */
659
-
660
- /**
661
- * Vertical position of the text baseline relative to the alignment.
662
- * Default varies by orientation.
663
- *
664
- * @type {Number}
665
- * @sample {highcharts} highcharts/xaxis/plotlines-label-y/ Label below the plot line
666
- * @sample {highstock} stock/xaxis/plotlines/ Plot line on Y axis
667
- * @since 2.1
668
- * @product highcharts highstock
669
- * @apioption xAxis.plotLines.label.y
670
- */
671
-
672
- /**
673
- * Deprecated. Set the `text` to `null` to disable the title.
674
- *
675
- * @type {String}
676
- * @deprecated
677
- * @default middle
678
- * @product highcharts
679
- * @apioption xAxis.title.enabled
680
- */
681
-
682
- /**
683
- * The pixel distance between the axis labels or line and the title.
684
- * Defaults to 0 for horizontal axes, 10 for vertical
685
- *
686
- * @type {Number}
687
- * @sample {highcharts} highcharts/xaxis/title-margin/ Y axis title margin of 60
688
- * @apioption xAxis.title.margin
689
- */
690
-
691
- /**
692
- * The distance of the axis title from the axis line. By default, this
693
- * distance is computed from the offset width of the labels, the labels'
694
- * distance from the axis and the title's margin. However when the offset
695
- * option is set, it overrides all this.
696
- *
697
- * @type {Number}
698
- * @sample {highcharts} highcharts/yaxis/title-offset/ Place the axis title on top of the axis
699
- * @sample {highstock} highcharts/yaxis/title-offset/ Place the axis title on top of the Y axis
700
- * @since 2.2.0
701
- * @apioption xAxis.title.offset
702
- */
703
-
704
- /**
705
- * Whether to reserve space for the title when laying out the axis.
706
- *
707
- * @type {Boolean}
708
- * @default true
709
- * @since 5.0.11
710
- * @product highcharts highstock
711
- * @apioption xAxis.title.reserveSpace
712
- */
713
-
714
- /**
715
- * The rotation of the text in degrees. 0 is horizontal, 270 is vertical
716
- * reading from bottom to top.
717
- *
718
- * @type {Number}
719
- * @sample {highcharts} highcharts/yaxis/title-offset/ Horizontal
720
- * @default 0
721
- * @apioption xAxis.title.rotation
722
- */
723
-
724
- /**
725
- * The actual text of the axis title. It can contain basic HTML text
726
- * markup like <b>, <i> and spans with style.
727
- *
728
- * @type {String}
729
- * @sample {highcharts} highcharts/xaxis/title-text/ Custom HTML
730
- * @sample {highstock} stock/xaxis/title-text/ Titles for both axes
731
- * @default null
732
- * @apioption xAxis.title.text
733
- */
734
-
735
- /**
736
- * Whether to [use HTML](http://www.highcharts.com/docs/chart-concepts/labels-
737
- * and-string-formatting#html) to render the axis title.
738
- *
739
- * @type {Boolean}
740
- * @default false
741
- * @product highcharts highstock
742
- * @apioption xAxis.title.useHTML
743
- */
744
-
745
- /**
746
- * Horizontal pixel offset of the title position.
747
- *
748
- * @type {Number}
749
- * @default 0
750
- * @since 4.1.6
751
- * @product highcharts highstock
752
- * @apioption xAxis.title.x
753
- */
754
-
755
- /**
756
- * Vertical pixel offset of the title position.
757
- *
758
- * @type {Number}
759
- * @product highcharts highstock
760
- * @apioption xAxis.title.y
761
- */
762
-
763
- /**
764
- * In a polar chart, this is the angle of the Y axis in degrees, where
765
- * 0 is up and 90 is right. The angle determines the position of the
766
- * axis line and the labels, though the coordinate system is unaffected.
767
- *
768
- * @type {Number}
769
- * @sample {highcharts} highcharts/yaxis/angle/ Dual axis polar chart
770
- * @default 0
771
- * @since 4.2.7
772
- * @product highcharts
773
- * @apioption yAxis.angle
774
- */
775
-
776
- /**
777
- * Polar charts only. Whether the grid lines should draw as a polygon
778
- * with straight lines between categories, or as circles. Can be either
779
- * `circle` or `polygon`.
780
- *
781
- * @validvalue ["circle", "polygon"]
782
- * @type {String}
783
- * @sample {highcharts} highcharts/demo/polar-spider/ Polygon grid lines
784
- * @sample {highcharts} highcharts/yaxis/gridlineinterpolation/ Circle and polygon
785
- * @default null
786
- * @product highcharts
787
- * @apioption yAxis.gridLineInterpolation
788
- */
789
-
790
- /**
791
- * Solid gauge only. Unless [stops](#yAxis.stops) are set, the color
792
- * to represent the maximum value of the Y axis.
793
- *
794
- * @type {Color}
795
- * @sample {highcharts} highcharts/yaxis/mincolor-maxcolor/ Min and max colors
796
- * @default #003399
797
- * @since 4.0
798
- * @product highcharts
799
- * @apioption yAxis.maxColor
800
- */
801
-
802
- /**
803
- * Solid gauge only. Unless [stops](#yAxis.stops) are set, the color
804
- * to represent the minimum value of the Y axis.
805
- *
806
- * @type {Color}
807
- * @sample {highcharts} highcharts/yaxis/mincolor-maxcolor/ Min and max color
808
- * @default #e6ebf5
809
- * @since 4.0
810
- * @product highcharts
811
- * @apioption yAxis.minColor
812
- */
813
-
814
- /**
815
- * This option determines how stacks should be ordered within a group.
816
- * For example reversed xAxis also reverses stacks, so first series comes last
817
- * in a group. To keep order like for non-reversed xAxis enable this option.
818
- *
819
- * @type {Boolean}
820
- * @sample {highcharts} highcharts/xaxis/reversedstacks/ Reversed stacks comparison
821
- * @sample {highstock} highcharts/xaxis/reversedstacks/ Reversed stacks comparison
822
- * @default false
823
- * @since 6.1.1
824
- * @product highcharts highstock
825
- * @apioption xAxis.reversedStacks
826
- */
827
-
828
- /**
829
- * If `true`, the first series in a stack will be drawn on top in a
830
- * positive, non-reversed Y axis. If `false`, the first series is in
831
- * the base of the stack.
832
- *
833
- * @type {Boolean}
834
- * @sample {highcharts} highcharts/yaxis/reversedstacks-false/ Non-reversed stacks
835
- * @sample {highstock} highcharts/yaxis/reversedstacks-false/ Non-reversed stacks
836
- * @default true
837
- * @since 3.0.10
838
- * @product highcharts highstock
839
- * @apioption yAxis.reversedStacks
840
- */
841
-
842
- /**
843
- * Solid gauge series only. Color stops for the solid gauge. Use this
844
- * in cases where a linear gradient between a `minColor` and `maxColor`
845
- * is not sufficient. The stops is an array of tuples, where the first
846
- * item is a float between 0 and 1 assigning the relative position in
847
- * the gradient, and the second item is the color.
848
- *
849
- * For solid gauges, the Y axis also inherits the concept of [data classes](http://api.
850
- * highcharts.com/highmaps#colorAxis.dataClasses) from the Highmaps
851
- * color axis.
852
- *
853
- * @type {Array<Array>}
854
- * @see [minColor](#yAxis.minColor), [maxColor](#yAxis.maxColor).
855
- * @sample {highcharts} highcharts/demo/gauge-solid/ True by default
856
- * @since 4.0
857
- * @product highcharts
858
- * @apioption yAxis.stops
859
- */
860
-
861
- /**
862
- * The pixel width of the major tick marks.
863
- *
864
- * @type {Number}
865
- * @sample {highcharts} highcharts/xaxis/tickwidth/ 10 px width
866
- * @sample {highstock} stock/xaxis/ticks/ Formatted ticks on X axis
867
- * @default 0
868
- * @product highcharts highstock
869
- * @apioption yAxis.tickWidth
870
- */
871
-
872
- /**
873
- * Angular gauges and solid gauges only. The label's pixel distance
874
- * from the perimeter of the plot area.
875
- *
876
- * @type {Number}
877
- * @default -25
878
- * @product highcharts
879
- * @apioption yAxis.labels.distance
880
- */
881
-
882
- /**
883
- * The y position offset of the label relative to the tick position
884
- * on the axis.
885
- *
886
- * @type {Number}
887
- * @sample {highcharts} highcharts/xaxis/labels-x/ Y axis labels placed on grid lines
888
- * @default {highcharts} 3
889
- * @default {highstock} -2
890
- * @default {highmaps} 3
891
- * @apioption yAxis.labels.y
892
- */
893
-
894
- /**
895
- * An array of objects defining plot bands on the Y axis.
896
- *
897
- * @type {Array<Object>}
898
- * @extends xAxis.plotBands
899
- * @product highcharts highstock
900
- * @apioption yAxis.plotBands
901
- */
902
-
903
- /**
904
- * In a gauge chart, this option determines the inner radius of the
905
- * plot band that stretches along the perimeter. It can be given as
906
- * a percentage string, like `"100%"`, or as a pixel number, like `100`.
907
- * By default, the inner radius is controlled by the [thickness](
908
- * #yAxis.plotBands.thickness) option.
909
- *
910
- * @type {Number|String}
911
- * @sample {highcharts} highcharts/xaxis/plotbands-gauge Gauge plot band
912
- * @default null
913
- * @since 2.3
914
- * @product highcharts
915
- * @apioption yAxis.plotBands.innerRadius
916
- */
917
-
918
- /**
919
- * In a gauge chart, this option determines the outer radius of the
920
- * plot band that stretches along the perimeter. It can be given as
921
- * a percentage string, like `"100%"`, or as a pixel number, like `100`.
922
- *
923
- * @type {Number|String}
924
- * @sample {highcharts} highcharts/xaxis/plotbands-gauge Gauge plot band
925
- * @default 100%
926
- * @since 2.3
927
- * @product highcharts
928
- * @apioption yAxis.plotBands.outerRadius
929
- */
930
-
931
- /**
932
- * In a gauge chart, this option sets the width of the plot band stretching
933
- * along the perimeter. It can be given as a percentage string, like
934
- * `"10%"`, or as a pixel number, like `10`. The default value 10 is
935
- * the same as the default [tickLength](#yAxis.tickLength), thus making
936
- * the plot band act as a background for the tick markers.
937
- *
938
- * @type {Number|String}
939
- * @sample {highcharts} highcharts/xaxis/plotbands-gauge Gauge plot band
940
- * @default 10
941
- * @since 2.3
942
- * @product highcharts
943
- * @apioption yAxis.plotBands.thickness
944
- */
945
-
946
- /**
947
- * An array of objects representing plot lines on the X axis
948
- *
949
- * @type {Array<Object>}
950
- * @extends xAxis.plotLines
951
- * @product highcharts highstock
952
- * @apioption yAxis.plotLines
953
- */
954
-
955
- /**
956
- * Defines the horizontal alignment of the stack total label. Can be
957
- * one of `"left"`, `"center"` or `"right"`. The default value is calculated
958
- * at runtime and depends on orientation and whether the stack is positive
959
- * or negative.
960
- *
961
- * @validvalue ["left", "center", "right"]
962
- * @type {String}
963
- * @sample {highcharts} highcharts/yaxis/stacklabels-align-left/ Aligned to the left
964
- * @sample {highcharts} highcharts/yaxis/stacklabels-align-center/ Aligned in center
965
- * @sample {highcharts} highcharts/yaxis/stacklabels-align-right/ Aligned to the right
966
- * @since 2.1.5
967
- * @product highcharts
968
- * @apioption yAxis.stackLabels.align
969
- */
970
-
971
- /**
972
- * A [format string](http://docs.highcharts.com/#formatting) for the
973
- * data label. Available variables are the same as for `formatter`.
974
- *
975
- * @type {String}
976
- * @default {total}
977
- * @since 3.0.2
978
- * @product highcharts highstock
979
- * @apioption yAxis.stackLabels.format
980
- */
981
-
982
- /**
983
- * Rotation of the labels in degrees.
984
- *
985
- * @type {Number}
986
- * @sample {highcharts} highcharts/yaxis/stacklabels-rotation/ Labels rotated 45°
987
- * @default 0
988
- * @since 2.1.5
989
- * @product highcharts
990
- * @apioption yAxis.stackLabels.rotation
991
- */
992
-
993
- /**
994
- * The text alignment for the label. While `align` determines where
995
- * the texts anchor point is placed with regards to the stack, `textAlign`
996
- * determines how the text is aligned against its anchor point. Possible
997
- * values are `"left"`, `"center"` and `"right"`. The default value
998
- * is calculated at runtime and depends on orientation and whether the
999
- * stack is positive or negative.
1000
- *
1001
- * @validvalue ["left", "center", "right"]
1002
- * @type {String}
1003
- * @sample {highcharts} highcharts/yaxis/stacklabels-textalign-left/ Label in center position but text-aligned left
1004
- * @since 2.1.5
1005
- * @product highcharts
1006
- * @apioption yAxis.stackLabels.textAlign
1007
- */
1008
-
1009
- /**
1010
- * Whether to [use HTML](http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html)
1011
- * to render the labels.
1012
- *
1013
- * @type {Boolean}
1014
- * @default false
1015
- * @since 3.0
1016
- * @product highcharts highstock
1017
- * @apioption yAxis.stackLabels.useHTML
1018
- */
1019
-
1020
- /**
1021
- * Defines the vertical alignment of the stack total label. Can be one
1022
- * of `"top"`, `"middle"` or `"bottom"`. The default value is calculated
1023
- * at runtime and depends on orientation and whether the stack is positive
1024
- * or negative.
1025
- *
1026
- * @validvalue ["top", "middle", "bottom"]
1027
- * @type {String}
1028
- * @sample {highcharts} highcharts/yaxis/stacklabels-verticalalign-top/ "Vertically aligned top"
1029
- * @sample {highcharts} highcharts/yaxis/stacklabels-verticalalign-middle/ "Vertically aligned middle"
1030
- * @sample {highcharts} highcharts/yaxis/stacklabels-verticalalign-bottom/ "Vertically aligned bottom"
1031
- * @since 2.1.5
1032
- * @product highcharts
1033
- * @apioption yAxis.stackLabels.verticalAlign
1034
- */
1035
-
1036
- /**
1037
- * The x position offset of the label relative to the left of the stacked
1038
- * bar. The default value is calculated at runtime and depends on orientation
1039
- * and whether the stack is positive or negative.
1040
- *
1041
- * @type {Number}
1042
- * @sample {highcharts} highcharts/yaxis/stacklabels-x/ Stack total labels with x offset
1043
- * @since 2.1.5
1044
- * @product highcharts
1045
- * @apioption yAxis.stackLabels.x
1046
- */
1047
-
1048
- /**
1049
- * The y position offset of the label relative to the tick position
1050
- * on the axis. The default value is calculated at runtime and depends
1051
- * on orientation and whether the stack is positive or negative.
1052
- *
1053
- * @type {Number}
1054
- * @sample {highcharts} highcharts/yaxis/stacklabels-y/ Stack total labels with y offset
1055
- * @since 2.1.5
1056
- * @product highcharts
1057
- * @apioption yAxis.stackLabels.y
1058
- */
1059
-
1060
- /**
1061
- * The pixel distance between the axis labels and the title. Positive
1062
- * values are outside the axis line, negative are inside.
1063
- *
1064
- * @type {Number}
1065
- * @sample {highcharts} highcharts/xaxis/title-margin/ Y axis title margin of 60
1066
- * @default 40
1067
- * @apioption yAxis.title.margin
1068
- */
1069
-
1070
- /**
1071
- * The Z axis or depth axis for 3D plots.
1072
- *
1073
- * See [the Axis object](/class-reference/Highcharts.Axis) for programmatic
1074
- * access to the axis.
1075
- *
1076
- * @extends xAxis
1077
- * @excluding breaks,crosshair,lineColor,lineWidth,nameToX,showEmpty
1078
- * @sample {highcharts} highcharts/3d/scatter-zaxis-categories/ Z-Axis with Categories
1079
- * @sample {highcharts} highcharts/3d/scatter-zaxis-grid/ Z-Axis with styling
1080
- * @since 5.0.0
1081
- * @product highcharts
1082
- * @apioption zAxis
1083
- */
1084
-
1085
- /**
1086
- * Whether the navigator and scrollbar should adapt to updated data
1087
- * in the base X axis. When loading data async, as in the demo below,
1088
- * this should be `false`. Otherwise new data will trigger navigator
1089
- * redraw, which will cause unwanted looping. In the demo below, the
1090
- * data in the navigator is set only once. On navigating, only the main
1091
- * chart content is updated.
1092
- *
1093
- * @type {Boolean}
1094
- * @sample {highstock} stock/demo/lazy-loading/ Set to false with async data loading
1095
- * @default true
1096
- * @product highstock
1097
- * @apioption navigator.adaptToUpdatedData
1098
- */
1099
-
1100
- /**
1101
- * An integer identifying the index to use for the base series, or a
1102
- * string representing the id of the series.
1103
- *
1104
- * **Note**: As of Highcharts 5.0, this is now a deprecated option.
1105
- * Prefer [series.showInNavigator](#plotOptions.series.showInNavigator).
1106
- *
1107
- * @type {Mixed}
1108
- * @see [series.showInNavigator](#plotOptions.series.showInNavigator)
1109
- * @deprecated
1110
- * @default 0
1111
- * @product highstock
1112
- * @apioption navigator.baseSeries
1113
- */
1114
-
1115
- /**
1116
- * Enable or disable the navigator.
1117
- *
1118
- * @type {Boolean}
1119
- * @sample {highstock} stock/navigator/enabled/ Disable the navigator
1120
- * @default true
1121
- * @product highstock
1122
- * @apioption navigator.enabled
1123
- */
1124
-
1125
- /**
1126
- * When the chart is inverted, whether to draw the navigator on the
1127
- * opposite side.
1128
- *
1129
- * @type {Boolean}
1130
- * @default false
1131
- * @since 5.0.8
1132
- * @product highstock
1133
- * @apioption navigator.opposite
1134
- */
1135
-
1136
- /**
1137
- * Additional range on the right side of the xAxis. Works similar to
1138
- * `xAxis.maxPadding`, but value is set in milliseconds. Can be set for both
1139
- * main `xAxis` and the navigator's `xAxis`.
1140
- *
1141
- * @type {Number}
1142
- * @default 0
1143
- * @sample {highstock} stock/xaxis/overscroll/ One minute overscroll with live data
1144
- * @since 6.0.0
1145
- * @product highstock
1146
- * @apioption xAxis.overscroll
1147
- */
1148
-
1149
-
1150
-
1151
-
1152
-
1153
-
1154
-
1155
-
1156
-
1157
-
1158
-
1159
-
1160
-
1161
-
1162
-
1163
-
1164
-
1165
-
1166
-
1167
-
1168
-
1169
-
1170
-
1171
-
1172
-
1173
- /**
1174
- * Whether to enable all buttons from the start. By default buttons
1175
- * are only enabled if the corresponding time range exists on the X
1176
- * axis, but enabling all buttons allows for dynamically loading different
1177
- * time ranges.
1178
- *
1179
- * @type {Boolean}
1180
- * @sample {highstock} stock/rangeselector/allbuttonsenabled-true/ All buttons enabled
1181
- * @default false
1182
- * @since 2.0.3
1183
- * @product highstock
1184
- * @apioption rangeSelector.allButtonsEnabled
1185
- */
1186
-
1187
- /**
1188
- * The space in pixels between the buttons in the range selector.
1189
- *
1190
- * @type {Number}
1191
- * @default 0
1192
- * @product highstock
1193
- * @apioption rangeSelector.buttonSpacing
1194
- */
1195
-
1196
- /**
1197
- * Enable or disable the range selector.
1198
- *
1199
- * @type {Boolean}
1200
- * @sample {highstock} stock/rangeselector/enabled/ Disable the range selector
1201
- * @default true
1202
- * @product highstock
1203
- * @apioption rangeSelector.enabled
1204
- */
1205
-
1206
- /**
1207
- * The border color of the date input boxes.
1208
- *
1209
- * @type {Color}
1210
- * @sample {highstock} stock/rangeselector/styling/ Styling the buttons and inputs
1211
- * @default #cccccc
1212
- * @since 1.3.7
1213
- * @product highstock
1214
- * @apioption rangeSelector.inputBoxBorderColor
1215
- */
1216
-
1217
- /**
1218
- * The pixel height of the date input boxes.
1219
- *
1220
- * @type {Number}
1221
- * @sample {highstock} stock/rangeselector/styling/ Styling the buttons and inputs
1222
- * @default 17
1223
- * @since 1.3.7
1224
- * @product highstock
1225
- * @apioption rangeSelector.inputBoxHeight
1226
- */
1227
-
1228
- /**
1229
- * CSS for the container DIV holding the input boxes. Deprecated as
1230
- * of 1.2.5\. Use [inputPosition](#rangeSelector.inputPosition) instead.
1231
- *
1232
- * @type {CSSObject}
1233
- * @deprecated
1234
- * @sample {highstock} stock/rangeselector/styling/ Styling the buttons and inputs
1235
- * @product highstock
1236
- * @apioption rangeSelector.inputBoxStyle
1237
- */
1238
-
1239
- /**
1240
- * The pixel width of the date input boxes.
1241
- *
1242
- * @type {Number}
1243
- * @sample {highstock} stock/rangeselector/styling/ Styling the buttons and inputs
1244
- * @default 90
1245
- * @since 1.3.7
1246
- * @product highstock
1247
- * @apioption rangeSelector.inputBoxWidth
1248
- */
1249
-
1250
- /**
1251
- * The date format in the input boxes when not selected for editing.
1252
- * Defaults to `%b %e, %Y`.
1253
- *
1254
- * @type {String}
1255
- * @sample {highstock} stock/rangeselector/input-format/ Milliseconds in the range selector
1256
- * @default %b %e %Y,
1257
- * @product highstock
1258
- * @apioption rangeSelector.inputDateFormat
1259
- */
1260
-
1261
- /**
1262
- * A custom callback function to parse values entered in the input boxes
1263
- * and return a valid JavaScript time as milliseconds since 1970.
1264
- *
1265
- * @type {Function}
1266
- * @sample {highstock} stock/rangeselector/input-format/ Milliseconds in the range selector
1267
- * @since 1.3.3
1268
- * @product highstock
1269
- * @apioption rangeSelector.inputDateParser
1270
- */
1271
-
1272
- /**
1273
- * The date format in the input boxes when they are selected for editing.
1274
- * This must be a format that is recognized by JavaScript Date.parse.
1275
- *
1276
- * @type {String}
1277
- * @sample {highstock} stock/rangeselector/input-format/ Milliseconds in the range selector
1278
- * @default %Y-%m-%d
1279
- * @product highstock
1280
- * @apioption rangeSelector.inputEditDateFormat
1281
- */
1282
-
1283
- /**
1284
- * Enable or disable the date input boxes. Defaults to enabled when
1285
- * there is enough space, disabled if not (typically mobile).
1286
- *
1287
- * @type {Boolean}
1288
- * @sample {highstock} stock/rangeselector/input-datepicker/ Extending the input with a jQuery UI datepicker
1289
- * @product highstock
1290
- * @apioption rangeSelector.inputEnabled
1291
- */
1292
-
1293
- /**
1294
- * CSS for the HTML inputs in the range selector.
1295
- *
1296
- * In styled mode, the inputs are styled by the `.highcharts-range-input text`
1297
- * rule in SVG mode, and `input.highcharts-range-selector` when active.
1298
- *
1299
- * @type {CSSObject}
1300
- * @sample {highstock} stock/rangeselector/styling/ Styling the buttons and inputs
1301
- * @product highstock
1302
- * @apioption rangeSelector.inputStyle
1303
- */
1304
-
1305
- /**
1306
- * The index of the button to appear pre-selected.
1307
- *
1308
- * @type {Number}
1309
- * @default undefined
1310
- * @product highstock
1311
- * @apioption rangeSelector.selected
1312
- */
1313
-
1314
- /**
1315
- * An array of configuration objects for the buttons.
1316
- *
1317
- * Defaults to
1318
- *
1319
- * <pre>buttons: [{
1320
- * type: 'month',
1321
- * count: 1,
1322
- * text: '1m'
1323
- * }, {
1324
- * type: 'month',
1325
- * count: 3,
1326
- * text: '3m'
1327
- * }, {
1328
- * type: 'month',
1329
- * count: 6,
1330
- * text: '6m'
1331
- * }, {
1332
- * type: 'ytd',
1333
- * text: 'YTD'
1334
- * }, {
1335
- * type: 'year',
1336
- * count: 1,
1337
- * text: '1y'
1338
- * }, {
1339
- * type: 'all',
1340
- * text: 'All'
1341
- * }]</pre>
1342
- *
1343
- * @type {Array<Object>}
1344
- * @sample {highstock} stock/rangeselector/datagrouping/ Data grouping by buttons
1345
- * @product highstock
1346
- * @apioption rangeSelector.buttons
1347
- */
1348
-
1349
- /**
1350
- * How many units of the defined type the button should span. If `type`
1351
- * is "month" and `count` is 3, the button spans three months.
1352
- *
1353
- * @type {Number}
1354
- * @default 1
1355
- * @product highstock
1356
- * @apioption rangeSelector.buttons.count
1357
- */
1358
-
1359
- /**
1360
- * Fires when clicking on the rangeSelector button. One parameter, event,
1361
- * is passed to the function, containing common event information.
1362
- * <pre>
1363
- * click: function(e) {
1364
- * console.log(this);
1365
- * }
1366
- * </pre>
1367
- *
1368
- * Return false to stop default button's click action.
1369
- *
1370
- * @type {Function}
1371
- * @default undefined
1372
- * @product highstock
1373
- * @apioption rangeSelector.buttons.events.click
1374
- * @sample {highstock} stock/rangeselector/button-click/ Click event on the button
1375
- */
1376
-
1377
- /**
1378
- * Additional range (in milliseconds) added to the end of the calculated time span.
1379
- *
1380
- * @type {Number}
1381
- * @default 0
1382
- * @sample {highstock} stock/rangeselector/min-max-offsets/ Button offsets
1383
- * @product highstock
1384
- * @since 6.0.0
1385
- * @apioption rangeSelector.buttons.offsetMax
1386
- */
1387
-
1388
- /**
1389
- * Additional range (in milliseconds) added to the start of the calculated time span.
1390
- *
1391
- * @type {Number}
1392
- * @default 0
1393
- * @sample {highstock} stock/rangeselector/min-max-offsets/ Button offsets
1394
- * @product highstock
1395
- * @since 6.0.0
1396
- * @apioption rangeSelector.buttons.offsetMin
1397
- */
1398
-
1399
- /**
1400
- * A custom data grouping object for each button.
1401
- *
1402
- * @type {Object}
1403
- * @extends plotOptions.series.dataGrouping
1404
- * @see [series.dataGrouping](#plotOptions.series.dataGrouping)
1405
- * @sample {highstock} stock/rangeselector/datagrouping/ Data grouping by range selector buttons
1406
- * @product highstock
1407
- * @apioption rangeSelector.buttons.dataGrouping
1408
- */
1409
-
1410
- /**
1411
- * The text for the button itself.
1412
- *
1413
- * @type {String}
1414
- * @product highstock
1415
- * @apioption rangeSelector.buttons.text
1416
- */
1417
-
1418
- /**
1419
- * Defined the time span for the button. Can be one of `millisecond`,
1420
- * `second`, `minute`, `hour`, `day`, `week`, `month`, `ytd`, `all`.
1421
- *
1422
- * @validvalue ["millisecond", "second", "minute", "day", "week", "month", "ytd", "all"]
1423
- * @type {String}
1424
- * @product highstock
1425
- * @apioption rangeSelector.buttons.type
1426
- */
1427
-
1428
- /**
1429
- * Enable or disable the scrollbar.
1430
- *
1431
- * @type {Boolean}
1432
- * @sample {highstock} stock/scrollbar/enabled/ Disable the scrollbar, only use navigator
1433
- * @default true
1434
- * @product highstock
1435
- * @apioption scrollbar.enabled
1436
- */
1437
-
1438
- /**
1439
- * Whether to show or hide the scrollbar when the scrolled content is
1440
- * zoomed out to it full extent.
1441
- *
1442
- * @type {Boolean}
1443
- * @default true
1444
- * @product highstock
1445
- * @apioption scrollbar.showFull
1446
- */
1447
-
1448
- /**
1449
- * The corner radius of the border of the scrollbar track.
1450
- *
1451
- * @type {Number}
1452
- * @sample {highstock} stock/scrollbar/style/ Scrollbar styling
1453
- * @default 0
1454
- * @product highstock
1455
- * @apioption scrollbar.trackBorderRadius
1456
- */
1457
-
1458
-
1459
-
1460
-
1461
-
1462
- /**
1463
- * How many decimals to show for the `point.change` value when the
1464
- * `series.compare` option is set. This is overridable in each series' tooltip
1465
- * options object. The default is to preserve all decimals.
1466
- *
1467
- * @type {Number}
1468
- * @since 1.0.1
1469
- * @product highstock
1470
- * @apioption tooltip.changeDecimals
1471
- */
1472
-
1473
- /**
1474
- * In an ordinal axis, the points are equally spaced in the chart regardless
1475
- * of the actual time or x distance between them. This means that missing
1476
- * data for nights or weekends will not take up space in the chart.
1477
- *
1478
- * @type {Boolean}
1479
- * @sample {highstock} stock/xaxis/ordinal-true/ True by default
1480
- * @sample {highstock} stock/xaxis/ordinal-false/ False
1481
- * @default true
1482
- * @since 1.1
1483
- * @product highstock
1484
- * @apioption xAxis.ordinal
1485
- */
1486
-
1487
- /**
1488
- * The zoomed range to display when only defining one or none of `min`
1489
- * or `max`. For example, to show the latest month, a range of one month
1490
- * can be set.
1491
- *
1492
- * @type {Number}
1493
- * @sample {highstock} stock/xaxis/range/ Setting a zoomed range when the rangeSelector is disabled
1494
- * @default undefined
1495
- * @product highstock
1496
- * @apioption xAxis.range
1497
- */
1498
-
1499
- /**
1500
- * A label on the axis next to the crosshair.
1501
- *
1502
- * In styled mode, the label is styled with the `.highcharts-crosshair-label` class.
1503
- *
1504
- * @type {Object}
1505
- * @sample {highstock} stock/xaxis/crosshair-label/ Crosshair labels
1506
- * @sample {highstock} highcharts/css/crosshair-label/ Style mode
1507
- * @since 2.1
1508
- * @product highstock
1509
- * @apioption xAxis.crosshair.label
1510
- */
1511
-
1512
- /**
1513
- * Alignment of the label compared to the axis. Defaults to `left` for
1514
- * right-side axes, `right` for left-side axes and `center` for horizontal
1515
- * axes.
1516
- *
1517
- * @type {String}
1518
- * @since 2.1
1519
- * @product highstock
1520
- * @apioption xAxis.crosshair.label.align
1521
- */
1522
-
1523
- /**
1524
- * The background color for the label. Defaults to the related series
1525
- * color, or `#666666` if that is not available.
1526
- *
1527
- * @type {Color}
1528
- * @since 2.1
1529
- * @product highstock
1530
- * @apioption xAxis.crosshair.label.backgroundColor
1531
- */
1532
-
1533
- /**
1534
- * The border color for the crosshair label
1535
- *
1536
- * @type {Color}
1537
- * @since 2.1
1538
- * @product highstock
1539
- * @apioption xAxis.crosshair.label.borderColor
1540
- */
1541
-
1542
- /**
1543
- * The border corner radius of the crosshair label.
1544
- *
1545
- * @type {Number}
1546
- * @default 3
1547
- * @since 2.1.10
1548
- * @product highstock
1549
- * @apioption xAxis.crosshair.label.borderRadius
1550
- */
1551
-
1552
- /**
1553
- * The border width for the crosshair label.
1554
- *
1555
- * @type {Number}
1556
- * @default 0
1557
- * @since 2.1
1558
- * @product highstock
1559
- * @apioption xAxis.crosshair.label.borderWidth
1560
- */
1561
-
1562
- /**
1563
- * A format string for the crosshair label. Defaults to `{value}` for
1564
- * numeric axes and `{value:%b %d, %Y}` for datetime axes.
1565
- *
1566
- * @type {String}
1567
- * @since 2.1
1568
- * @product highstock
1569
- * @apioption xAxis.crosshair.label.format
1570
- */
1571
-
1572
- /**
1573
- * Formatter function for the label text.
1574
- *
1575
- * @type {Function}
1576
- * @since 2.1
1577
- * @product highstock
1578
- * @apioption xAxis.crosshair.label.formatter
1579
- */
1580
-
1581
- /**
1582
- * Padding inside the crosshair label.
1583
- *
1584
- * @type {Number}
1585
- * @default 8
1586
- * @since 2.1
1587
- * @product highstock
1588
- * @apioption xAxis.crosshair.label.padding
1589
- */
1590
-
1591
- /**
1592
- * The shape to use for the label box.
1593
- *
1594
- * @type {String}
1595
- * @default callout
1596
- * @since 2.1
1597
- * @product highstock
1598
- * @apioption xAxis.crosshair.label.shape
1599
- */
1600
-
1601
- /**
1602
- * Text styles for the crosshair label.
1603
- *
1604
- * @type {CSSObject}
1605
- * @default { "color": "white", "fontWeight": "normal", "fontSize": "11px", "textAlign": "center" }
1606
- * @since 2.1
1607
- * @product highstock
1608
- * @apioption xAxis.crosshair.label.style
1609
- */
1610
-
1611
- /**
1612
- * Horizontal axis only. When `staggerLines` is not set, `maxStaggerLines`
1613
- * defines how many lines the axis is allowed to add to automatically
1614
- * avoid overlapping X labels. Set to `1` to disable overlap detection.
1615
- *
1616
- * @type {Number}
1617
- * @deprecated
1618
- * @default 5
1619
- * @since 1.3.3
1620
- * @product highstock highmaps
1621
- * @apioption xAxis.labels.maxStaggerLines
1622
- */
1623
-
1624
- /**
1625
- * The height of the Y axis. If it's a number, it is interpreted as
1626
- * pixels.
1627
- *
1628
- * Since Highstock 2: If it's a percentage string, it is interpreted
1629
- * as percentages of the total plot height.
1630
- *
1631
- * @type {Number|String}
1632
- * @see [yAxis.top](#yAxis.top)
1633
- * @sample {highstock} stock/demo/candlestick-and-volume/ Percentage height panes
1634
- * @default null
1635
- * @product highstock
1636
- * @apioption yAxis.height
1637
- */
1638
-
1639
- /**
1640
- * A soft maximum for the axis. If the series data maximum is less
1641
- * than this, the axis will stay at this maximum, but if the series
1642
- * data maximum is higher, the axis will flex to show all data.
1643
- *
1644
- * @type {Number}
1645
- * @sample highcharts/yaxis/softmin-softmax/ Soft min and max
1646
- * @since 5.0.1
1647
- * @product highcharts highstock
1648
- * @apioption yAxis.softMax
1649
- */
1650
-
1651
- /**
1652
- * A soft minimum for the axis. If the series data minimum is greater
1653
- * than this, the axis will stay at this minimum, but if the series
1654
- * data minimum is lower, the axis will flex to show all data.
1655
- *
1656
- * @type {Number}
1657
- * @sample highcharts/yaxis/softmin-softmax/ Soft min and max
1658
- * @since 5.0.1
1659
- * @product highcharts highstock
1660
- * @apioption yAxis.softMin
1661
- */
1662
-
1663
- /**
1664
- * The top position of the Y axis. If it's a number, it is interpreted
1665
- * as pixel position relative to the chart.
1666
- *
1667
- * Since Highstock 2: If it's a percentage string, it is interpreted
1668
- * as percentages of the plot height, offset from plot area top.
1669
- *
1670
- * @type {Number|String}
1671
- * @see [yAxis.height](#yAxis.height)
1672
- * @sample {highstock} stock/demo/candlestick-and-volume/ Percentage height panes
1673
- * @default null
1674
- * @product highstock
1675
- * @apioption yAxis.top
1676
- */
1677
-
1678
- /**
1679
- * An optional scrollbar to display on the Y axis in response to limiting
1680
- * the minimum an maximum of the axis values.
1681
- *
1682
- * In styled mode, all the presentational options for the scrollbar
1683
- * are replaced by the classes `.highcharts-scrollbar-thumb`, `.highcharts-scrollbar-arrow`, `.highcharts-scrollbar-button`, `.highcharts-scrollbar-rifles` and `.highcharts-scrollbar-track`.
1684
- *
1685
- * @extends scrollbar
1686
- * @excluding height
1687
- * @sample {highstock} stock/yaxis/scrollbar/ Scrollbar on the Y axis
1688
- * @since 4.2.6
1689
- * @product highstock
1690
- * @apioption yAxis.scrollbar
1691
- */
1692
-
1693
- /**
1694
- * Enable the scrollbar on the Y axis.
1695
- *
1696
- * @type {Boolean}
1697
- * @sample {highstock} stock/yaxis/scrollbar/ Enabled on Y axis
1698
- * @default false
1699
- * @since 4.2.6
1700
- * @product highstock
1701
- * @apioption yAxis.scrollbar.enabled
1702
- */
1703
-
1704
- /**
1705
- * Pixel margin between the scrollbar and the axis elements.
1706
- *
1707
- * @type {Number}
1708
- * @default 10
1709
- * @since 4.2.6
1710
- * @product highstock
1711
- * @apioption yAxis.scrollbar.margin
1712
- */
1713
-
1714
- /**
1715
- * Whether to show the scrollbar when it is fully zoomed out at max
1716
- * range. Setting it to `false` on the Y axis makes the scrollbar stay
1717
- * hidden until the user zooms in, like common in browsers.
1718
- *
1719
- * @type {Boolean}
1720
- * @default true
1721
- * @since 4.2.6
1722
- * @product highstock
1723
- * @apioption yAxis.scrollbar.showFull
1724
- */
1725
-
1726
- /**
1727
- * The width of a vertical scrollbar or height of a horizontal scrollbar.
1728
- * Defaults to 20 on touch devices.
1729
- *
1730
- * @type {Number}
1731
- * @default 14
1732
- * @since 4.2.6
1733
- * @product highstock
1734
- * @apioption yAxis.scrollbar.size
1735
- */
1736
-
1737
- /**
1738
- * Z index of the scrollbar elements.
1739
- *
1740
- * @type {Number}
1741
- * @default 3
1742
- * @since 4.2.6
1743
- * @product highstock
1744
- * @apioption yAxis.scrollbar.zIndex
1745
- */
1746
-
1747
- /**
1748
- * Default `mapData` for all series. If set to a string, it functions
1749
- * as an index into the `Highcharts.maps` array. Otherwise it is interpreted
1750
- * as map data.
1751
- *
1752
- * @type {String|Array<Object>}
1753
- * @see [mapData](#series.map.mapData)
1754
- * @default undefined
1755
- * @since 5.0.0
1756
- * @product highmaps
1757
- * @apioption chart.map
1758
- */
1759
-
1760
- /**
1761
- * Set lat/lon transformation definitions for the chart. If not defined,
1762
- * these are extracted from the map data.
1763
- *
1764
- * @type {Object}
1765
- * @default undefined
1766
- * @since 5.0.0
1767
- * @product highmaps
1768
- * @apioption chart.mapTransforms
1769
- */
1770
-
1771
-
1772
-
1773
-
1774
-
1775
-
1776
-
1777
-
1778
-
1779
-
1780
-
1781
-
1782
-
1783
-
1784
-
1785
-
1786
-
1787
-
1788
-
1789
-
1790
-
1791
-
1792
-
1793
- /**
1794
- * Credits for map source to be concatenated with conventional credit
1795
- * text. By default this is a format string that collects copyright
1796
- * information from the map if available.
1797
- *
1798
- * @type {String}
1799
- * @see [mapTextFull](#credits.mapTextFull), [text](#credits.text)
1800
- * @default \u00a9 <a href="{geojson.copyrightUrl}">{geojson.copyrightShort}</a>
1801
- * @since 4.2.2
1802
- * @product highmaps
1803
- * @apioption credits.mapText
1804
- */
1805
-
1806
- /**
1807
- * Detailed credits for map source to be displayed on hover of credits
1808
- * text. By default this is a format string that collects copyright
1809
- * information from the map if available.
1810
- *
1811
- * @type {String}
1812
- * @see [mapText](#credits.mapText), [text](#credits.text)
1813
- * @default {geojson.copyright}
1814
- * @since 4.2.2
1815
- * @product highmaps
1816
- * @apioption credits.mapTextFull
1817
- */
1818
-
1819
- /**
1820
- * The title appearing on hovering the zoom in button. The text itself
1821
- * defaults to "+" and can be changed in the button options.
1822
- *
1823
- * @type {String}
1824
- * @default Zoom in
1825
- * @product highmaps
1826
- * @apioption lang.zoomIn
1827
- */
1828
-
1829
- /**
1830
- * The title appearing on hovering the zoom out button. The text itself
1831
- * defaults to "-" and can be changed in the button options.
1832
- *
1833
- * @type {String}
1834
- * @default Zoom out
1835
- * @product highmaps
1836
- * @apioption lang.zoomOut
1837
- */
1838
-
1839
- /**
1840
- * Whether to enable navigation buttons. By default it inherits the
1841
- * [enabled](#mapNavigation.enabled) setting.
1842
- *
1843
- * @type {Boolean}
1844
- * @product highmaps
1845
- * @apioption mapNavigation.enableButtons
1846
- */
1847
-
1848
- /**
1849
- * Enables zooming in on an area on double clicking in the map. By default
1850
- * it inherits the [enabled](#mapNavigation.enabled) setting.
1851
- *
1852
- * @type {Boolean}
1853
- * @product highmaps
1854
- * @apioption mapNavigation.enableDoubleClickZoom
1855
- */
1856
-
1857
- /**
1858
- * Whether to zoom in on an area when that area is double clicked.
1859
- *
1860
- * @type {Boolean}
1861
- * @sample {highmaps} maps/mapnavigation/doubleclickzoomto/ Enable double click zoom to
1862
- * @default false
1863
- * @product highmaps
1864
- * @apioption mapNavigation.enableDoubleClickZoomTo
1865
- */
1866
-
1867
- /**
1868
- * Enables zooming by mouse wheel. By default it inherits the [enabled](
1869
- * #mapNavigation.enabled) setting.
1870
- *
1871
- * @type {Boolean}
1872
- * @product highmaps
1873
- * @apioption mapNavigation.enableMouseWheelZoom
1874
- */
1875
-
1876
- /**
1877
- * Whether to enable multitouch zooming. Note that if the chart covers
1878
- * the viewport, this prevents the user from using multitouch and touchdrag
1879
- * on the web page, so you should make sure the user is not trapped
1880
- * inside the chart. By default it inherits the [enabled](
1881
- * #mapNavigation.enabled) setting.
1882
- *
1883
- * @type {Boolean}
1884
- * @product highmaps
1885
- * @apioption mapNavigation.enableTouchZoom
1886
- */
1887
-
1888
- /**
1889
- * Whether to enable map navigation. The default is not to enable navigation,
1890
- * as many choropleth maps are simple and don't need it. Additionally,
1891
- * when touch zoom and mousewheel zoom is enabled, it breaks the default
1892
- * behaviour of these interactions in the website, and the implementer
1893
- * should be aware of this.
1894
- *
1895
- * Individual interactions can be enabled separately, namely buttons,
1896
- * multitouch zoom, double click zoom, double click zoom to element
1897
- * and mousewheel zoom.
1898
- *
1899
- * @type {Boolean}
1900
- * @default false
1901
- * @product highmaps
1902
- * @apioption mapNavigation.enabled
1903
- */
1904
-
1905
- /**
1906
- * Options for the zoom in button
1907
- *
1908
- * @type {Object}
1909
- * @extends mapNavigation.buttonOptions
1910
- * @product highmaps
1911
- * @apioption mapNavigation.buttons.
1912
- */
1913
-
1914
-
1915
-
1916
-
1917
-
1918
-
1919
-
1920
-
1921
-
1922
-
1923
-
1924
-
1925
-
1926
-
1927
-
1928
-
1929
-
1930
-
1931
-
1932
-
1933
-
1934
-
1935
-
1936
-
1937
-
1938
-
1939
-
1940
-
1941
-
1942
-
1943
-
1944
-
1945
-
1946
-
1947
-
1948
-
1949
-
1950
-
1951
-
1952
-
1953
-
1954
-
1955
-
1956
1