aw-highstock_rails 7.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (697) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.travis.yml +7 -0
  4. data/CODE_OF_CONDUCT.md +74 -0
  5. data/Gemfile +6 -0
  6. data/Gemfile.lock +22 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +53 -0
  9. data/Rakefile +10 -0
  10. data/aw-highstock_rails.gemspec +28 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +8 -0
  13. data/lib/aw/highstock_rails.rb +9 -0
  14. data/lib/aw/highstock_rails/version.rb +5 -0
  15. data/vendor/assets/javascripts/highstock/css/annotations/popup.css +229 -0
  16. data/vendor/assets/javascripts/highstock/css/annotations/popup.scss +235 -0
  17. data/vendor/assets/javascripts/highstock/css/highcharts.css +890 -0
  18. data/vendor/assets/javascripts/highstock/css/highcharts.scss +788 -0
  19. data/vendor/assets/javascripts/highstock/css/stocktools/gui.css +268 -0
  20. data/vendor/assets/javascripts/highstock/css/stocktools/gui.scss +270 -0
  21. data/vendor/assets/javascripts/highstock/css/themes/dark-unica.css +951 -0
  22. data/vendor/assets/javascripts/highstock/css/themes/dark-unica.scss +122 -0
  23. data/vendor/assets/javascripts/highstock/css/themes/grid-light.css +904 -0
  24. data/vendor/assets/javascripts/highstock/css/themes/grid-light.scss +33 -0
  25. data/vendor/assets/javascripts/highstock/css/themes/sand-signika.css +920 -0
  26. data/vendor/assets/javascripts/highstock/css/themes/sand-signika.scss +74 -0
  27. data/vendor/assets/javascripts/highstock/es-modules/annotations/ControlPoint.js +130 -0
  28. data/vendor/assets/javascripts/highstock/es-modules/annotations/MockPoint.js +415 -0
  29. data/vendor/assets/javascripts/highstock/es-modules/annotations/annotations.src.js +1231 -0
  30. data/vendor/assets/javascripts/highstock/es-modules/annotations/controllable/ControllableCircle.js +92 -0
  31. data/vendor/assets/javascripts/highstock/es-modules/annotations/controllable/ControllableImage.js +101 -0
  32. data/vendor/assets/javascripts/highstock/es-modules/annotations/controllable/ControllableLabel.js +452 -0
  33. data/vendor/assets/javascripts/highstock/es-modules/annotations/controllable/ControllablePath.js +175 -0
  34. data/vendor/assets/javascripts/highstock/es-modules/annotations/controllable/ControllableRect.js +93 -0
  35. data/vendor/assets/javascripts/highstock/es-modules/annotations/controllable/controllableMixin.js +411 -0
  36. data/vendor/assets/javascripts/highstock/es-modules/annotations/controllable/markerMixin.js +214 -0
  37. data/vendor/assets/javascripts/highstock/es-modules/annotations/eventEmitterMixin.js +271 -0
  38. data/vendor/assets/javascripts/highstock/es-modules/annotations/navigationBindings.js +1283 -0
  39. data/vendor/assets/javascripts/highstock/es-modules/annotations/popup.js +1069 -0
  40. data/vendor/assets/javascripts/highstock/es-modules/annotations/types/CrookedLine.js +191 -0
  41. data/vendor/assets/javascripts/highstock/es-modules/annotations/types/ElliottWave.js +76 -0
  42. data/vendor/assets/javascripts/highstock/es-modules/annotations/types/Fibonacci.js +247 -0
  43. data/vendor/assets/javascripts/highstock/es-modules/annotations/types/InfinityLine.js +185 -0
  44. data/vendor/assets/javascripts/highstock/es-modules/annotations/types/Measure.js +928 -0
  45. data/vendor/assets/javascripts/highstock/es-modules/annotations/types/Pitchfork.js +203 -0
  46. data/vendor/assets/javascripts/highstock/es-modules/annotations/types/Tunnel.js +242 -0
  47. data/vendor/assets/javascripts/highstock/es-modules/annotations/types/VerticalLine.js +157 -0
  48. data/vendor/assets/javascripts/highstock/es-modules/error-messages.js +128 -0
  49. data/vendor/assets/javascripts/highstock/es-modules/error.js +1 -0
  50. data/vendor/assets/javascripts/highstock/es-modules/indicators/acceleration-bands.src.js +199 -0
  51. data/vendor/assets/javascripts/highstock/es-modules/indicators/accumulation-distribution.src.js +129 -0
  52. data/vendor/assets/javascripts/highstock/es-modules/indicators/ao.src.js +206 -0
  53. data/vendor/assets/javascripts/highstock/es-modules/indicators/apo.src.js +148 -0
  54. data/vendor/assets/javascripts/highstock/es-modules/indicators/aroon-oscillator.src.js +128 -0
  55. data/vendor/assets/javascripts/highstock/es-modules/indicators/aroon.src.js +173 -0
  56. data/vendor/assets/javascripts/highstock/es-modules/indicators/atr.src.js +151 -0
  57. data/vendor/assets/javascripts/highstock/es-modules/indicators/bollinger-bands.src.js +209 -0
  58. data/vendor/assets/javascripts/highstock/es-modules/indicators/cci.src.js +131 -0
  59. data/vendor/assets/javascripts/highstock/es-modules/indicators/chaikin.src.js +167 -0
  60. data/vendor/assets/javascripts/highstock/es-modules/indicators/cmf.src.js +246 -0
  61. data/vendor/assets/javascripts/highstock/es-modules/indicators/dema.src.js +191 -0
  62. data/vendor/assets/javascripts/highstock/es-modules/indicators/dpo.src.js +138 -0
  63. data/vendor/assets/javascripts/highstock/es-modules/indicators/ema.src.js +166 -0
  64. data/vendor/assets/javascripts/highstock/es-modules/indicators/ichimoku-kinko-hyo.src.js +850 -0
  65. data/vendor/assets/javascripts/highstock/es-modules/indicators/indicators.src.js +425 -0
  66. data/vendor/assets/javascripts/highstock/es-modules/indicators/keltner-channels.src.js +193 -0
  67. data/vendor/assets/javascripts/highstock/es-modules/indicators/macd.src.js +417 -0
  68. data/vendor/assets/javascripts/highstock/es-modules/indicators/mfi.src.js +198 -0
  69. data/vendor/assets/javascripts/highstock/es-modules/indicators/momentum.src.js +119 -0
  70. data/vendor/assets/javascripts/highstock/es-modules/indicators/natr.src.js +74 -0
  71. data/vendor/assets/javascripts/highstock/es-modules/indicators/pivot-points.src.js +360 -0
  72. data/vendor/assets/javascripts/highstock/es-modules/indicators/ppo.src.js +152 -0
  73. data/vendor/assets/javascripts/highstock/es-modules/indicators/price-channel.src.js +149 -0
  74. data/vendor/assets/javascripts/highstock/es-modules/indicators/price-envelopes.src.js +251 -0
  75. data/vendor/assets/javascripts/highstock/es-modules/indicators/psar.src.js +307 -0
  76. data/vendor/assets/javascripts/highstock/es-modules/indicators/regressions.src.js +427 -0
  77. data/vendor/assets/javascripts/highstock/es-modules/indicators/roc.src.js +149 -0
  78. data/vendor/assets/javascripts/highstock/es-modules/indicators/rsi.src.js +163 -0
  79. data/vendor/assets/javascripts/highstock/es-modules/indicators/stochastic.src.js +193 -0
  80. data/vendor/assets/javascripts/highstock/es-modules/indicators/supertrend.src.js +544 -0
  81. data/vendor/assets/javascripts/highstock/es-modules/indicators/tema.src.js +247 -0
  82. data/vendor/assets/javascripts/highstock/es-modules/indicators/trix.src.js +96 -0
  83. data/vendor/assets/javascripts/highstock/es-modules/indicators/volume-by-price.src.js +671 -0
  84. data/vendor/assets/javascripts/highstock/es-modules/indicators/vwap.src.js +189 -0
  85. data/vendor/assets/javascripts/highstock/es-modules/indicators/williams-r.src.js +128 -0
  86. data/vendor/assets/javascripts/highstock/es-modules/indicators/wma.src.js +146 -0
  87. data/vendor/assets/javascripts/highstock/es-modules/indicators/zigzag.src.js +221 -0
  88. data/vendor/assets/javascripts/highstock/es-modules/masters/highcharts-3d.src.js +17 -0
  89. data/vendor/assets/javascripts/highstock/es-modules/masters/highcharts-more.src.js +22 -0
  90. data/vendor/assets/javascripts/highstock/es-modules/masters/highstock.src.js +11 -0
  91. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/acceleration-bands.src.js +11 -0
  92. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/accumulation-distribution.src.js +11 -0
  93. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/ao.src.js +11 -0
  94. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/apo.src.js +11 -0
  95. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/aroon-oscillator.src.js +11 -0
  96. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/aroon.src.js +11 -0
  97. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/atr.src.js +11 -0
  98. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/bollinger-bands.src.js +11 -0
  99. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/cci.src.js +11 -0
  100. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/chaikin.src.js +11 -0
  101. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/cmf.src.js +10 -0
  102. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/dema.src.js +11 -0
  103. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/dpo.src.js +11 -0
  104. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/ema.src.js +11 -0
  105. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +11 -0
  106. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/indicators-all.src.js +49 -0
  107. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/indicators.src.js +11 -0
  108. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/keltner-channels.src.js +11 -0
  109. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/macd.src.js +11 -0
  110. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/mfi.src.js +11 -0
  111. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/momentum.src.js +11 -0
  112. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/natr.src.js +11 -0
  113. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/pivot-points.src.js +11 -0
  114. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/ppo.src.js +11 -0
  115. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/price-channel.src.js +11 -0
  116. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/price-envelopes.src.js +11 -0
  117. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/psar.src.js +11 -0
  118. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/regressions.src.js +11 -0
  119. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/roc.src.js +11 -0
  120. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/rsi.src.js +11 -0
  121. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/stochastic.src.js +11 -0
  122. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/supertrend.src.js +11 -0
  123. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/tema.src.js +11 -0
  124. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/trix.src.js +11 -0
  125. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/volume-by-price.src.js +11 -0
  126. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/vwap.src.js +11 -0
  127. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/williams-r.src.js +11 -0
  128. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/wma.src.js +11 -0
  129. data/vendor/assets/javascripts/highstock/es-modules/masters/indicators/zigzag.src.js +11 -0
  130. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/accessibility.src.js +13 -0
  131. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/annotations-advanced.src.js +20 -0
  132. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/annotations.src.js +12 -0
  133. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/arrow-symbols.src.js +10 -0
  134. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/boost-canvas.src.js +11 -0
  135. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/boost.src.js +11 -0
  136. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/bullet.src.js +11 -0
  137. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/current-date-indicator.src.js +10 -0
  138. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/cylinder.src.js +10 -0
  139. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/data.src.js +10 -0
  140. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/datagrouping.src.js +12 -0
  141. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/debugger.src.js +13 -0
  142. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/dependency-wheel.src.js +10 -0
  143. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/drag-panes.src.js +11 -0
  144. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/draggable-points.src.js +9 -0
  145. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/drilldown.src.js +10 -0
  146. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/export-data.src.js +10 -0
  147. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/exporting.src.js +10 -0
  148. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/full-screen.src.js +11 -0
  149. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/funnel.src.js +10 -0
  150. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/grid-axis.src.js +10 -0
  151. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/heatmap.src.js +11 -0
  152. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/histogram-bellcurve.src.js +11 -0
  153. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/item-series.src.js +11 -0
  154. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/networkgraph.src.js +10 -0
  155. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/no-data-to-display.src.js +11 -0
  156. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/offline-exporting.src.js +10 -0
  157. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/oldie-polyfills.src.js +11 -0
  158. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/oldie.src.js +11 -0
  159. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/overlapping-datalabels.src.js +9 -0
  160. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/parallel-coordinates.src.js +11 -0
  161. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/pareto.src.js +11 -0
  162. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/pathfinder.src.js +10 -0
  163. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/pattern-fill.src.js +11 -0
  164. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/price-indicator.src.js +11 -0
  165. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/sankey.src.js +10 -0
  166. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/series-label.src.js +9 -0
  167. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/solid-gauge.src.js +10 -0
  168. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/sonification.src.js +12 -0
  169. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/static-scale.src.js +10 -0
  170. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/stock-tools.src.js +12 -0
  171. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/stock.src.js +19 -0
  172. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/streamgraph.src.js +10 -0
  173. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/sunburst.src.js +10 -0
  174. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/tilemap.src.js +10 -0
  175. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/timeline.src.js +11 -0
  176. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/treegrid.src.js +10 -0
  177. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/treemap.src.js +10 -0
  178. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/variable-pie.src.js +11 -0
  179. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/variwide.src.js +10 -0
  180. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/vector.src.js +10 -0
  181. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/venn.src.js +10 -0
  182. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/windbarb.src.js +10 -0
  183. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/wordcloud.src.js +10 -0
  184. data/vendor/assets/javascripts/highstock/es-modules/masters/modules/xrange.src.js +10 -0
  185. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/avocado.js +9 -0
  186. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/avocado.src.js +9 -0
  187. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/dark-blue.src.js +9 -0
  188. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/dark-green.src.js +9 -0
  189. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/dark-unica.src.js +9 -0
  190. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/gray.src.js +9 -0
  191. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/grid-light.src.js +9 -0
  192. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/grid.src.js +9 -0
  193. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/sand-signika.src.js +9 -0
  194. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/skies.src.js +9 -0
  195. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/sunset.js +9 -0
  196. data/vendor/assets/javascripts/highstock/es-modules/masters/themes/sunset.src.js +9 -0
  197. data/vendor/assets/javascripts/highstock/es-modules/mixins/ajax.js +123 -0
  198. data/vendor/assets/javascripts/highstock/es-modules/mixins/centered-series.js +116 -0
  199. data/vendor/assets/javascripts/highstock/es-modules/mixins/derived-series.js +150 -0
  200. data/vendor/assets/javascripts/highstock/es-modules/mixins/download-url.js +103 -0
  201. data/vendor/assets/javascripts/highstock/es-modules/mixins/draw-point.js +51 -0
  202. data/vendor/assets/javascripts/highstock/es-modules/mixins/geometry-circles.js +300 -0
  203. data/vendor/assets/javascripts/highstock/es-modules/mixins/geometry.js +50 -0
  204. data/vendor/assets/javascripts/highstock/es-modules/mixins/indicator-required.js +49 -0
  205. data/vendor/assets/javascripts/highstock/es-modules/mixins/multipe-lines.js +223 -0
  206. data/vendor/assets/javascripts/highstock/es-modules/mixins/navigation.js +59 -0
  207. data/vendor/assets/javascripts/highstock/es-modules/mixins/nodes.js +76 -0
  208. data/vendor/assets/javascripts/highstock/es-modules/mixins/on-series.js +167 -0
  209. data/vendor/assets/javascripts/highstock/es-modules/mixins/polygon.js +293 -0
  210. data/vendor/assets/javascripts/highstock/es-modules/mixins/reduce-array.js +53 -0
  211. data/vendor/assets/javascripts/highstock/es-modules/mixins/tree-series.js +256 -0
  212. data/vendor/assets/javascripts/highstock/es-modules/modules/a11y-i18n.src.js +524 -0
  213. data/vendor/assets/javascripts/highstock/es-modules/modules/annotations-legacy.src.js +1951 -0
  214. data/vendor/assets/javascripts/highstock/es-modules/modules/bellcurve.src.js +173 -0
  215. data/vendor/assets/javascripts/highstock/es-modules/modules/boost-canvas.src.js +732 -0
  216. data/vendor/assets/javascripts/highstock/es-modules/modules/boost.src.js +3730 -0
  217. data/vendor/assets/javascripts/highstock/es-modules/modules/bullet.src.js +361 -0
  218. data/vendor/assets/javascripts/highstock/es-modules/modules/cylinder.src.js +389 -0
  219. data/vendor/assets/javascripts/highstock/es-modules/modules/data.src.js +2417 -0
  220. data/vendor/assets/javascripts/highstock/es-modules/modules/debugger.src.js +109 -0
  221. data/vendor/assets/javascripts/highstock/es-modules/modules/dependency-wheel.src.js +199 -0
  222. data/vendor/assets/javascripts/highstock/es-modules/modules/drag-panes.src.js +624 -0
  223. data/vendor/assets/javascripts/highstock/es-modules/modules/draggable-points.src.js +2625 -0
  224. data/vendor/assets/javascripts/highstock/es-modules/modules/drilldown.src.js +1300 -0
  225. data/vendor/assets/javascripts/highstock/es-modules/modules/export-data.src.js +983 -0
  226. data/vendor/assets/javascripts/highstock/es-modules/modules/exporting.src.js +2149 -0
  227. data/vendor/assets/javascripts/highstock/es-modules/modules/full-screen.src.js +40 -0
  228. data/vendor/assets/javascripts/highstock/es-modules/modules/funnel.src.js +552 -0
  229. data/vendor/assets/javascripts/highstock/es-modules/modules/histogram.src.js +229 -0
  230. data/vendor/assets/javascripts/highstock/es-modules/modules/item-series.src.js +150 -0
  231. data/vendor/assets/javascripts/highstock/es-modules/modules/keyboard-navigation.src.js +1606 -0
  232. data/vendor/assets/javascripts/highstock/es-modules/modules/networkgraph/QuadTree.js +175 -0
  233. data/vendor/assets/javascripts/highstock/es-modules/modules/networkgraph/layouts.js +506 -0
  234. data/vendor/assets/javascripts/highstock/es-modules/modules/networkgraph/networkgraph.src.js +740 -0
  235. data/vendor/assets/javascripts/highstock/es-modules/modules/no-data-to-display.src.js +260 -0
  236. data/vendor/assets/javascripts/highstock/es-modules/modules/offline-exporting.src.js +710 -0
  237. data/vendor/assets/javascripts/highstock/es-modules/modules/oldie-polyfills.src.js +121 -0
  238. data/vendor/assets/javascripts/highstock/es-modules/modules/oldie.src.js +1556 -0
  239. data/vendor/assets/javascripts/highstock/es-modules/modules/overlapping-datalabels.src.js +250 -0
  240. data/vendor/assets/javascripts/highstock/es-modules/modules/parallel-coordinates.src.js +492 -0
  241. data/vendor/assets/javascripts/highstock/es-modules/modules/pareto.src.js +152 -0
  242. data/vendor/assets/javascripts/highstock/es-modules/modules/pattern-fill.src.js +607 -0
  243. data/vendor/assets/javascripts/highstock/es-modules/modules/price-indicator.src.js +149 -0
  244. data/vendor/assets/javascripts/highstock/es-modules/modules/sankey.src.js +809 -0
  245. data/vendor/assets/javascripts/highstock/es-modules/modules/screen-reader.src.js +954 -0
  246. data/vendor/assets/javascripts/highstock/es-modules/modules/series-label.src.js +1042 -0
  247. data/vendor/assets/javascripts/highstock/es-modules/modules/solid-gauge.src.js +486 -0
  248. data/vendor/assets/javascripts/highstock/es-modules/modules/sonification/Earcon.js +184 -0
  249. data/vendor/assets/javascripts/highstock/es-modules/modules/sonification/Instrument.js +582 -0
  250. data/vendor/assets/javascripts/highstock/es-modules/modules/sonification/Timeline.js +702 -0
  251. data/vendor/assets/javascripts/highstock/es-modules/modules/sonification/chartSonify.js +1026 -0
  252. data/vendor/assets/javascripts/highstock/es-modules/modules/sonification/instrumentDefinitions.js +37 -0
  253. data/vendor/assets/javascripts/highstock/es-modules/modules/sonification/musicalFrequencies.js +113 -0
  254. data/vendor/assets/javascripts/highstock/es-modules/modules/sonification/pointSonify.js +385 -0
  255. data/vendor/assets/javascripts/highstock/es-modules/modules/sonification/sonification.js +107 -0
  256. data/vendor/assets/javascripts/highstock/es-modules/modules/sonification/utilities.js +178 -0
  257. data/vendor/assets/javascripts/highstock/es-modules/modules/static-scale.src.js +88 -0
  258. data/vendor/assets/javascripts/highstock/es-modules/modules/stock-tools-bindings.js +1950 -0
  259. data/vendor/assets/javascripts/highstock/es-modules/modules/stock-tools-gui.js +1458 -0
  260. data/vendor/assets/javascripts/highstock/es-modules/modules/streamgraph.src.js +132 -0
  261. data/vendor/assets/javascripts/highstock/es-modules/modules/sunburst.src.js +1041 -0
  262. data/vendor/assets/javascripts/highstock/es-modules/modules/tilemap.src.js +769 -0
  263. data/vendor/assets/javascripts/highstock/es-modules/modules/timeline.src.js +750 -0
  264. data/vendor/assets/javascripts/highstock/es-modules/modules/treemap.src.js +1803 -0
  265. data/vendor/assets/javascripts/highstock/es-modules/modules/variable-pie.src.js +459 -0
  266. data/vendor/assets/javascripts/highstock/es-modules/modules/variwide.src.js +350 -0
  267. data/vendor/assets/javascripts/highstock/es-modules/modules/vector.src.js +354 -0
  268. data/vendor/assets/javascripts/highstock/es-modules/modules/venn.src.js +1192 -0
  269. data/vendor/assets/javascripts/highstock/es-modules/modules/windbarb.src.js +380 -0
  270. data/vendor/assets/javascripts/highstock/es-modules/modules/wordcloud.src.js +1103 -0
  271. data/vendor/assets/javascripts/highstock/es-modules/modules/xrange.src.js +761 -0
  272. data/vendor/assets/javascripts/highstock/es-modules/parts-3d/Axis.js +669 -0
  273. data/vendor/assets/javascripts/highstock/es-modules/parts-3d/Chart.js +1753 -0
  274. data/vendor/assets/javascripts/highstock/es-modules/parts-3d/Column.js +437 -0
  275. data/vendor/assets/javascripts/highstock/es-modules/parts-3d/Math.js +206 -0
  276. data/vendor/assets/javascripts/highstock/es-modules/parts-3d/Pie.js +207 -0
  277. data/vendor/assets/javascripts/highstock/es-modules/parts-3d/SVGRenderer.js +1002 -0
  278. data/vendor/assets/javascripts/highstock/es-modules/parts-3d/Scatter.js +154 -0
  279. data/vendor/assets/javascripts/highstock/es-modules/parts-3d/Series.js +73 -0
  280. data/vendor/assets/javascripts/highstock/es-modules/parts-3d/VMLRenderer.js +62 -0
  281. data/vendor/assets/javascripts/highstock/es-modules/parts-gantt/ArrowSymbols.js +198 -0
  282. data/vendor/assets/javascripts/highstock/es-modules/parts-gantt/CurrentDateIndicator.js +100 -0
  283. data/vendor/assets/javascripts/highstock/es-modules/parts-gantt/GanttChart.js +140 -0
  284. data/vendor/assets/javascripts/highstock/es-modules/parts-gantt/GanttSeries.js +415 -0
  285. data/vendor/assets/javascripts/highstock/es-modules/parts-gantt/GridAxis.js +961 -0
  286. data/vendor/assets/javascripts/highstock/es-modules/parts-gantt/Pathfinder.js +1298 -0
  287. data/vendor/assets/javascripts/highstock/es-modules/parts-gantt/PathfinderAlgorithms.js +816 -0
  288. data/vendor/assets/javascripts/highstock/es-modules/parts-gantt/Tree.js +158 -0
  289. data/vendor/assets/javascripts/highstock/es-modules/parts-gantt/TreeGrid.js +1003 -0
  290. data/vendor/assets/javascripts/highstock/es-modules/parts-map/ColorAxis.js +1103 -0
  291. data/vendor/assets/javascripts/highstock/es-modules/parts-map/ColorSeriesMixin.js +138 -0
  292. data/vendor/assets/javascripts/highstock/es-modules/parts-map/GeoJSON.js +435 -0
  293. data/vendor/assets/javascripts/highstock/es-modules/parts-map/HeatmapSeries.js +474 -0
  294. data/vendor/assets/javascripts/highstock/es-modules/parts-map/Map.js +477 -0
  295. data/vendor/assets/javascripts/highstock/es-modules/parts-map/MapAxis.js +124 -0
  296. data/vendor/assets/javascripts/highstock/es-modules/parts-map/MapBubbleSeries.js +274 -0
  297. data/vendor/assets/javascripts/highstock/es-modules/parts-map/MapLineSeries.js +143 -0
  298. data/vendor/assets/javascripts/highstock/es-modules/parts-map/MapNavigation.js +357 -0
  299. data/vendor/assets/javascripts/highstock/es-modules/parts-map/MapPointSeries.js +187 -0
  300. data/vendor/assets/javascripts/highstock/es-modules/parts-map/MapPointer.js +132 -0
  301. data/vendor/assets/javascripts/highstock/es-modules/parts-map/MapSeries.js +1294 -0
  302. data/vendor/assets/javascripts/highstock/es-modules/parts-more/AreaRangeSeries.js +725 -0
  303. data/vendor/assets/javascripts/highstock/es-modules/parts-more/AreaSplineRangeSeries.js +98 -0
  304. data/vendor/assets/javascripts/highstock/es-modules/parts-more/BoxPlotSeries.js +617 -0
  305. data/vendor/assets/javascripts/highstock/es-modules/parts-more/BubbleLegend.js +1167 -0
  306. data/vendor/assets/javascripts/highstock/es-modules/parts-more/BubbleSeries.js +661 -0
  307. data/vendor/assets/javascripts/highstock/es-modules/parts-more/ColumnPyramidSeries.js +288 -0
  308. data/vendor/assets/javascripts/highstock/es-modules/parts-more/ColumnRangeSeries.js +278 -0
  309. data/vendor/assets/javascripts/highstock/es-modules/parts-more/ErrorBarSeries.js +172 -0
  310. data/vendor/assets/javascripts/highstock/es-modules/parts-more/GaugeSeries.js +618 -0
  311. data/vendor/assets/javascripts/highstock/es-modules/parts-more/PackedBubbleSeries.js +567 -0
  312. data/vendor/assets/javascripts/highstock/es-modules/parts-more/Pane.js +399 -0
  313. data/vendor/assets/javascripts/highstock/es-modules/parts-more/Polar.js +634 -0
  314. data/vendor/assets/javascripts/highstock/es-modules/parts-more/PolygonSeries.js +151 -0
  315. data/vendor/assets/javascripts/highstock/es-modules/parts-more/RadialAxis.js +685 -0
  316. data/vendor/assets/javascripts/highstock/es-modules/parts-more/WaterfallSeries.js +765 -0
  317. data/vendor/assets/javascripts/highstock/es-modules/parts.js +684 -0
  318. data/vendor/assets/javascripts/highstock/es-modules/parts/AreaSeries.js +578 -0
  319. data/vendor/assets/javascripts/highstock/es-modules/parts/AreaSplineSeries.js +122 -0
  320. data/vendor/assets/javascripts/highstock/es-modules/parts/Axis.js +6453 -0
  321. data/vendor/assets/javascripts/highstock/es-modules/parts/BarSeries.js +153 -0
  322. data/vendor/assets/javascripts/highstock/es-modules/parts/CandlestickSeries.js +358 -0
  323. data/vendor/assets/javascripts/highstock/es-modules/parts/Chart.js +2307 -0
  324. data/vendor/assets/javascripts/highstock/es-modules/parts/Color.js +301 -0
  325. data/vendor/assets/javascripts/highstock/es-modules/parts/ColumnSeries.js +1125 -0
  326. data/vendor/assets/javascripts/highstock/es-modules/parts/DataGrouping.js +1115 -0
  327. data/vendor/assets/javascripts/highstock/es-modules/parts/DataLabels.js +1431 -0
  328. data/vendor/assets/javascripts/highstock/es-modules/parts/DateTimeAxis.js +134 -0
  329. data/vendor/assets/javascripts/highstock/es-modules/parts/Dynamics.js +1301 -0
  330. data/vendor/assets/javascripts/highstock/es-modules/parts/FlagsSeries.js +739 -0
  331. data/vendor/assets/javascripts/highstock/es-modules/parts/Globals.js +75 -0
  332. data/vendor/assets/javascripts/highstock/es-modules/parts/Html.js +539 -0
  333. data/vendor/assets/javascripts/highstock/es-modules/parts/Interaction.js +1299 -0
  334. data/vendor/assets/javascripts/highstock/es-modules/parts/Legend.js +1411 -0
  335. data/vendor/assets/javascripts/highstock/es-modules/parts/LogarithmicAxis.js +168 -0
  336. data/vendor/assets/javascripts/highstock/es-modules/parts/MSPointer.js +176 -0
  337. data/vendor/assets/javascripts/highstock/es-modules/parts/Navigator.js +2486 -0
  338. data/vendor/assets/javascripts/highstock/es-modules/parts/OHLCSeries.js +412 -0
  339. data/vendor/assets/javascripts/highstock/es-modules/parts/Options.js +3732 -0
  340. data/vendor/assets/javascripts/highstock/es-modules/parts/OrdinalAxis.js +962 -0
  341. data/vendor/assets/javascripts/highstock/es-modules/parts/PieSeries.js +1328 -0
  342. data/vendor/assets/javascripts/highstock/es-modules/parts/PlotBandSeries.experimental.js +74 -0
  343. data/vendor/assets/javascripts/highstock/es-modules/parts/PlotLineOrBand.js +1061 -0
  344. data/vendor/assets/javascripts/highstock/es-modules/parts/Point.js +681 -0
  345. data/vendor/assets/javascripts/highstock/es-modules/parts/Pointer.js +1332 -0
  346. data/vendor/assets/javascripts/highstock/es-modules/parts/RangeSelector.js +2063 -0
  347. data/vendor/assets/javascripts/highstock/es-modules/parts/Responsive.js +295 -0
  348. data/vendor/assets/javascripts/highstock/es-modules/parts/ScatterSeries.js +278 -0
  349. data/vendor/assets/javascripts/highstock/es-modules/parts/ScrollablePlotArea.js +266 -0
  350. data/vendor/assets/javascripts/highstock/es-modules/parts/Scrollbar.js +1134 -0
  351. data/vendor/assets/javascripts/highstock/es-modules/parts/Series.js +5864 -0
  352. data/vendor/assets/javascripts/highstock/es-modules/parts/SplineSeries.js +267 -0
  353. data/vendor/assets/javascripts/highstock/es-modules/parts/Stacking.js +604 -0
  354. data/vendor/assets/javascripts/highstock/es-modules/parts/StockChart.js +951 -0
  355. data/vendor/assets/javascripts/highstock/es-modules/parts/SvgRenderer.js +5109 -0
  356. data/vendor/assets/javascripts/highstock/es-modules/parts/Tick.js +746 -0
  357. data/vendor/assets/javascripts/highstock/es-modules/parts/Time.js +881 -0
  358. data/vendor/assets/javascripts/highstock/es-modules/parts/Tooltip.js +1318 -0
  359. data/vendor/assets/javascripts/highstock/es-modules/parts/TouchPointer.js +404 -0
  360. data/vendor/assets/javascripts/highstock/es-modules/parts/Utilities.js +2751 -0
  361. data/vendor/assets/javascripts/highstock/es-modules/themes/avocado.js +37 -0
  362. data/vendor/assets/javascripts/highstock/es-modules/themes/dark-blue.js +259 -0
  363. data/vendor/assets/javascripts/highstock/es-modules/themes/dark-green.js +261 -0
  364. data/vendor/assets/javascripts/highstock/es-modules/themes/dark-unica.js +220 -0
  365. data/vendor/assets/javascripts/highstock/es-modules/themes/gray.js +267 -0
  366. data/vendor/assets/javascripts/highstock/es-modules/themes/grid-light.js +81 -0
  367. data/vendor/assets/javascripts/highstock/es-modules/themes/grid.js +110 -0
  368. data/vendor/assets/javascripts/highstock/es-modules/themes/sand-signika.js +111 -0
  369. data/vendor/assets/javascripts/highstock/es-modules/themes/skies.js +100 -0
  370. data/vendor/assets/javascripts/highstock/es-modules/themes/sunset.js +36 -0
  371. data/vendor/assets/javascripts/highstock/highcharts-3d.js +85 -0
  372. data/vendor/assets/javascripts/highstock/highcharts-3d.js.map +1 -0
  373. data/vendor/assets/javascripts/highstock/highcharts-more.js +101 -0
  374. data/vendor/assets/javascripts/highstock/highcharts-more.js.map +1 -0
  375. data/vendor/assets/javascripts/highstock/highstock.js +583 -0
  376. data/vendor/assets/javascripts/highstock/highstock.js.map +1 -0
  377. data/vendor/assets/javascripts/highstock/indicators/acceleration-bands.js +16 -0
  378. data/vendor/assets/javascripts/highstock/indicators/acceleration-bands.js.map +1 -0
  379. data/vendor/assets/javascripts/highstock/indicators/acceleration-bands.src.js +448 -0
  380. data/vendor/assets/javascripts/highstock/indicators/accumulation-distribution.js +12 -0
  381. data/vendor/assets/javascripts/highstock/indicators/accumulation-distribution.js.map +1 -0
  382. data/vendor/assets/javascripts/highstock/indicators/accumulation-distribution.src.js +156 -0
  383. data/vendor/assets/javascripts/highstock/indicators/ao.js +13 -0
  384. data/vendor/assets/javascripts/highstock/indicators/ao.js.map +1 -0
  385. data/vendor/assets/javascripts/highstock/indicators/ao.src.js +233 -0
  386. data/vendor/assets/javascripts/highstock/indicators/apo.js +13 -0
  387. data/vendor/assets/javascripts/highstock/indicators/apo.js.map +1 -0
  388. data/vendor/assets/javascripts/highstock/indicators/apo.src.js +223 -0
  389. data/vendor/assets/javascripts/highstock/indicators/aroon-oscillator.js +15 -0
  390. data/vendor/assets/javascripts/highstock/indicators/aroon-oscillator.js.map +1 -0
  391. data/vendor/assets/javascripts/highstock/indicators/aroon-oscillator.src.js +426 -0
  392. data/vendor/assets/javascripts/highstock/indicators/aroon.js +16 -0
  393. data/vendor/assets/javascripts/highstock/indicators/aroon.js.map +1 -0
  394. data/vendor/assets/javascripts/highstock/indicators/aroon.src.js +423 -0
  395. data/vendor/assets/javascripts/highstock/indicators/atr.js +12 -0
  396. data/vendor/assets/javascripts/highstock/indicators/atr.js.map +1 -0
  397. data/vendor/assets/javascripts/highstock/indicators/atr.src.js +178 -0
  398. data/vendor/assets/javascripts/highstock/indicators/bollinger-bands.js +16 -0
  399. data/vendor/assets/javascripts/highstock/indicators/bollinger-bands.js.map +1 -0
  400. data/vendor/assets/javascripts/highstock/indicators/bollinger-bands.src.js +458 -0
  401. data/vendor/assets/javascripts/highstock/indicators/cci.js +12 -0
  402. data/vendor/assets/javascripts/highstock/indicators/cci.js.map +1 -0
  403. data/vendor/assets/javascripts/highstock/indicators/cci.src.js +158 -0
  404. data/vendor/assets/javascripts/highstock/indicators/chaikin.js +15 -0
  405. data/vendor/assets/javascripts/highstock/indicators/chaikin.js.map +1 -0
  406. data/vendor/assets/javascripts/highstock/indicators/chaikin.src.js +370 -0
  407. data/vendor/assets/javascripts/highstock/indicators/cmf.js +12 -0
  408. data/vendor/assets/javascripts/highstock/indicators/cmf.js.map +1 -0
  409. data/vendor/assets/javascripts/highstock/indicators/cmf.src.js +273 -0
  410. data/vendor/assets/javascripts/highstock/indicators/dema.js +13 -0
  411. data/vendor/assets/javascripts/highstock/indicators/dema.js.map +1 -0
  412. data/vendor/assets/javascripts/highstock/indicators/dema.src.js +266 -0
  413. data/vendor/assets/javascripts/highstock/indicators/dpo.js +12 -0
  414. data/vendor/assets/javascripts/highstock/indicators/dpo.js.map +1 -0
  415. data/vendor/assets/javascripts/highstock/indicators/dpo.src.js +166 -0
  416. data/vendor/assets/javascripts/highstock/indicators/ema.js +12 -0
  417. data/vendor/assets/javascripts/highstock/indicators/ema.js.map +1 -0
  418. data/vendor/assets/javascripts/highstock/indicators/ema.src.js +193 -0
  419. data/vendor/assets/javascripts/highstock/indicators/ichimoku-kinko-hyo.js +22 -0
  420. data/vendor/assets/javascripts/highstock/indicators/ichimoku-kinko-hyo.js.map +1 -0
  421. data/vendor/assets/javascripts/highstock/indicators/ichimoku-kinko-hyo.src.js +877 -0
  422. data/vendor/assets/javascripts/highstock/indicators/indicators-all.js +117 -0
  423. data/vendor/assets/javascripts/highstock/indicators/indicators-all.js.map +1 -0
  424. data/vendor/assets/javascripts/highstock/indicators/indicators-all.src.js +9389 -0
  425. data/vendor/assets/javascripts/highstock/indicators/indicators.js +17 -0
  426. data/vendor/assets/javascripts/highstock/indicators/indicators.js.map +1 -0
  427. data/vendor/assets/javascripts/highstock/indicators/indicators.src.js +500 -0
  428. data/vendor/assets/javascripts/highstock/indicators/keltner-channels.js +16 -0
  429. data/vendor/assets/javascripts/highstock/indicators/keltner-channels.js.map +1 -0
  430. data/vendor/assets/javascripts/highstock/indicators/keltner-channels.src.js +442 -0
  431. data/vendor/assets/javascripts/highstock/indicators/macd.js +18 -0
  432. data/vendor/assets/javascripts/highstock/indicators/macd.js.map +1 -0
  433. data/vendor/assets/javascripts/highstock/indicators/macd.src.js +444 -0
  434. data/vendor/assets/javascripts/highstock/indicators/mfi.js +13 -0
  435. data/vendor/assets/javascripts/highstock/indicators/mfi.js.map +1 -0
  436. data/vendor/assets/javascripts/highstock/indicators/mfi.src.js +225 -0
  437. data/vendor/assets/javascripts/highstock/indicators/momentum.js +12 -0
  438. data/vendor/assets/javascripts/highstock/indicators/momentum.js.map +1 -0
  439. data/vendor/assets/javascripts/highstock/indicators/momentum.src.js +146 -0
  440. data/vendor/assets/javascripts/highstock/indicators/natr.js +12 -0
  441. data/vendor/assets/javascripts/highstock/indicators/natr.js.map +1 -0
  442. data/vendor/assets/javascripts/highstock/indicators/natr.src.js +101 -0
  443. data/vendor/assets/javascripts/highstock/indicators/pivot-points.js +16 -0
  444. data/vendor/assets/javascripts/highstock/indicators/pivot-points.js.map +1 -0
  445. data/vendor/assets/javascripts/highstock/indicators/pivot-points.src.js +387 -0
  446. data/vendor/assets/javascripts/highstock/indicators/ppo.js +13 -0
  447. data/vendor/assets/javascripts/highstock/indicators/ppo.js.map +1 -0
  448. data/vendor/assets/javascripts/highstock/indicators/ppo.src.js +227 -0
  449. data/vendor/assets/javascripts/highstock/indicators/price-channel.js +16 -0
  450. data/vendor/assets/javascripts/highstock/indicators/price-channel.js.map +1 -0
  451. data/vendor/assets/javascripts/highstock/indicators/price-channel.src.js +450 -0
  452. data/vendor/assets/javascripts/highstock/indicators/price-envelopes.js +15 -0
  453. data/vendor/assets/javascripts/highstock/indicators/price-envelopes.js.map +1 -0
  454. data/vendor/assets/javascripts/highstock/indicators/price-envelopes.src.js +278 -0
  455. data/vendor/assets/javascripts/highstock/indicators/psar.js +13 -0
  456. data/vendor/assets/javascripts/highstock/indicators/psar.js.map +1 -0
  457. data/vendor/assets/javascripts/highstock/indicators/psar.src.js +334 -0
  458. data/vendor/assets/javascripts/highstock/indicators/regressions.js +14 -0
  459. data/vendor/assets/javascripts/highstock/indicators/regressions.js.map +1 -0
  460. data/vendor/assets/javascripts/highstock/indicators/regressions.src.js +454 -0
  461. data/vendor/assets/javascripts/highstock/indicators/roc.js +12 -0
  462. data/vendor/assets/javascripts/highstock/indicators/roc.js.map +1 -0
  463. data/vendor/assets/javascripts/highstock/indicators/roc.src.js +176 -0
  464. data/vendor/assets/javascripts/highstock/indicators/rsi.js +12 -0
  465. data/vendor/assets/javascripts/highstock/indicators/rsi.js.map +1 -0
  466. data/vendor/assets/javascripts/highstock/indicators/rsi.src.js +190 -0
  467. data/vendor/assets/javascripts/highstock/indicators/stochastic.js +17 -0
  468. data/vendor/assets/javascripts/highstock/indicators/stochastic.js.map +1 -0
  469. data/vendor/assets/javascripts/highstock/indicators/stochastic.src.js +494 -0
  470. data/vendor/assets/javascripts/highstock/indicators/supertrend.js +17 -0
  471. data/vendor/assets/javascripts/highstock/indicators/supertrend.js.map +1 -0
  472. data/vendor/assets/javascripts/highstock/indicators/supertrend.src.js +571 -0
  473. data/vendor/assets/javascripts/highstock/indicators/tema.js +14 -0
  474. data/vendor/assets/javascripts/highstock/indicators/tema.js.map +1 -0
  475. data/vendor/assets/javascripts/highstock/indicators/tema.src.js +322 -0
  476. data/vendor/assets/javascripts/highstock/indicators/trix.js +12 -0
  477. data/vendor/assets/javascripts/highstock/indicators/trix.js.map +1 -0
  478. data/vendor/assets/javascripts/highstock/indicators/trix.src.js +171 -0
  479. data/vendor/assets/javascripts/highstock/indicators/volume-by-price.js +21 -0
  480. data/vendor/assets/javascripts/highstock/indicators/volume-by-price.js.map +1 -0
  481. data/vendor/assets/javascripts/highstock/indicators/volume-by-price.src.js +698 -0
  482. data/vendor/assets/javascripts/highstock/indicators/vwap.js +12 -0
  483. data/vendor/assets/javascripts/highstock/indicators/vwap.js.map +1 -0
  484. data/vendor/assets/javascripts/highstock/indicators/vwap.src.js +216 -0
  485. data/vendor/assets/javascripts/highstock/indicators/williams-r.js +13 -0
  486. data/vendor/assets/javascripts/highstock/indicators/williams-r.js.map +1 -0
  487. data/vendor/assets/javascripts/highstock/indicators/williams-r.src.js +207 -0
  488. data/vendor/assets/javascripts/highstock/indicators/wma.js +12 -0
  489. data/vendor/assets/javascripts/highstock/indicators/wma.js.map +1 -0
  490. data/vendor/assets/javascripts/highstock/indicators/wma.src.js +173 -0
  491. data/vendor/assets/javascripts/highstock/indicators/zigzag.js +13 -0
  492. data/vendor/assets/javascripts/highstock/indicators/zigzag.js.map +1 -0
  493. data/vendor/assets/javascripts/highstock/indicators/zigzag.src.js +248 -0
  494. data/vendor/assets/javascripts/highstock/lib/canvg.js +130 -0
  495. data/vendor/assets/javascripts/highstock/lib/canvg.src.js +3073 -0
  496. data/vendor/assets/javascripts/highstock/lib/jspdf.js +283 -0
  497. data/vendor/assets/javascripts/highstock/lib/jspdf.src.js +21627 -0
  498. data/vendor/assets/javascripts/highstock/lib/rgbcolor.js +17 -0
  499. data/vendor/assets/javascripts/highstock/lib/rgbcolor.src.js +299 -0
  500. data/vendor/assets/javascripts/highstock/lib/svg2pdf.js +38 -0
  501. data/vendor/assets/javascripts/highstock/lib/svg2pdf.src.js +4390 -0
  502. data/vendor/assets/javascripts/highstock/modules/accessibility.js +73 -0
  503. data/vendor/assets/javascripts/highstock/modules/accessibility.js.map +1 -0
  504. data/vendor/assets/javascripts/highstock/modules/accessibility.src.js +3103 -0
  505. data/vendor/assets/javascripts/highstock/modules/annotations-advanced.js +132 -0
  506. data/vendor/assets/javascripts/highstock/modules/annotations-advanced.js.map +1 -0
  507. data/vendor/assets/javascripts/highstock/modules/annotations-advanced.src.js +8230 -0
  508. data/vendor/assets/javascripts/highstock/modules/annotations.js +94 -0
  509. data/vendor/assets/javascripts/highstock/modules/annotations.js.map +1 -0
  510. data/vendor/assets/javascripts/highstock/modules/annotations.src.js +6001 -0
  511. data/vendor/assets/javascripts/highstock/modules/arrow-symbols.js +11 -0
  512. data/vendor/assets/javascripts/highstock/modules/arrow-symbols.js.map +1 -0
  513. data/vendor/assets/javascripts/highstock/modules/arrow-symbols.src.js +225 -0
  514. data/vendor/assets/javascripts/highstock/modules/boost-canvas.js +23 -0
  515. data/vendor/assets/javascripts/highstock/modules/boost-canvas.js.map +1 -0
  516. data/vendor/assets/javascripts/highstock/modules/boost-canvas.src.js +756 -0
  517. data/vendor/assets/javascripts/highstock/modules/boost.js +65 -0
  518. data/vendor/assets/javascripts/highstock/modules/boost.js.map +1 -0
  519. data/vendor/assets/javascripts/highstock/modules/boost.src.js +3752 -0
  520. data/vendor/assets/javascripts/highstock/modules/bullet.js +14 -0
  521. data/vendor/assets/javascripts/highstock/modules/bullet.js.map +1 -0
  522. data/vendor/assets/javascripts/highstock/modules/bullet.src.js +388 -0
  523. data/vendor/assets/javascripts/highstock/modules/current-date-indicator.js +11 -0
  524. data/vendor/assets/javascripts/highstock/modules/current-date-indicator.js.map +1 -0
  525. data/vendor/assets/javascripts/highstock/modules/current-date-indicator.src.js +127 -0
  526. data/vendor/assets/javascripts/highstock/modules/cylinder.js +14 -0
  527. data/vendor/assets/javascripts/highstock/modules/cylinder.js.map +1 -0
  528. data/vendor/assets/javascripts/highstock/modules/cylinder.src.js +413 -0
  529. data/vendor/assets/javascripts/highstock/modules/data.js +37 -0
  530. data/vendor/assets/javascripts/highstock/modules/data.js.map +1 -0
  531. data/vendor/assets/javascripts/highstock/modules/data.src.js +2565 -0
  532. data/vendor/assets/javascripts/highstock/modules/datagrouping.js +25 -0
  533. data/vendor/assets/javascripts/highstock/modules/datagrouping.js.map +1 -0
  534. data/vendor/assets/javascripts/highstock/modules/datagrouping.src.js +1140 -0
  535. data/vendor/assets/javascripts/highstock/modules/debugger.js +28 -0
  536. data/vendor/assets/javascripts/highstock/modules/debugger.js.map +1 -0
  537. data/vendor/assets/javascripts/highstock/modules/debugger.src.js +267 -0
  538. data/vendor/assets/javascripts/highstock/modules/dependency-wheel.js +15 -0
  539. data/vendor/assets/javascripts/highstock/modules/dependency-wheel.js.map +1 -0
  540. data/vendor/assets/javascripts/highstock/modules/dependency-wheel.src.js +301 -0
  541. data/vendor/assets/javascripts/highstock/modules/drag-panes.js +18 -0
  542. data/vendor/assets/javascripts/highstock/modules/drag-panes.js.map +1 -0
  543. data/vendor/assets/javascripts/highstock/modules/drag-panes.src.js +649 -0
  544. data/vendor/assets/javascripts/highstock/modules/draggable-points.js +40 -0
  545. data/vendor/assets/javascripts/highstock/modules/draggable-points.js.map +1 -0
  546. data/vendor/assets/javascripts/highstock/modules/draggable-points.src.js +2650 -0
  547. data/vendor/assets/javascripts/highstock/modules/drilldown.js +29 -0
  548. data/vendor/assets/javascripts/highstock/modules/drilldown.js.map +1 -0
  549. data/vendor/assets/javascripts/highstock/modules/drilldown.src.js +1321 -0
  550. data/vendor/assets/javascripts/highstock/modules/export-data.js +27 -0
  551. data/vendor/assets/javascripts/highstock/modules/export-data.js.map +1 -0
  552. data/vendor/assets/javascripts/highstock/modules/export-data.src.js +1234 -0
  553. data/vendor/assets/javascripts/highstock/modules/exporting.js +35 -0
  554. data/vendor/assets/javascripts/highstock/modules/exporting.js.map +1 -0
  555. data/vendor/assets/javascripts/highstock/modules/exporting.src.js +2233 -0
  556. data/vendor/assets/javascripts/highstock/modules/full-screen.js +11 -0
  557. data/vendor/assets/javascripts/highstock/modules/full-screen.js.map +1 -0
  558. data/vendor/assets/javascripts/highstock/modules/full-screen.src.js +68 -0
  559. data/vendor/assets/javascripts/highstock/modules/funnel.js +14 -0
  560. data/vendor/assets/javascripts/highstock/modules/funnel.js.map +1 -0
  561. data/vendor/assets/javascripts/highstock/modules/funnel.src.js +576 -0
  562. data/vendor/assets/javascripts/highstock/modules/grid-axis.js +23 -0
  563. data/vendor/assets/javascripts/highstock/modules/grid-axis.js.map +1 -0
  564. data/vendor/assets/javascripts/highstock/modules/grid-axis.src.js +988 -0
  565. data/vendor/assets/javascripts/highstock/modules/heatmap.js +28 -0
  566. data/vendor/assets/javascripts/highstock/modules/heatmap.js.map +1 -0
  567. data/vendor/assets/javascripts/highstock/modules/heatmap.src.js +1731 -0
  568. data/vendor/assets/javascripts/highstock/modules/histogram-bellcurve.js +16 -0
  569. data/vendor/assets/javascripts/highstock/modules/histogram-bellcurve.js.map +1 -0
  570. data/vendor/assets/javascripts/highstock/modules/histogram-bellcurve.src.js +570 -0
  571. data/vendor/assets/javascripts/highstock/modules/item-series.js +13 -0
  572. data/vendor/assets/javascripts/highstock/modules/item-series.js.map +1 -0
  573. data/vendor/assets/javascripts/highstock/modules/item-series.src.js +176 -0
  574. data/vendor/assets/javascripts/highstock/modules/networkgraph.js +31 -0
  575. data/vendor/assets/javascripts/highstock/modules/networkgraph.js.map +1 -0
  576. data/vendor/assets/javascripts/highstock/modules/networkgraph.src.js +1348 -0
  577. data/vendor/assets/javascripts/highstock/modules/no-data-to-display.js +13 -0
  578. data/vendor/assets/javascripts/highstock/modules/no-data-to-display.js.map +1 -0
  579. data/vendor/assets/javascripts/highstock/modules/no-data-to-display.src.js +285 -0
  580. data/vendor/assets/javascripts/highstock/modules/offline-exporting.js +22 -0
  581. data/vendor/assets/javascripts/highstock/modules/offline-exporting.js.map +1 -0
  582. data/vendor/assets/javascripts/highstock/modules/offline-exporting.src.js +838 -0
  583. data/vendor/assets/javascripts/highstock/modules/oldie-polyfills.js +13 -0
  584. data/vendor/assets/javascripts/highstock/modules/oldie-polyfills.js.map +1 -0
  585. data/vendor/assets/javascripts/highstock/modules/oldie-polyfills.src.js +150 -0
  586. data/vendor/assets/javascripts/highstock/modules/oldie.js +35 -0
  587. data/vendor/assets/javascripts/highstock/modules/oldie.js.map +1 -0
  588. data/vendor/assets/javascripts/highstock/modules/oldie.src.js +1582 -0
  589. data/vendor/assets/javascripts/highstock/modules/overlapping-datalabels.js +9 -0
  590. data/vendor/assets/javascripts/highstock/modules/overlapping-datalabels.js.map +1 -0
  591. data/vendor/assets/javascripts/highstock/modules/overlapping-datalabels.src.js +22 -0
  592. data/vendor/assets/javascripts/highstock/modules/parallel-coordinates.js +18 -0
  593. data/vendor/assets/javascripts/highstock/modules/parallel-coordinates.js.map +1 -0
  594. data/vendor/assets/javascripts/highstock/modules/parallel-coordinates.src.js +517 -0
  595. data/vendor/assets/javascripts/highstock/modules/pareto.js +14 -0
  596. data/vendor/assets/javascripts/highstock/modules/pareto.js.map +1 -0
  597. data/vendor/assets/javascripts/highstock/modules/pareto.src.js +327 -0
  598. data/vendor/assets/javascripts/highstock/modules/pathfinder.js +34 -0
  599. data/vendor/assets/javascripts/highstock/modules/pathfinder.js.map +1 -0
  600. data/vendor/assets/javascripts/highstock/modules/pathfinder.src.js +2336 -0
  601. data/vendor/assets/javascripts/highstock/modules/pattern-fill.js +21 -0
  602. data/vendor/assets/javascripts/highstock/modules/pattern-fill.js.map +1 -0
  603. data/vendor/assets/javascripts/highstock/modules/pattern-fill.src.js +634 -0
  604. data/vendor/assets/javascripts/highstock/modules/price-indicator.js +13 -0
  605. data/vendor/assets/javascripts/highstock/modules/price-indicator.js.map +1 -0
  606. data/vendor/assets/javascripts/highstock/modules/price-indicator.src.js +176 -0
  607. data/vendor/assets/javascripts/highstock/modules/sankey.js +22 -0
  608. data/vendor/assets/javascripts/highstock/modules/sankey.js.map +1 -0
  609. data/vendor/assets/javascripts/highstock/modules/sankey.src.js +911 -0
  610. data/vendor/assets/javascripts/highstock/modules/series-label.js +23 -0
  611. data/vendor/assets/javascripts/highstock/modules/series-label.js.map +1 -0
  612. data/vendor/assets/javascripts/highstock/modules/series-label.src.js +1065 -0
  613. data/vendor/assets/javascripts/highstock/modules/solid-gauge.js +15 -0
  614. data/vendor/assets/javascripts/highstock/modules/solid-gauge.js.map +1 -0
  615. data/vendor/assets/javascripts/highstock/modules/solid-gauge.src.js +510 -0
  616. data/vendor/assets/javascripts/highstock/modules/sonification.js +53 -0
  617. data/vendor/assets/javascripts/highstock/modules/sonification.js.map +1 -0
  618. data/vendor/assets/javascripts/highstock/modules/sonification.src.js +3341 -0
  619. data/vendor/assets/javascripts/highstock/modules/static-scale.js +12 -0
  620. data/vendor/assets/javascripts/highstock/modules/static-scale.js.map +1 -0
  621. data/vendor/assets/javascripts/highstock/modules/static-scale.src.js +114 -0
  622. data/vendor/assets/javascripts/highstock/modules/stock-tools.js +65 -0
  623. data/vendor/assets/javascripts/highstock/modules/stock-tools.js.map +1 -0
  624. data/vendor/assets/javascripts/highstock/modules/stock-tools.src.js +3437 -0
  625. data/vendor/assets/javascripts/highstock/modules/stock.js +151 -0
  626. data/vendor/assets/javascripts/highstock/modules/stock.js.map +1 -0
  627. data/vendor/assets/javascripts/highstock/modules/stock.src.js +10907 -0
  628. data/vendor/assets/javascripts/highstock/modules/streamgraph.js +10 -0
  629. data/vendor/assets/javascripts/highstock/modules/streamgraph.js.map +1 -0
  630. data/vendor/assets/javascripts/highstock/modules/streamgraph.src.js +158 -0
  631. data/vendor/assets/javascripts/highstock/modules/sunburst.js +52 -0
  632. data/vendor/assets/javascripts/highstock/modules/sunburst.js.map +1 -0
  633. data/vendor/assets/javascripts/highstock/modules/sunburst.src.js +3174 -0
  634. data/vendor/assets/javascripts/highstock/modules/tilemap.js +26 -0
  635. data/vendor/assets/javascripts/highstock/modules/tilemap.js.map +1 -0
  636. data/vendor/assets/javascripts/highstock/modules/tilemap.src.js +1402 -0
  637. data/vendor/assets/javascripts/highstock/modules/timeline.js +23 -0
  638. data/vendor/assets/javascripts/highstock/modules/timeline.js.map +1 -0
  639. data/vendor/assets/javascripts/highstock/modules/timeline.src.js +778 -0
  640. data/vendor/assets/javascripts/highstock/modules/treegrid.js +50 -0
  641. data/vendor/assets/javascripts/highstock/modules/treegrid.js.map +1 -0
  642. data/vendor/assets/javascripts/highstock/modules/treegrid.src.js +2917 -0
  643. data/vendor/assets/javascripts/highstock/modules/treemap.js +39 -0
  644. data/vendor/assets/javascripts/highstock/modules/treemap.js.map +1 -0
  645. data/vendor/assets/javascripts/highstock/modules/treemap.src.js +2083 -0
  646. data/vendor/assets/javascripts/highstock/modules/variable-pie.js +16 -0
  647. data/vendor/assets/javascripts/highstock/modules/variable-pie.js.map +1 -0
  648. data/vendor/assets/javascripts/highstock/modules/variable-pie.src.js +485 -0
  649. data/vendor/assets/javascripts/highstock/modules/variwide.js +15 -0
  650. data/vendor/assets/javascripts/highstock/modules/variwide.js.map +1 -0
  651. data/vendor/assets/javascripts/highstock/modules/variwide.src.js +376 -0
  652. data/vendor/assets/javascripts/highstock/modules/vector.js +13 -0
  653. data/vendor/assets/javascripts/highstock/modules/vector.js.map +1 -0
  654. data/vendor/assets/javascripts/highstock/modules/vector.src.js +381 -0
  655. data/vendor/assets/javascripts/highstock/modules/venn.js +30 -0
  656. data/vendor/assets/javascripts/highstock/modules/venn.js.map +1 -0
  657. data/vendor/assets/javascripts/highstock/modules/venn.src.js +1624 -0
  658. data/vendor/assets/javascripts/highstock/modules/windbarb.js +17 -0
  659. data/vendor/assets/javascripts/highstock/modules/windbarb.js.map +1 -0
  660. data/vendor/assets/javascripts/highstock/modules/windbarb.src.js +574 -0
  661. data/vendor/assets/javascripts/highstock/modules/wordcloud.js +25 -0
  662. data/vendor/assets/javascripts/highstock/modules/wordcloud.js.map +1 -0
  663. data/vendor/assets/javascripts/highstock/modules/wordcloud.src.js +1475 -0
  664. data/vendor/assets/javascripts/highstock/modules/xrange.js +20 -0
  665. data/vendor/assets/javascripts/highstock/modules/xrange.js.map +1 -0
  666. data/vendor/assets/javascripts/highstock/modules/xrange.src.js +788 -0
  667. data/vendor/assets/javascripts/highstock/themes/avocado.js +9 -0
  668. data/vendor/assets/javascripts/highstock/themes/avocado.js.map +1 -0
  669. data/vendor/assets/javascripts/highstock/themes/avocado.src.js +63 -0
  670. data/vendor/assets/javascripts/highstock/themes/dark-blue.js +15 -0
  671. data/vendor/assets/javascripts/highstock/themes/dark-blue.js.map +1 -0
  672. data/vendor/assets/javascripts/highstock/themes/dark-blue.src.js +285 -0
  673. data/vendor/assets/javascripts/highstock/themes/dark-green.js +15 -0
  674. data/vendor/assets/javascripts/highstock/themes/dark-green.js.map +1 -0
  675. data/vendor/assets/javascripts/highstock/themes/dark-green.src.js +287 -0
  676. data/vendor/assets/javascripts/highstock/themes/dark-unica.js +14 -0
  677. data/vendor/assets/javascripts/highstock/themes/dark-unica.js.map +1 -0
  678. data/vendor/assets/javascripts/highstock/themes/dark-unica.src.js +246 -0
  679. data/vendor/assets/javascripts/highstock/themes/gray.js +15 -0
  680. data/vendor/assets/javascripts/highstock/themes/gray.js.map +1 -0
  681. data/vendor/assets/javascripts/highstock/themes/gray.src.js +293 -0
  682. data/vendor/assets/javascripts/highstock/themes/grid-light.js +11 -0
  683. data/vendor/assets/javascripts/highstock/themes/grid-light.js.map +1 -0
  684. data/vendor/assets/javascripts/highstock/themes/grid-light.src.js +107 -0
  685. data/vendor/assets/javascripts/highstock/themes/grid.js +11 -0
  686. data/vendor/assets/javascripts/highstock/themes/grid.js.map +1 -0
  687. data/vendor/assets/javascripts/highstock/themes/grid.src.js +136 -0
  688. data/vendor/assets/javascripts/highstock/themes/sand-signika.js +11 -0
  689. data/vendor/assets/javascripts/highstock/themes/sand-signika.js.map +1 -0
  690. data/vendor/assets/javascripts/highstock/themes/sand-signika.src.js +137 -0
  691. data/vendor/assets/javascripts/highstock/themes/skies.js +11 -0
  692. data/vendor/assets/javascripts/highstock/themes/skies.js.map +1 -0
  693. data/vendor/assets/javascripts/highstock/themes/skies.src.js +126 -0
  694. data/vendor/assets/javascripts/highstock/themes/sunset.js +9 -0
  695. data/vendor/assets/javascripts/highstock/themes/sunset.js.map +1 -0
  696. data/vendor/assets/javascripts/highstock/themes/sunset.src.js +62 -0
  697. metadata +781 -0
@@ -0,0 +1,28 @@
1
+ /*
2
+ Highcharts JS v7.0.3 (2019-02-06)
3
+ Debugger module
4
+
5
+ (c) 2012-2019 Torstein Honsi
6
+
7
+ License: www.highcharts.com/license
8
+ */
9
+ (function(a){"object"===typeof module&&module.exports?(a["default"]=a,module.exports=a):"function"===typeof define&&define.amd?define(function(){return a}):a("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(a){a.errorMessages={10:{title:"Can't plot zero or subzero values on a logarithmic axis",text:"\x3ch1\x3eCan't plot zero or subzero values on a logarithmic axis\x3c/h1\x3e\x3cp\x3eThis error occurs in the following situations: \x3c/p\x3e\x3cul\x3e\x3cli\x3eIf a zero or subzero data value is added to a logarithmic axis\x3c/li\x3e\x3cli\x3eIf the minimum of a logarithimic axis is set to 0 or less\x3c/li\x3e\x3cli\x3eIf the threshold is set to 0 or less\x3c/li\x3e\x3c/ul\x3e\x3cp\x3eNote: As of Highcharts 5.0.8 it's possible to bypass this error message by setting \x3ccode\x3eAxis.prototype.allowNegativeLog\x3c/code\x3e to true, and add custom conversion functions. \x3ca href\x3d\"https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/samples/highcharts/yaxis/type-log-negative/\"\x3eView live demo\x3c/a\x3e.\x3c/p\x3e",
10
+ enduser:'\x3ch1\x3eCan\'t plot zero or subzero values on a logarithmic axis\x3c/h1\x3e\x3cp\x3eThis error occurs in the following situations:\x3c/p\x3e\x3cp\x3e* If a zero or subzero data value is added to a logarithmic axis\x3c/p\x3e\x3cp\x3e* If the minimum of a logarithimic axis is set to 0 or less\x3c/p\x3e\x3cp\x3e* If the threshold is set to 0 or less\x3c/p\x3e\x3cp\x3eAs of Highcharts 5.0.8 it\'s possible to bypass this error message by setting \x3ccode\x3eAxis.prototype.allowNegativeLog\x3c/code\x3e to \x3ccode\x3etrue\x3c/code\x3e and add custom conversion functions. \x3ca href\x3d"http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/samples/highcharts/yaxis/type-log-negative/"\x3e"\x3eView Live Demo\x3c/a\x3e.\x3c/p\x3e'},
11
+ 11:{title:"Can't link axes of different type",text:"\x3ch1\x3eCan't link axes of different type\x3c/h1\x3e\x3cp\x3eThis error occurs when using the \x3ccode\x3elinkedTo\x3c/code\x3e option to link two axes of different types, for example a logarithmic axis to a linear axis. Highcharts can't link these because the calculation of ticks, extremes, padding etc. is different.\x3c/p\x3e"},12:{title:"Highcharts expects point configuration to be numbers or arrays in turbo mode",text:'\x3ch1\x3eHighcharts expects point configuration to be numbers or arrays in turbo mode\x3c/h1\x3e\x3cp\x3eThis error occurs if the series.data option contains object configurations and the number of points exceeds the turboThreshold. It can be fixed by either setting \x3ccode\x3eturboThreshold\x3c/code\x3e to a higher value, or changing the point configurations to numbers or arrays.\x3c/p\x3e\x3cp\x3eSee \x3ca href\x3d"https://api.highcharts.com/highcharts#plotOptions.series.turboThreshold"\x3eplotOptions.series.turboThreshold\x3c/a\x3e\x3c/p\x3e'},
12
+ 13:{title:"Rendering div not found",text:'\x3ch1\x3eRendering div not found\x3c/h1\x3e\x3cp\x3eThis error occurs if the \x3ca href\x3d"https://api.highcharts.com/highcharts#chart.renderTo"\x3echart.renderTo\x3c/a\x3e option is misconfigured so that Highcharts is unable to find the HTML element to render the chart in.\x3c/p\x3e\x3cp\x3eIf using a DOM ID when creating the chart, make sure a node with the same ID exists somewhere in the DOM.\x3c/p\x3e'},14:{title:"String value sent to series.data, expected Number",
13
+ text:"\x3ch1\x3eString value sent to series.data, expected Number\x3c/h1\x3e\x3cp\x3eThis happens if using a string as a data point, for example in a setup like this: \x3c/p\x3e\x3cpre\x3eseries: [{\n data: [\x26quot;3\x26quot;, \x26quot;5\x26quot;, \x26quot;1\x26quot;, \x26quot;6\x26quot;]\n}]\x3c/pre\x3e\x3cp\x3eHighcharts expects numerical data values.\x3c/p\x3e\x3cp\x3eThe most common reason for this error this is that data is parsed from CSV or\x3c/p\x3e\x3cp\x3efrom a XML source, and the implementer forgot to run \x3ccode\x3eparseFloat\x3c/code\x3e\x3c/p\x3e\x3cp\x3eon the parsed value.\x3c/p\x3e\x3cp\x3eNote: For performance reasons internal type casting is not performed, and only the first value is checked (since 2.3).\x3c/p\x3e"},
14
+ 15:{title:"Highcharts expects data to be sorted",text:"\x3ch1\x3eHighcharts expects data to be sorted\x3c/h1\x3e\x3cp\x3eThis happens when creating a line series or a stock chart where the data is not sorted in ascending X order.\x3c/p\x3e\x3cp\x3eFor performance reasons, Highcharts does not sort the data, instead it requires that the implementer pre-sorts the data.\x3c/p\x3e"},16:{title:"Highcharts already defined in the page",text:"\x3ch1\x3eHighcharts already defined in the page\x3c/h1\x3e\x3cp\x3eThis error happens if the \x3ccode\x3eHighcharts\x3c/code\x3e namespace already exists when loading\x3c/p\x3e\x3cp\x3eHighcharts or Highstock.\x3c/p\x3e\x3cp\x3eThis is caused by including Highcharts or Highstock more than once.\x3c/p\x3e\x3cp\x3eKeep in mind that the \x3ccode\x3eHighcharts.Chart\x3c/code\x3e constructor and all features of Highcharts are included in Highstock, so if using the \x3ccode\x3eChart\x3c/code\x3e and \x3ccode\x3eStockChart\x3c/code\x3e constructors in combination, only the \x3ccode\x3ehighstock.js\x3c/code\x3e file is required.\x3c/p\x3e"},
15
+ 17:{title:"The requested series type does not exist",text:"\x3ch1\x3eThe requested series type does not exist\x3c/h1\x3e\x3cp\x3eThis error happens when setting \x3ccode\x3echart.type\x3c/code\x3e or \x3ccode\x3eseries.type\x3c/code\x3e to a series type that isn't defined in Highcharts. A typical reason may be that the\x3c/p\x3e\x3cp\x3emodule or extension where the series type is defined isn't included.\x3c/p\x3e\x3cp\x3eFor example in order to create an \x3ccode\x3earearange\x3c/code\x3e series, the \x3ccode\x3ehighcharts-more.js\x3c/code\x3e file must be loaded.\x3c/p\x3e"},
16
+ 18:{title:"The requested axis does not exist",text:"\x3ch1\x3eThe requested axis does not exist\x3c/h1\x3e\x3cp\x3eThis error happens when setting a series' \x3ccode\x3exAxis\x3c/code\x3e or \x3ccode\x3eyAxis\x3c/code\x3e property to point to an axis that does not exist.\x3c/p\x3e"},19:{title:"Too many ticks",text:"\x3ch1\x3eToo many ticks\x3c/h1\x3e\x3cp\x3eThis error happens when applying too many ticks to an axis, specifically when adding more ticks than the axis pixel length.\x3c/p\x3e\x3cp\x3eWith default value this won't happen, but there are edge cases, for example when setting axis categories and \x3ccode\x3exAxis.labels.step\x3c/code\x3e in combination with a long data range, when the axis is instructed to create a great number of ticks.\x3c/p\x3e"},
17
+ 20:{title:"Can't add object point configuration to a long data series",text:"\x3ch1\x3eCan't add object point configuration to a long data series\x3c/h1\x3e\x3cp\x3eIn Highstock, when trying to add a point using the object literal configuration syntax, it will only work when the number of data points is below the series' \x3ca href\x3d\"https://api.highcharts.com/highstock#plotOptions.series.turboThreshold\"\x3eturboThreshold\x3c/a\x3e. Instead of the object syntax, use the Array syntax.\x3c/p\x3e"},
18
+ 21:{title:"Can't find Proj4js library",text:'\x3ch1\x3eCan\'t find Proj4js library\x3c/h1\x3e\x3cp\x3eUsing latitude/longitude functionality in Highmaps requires the \x3ca href\x3d"http://proj4js.org"\x3eProj4js\x3c/a\x3e library to be loaded.\x3c/p\x3e'},22:{title:"Map does not support latitude/longitude",text:'\x3ch1\x3eMap does not support latitude/longitude\x3c/h1\x3e\x3cp\x3eThe loaded map does not support latitude/longitude functionality. This is only supported with maps from the \x3ca href\x3d"https://code.highcharts.com/mapdata"\x3eofficial Highmaps map collection\x3c/a\x3e from version 1.1.0 onwards. If you are using a custom map, consider using the \x3ca href\x3d"https://proj4js.org"\x3eProj4js\x3c/a\x3e library to convert between projections.\x3c/p\x3e'},
19
+ 23:{title:"Unsupported color format used for color interpolation",text:"\x3ch1\x3eUnsupported color format used for color interpolation\x3c/h1\x3e\x3cp\x3eHighcharts supports three color formats primarily: hex (`#FFFFFF`), rgb (\x3ccode\x3ergba(255,255,255)\x3c/code\x3e) and rgba (\x3ccode\x3ergba(255,255,255,1)\x3c/code\x3e). If any other format, like 3-digit colors (`#FFF`), named colors (\x3ccode\x3ewhite\x3c/code\x3e) or gradient structures are used in for example a heatmap, Highcharts will fail to interpolate and will\x3c/p\x3e\x3cp\x3einstead use the end-color with no interpolation applied.\x3c/p\x3e\x3cp\x3eWe've chosen to preserve this limitation in order to keep the weight of the implementation at a minimum.\x3c/p\x3e"},
20
+ 24:{title:"Cannot run Point.update on a grouped point",text:"\x3ch1\x3eCannot run Point.update on a grouped point\x3c/h1\x3e\x3cp\x3eRunning \x3ccode\x3ePoint.update\x3c/code\x3e in Highstock when a point is grouped by data grouping is not supported.\x3c/p\x3e\x3cp\x3eThis is not supported because when data grouping is enabled, there won't be any\x3c/p\x3e\x3cp\x3ereferences to the raw points, which is required by the \x3ccode\x3ePoint.update\x3c/code\x3e function.\x3c/p\x3e"},25:{title:"Can't find Moment.js library",
21
+ text:'\x3ch1\x3eCan\'t find Moment.js library\x3c/h1\x3e\x3cp\x3eUsing the global.timezone option requires the \x3ca href\x3d"https://momentjs.com/"\x3eMoment.js\x3c/a\x3e library to be loaded.\x3c/p\x3e'},26:{title:"WebGL not supported, and no fallback module included",text:"\x3ch1\x3eWebGL not supported, and no fallback module included\x3c/h1\x3e\x3cp\x3eThis happens when the browser doesn't support WebGL,\x3cb\x3eand\x3c/b\x3e the canvas fallback module (\x3ccode\x3eboost-canvas.js\x3c/code\x3e) hasn't been included OR if the fallback module was included\x3cb\x3eafter\x3c/b\x3e the boost module.\x3c/p\x3e\x3cp\x3eIf a fallback is required, make sure to include \x3ccode\x3eboost-canvas.js\x3c/code\x3e, and that it's included before \x3ccode\x3eboost.js\x3c/code\x3e.\x3c/p\x3e\x3cp\x3ePlease note that the fallback module is not intended as a fully-featured one. Rather, it's a minimal implementation of the WebGL counterpart.\x3c/p\x3e"},
22
+ 27:{title:"This browser does not support SVG",text:"\x3ch1\x3eThis browser does not support SVG\x3c/h1\x3e\x3cp\x3eThis happens in old IE when the \x3ccode\x3eoldie.js\x3c/code\x3e module isn't loaded.\x3c/p\x3e\x3cp\x3eIf compatibility with IE versions 6, 7 and 8 is required, add the module after\x3c/p\x3e\x3cp\x3eloading \x3ccode\x3ehighcharts.js\x3c/code\x3e. In a website context, it's a good idea to load it in a conditional comment to avoid traffic overhead and dead code in modern browsers: \x3c/p\x3e\x3cpre\x3e\x26lt;!--[if lt IE 9]\x26gt;\n \x26lt;script src\x3d'https://code.highcharts.com/modules/oldie.js'\x26gt;\x26lt;/script\x26gt;\n\x26lt;![endif]--\x26gt;\x3c/pre\x3e"},
23
+ 28:{title:"Fallback to export server disabled",text:'\x3ch1\x3eFallback to export server disabled\x3c/h1\x3e\x3cp\x3eThis happens when the offline export module encounters a chart that it can\'t\x3c/p\x3e\x3cp\x3eexport successfully, and the fallback to the online export server is disabled. The offline exporting module will fail for certain browsers, and certain\x3c/p\x3e\x3cp\x3efeatures (e.g. \x3ca href\x3d"https://api.highcharts.com/highcharts/exporting.allowHTML"\x3eexporting.allowHTML\x3c/a\x3e ), depending on the type of image exporting to. For a compatibility overview, see \x3ca href\x3d"https://www.highcharts.com/docs/export-module/client-side-export"\x3eClient Side Export\x3c/a\x3e.\x3c/p\x3e\x3cp\x3eFor very complex charts, it\'s possible that exporting fail in browsers that don\'t support Blob objects, due to data URL length limits. It\'s always recommended to define the \x3ca href\x3d"https://api.highcharts.com/highcharts/exporting.error"\x3eexporting.error\x3c/a\x3e callback when disabling the fallback, so that details can be provided to the end-user if offline export isn\'t working for them.\x3c/p\x3e'},
24
+ 29:{title:"Browser does not support WebAudio",text:"\x3ch1\x3eBrowser does not support WebAudio\x3c/h1\x3e\x3cp\x3eThis happens when you attempt to use the sonification module on a chart in a browser or environment that does not support the WebAudio API. This API is supported on all modern browsers, including Microsoft Edge, Google Chrome and Mozilla Firefox.\x3c/p\x3e"},30:{title:"Invalid instrument",text:"\x3ch1\x3eInvalid instrument\x3c/h1\x3e\x3cp\x3eThis happens when you try to use a sonification instrument that is not valid. If you are using a predefined instrument, make sure your spelling is correct.\x3c/p\x3e"},
25
+ meta:{files:"errors/10/readme.md errors/10/enduser.md errors/11/readme.md errors/12/readme.md errors/13/readme.md errors/14/readme.md errors/15/readme.md errors/16/readme.md errors/17/readme.md errors/18/readme.md errors/19/readme.md errors/20/readme.md errors/21/readme.md errors/22/readme.md errors/23/readme.md errors/24/readme.md errors/25/readme.md errors/26/readme.md errors/27/readme.md errors/28/readme.md errors/29/readme.md errors/30/readme.md".split(" ")}};(function(a){var f=a.addEvent,h=a.isNumber,
26
+ k=a.setOptions,g=a.each;k({chart:{displayErrors:!0}});f(a.Chart,"displayError",function(d){var b=d.code,c=this.options.chart;d=this.renderer;var e;this.errorElements&&g(this.errorElements,function(a){a&&a.destroy()});c&&c.displayErrors&&(this.errorElements=[],b=h(b)?"Highcharts error #"+b+": "+a.errorMessages[b].title+a.errorMessages[b].text:b,c=this.chartWidth,e=this.chartHeight,this.errorElements[0]=d.rect(2,2,c-4,e-4).attr({"stroke-width":4,stroke:"#ff0000",zIndex:3}).add(),this.errorElements[1]=
27
+ d.label(b,0,0,"rect",null,null,!0).css({color:"#ffffff",width:c-16,padding:0}).attr({fill:"#ff0000",width:c,padding:8,zIndex:10}).add(),this.errorElements[1].attr({y:e-this.errorElements[1].getBBox().height}))});f(a.Chart,"beforeRedraw",function(){var a=this.errorElements;a&&a.length&&g(a,function(a){a.destroy()});this.errorElements=null})})(a)});
28
+ //# sourceMappingURL=debugger.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"debugger.js.map","lineCount":27,"mappings":"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","sources":["debugger.src.js"],"names":["factory","module","exports","define","amd","Highcharts","undefined","errorMessages","H","addEvent","isNumber","setOptions","each","chart","displayErrors","Chart","e","code","options","renderer","chartHeight","errorElements","el","destroy","msg","title","text","chartWidth","rect","attr","stroke","zIndex","add","label","css","color","width","padding","fill","y","getBBox","height","length"]}
@@ -0,0 +1,267 @@
1
+ /**
2
+ * @license Highcharts JS v7.0.3 (2019-02-06)
3
+ * Debugger module
4
+ *
5
+ * (c) 2012-2019 Torstein Honsi
6
+ *
7
+ * License: www.highcharts.com/license
8
+ */
9
+ 'use strict';
10
+ (function (factory) {
11
+ if (typeof module === 'object' && module.exports) {
12
+ factory['default'] = factory;
13
+ module.exports = factory;
14
+ } else if (typeof define === 'function' && define.amd) {
15
+ define(function () {
16
+ return factory;
17
+ });
18
+ } else {
19
+ factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
20
+ }
21
+ }(function (Highcharts) {
22
+ (function (H) {
23
+ /* eslint-disable */
24
+ /* *
25
+ * Error information for the debugger module
26
+ * (c) 2010-2019 Torstein Honsi
27
+ * License: www.highcharts.com/license
28
+ */
29
+
30
+ // DO NOT EDIT!
31
+ // Automatically generated by ./tools/error-messages.js
32
+ // Sources can be found in ./errors/*/*.md
33
+
34
+
35
+
36
+ H.errorMessages = {
37
+ "10": {
38
+ "title": "Can't plot zero or subzero values on a logarithmic axis",
39
+ "text": "<h1>Can't plot zero or subzero values on a logarithmic axis</h1><p>This error occurs in the following situations: </p><ul><li>If a zero or subzero data value is added to a logarithmic axis</li><li>If the minimum of a logarithimic axis is set to 0 or less</li><li>If the threshold is set to 0 or less</li></ul><p>Note: As of Highcharts 5.0.8 it's possible to bypass this error message by setting <code>Axis.prototype.allowNegativeLog</code> to true, and add custom conversion functions. <a href=\"https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/samples/highcharts/yaxis/type-log-negative/\">View live demo</a>.</p>",
40
+ "enduser": "<h1>Can't plot zero or subzero values on a logarithmic axis</h1><p>This error occurs in the following situations:</p><p>* If a zero or subzero data value is added to a logarithmic axis</p><p>* If the minimum of a logarithimic axis is set to 0 or less</p><p>* If the threshold is set to 0 or less</p><p>As of Highcharts 5.0.8 it's possible to bypass this error message by setting <code>Axis.prototype.allowNegativeLog</code> to <code>true</code> and add custom conversion functions. <a href=\"http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/samples/highcharts/yaxis/type-log-negative/\">\">View Live Demo</a>.</p>"
41
+ },
42
+ "11": {
43
+ "title": "Can't link axes of different type",
44
+ "text": "<h1>Can't link axes of different type</h1><p>This error occurs when using the <code>linkedTo</code> option to link two axes of different types, for example a logarithmic axis to a linear axis. Highcharts can't link these because the calculation of ticks, extremes, padding etc. is different.</p>"
45
+ },
46
+ "12": {
47
+ "title": "Highcharts expects point configuration to be numbers or arrays in turbo mode",
48
+ "text": "<h1>Highcharts expects point configuration to be numbers or arrays in turbo mode</h1><p>This error occurs if the series.data option contains object configurations and the number of points exceeds the turboThreshold. It can be fixed by either setting <code>turboThreshold</code> to a higher value, or changing the point configurations to numbers or arrays.</p><p>See <a href=\"https://api.highcharts.com/highcharts#plotOptions.series.turboThreshold\">plotOptions.series.turboThreshold</a></p>"
49
+ },
50
+ "13": {
51
+ "title": "Rendering div not found",
52
+ "text": "<h1>Rendering div not found</h1><p>This error occurs if the <a href=\"https://api.highcharts.com/highcharts#chart.renderTo\">chart.renderTo</a> option is misconfigured so that Highcharts is unable to find the HTML element to render the chart in.</p><p>If using a DOM ID when creating the chart, make sure a node with the same ID exists somewhere in the DOM.</p>"
53
+ },
54
+ "14": {
55
+ "title": "String value sent to series.data, expected Number",
56
+ "text": "<h1>String value sent to series.data, expected Number</h1><p>This happens if using a string as a data point, for example in a setup like this: </p><pre>series: [{\n data: [&quot;3&quot;, &quot;5&quot;, &quot;1&quot;, &quot;6&quot;]\n}]</pre><p>Highcharts expects numerical data values.</p><p>The most common reason for this error this is that data is parsed from CSV or</p><p>from a XML source, and the implementer forgot to run <code>parseFloat</code></p><p>on the parsed value.</p><p>Note: For performance reasons internal type casting is not performed, and only the first value is checked (since 2.3).</p>"
57
+ },
58
+ "15": {
59
+ "title": "Highcharts expects data to be sorted",
60
+ "text": "<h1>Highcharts expects data to be sorted</h1><p>This happens when creating a line series or a stock chart where the data is not sorted in ascending X order.</p><p>For performance reasons, Highcharts does not sort the data, instead it requires that the implementer pre-sorts the data.</p>"
61
+ },
62
+ "16": {
63
+ "title": "Highcharts already defined in the page",
64
+ "text": "<h1>Highcharts already defined in the page</h1><p>This error happens if the <code>Highcharts</code> namespace already exists when loading</p><p>Highcharts or Highstock.</p><p>This is caused by including Highcharts or Highstock more than once.</p><p>Keep in mind that the <code>Highcharts.Chart</code> constructor and all features of Highcharts are included in Highstock, so if using the <code>Chart</code> and <code>StockChart</code> constructors in combination, only the <code>highstock.js</code> file is required.</p>"
65
+ },
66
+ "17": {
67
+ "title": "The requested series type does not exist",
68
+ "text": "<h1>The requested series type does not exist</h1><p>This error happens when setting <code>chart.type</code> or <code>series.type</code> to a series type that isn't defined in Highcharts. A typical reason may be that the</p><p>module or extension where the series type is defined isn't included.</p><p>For example in order to create an <code>arearange</code> series, the <code>highcharts-more.js</code> file must be loaded.</p>"
69
+ },
70
+ "18": {
71
+ "title": "The requested axis does not exist",
72
+ "text": "<h1>The requested axis does not exist</h1><p>This error happens when setting a series' <code>xAxis</code> or <code>yAxis</code> property to point to an axis that does not exist.</p>"
73
+ },
74
+ "19": {
75
+ "title": "Too many ticks",
76
+ "text": "<h1>Too many ticks</h1><p>This error happens when applying too many ticks to an axis, specifically when adding more ticks than the axis pixel length.</p><p>With default value this won't happen, but there are edge cases, for example when setting axis categories and <code>xAxis.labels.step</code> in combination with a long data range, when the axis is instructed to create a great number of ticks.</p>"
77
+ },
78
+ "20": {
79
+ "title": "Can't add object point configuration to a long data series",
80
+ "text": "<h1>Can't add object point configuration to a long data series</h1><p>In Highstock, when trying to add a point using the object literal configuration syntax, it will only work when the number of data points is below the series' <a href=\"https://api.highcharts.com/highstock#plotOptions.series.turboThreshold\">turboThreshold</a>. Instead of the object syntax, use the Array syntax.</p>"
81
+ },
82
+ "21": {
83
+ "title": "Can't find Proj4js library",
84
+ "text": "<h1>Can't find Proj4js library</h1><p>Using latitude/longitude functionality in Highmaps requires the <a href=\"http://proj4js.org\">Proj4js</a> library to be loaded.</p>"
85
+ },
86
+ "22": {
87
+ "title": "Map does not support latitude/longitude",
88
+ "text": "<h1>Map does not support latitude/longitude</h1><p>The loaded map does not support latitude/longitude functionality. This is only supported with maps from the <a href=\"https://code.highcharts.com/mapdata\">official Highmaps map collection</a> from version 1.1.0 onwards. If you are using a custom map, consider using the <a href=\"https://proj4js.org\">Proj4js</a> library to convert between projections.</p>"
89
+ },
90
+ "23": {
91
+ "title": "Unsupported color format used for color interpolation",
92
+ "text": "<h1>Unsupported color format used for color interpolation</h1><p>Highcharts supports three color formats primarily: hex (`#FFFFFF`), rgb (<code>rgba(255,255,255)</code>) and rgba (<code>rgba(255,255,255,1)</code>). If any other format, like 3-digit colors (`#FFF`), named colors (<code>white</code>) or gradient structures are used in for example a heatmap, Highcharts will fail to interpolate and will</p><p>instead use the end-color with no interpolation applied.</p><p>We've chosen to preserve this limitation in order to keep the weight of the implementation at a minimum.</p>"
93
+ },
94
+ "24": {
95
+ "title": "Cannot run Point.update on a grouped point",
96
+ "text": "<h1>Cannot run Point.update on a grouped point</h1><p>Running <code>Point.update</code> in Highstock when a point is grouped by data grouping is not supported.</p><p>This is not supported because when data grouping is enabled, there won't be any</p><p>references to the raw points, which is required by the <code>Point.update</code> function.</p>"
97
+ },
98
+ "25": {
99
+ "title": "Can't find Moment.js library",
100
+ "text": "<h1>Can't find Moment.js library</h1><p>Using the global.timezone option requires the <a href=\"https://momentjs.com/\">Moment.js</a> library to be loaded.</p>"
101
+ },
102
+ "26": {
103
+ "title": "WebGL not supported, and no fallback module included",
104
+ "text": "<h1>WebGL not supported, and no fallback module included</h1><p>This happens when the browser doesn't support WebGL,<b>and</b> the canvas fallback module (<code>boost-canvas.js</code>) hasn't been included OR if the fallback module was included<b>after</b> the boost module.</p><p>If a fallback is required, make sure to include <code>boost-canvas.js</code>, and that it's included before <code>boost.js</code>.</p><p>Please note that the fallback module is not intended as a fully-featured one. Rather, it's a minimal implementation of the WebGL counterpart.</p>"
105
+ },
106
+ "27": {
107
+ "title": "This browser does not support SVG",
108
+ "text": "<h1>This browser does not support SVG</h1><p>This happens in old IE when the <code>oldie.js</code> module isn't loaded.</p><p>If compatibility with IE versions 6, 7 and 8 is required, add the module after</p><p>loading <code>highcharts.js</code>. In a website context, it's a good idea to load it in a conditional comment to avoid traffic overhead and dead code in modern browsers: </p><pre>&lt;!--[if lt IE 9]&gt;\n &lt;script src='https://code.highcharts.com/modules/oldie.js'&gt;&lt;/script&gt;\n&lt;![endif]--&gt;</pre>"
109
+ },
110
+ "28": {
111
+ "title": "Fallback to export server disabled",
112
+ "text": "<h1>Fallback to export server disabled</h1><p>This happens when the offline export module encounters a chart that it can't</p><p>export successfully, and the fallback to the online export server is disabled. The offline exporting module will fail for certain browsers, and certain</p><p>features (e.g. <a href=\"https://api.highcharts.com/highcharts/exporting.allowHTML\">exporting.allowHTML</a> ), depending on the type of image exporting to. For a compatibility overview, see <a href=\"https://www.highcharts.com/docs/export-module/client-side-export\">Client Side Export</a>.</p><p>For very complex charts, it's possible that exporting fail in browsers that don't support Blob objects, due to data URL length limits. It's always recommended to define the <a href=\"https://api.highcharts.com/highcharts/exporting.error\">exporting.error</a> callback when disabling the fallback, so that details can be provided to the end-user if offline export isn't working for them.</p>"
113
+ },
114
+ "29": {
115
+ "title": "Browser does not support WebAudio",
116
+ "text": "<h1>Browser does not support WebAudio</h1><p>This happens when you attempt to use the sonification module on a chart in a browser or environment that does not support the WebAudio API. This API is supported on all modern browsers, including Microsoft Edge, Google Chrome and Mozilla Firefox.</p>"
117
+ },
118
+ "30": {
119
+ "title": "Invalid instrument",
120
+ "text": "<h1>Invalid instrument</h1><p>This happens when you try to use a sonification instrument that is not valid. If you are using a predefined instrument, make sure your spelling is correct.</p>"
121
+ },
122
+ "meta": {
123
+ "files": [
124
+ "errors/10/readme.md",
125
+ "errors/10/enduser.md",
126
+ "errors/11/readme.md",
127
+ "errors/12/readme.md",
128
+ "errors/13/readme.md",
129
+ "errors/14/readme.md",
130
+ "errors/15/readme.md",
131
+ "errors/16/readme.md",
132
+ "errors/17/readme.md",
133
+ "errors/18/readme.md",
134
+ "errors/19/readme.md",
135
+ "errors/20/readme.md",
136
+ "errors/21/readme.md",
137
+ "errors/22/readme.md",
138
+ "errors/23/readme.md",
139
+ "errors/24/readme.md",
140
+ "errors/25/readme.md",
141
+ "errors/26/readme.md",
142
+ "errors/27/readme.md",
143
+ "errors/28/readme.md",
144
+ "errors/29/readme.md",
145
+ "errors/30/readme.md"
146
+ ]
147
+ }
148
+ };
149
+
150
+ }(Highcharts));
151
+ (function (H) {
152
+ /* *
153
+ *
154
+ * (c) 2010-2019 Torstein Honsi
155
+ *
156
+ * License: www.highcharts.com/license
157
+ *
158
+ * */
159
+
160
+
161
+
162
+ var addEvent = H.addEvent,
163
+ isNumber = H.isNumber,
164
+ setOptions = H.setOptions,
165
+ each = H.each;
166
+
167
+ setOptions({
168
+ /**
169
+ * @optionparent chart
170
+ */
171
+ chart: {
172
+ /**
173
+ * Whether to display errors on the chart. When `false`, the errors will
174
+ * be shown only in the console.
175
+ *
176
+ * Requires `debugger.js` module.
177
+ *
178
+ * @sample highcharts/chart/display-errors/
179
+ * Show errors on chart
180
+ *
181
+ * @since 7.0.0
182
+ */
183
+ displayErrors: true
184
+ }
185
+ });
186
+
187
+ addEvent(H.Chart, 'displayError', function (e) {
188
+ var chart = this,
189
+ code = e.code,
190
+ msg,
191
+ options = chart.options.chart,
192
+ renderer = chart.renderer,
193
+ chartWidth,
194
+ chartHeight;
195
+
196
+ if (chart.errorElements) {
197
+ each(chart.errorElements, function (el) {
198
+ if (el) {
199
+ el.destroy();
200
+ }
201
+ });
202
+ }
203
+
204
+ if (options && options.displayErrors) {
205
+ chart.errorElements = [];
206
+ msg = isNumber(code) ? 'Highcharts error #' + code + ': ' +
207
+ H.errorMessages[code].title + H.errorMessages[code].text : code;
208
+ chartWidth = chart.chartWidth;
209
+ chartHeight = chart.chartHeight;
210
+
211
+ // Render red chart frame.
212
+ chart.errorElements[0] = renderer.rect(
213
+ 2,
214
+ 2,
215
+ chartWidth - 4,
216
+ chartHeight - 4
217
+ ).attr({
218
+ 'stroke-width': 4,
219
+ stroke: '#ff0000',
220
+ zIndex: 3
221
+ }).add();
222
+
223
+ // Render error message.
224
+ chart.errorElements[1] = renderer.label(
225
+ msg,
226
+ 0,
227
+ 0,
228
+ 'rect',
229
+ null,
230
+ null,
231
+ true
232
+ ).css({
233
+ color: '#ffffff',
234
+ width: chartWidth - 16,
235
+ padding: 0
236
+ }).attr({
237
+ fill: '#ff0000',
238
+ width: chartWidth,
239
+ padding: 8,
240
+ zIndex: 10
241
+ }).add();
242
+
243
+ chart.errorElements[1].attr({
244
+ y: chartHeight - this.errorElements[1].getBBox().height
245
+ });
246
+ }
247
+ });
248
+
249
+ addEvent(H.Chart, 'beforeRedraw', function () {
250
+ var errorElements = this.errorElements;
251
+
252
+ if (errorElements && errorElements.length) {
253
+ each(errorElements, function (el) {
254
+ el.destroy();
255
+ });
256
+ }
257
+ this.errorElements = null;
258
+ });
259
+
260
+ }(Highcharts));
261
+ return (function () {
262
+
263
+
264
+
265
+
266
+ }());
267
+ }));
@@ -0,0 +1,15 @@
1
+ /*
2
+ Highcharts JS v7.0.3 (2019-02-06)
3
+ Dependency wheel module
4
+
5
+ (c) 2010-2018 Torstein Honsi
6
+
7
+ License: www.highcharts.com/license
8
+ */
9
+ (function(c){"object"===typeof module&&module.exports?(c["default"]=c,module.exports=c):"function"===typeof define&&define.amd?define(function(){return c}):c("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(c){(function(c){c.NodesMixin={createNode:function(l){function h(a,b){return c.find(a,function(a){return a.id===b})}var a=h(this.nodes,l),b=this.pointClass,m;a||(m=this.options.nodes&&h(this.options.nodes,l),a=(new b).init(this,c.extend({className:"highcharts-node",isNode:!0,id:l,y:1},
10
+ m)),a.linksTo=[],a.linksFrom=[],a.formatPrefix="node",a.name=a.name||a.options.id,a.getSum=function(){var b=0,g=0;a.linksTo.forEach(function(a){b+=a.weight});a.linksFrom.forEach(function(a){g+=a.weight});return Math.max(b,g)},a.offset=function(b,g){for(var d=0,f=0;f<a[g].length;f++){if(a[g][f]===b)return d;d+=a[g][f].weight}},a.hasShape=function(){var b=0;a.linksTo.forEach(function(a){a.outgoing&&b++});return!a.linksTo.length||b!==a.linksTo.length},this.nodes.push(a));return a}}})(c);(function(c){var l=
11
+ c.seriesType,h=c.seriesTypes.sankey.prototype;l("dependencywheel","sankey",{center:[],curveFactor:.6,startAngle:0},{orderNodes:!1,getCenter:c.seriesTypes.pie.prototype.getCenter,createNodeColumns:function(){var a=[this.createNodeColumn()];this.nodes.forEach(function(b){b.column=0;a[0].push(b)});return a},getNodePadding:function(){return this.options.nodePadding/Math.PI},createNode:function(a){var b=h.createNode.call(this,a);b.index=this.nodes.length-1;b.getSum=function(){return b.linksFrom.concat(b.linksTo).reduce(function(a,
12
+ b){return a+b.weight},0)};b.offset=function(a){function c(a){return a.fromNode===b?a.toNode:a.fromNode}var g=0,d,f=b.linksFrom.concat(b.linksTo),q;f.sort(function(a,b){return c(a).index-c(b).index});for(d=0;d<f.length;d++)if(c(f[d]).index>b.index){f=f.slice(0,d).reverse().concat(f.slice(d).reverse());q=!0;break}q||f.reverse();for(d=0;d<f.length;d++){if(f[d]===a)return g;g+=f[d].weight}};return b},translate:function(){var a=this.options,b=2*Math.PI/(this.chart.plotHeight+this.getNodePadding()),m=this.getCenter(),
13
+ l=(a.startAngle-90)*c.deg2rad;h.translate.call(this);this.nodeColumns[0].forEach(function(c){var d=c.shapeArgs,f=m[0],g=m[1],h=m[2]/2,k=h-a.nodeWidth,n=l+b*d.y,d=l+b*(d.y+d.height);c.shapeType="arc";c.shapeArgs={x:f,y:g,r:h,innerR:k,start:n,end:d};c.dlBox={x:f+Math.cos((n+d)/2)*(h+k)/2,y:g+Math.sin((n+d)/2)*(h+k)/2,width:1,height:1};c.linksFrom.forEach(function(c){var d,e=c.linkBase.map(function(e,h){e*=b;var m=Math.cos(l+e)*(k+1),n=Math.sin(l+e)*(k+1),p=a.curveFactor;d=Math.abs(c.linkBase[3-h]*b-
14
+ e);d>Math.PI&&(d=2*Math.PI-d);d*=k;d<k&&(p*=d/k);return{x:f+m,y:g+n,cpX:f+(1-p)*m,cpY:g+(1-p)*n}});c.shapeArgs={d:["M",e[0].x,e[0].y,"A",k,k,0,0,1,e[1].x,e[1].y,"C",e[1].cpX,e[1].cpY,e[2].cpX,e[2].cpY,e[2].x,e[2].y,"A",k,k,0,0,1,e[3].x,e[3].y,"C",e[3].cpX,e[3].cpY,e[0].cpX,e[0].cpY,e[0].x,e[0].y]}})})}})})(c)});
15
+ //# sourceMappingURL=dependency-wheel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dependency-wheel.js.map","lineCount":14,"mappings":"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","sources":["dependency-wheel.src.js"],"names":["factory","module","exports","define","amd","Highcharts","undefined","H","NodesMixin","createNode","id","findById","nodes","find","node","PointClass","pointClass","options","init","extend","className","isNode","y","linksTo","linksFrom","formatPrefix","name","getSum","node.getSum","sumTo","sumFrom","forEach","link","weight","Math","max","offset","node.offset","point","coll","i","length","hasShape","node.hasShape","outgoing","push","unsupportedSeriesType","seriesType","base","seriesTypes","sankey","prototype","center","curveFactor","startAngle","orderNodes","getCenter","pie","createNodeColumns","columns","createNodeColumn","column","getNodePadding","nodePadding","PI","call","index","concat","reduce","acc","otherNode","fromNode","toNode","links","sliced","sort","a","b","slice","reverse","translate","factor","chart","plotHeight","deg2rad","nodeColumns","shapeArgs","centerX","centerY","r","innerR","nodeWidth","start","end","height","shapeType","x","dlBox","cos","sin","width","distance","corners","linkBase","map","top","angle","abs","cpX","cpY","d"]}
@@ -0,0 +1,301 @@
1
+ /**
2
+ * @license Highcharts JS v7.0.3 (2019-02-06)
3
+ * Dependency wheel module
4
+ *
5
+ * (c) 2010-2018 Torstein Honsi
6
+ *
7
+ * License: www.highcharts.com/license
8
+ */
9
+ 'use strict';
10
+ (function (factory) {
11
+ if (typeof module === 'object' && module.exports) {
12
+ factory['default'] = factory;
13
+ module.exports = factory;
14
+ } else if (typeof define === 'function' && define.amd) {
15
+ define(function () {
16
+ return factory;
17
+ });
18
+ } else {
19
+ factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
20
+ }
21
+ }(function (Highcharts) {
22
+ (function (H) {
23
+
24
+ H.NodesMixin = {
25
+ // Create a single node that holds information on incoming and outgoing
26
+ // links.
27
+ createNode: function (id) {
28
+
29
+ function findById(nodes, id) {
30
+ return H.find(nodes, function (node) {
31
+ return node.id === id;
32
+ });
33
+ }
34
+
35
+ var node = findById(this.nodes, id),
36
+ PointClass = this.pointClass,
37
+ options;
38
+
39
+ if (!node) {
40
+ options = this.options.nodes && findById(this.options.nodes, id);
41
+ node = (new PointClass()).init(
42
+ this,
43
+ H.extend({
44
+ className: 'highcharts-node',
45
+ isNode: true,
46
+ id: id,
47
+ y: 1 // Pass isNull test
48
+ }, options)
49
+ );
50
+ node.linksTo = [];
51
+ node.linksFrom = [];
52
+ node.formatPrefix = 'node';
53
+ node.name = node.name || node.options.id; // for use in formats
54
+
55
+ // Return the largest sum of either the incoming or outgoing links.
56
+ node.getSum = function () {
57
+ var sumTo = 0,
58
+ sumFrom = 0;
59
+
60
+ node.linksTo.forEach(function (link) {
61
+ sumTo += link.weight;
62
+ });
63
+ node.linksFrom.forEach(function (link) {
64
+ sumFrom += link.weight;
65
+ });
66
+ return Math.max(sumTo, sumFrom);
67
+ };
68
+ // Get the offset in weight values of a point/link.
69
+ node.offset = function (point, coll) {
70
+ var offset = 0;
71
+
72
+ for (var i = 0; i < node[coll].length; i++) {
73
+ if (node[coll][i] === point) {
74
+ return offset;
75
+ }
76
+ offset += node[coll][i].weight;
77
+ }
78
+ };
79
+
80
+ // Return true if the node has a shape, otherwise all links are
81
+ // outgoing.
82
+ node.hasShape = function () {
83
+ var outgoing = 0;
84
+
85
+ node.linksTo.forEach(function (link) {
86
+ if (link.outgoing) {
87
+ outgoing++;
88
+ }
89
+ });
90
+ return !node.linksTo.length || outgoing !== node.linksTo.length;
91
+ };
92
+
93
+ this.nodes.push(node);
94
+ }
95
+ return node;
96
+ }
97
+ };
98
+
99
+ }(Highcharts));
100
+ (function (H) {
101
+ /* *
102
+ * Experimental dependency wheel module
103
+ *
104
+ * (c) 2018 Torstein Honsi
105
+ *
106
+ * License: www.highcharts.com/license
107
+ */
108
+
109
+
110
+
111
+ var unsupportedSeriesType = H.seriesType;
112
+
113
+ var base = H.seriesTypes.sankey.prototype;
114
+
115
+ unsupportedSeriesType('dependencywheel', 'sankey', {
116
+ center: [],
117
+ curveFactor: 0.6,
118
+ startAngle: 0
119
+ }, {
120
+ orderNodes: false,
121
+ getCenter: H.seriesTypes.pie.prototype.getCenter,
122
+
123
+ // Dependency wheel has only one column, it runs along the perimeter
124
+ createNodeColumns: function () {
125
+ var columns = [this.createNodeColumn()];
126
+ this.nodes.forEach(function (node) {
127
+ node.column = 0;
128
+ columns[0].push(node);
129
+ });
130
+ return columns;
131
+ },
132
+
133
+ // Translate from vertical pixels to perimeter
134
+ getNodePadding: function () {
135
+ return this.options.nodePadding / Math.PI;
136
+ },
137
+
138
+ createNode: function (id) {
139
+ var node = base.createNode.call(this, id);
140
+ node.index = this.nodes.length - 1;
141
+
142
+ // Return the sum of incoming and outgoing links
143
+ node.getSum = function () {
144
+ return node.linksFrom.concat(node.linksTo)
145
+ .reduce(function (acc, link) {
146
+ return acc + link.weight;
147
+ }, 0);
148
+ };
149
+
150
+ // Get the offset in weight values of a point/link.
151
+ node.offset = function (point) {
152
+
153
+ var offset = 0,
154
+ i,
155
+ links = node.linksFrom.concat(node.linksTo),
156
+ sliced;
157
+
158
+ function otherNode(link) {
159
+ if (link.fromNode === node) {
160
+ return link.toNode;
161
+ }
162
+ return link.fromNode;
163
+ }
164
+
165
+ // Sort and slice the links to avoid links going out of each node
166
+ // crossing each other.
167
+ links.sort(function (a, b) {
168
+ return otherNode(a).index - otherNode(b).index;
169
+ });
170
+ for (i = 0; i < links.length; i++) {
171
+ if (otherNode(links[i]).index > node.index) {
172
+ links = links.slice(0, i).reverse().concat(
173
+ links.slice(i).reverse()
174
+ );
175
+ sliced = true;
176
+ break;
177
+ }
178
+ }
179
+ if (!sliced) {
180
+ links.reverse();
181
+ }
182
+
183
+ for (i = 0; i < links.length; i++) {
184
+ if (links[i] === point) {
185
+ return offset;
186
+ }
187
+ offset += links[i].weight;
188
+ }
189
+ };
190
+
191
+ return node;
192
+ },
193
+
194
+ // @todo: Override the refactored sankey translateLink and translateNode
195
+ // functions instead of the whole translate function
196
+ translate: function () {
197
+
198
+ var options = this.options,
199
+ factor = 2 * Math.PI /
200
+ (this.chart.plotHeight + this.getNodePadding()),
201
+ center = this.getCenter(),
202
+ startAngle = (options.startAngle - 90) * H.deg2rad;
203
+
204
+ base.translate.call(this);
205
+
206
+ this.nodeColumns[0].forEach(function (node) {
207
+ var shapeArgs = node.shapeArgs,
208
+ centerX = center[0],
209
+ centerY = center[1],
210
+ r = center[2] / 2,
211
+ innerR = r - options.nodeWidth,
212
+ start = startAngle + factor * shapeArgs.y,
213
+ end = startAngle + factor * (shapeArgs.y + shapeArgs.height);
214
+
215
+ node.shapeType = 'arc';
216
+ node.shapeArgs = {
217
+ x: centerX,
218
+ y: centerY,
219
+ r: r,
220
+ innerR: innerR,
221
+ start: start,
222
+ end: end
223
+ };
224
+
225
+ node.dlBox = {
226
+ x: centerX + Math.cos((start + end) / 2) * (r + innerR) / 2,
227
+ y: centerY + Math.sin((start + end) / 2) * (r + innerR) / 2,
228
+ width: 1,
229
+ height: 1
230
+ };
231
+
232
+ // Draw the links from this node
233
+ node.linksFrom.forEach(function (point) {
234
+ var distance;
235
+ var corners = point.linkBase.map(function (top, i) {
236
+ var angle = factor * top,
237
+ x = Math.cos(startAngle + angle) * (innerR + 1),
238
+ y = Math.sin(startAngle + angle) * (innerR + 1),
239
+ curveFactor = options.curveFactor;
240
+
241
+ // The distance between the from and to node along the
242
+ // perimeter. This affect how curved the link is, so that
243
+ // links between neighbours don't extend too far towards the
244
+ // center.
245
+ distance = Math.abs(point.linkBase[3 - i] * factor - angle);
246
+ if (distance > Math.PI) {
247
+ distance = 2 * Math.PI - distance;
248
+ }
249
+ distance = distance * innerR;
250
+ if (distance < innerR) {
251
+ curveFactor *= (distance / innerR);
252
+ }
253
+
254
+
255
+ return {
256
+ x: centerX + x,
257
+ y: centerY + y,
258
+ cpX: centerX + (1 - curveFactor) * x,
259
+ cpY: centerY + (1 - curveFactor) * y
260
+ };
261
+ });
262
+
263
+ point.shapeArgs = {
264
+ d: [
265
+ 'M',
266
+ corners[0].x, corners[0].y,
267
+ 'A',
268
+ innerR, innerR,
269
+ 0,
270
+ 0, // long arc
271
+ 1, // clockwise
272
+ corners[1].x, corners[1].y,
273
+ 'C',
274
+ corners[1].cpX, corners[1].cpY,
275
+ corners[2].cpX, corners[2].cpY,
276
+ corners[2].x, corners[2].y,
277
+ 'A',
278
+ innerR, innerR,
279
+ 0,
280
+ 0,
281
+ 1,
282
+ corners[3].x, corners[3].y,
283
+ 'C',
284
+ corners[3].cpX, corners[3].cpY,
285
+ corners[0].cpX, corners[0].cpY,
286
+ corners[0].x, corners[0].y
287
+ ]
288
+ };
289
+
290
+ });
291
+
292
+ });
293
+ }
294
+ });
295
+
296
+ }(Highcharts));
297
+ return (function () {
298
+
299
+
300
+ }());
301
+ }));