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,40 @@
1
+ /*
2
+ Highcharts JS v7.0.3 (2019-02-06)
3
+
4
+ (c) 2009-2019 Torstein Honsi
5
+
6
+ License: www.highcharts.com/license
7
+ */
8
+ (function(m){"object"===typeof module&&module.exports?(m["default"]=m,module.exports=m):"function"===typeof define&&define.amd?define(function(){return m}):m("undefined"!==typeof Highcharts?Highcharts:void 0)})(function(m){(function(h){function m(a){return{left:"right",right:"left",top:"bottom",bottom:"top"}[a]}function L(a){var b=["draggableX","draggableY"],c;n(a.dragDropProps,function(a){a.optionName&&b.push(a.optionName)});for(c=b.length;c--;)if(a.options.dragDrop[b[c]])return!0}function M(a){var b=
9
+ a.series?a.series.length:0;if(a.hasCartesianSeries&&!a.polar)for(;b--;)if(a.series[b].options.dragDrop&&L(a.series[b]))return!0}function N(a){var b=a.series,c=b.options.dragDrop||{};a=a.options&&a.options.dragDrop;var e,f;n(b.dragDropProps,function(a){"x"===a.axis&&a.move?e=!0:"y"===a.axis&&a.move&&(f=!0)});return(c.draggableX&&e||c.draggableY&&f)&&!(a&&!1===a.draggableX&&!1===a.draggableY)&&b.yAxis&&b.xAxis}function t(a,b){return void 0===a.chartX||void 0===a.chartY?b.pointer.normalize(a):a}function w(a,
10
+ b,c,e){var f=b.map(function(b){return p(a,b,c,e)});return function(){f.forEach(function(a){a()})}}function O(a,b,c){var e=b.dragDropData.origin;b=e.chartX;var e=e.chartY,f=a.chartX;a=a.chartY;return Math.sqrt((f-b)*(f-b)+(a-e)*(a-e))>c}function P(a,b,c){var e={chartX:a.chartX,chartY:a.chartY,guideBox:c&&{x:c.attr("x"),y:c.attr("y"),width:c.attr("width"),height:c.attr("height")},points:{}};b.forEach(function(a){var b={};n(a.series.dragDropProps,function(c,e){b[e]=a[e]});b.point=a;e.points[a.id]=b});
11
+ return e}function Q(a){var b=a.series,c=b.options.dragDrop.groupBy;return a.options[c]?b.points.filter(function(b){return b.options[c]===a.options[c]}):[a]}function D(a,b){var c=Q(b),e=b.series,f=e.chart,l;u(e.options.dragDrop&&e.options.dragDrop.liveRedraw,!0)||(f.dragGuideBox=l=e.getGuideBox(c),f.setGuideBoxState("default",e.options.dragDrop.guideBox).add(e.group));f.dragDropData={origin:P(a,c,l),point:b,groupedPoints:c,isDragging:!0}}function R(a,b){var c=a.point,e=q(c.series.options.dragDrop,
12
+ c.options.dragDrop),f={},l=a.updateProp,C={};n(c.series.dragDropProps,function(a,b){if(!l||l===b&&a.resize&&(!a.optionName||!1!==e[a.optionName]))if(l||a.move&&("x"===a.axis&&e.draggableX||"y"===a.axis&&e.draggableY))f[b]=a});(l?[c]:a.groupedPoints).forEach(function(c){C[c.id]={point:c,newValues:c.getDropValues(a.origin,b,f)}});return C}function E(a,b){var c=a.dragDropData.newPoints;b=!1===b?!1:q({duration:400},a.options.animation);a.isDragDropAnimating=!0;n(c,function(a){a.point.update(a.newValues,
13
+ !1)});a.redraw(b);setTimeout(function(){delete a.isDragDropAnimating;a.hoverPoint&&!a.dragHandles&&a.hoverPoint.showDragHandles()},b.duration)}function F(a){var b=a.series&&a.series.chart,c=b&&b.dragDropData;!b||!b.dragHandles||c&&(c.isDragging&&c.draggedPastSensitivity||c.isHoveringHandle===a.id)||b.hideDragHandles()}function G(a){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}function H(a){for(var b in a)if(a.hasOwnProperty(b))return a[b]}function S(a,b){if(!b.zoomOrPanKeyPressed(a)){var c=
14
+ b.dragDropData,e,f;f=0;c&&c.isDragging&&(e=c.point,f=e.series.options.dragDrop,a.preventDefault(),c.draggedPastSensitivity||(c.draggedPastSensitivity=O(a,b,u(e.options.dragDrop&&e.options.dragDrop.dragSensitivity,f&&f.dragSensitivity,2))),c.draggedPastSensitivity&&(c.newPoints=R(c,a),b=c.newPoints,f=G(b),b=1===f?H(b):null,e.firePointEvent("drag",{origin:c.origin,newPoints:c.newPoints,newPoint:b&&b.newValues,newPointId:b&&b.point.id,numNewPoints:f,chartX:a.chartX,chartY:a.chartY},function(){var b=
15
+ e.series,c=b.chart,f=c.dragDropData,d=q(b.options.dragDrop,e.options.dragDrop),g=d.draggableX,k=d.draggableY,b=f.origin,h=a.chartX-b.chartX,x=a.chartY-b.chartY,r=h,f=f.updateProp;c.inverted&&(h=-x,x=-r);if(u(d.liveRedraw,!0))E(c,!1),e.showDragHandles();else if(f){var g=h,c=x,r=e.series,k=r.chart,f=k.dragDropData,n,p,d=r.dragDropProps[f.updateProp];p=f.newPoints[e.id].newValues;n="function"===typeof d.resizeSide?d.resizeSide(p,e):d.resizeSide;d.beforeResize&&d.beforeResize(k.dragGuideBox,p,e);var k=
16
+ k.dragGuideBox,r="x"===d.axis&&r.xAxis.reversed||"y"===d.axis&&r.yAxis.reversed?m(n):n,g="x"===d.axis?g-(f.origin.prevdX||0):0,c="y"===d.axis?c-(f.origin.prevdY||0):0,v;switch(r){case "left":v={x:k.attr("x")+g,width:Math.max(1,k.attr("width")-g)};break;case "right":v={width:Math.max(1,k.attr("width")+g)};break;case "top":v={y:k.attr("y")+c,height:Math.max(1,k.attr("height")-c)};break;case "bottom":v={height:Math.max(1,k.attr("height")+c)}}k.attr(v)}else c.dragGuideBox.translate(g?h:0,k?x:0);b.prevdX=
17
+ h;b.prevdY=x})))}}function A(a,b){var c=b.dragDropData;if(c&&c.isDragging&&c.draggedPastSensitivity){var e=c.point,f=c.newPoints,l=G(f),d=1===l?H(f):null;b.dragHandles&&b.hideDragHandles();a.preventDefault();b.cancelClick=!0;e.firePointEvent("drop",{origin:c.origin,chartX:a.chartX,chartY:a.chartY,newPoints:f,numNewPoints:l,newPoint:d&&d.newValues,newPointId:d&&d.point.id},function(){E(b)})}delete b.dragDropData;b.dragGuideBox&&(b.dragGuideBox.destroy(),delete b.dragGuideBox)}function T(a){var b=a.container,
18
+ c=h.doc;M(a)&&(w(b,["mousedown","touchstart"],function(b){b=t(b,a);var c=a.hoverPoint,e=h.merge(c.series.options.dragDrop,c.options.dragDrop),d=e.draggableX||!1,e=e.draggableY||!1;a.cancelClick=!1;!d&&!e||a.zoomOrPanKeyPressed(b)||(a.dragDropData&&a.dragDropData.isDragging?A(b,a):c&&N(c)&&(a.mouseIsDown=!1,D(b,c),c.firePointEvent("dragStart",b)))}),w(b,["mousemove","touchmove"],function(b){S(t(b,a),a)}),p(b,"mouseleave",function(b){A(t(b,a),a)}),a.unbindDragDropMouseUp=w(c,["mouseup","touchend"],
19
+ function(b){A(t(b,a),a)}),a.hasAddedDragDropEvents=!0,p(a,"destroy",function(){a.unbindDragDropMouseUp&&a.unbindDragDropMouseUp()}))}var p=h.addEvent,n=h.objectEach,u=h.pick,q=h.merge,d=h.seriesTypes,I=function(a){a=a.shapeArgs||a.graphic.getBBox();var b=a.r||0,c=a.height/2;return["M",0,b,"L",0,c-5,"A",1,1,0,0,0,0,c+5,"A",1,1,0,0,0,0,c-5,"M",0,c+5,"L",0,a.height-b]},z=d.line.prototype.dragDropProps={x:{axis:"x",move:!0},y:{axis:"y",move:!0}};d.flags&&(d.flags.prototype.dragDropProps=z);var g=d.column.prototype.dragDropProps=
20
+ {x:{axis:"x",move:!0},y:{axis:"y",move:!1,resize:!0,beforeResize:function(a,b,c){var e=c.series.translatedThreshold,f=a.attr("y");b.y>=c.series.options.threshold?(b=a.attr("height"),a.attr({height:Math.max(0,Math.round(b+(e?e-(f+b):0)))})):a.attr({y:Math.round(f+(e?e-f:0))})},resizeSide:function(a,b){var c=b.series.chart.dragHandles;a=a.y>=(b.series.options.threshold||0)?"top":"bottom";b=m(a);c[b]&&(c[b].destroy(),delete c[b]);return a},handlePositioner:function(a){var b=a.shapeArgs||a.graphic.getBBox();
21
+ return{x:b.x,y:a.y>=(a.series.options.threshold||0)?b.y:b.y+b.height}},handleFormatter:function(a){a=a.shapeArgs;var b=a.r||0,c=a.width/2;return["M",b,0,"L",c-5,0,"A",1,1,0,0,0,c+5,0,"A",1,1,0,0,0,c-5,0,"M",c+5,0,"L",a.width-b,0]}}};d.bullet&&(d.bullet.prototype.dragDropProps={x:g.x,y:g.y,target:{optionName:"draggableTarget",axis:"y",move:!0,resize:!0,resizeSide:"top",handlePositioner:function(a){var b=a.targetGraphic.getBBox();return{x:a.barX,y:b.y+b.height/2}},handleFormatter:g.y.handleFormatter}});
22
+ d.columnrange&&(d.columnrange.prototype.dragDropProps={x:{axis:"x",move:!0},low:{optionName:"draggableLow",axis:"y",move:!0,resize:!0,resizeSide:"bottom",handlePositioner:function(a){a=a.shapeArgs||a.graphic.getBBox();return{x:a.x,y:a.y+a.height}},handleFormatter:g.y.handleFormatter,propValidate:function(a,b){return a<=b.high}},high:{optionName:"draggableHigh",axis:"y",move:!0,resize:!0,resizeSide:"top",handlePositioner:function(a){a=a.shapeArgs||a.graphic.getBBox();return{x:a.x,y:a.y}},handleFormatter:g.y.handleFormatter,
23
+ propValidate:function(a,b){return a>=b.low}}});d.boxplot&&(d.boxplot.prototype.dragDropProps={x:g.x,low:{optionName:"draggableLow",axis:"y",move:!0,resize:!0,resizeSide:"bottom",handlePositioner:function(a){return{x:a.shapeArgs.x,y:a.lowPlot}},handleFormatter:g.y.handleFormatter,propValidate:function(a,b){return a<=b.q1}},q1:{optionName:"draggableQ1",axis:"y",move:!0,resize:!0,resizeSide:"bottom",handlePositioner:function(a){return{x:a.shapeArgs.x,y:a.q1Plot}},handleFormatter:g.y.handleFormatter,
24
+ propValidate:function(a,b){return a<=b.median&&a>=b.low}},median:{axis:"y",move:!0},q3:{optionName:"draggableQ3",axis:"y",move:!0,resize:!0,resizeSide:"top",handlePositioner:function(a){return{x:a.shapeArgs.x,y:a.q3Plot}},handleFormatter:g.y.handleFormatter,propValidate:function(a,b){return a<=b.high&&a>=b.median}},high:{optionName:"draggableHigh",axis:"y",move:!0,resize:!0,resizeSide:"top",handlePositioner:function(a){return{x:a.shapeArgs.x,y:a.highPlot}},handleFormatter:g.y.handleFormatter,propValidate:function(a,
25
+ b){return a>=b.q3}}});d.ohlc&&(d.ohlc.prototype.dragDropProps={x:g.x,low:{optionName:"draggableLow",axis:"y",move:!0,resize:!0,resizeSide:"bottom",handlePositioner:function(a){return{x:a.shapeArgs.x,y:a.plotLow}},handleFormatter:g.y.handleFormatter,propValidate:function(a,b){return a<=b.open&&a<=b.close}},high:{optionName:"draggableHigh",axis:"y",move:!0,resize:!0,resizeSide:"top",handlePositioner:function(a){return{x:a.shapeArgs.x,y:a.plotHigh}},handleFormatter:g.y.handleFormatter,propValidate:function(a,
26
+ b){return a>=b.open&&a>=b.close}},open:{optionName:"draggableOpen",axis:"y",move:!0,resize:!0,resizeSide:function(a){return a.open>=a.close?"top":"bottom"},handlePositioner:function(a){return{x:a.shapeArgs.x,y:a.plotOpen}},handleFormatter:g.y.handleFormatter,propValidate:function(a,b){return a<=b.high&&a>=b.low}},close:{optionName:"draggableClose",axis:"y",move:!0,resize:!0,resizeSide:function(a){return a.open>=a.close?"bottom":"top"},handlePositioner:function(a){return{x:a.shapeArgs.x,y:a.plotClose}},
27
+ handleFormatter:g.y.handleFormatter,propValidate:function(a,b){return a<=b.high&&a>=b.low}}});if(d.arearange){var z=d.columnrange.prototype.dragDropProps,J=function(a){a=a.graphic?a.graphic.getBBox().width/2+1:4;return["M",0-a,0,"a",a,a,0,1,0,2*a,0,"a",a,a,0,1,0,-2*a,0]};d.arearange.prototype.dragDropProps={x:z.x,low:{optionName:"draggableLow",axis:"y",move:!0,resize:!0,resizeSide:"bottom",handlePositioner:function(a){return(a=a.lowerGraphic&&a.lowerGraphic.getBBox())?{x:a.x+a.width/2,y:a.y+a.height/
28
+ 2}:{x:-999,y:-999}},handleFormatter:J,propValidate:z.low.propValidate},high:{optionName:"draggableHigh",axis:"y",move:!0,resize:!0,resizeSide:"top",handlePositioner:function(a){return(a=a.upperGraphic&&a.upperGraphic.getBBox())?{x:a.x+a.width/2,y:a.y+a.height/2}:{x:-999,y:-999}},handleFormatter:J,propValidate:z.high.propValidate}}}d.waterfall&&(d.waterfall.prototype.dragDropProps={x:g.x,y:q(g.y,{handleFormatter:function(a){return a.isSum||a.isIntermediateSum?null:g.y.handleFormatter(a)}})});if(d.xrange)var K=
29
+ function(a,b){var c=a.series,e=c.xAxis,f=c.yAxis,c=c.chart.inverted;b=e.toPixels(a[b],!0);var d=f.toPixels(a.y,!0);c?(b=e.len-b,d=f.len-d-a.shapeArgs.height/2):d-=a.shapeArgs.height/2;return{x:Math.round(b),y:Math.round(d)}},B=d.xrange.prototype.dragDropProps={y:{axis:"y",move:!0},x:{optionName:"draggableX1",axis:"x",move:!0,resize:!0,resizeSide:"left",handlePositioner:function(a){return K(a,"x")},handleFormatter:I,propValidate:function(a,b){return a<=b.x2}},x2:{optionName:"draggableX2",axis:"x",
30
+ move:!0,resize:!0,resizeSide:"right",handlePositioner:function(a){return K(a,"x2")},handleFormatter:I,propValidate:function(a,b){return a>=b.x}}};d.gantt&&(d.gantt.prototype.dragDropProps={y:B.y,start:q(B.x,{optionName:"draggableStart",validateIndividualDrag:function(a){return!a.milestone}}),end:q(B.x2,{optionName:"draggableEnd",validateIndividualDrag:function(a){return!a.milestone}})});"gauge pie sunburst wordcloud sankey histogram pareto vector windbarb treemap bellcurve sma map mapline".split(" ").forEach(function(a){d[a]&&
31
+ (d[a].prototype.dragDropProps=null)});var U={"default":{className:"highcharts-drag-box-default",lineWidth:1,lineColor:"#888",color:"rgba(0, 0, 0, 0.1)",cursor:"move",zIndex:900}},V={className:"highcharts-drag-handle",color:"#fff",lineColor:"rgba(0, 0, 0, 0.6)",lineWidth:1,zIndex:901};h.Chart.prototype.setGuideBoxState=function(a,b){var c=this.dragGuideBox;b=q(U,b);a=q(b.default,b[a]);return c.attr({className:a.className,stroke:a.lineColor,strokeWidth:a.lineWidth,fill:a.color,cursor:a.cursor,zIndex:a.zIndex}).css({pointerEvents:"none"})};
32
+ h.Point.prototype.getDropValues=function(a,b,c){var e=this,f=e.series,d=q(f.options.dragDrop,e.options.dragDrop),g=f.yAxis,y=f.xAxis,h=b.chartX-a.chartX;b=b.chartY-a.chartY;var p=u(a.x,e.x),k=u(a.y,e.y),m=y.toValue(y.toPixels(p,!0)+(y.horiz?h:b),!0)-p,x=g.toValue(g.toPixels(k,!0)+(g.horiz?h:b),!0)-k,r={},t,w=a.points[e.id],v;for(v in c)if(c.hasOwnProperty(v)){if(void 0!==t){t=!1;break}t=!0}n(c,function(a,b){var c=w[b],l;l=c+("x"===a.axis?m:x);var g=a.axis.toUpperCase(),h=f[g.toLowerCase()+"Axis"].categories?
33
+ 1:0,h=u(d["dragPrecision"+g],h),y=u(d["dragMin"+g],-Infinity),g=u(d["dragMax"+g],Infinity);h&&(l=Math.round(l/h)*h);l=Math.max(y,Math.min(g,l));t&&a.propValidate&&!a.propValidate(l,e)||void 0===c||(r[b]=l)});return r};h.Series.prototype.getGuideBox=function(a){var b=this.chart,c=Infinity,e=-Infinity,f=Infinity,d=-Infinity,g;a.forEach(function(a){(a=a.graphic&&a.graphic.getBBox()||a.shapeArgs)&&(a.width||a.height||a.x||a.y)&&(g=!0,c=Math.min(a.x,c),e=Math.max(a.x+a.width,e),f=Math.min(a.y,f),d=Math.max(a.y+
34
+ a.height,d))});return g?b.renderer.rect(c,f,e-c,d-f):b.renderer.g()};h.Point.prototype.showDragHandles=function(){var a=this,b=a.series,c=b.chart,e=c.renderer,f=q(b.options.dragDrop,a.options.dragDrop);n(b.dragDropProps,function(d,g){var h=q(V,d.handleOptions,f.dragHandle),l={className:h.className,"stroke-width":h.lineWidth,fill:h.color,stroke:h.lineColor},m=h.pathFormatter||d.handleFormatter,k=d.handlePositioner,n;n=d.validateIndividualDrag?d.validateIndividualDrag(a):!0;d.resize&&n&&d.resizeSide&&
35
+ m&&(f["draggable"+d.axis.toUpperCase()]||f[d.optionName])&&!1!==f[d.optionName]&&(c.dragHandles||(c.dragHandles={group:e.g("drag-drop-handles").add(b.markerGroup||b.group)}),c.dragHandles.point=a.id,k=k(a),l.d=n=m(a),m="function"===typeof d.resizeSide?d.resizeSide(a.options,a):d.resizeSide,!n||0>k.x||0>k.y||(l.cursor=h.cursor||"x"===d.axis!==!!c.inverted?"ew-resize":"ns-resize",(d=c.dragHandles[m])||(d=c.dragHandles[m]=e.path().add(c.dragHandles.group)),d.translate(k.x,k.y).attr(l),w(d.element,["touchstart",
36
+ "mousedown"],function(b){b=t(b,c);var d=a.series.chart;d.zoomOrPanKeyPressed(b)||(d.mouseIsDown=!1,D(b,a),d.dragDropData.updateProp=b.updateProp=g,a.firePointEvent("dragStart",b),b.stopPropagation(),b.preventDefault())}),p(c.dragHandles.group.element,"mouseover",function(){c.dragDropData=c.dragDropData||{};c.dragDropData.isHoveringHandle=a.id}),w(c.dragHandles.group.element,["touchend","mouseout"],function(){var b=a.series.chart;b.dragDropData&&a.id===b.dragDropData.isHoveringHandle&&delete b.dragDropData.isHoveringHandle;
37
+ b.hoverPoint||F(a)})))})};h.Chart.prototype.hideDragHandles=function(){this.dragHandles&&(n(this.dragHandles,function(a,b){"group"!==b&&a.destroy&&a.destroy()}),this.dragHandles.group&&this.dragHandles.group.destroy&&this.dragHandles.group.destroy(),delete this.dragHandles)};p(h.Point,"mouseOver",function(){var a=this;setTimeout(function(){var b=a.series,c=b&&b.chart,d=c&&c.dragDropData;!c||d&&d.isDragging&&d.draggedPastSensitivity||c.isDragDropAnimating||!b.options.dragDrop||c.options&&c.options.chart&&
38
+ c.options.chart.options3d||(c.dragHandles&&c.hideDragHandles(),a.showDragHandles())},12)});p(h.Point,"mouseOut",function(){var a=this;setTimeout(function(){a.series&&F(a)},10)});p(h.Point,"remove",function(){var a=this.series.chart,b=a.dragHandles;b&&b.point===this.id&&a.hideDragHandles()});h.Chart.prototype.zoomOrPanKeyPressed=function(a){var b=this.userOptions.chart||{},c=b.panKey&&b.panKey+"Key";return a[b.zoomKey&&b.zoomKey+"Key"]||a[c]};p(h.Chart,"render",function(){this.hasAddedDragDropEvents||
39
+ T(this)})})(m)});
40
+ //# sourceMappingURL=draggable-points.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"draggable-points.js.map","lineCount":39,"mappings":"A;;;;;;;AAQC,SAAS,CAACA,CAAD,CAAU,CACM,QAAtB,GAAI,MAAOC,OAAX,EAAkCA,MAAAC,QAAlC,EACIF,CAAA,CAAQ,SAAR,CACA,CADqBA,CACrB,CAAAC,MAAAC,QAAA,CAAiBF,CAFrB,EAG6B,UAAtB,GAAI,MAAOG,OAAX,EAAoCA,MAAAC,IAApC,CACHD,MAAA,CAAO,QAAS,EAAG,CACf,MAAOH,EADQ,CAAnB,CADG,CAKHA,CAAA,CAA8B,WAAtB,GAAA,MAAOK,WAAP,CAAoCA,UAApC,CAAiDC,IAAAA,EAAzD,CATY,CAAnB,CAAA,CAWC,QAAS,CAACD,CAAD,CAAa,CACnB,SAAS,CAACE,CAAD,CAAI,CAkKVC,QAASA,EAAc,CAACC,CAAD,CAAO,CAC1B,MAAO,CACHC,KAAM,OADH,CAEHC,MAAO,MAFJ,CAGHC,IAAK,QAHF,CAIHC,OAAQ,KAJL,CAAA,CAKLJ,CALK,CADmB,CAmkC9BK,QAASA,EAAiB,CAACC,CAAD,CAAS,CAAA,IAC3BC,EAAQ,CAAC,YAAD,CAAe,YAAf,CADmB,CAE3BC,CAGJC,EAAA,CAAWH,CAAAI,cAAX,CAAiC,QAAS,CAACC,CAAD,CAAM,CACxCA,CAAAC,WAAJ,EACIL,CAAAM,KAAA,CAAWF,CAAAC,WAAX,CAFwC,CAAhD,CASA,KADAJ,CACA,CADID,CAAAO,OACJ,CAAON,CAAA,EAAP,CAAA,CACI,GAAIF,CAAAS,QAAAC,SAAA,CAAwBT,CAAA,CAAMC,CAAN,CAAxB,CAAJ,CACI,MAAO,CAAA,CAhBgB,CAmCnCS,QAASA,EAAgB,CAACC,CAAD,CAAQ,CAC7B,IAAIV;AAAIU,CAAAZ,OAAA,CAAeY,CAAAZ,OAAAQ,OAAf,CAAqC,CAE7C,IAAII,CAAAC,mBAAJ,EAAiCC,CAAAF,CAAAE,MAAjC,CACI,IAAA,CAAOZ,CAAA,EAAP,CAAA,CACI,GACIU,CAAAZ,OAAA,CAAaE,CAAb,CAAAO,QAAAC,SADJ,EAEIX,CAAA,CAAkBa,CAAAZ,OAAA,CAAaE,CAAb,CAAlB,CAFJ,CAII,MAAO,CAAA,CATU,CA6BjCa,QAASA,EAAc,CAACC,CAAD,CAAQ,CAAA,IACvBhB,EAASgB,CAAAhB,OADc,CAEvBiB,EAAwBjB,CAAAS,QAAAC,SAAxBO,EAAmD,EACnDC,EAAAA,CAAuBF,CAAAP,QAAvBS,EAAwCF,CAAAP,QAAAC,SAHjB,KAKvBS,CALuB,CAMvBC,CAEJjB,EAAA,CAJkBH,CAAAI,cAIlB,CAAwB,QAAS,CAACiB,CAAD,CAAI,CAClB,GAAf,GAAIA,CAAAC,KAAJ,EAAsBD,CAAAE,KAAtB,CACIJ,CADJ,CACkB,CAAA,CADlB,CAEsB,GAFtB,GAEWE,CAAAC,KAFX,EAE6BD,CAAAE,KAF7B,GAGIH,CAHJ,CAGkB,CAAA,CAHlB,CADiC,CAArC,CAUA,QACIH,CAAAO,WADJ,EACwCL,CADxC,EAEQF,CAAAQ,WAFR,EAE4CL,CAF5C,GAII,EACIF,CADJ,EAEwC,CAAA,CAFxC,GAEIA,CAAAM,WAFJ,EAGwC,CAAA,CAHxC,GAGIN,CAAAO,WAHJ,CAJJ,EASIzB,CAAA0B,MATJ,EAUI1B,CAAA2B,MA5BuB,CA4C/BC,QAASA,EAAkB,CAACC,CAAD,CAAIjB,CAAJ,CAAW,CAClC,MAAoBrB,KAAAA,EAAb,GAAAsC,CAAAC,OAAA,EAAuCvC,IAAAA,EAAvC,GAA0BsC,CAAAE,OAA1B,CACHnB,CAAAoB,QAAAC,UAAA,CAAwBJ,CAAxB,CADG,CAC0BA,CAFC,CAgCtCK,QAASA,EAAS,CAACC,CAAD;AAAKC,CAAL,CAAYC,CAAZ,CAAgB5B,CAAhB,CAAyB,CACvC,IAAI6B,EAAcF,CAAAG,IAAA,CAAU,QAAS,CAACC,CAAD,CAAO,CACxC,MAAOC,EAAA,CAASN,CAAT,CAAaK,CAAb,CAAmBH,CAAnB,CAAuB5B,CAAvB,CADiC,CAA1B,CAIlB,OAAO,SAAS,EAAG,CACf6B,CAAAI,QAAA,CAAoB,QAAS,CAACL,CAAD,CAAK,CAC9BA,CAAA,EAD8B,CAAlC,CADe,CALoB,CAiC3CM,QAASA,EAAyB,CAACd,CAAD,CAAIjB,CAAJ,CAAWgC,CAAX,CAAwB,CAAA,IAClDC,EAAOjC,CAAAkC,aAAAC,OACPC,EAAAA,CAAOH,CAAAf,OACPmB,KAAAA,EAAOJ,CAAAd,OAAPkB,CACAC,EAAOrB,CAAAC,OACPqB,EAAAA,CAAOtB,CAAAE,OAMX,OALeqB,KAAAC,KAAAC,EACNJ,CADMI,CACCN,CADDM,GACUJ,CADVI,CACiBN,CADjBM,GAENH,CAFMG,CAECL,CAFDK,GAEUH,CAFVG,CAEiBL,CAFjBK,EAKf,CAAkBV,CAXoC,CAmC1DW,QAASA,EAAmB,CAAC1B,CAAD,CAAI2B,CAAJ,CAAYC,CAAZ,CAAsB,CAC9C,IAAIC,EAAM,CACN5B,OAAQD,CAAAC,OADF,CAENC,OAAQF,CAAAE,OAFF,CAGN0B,SAAUA,CAAVA,EAAsB,CAClBE,EAAGF,CAAAG,KAAA,CAAc,GAAd,CADe,CAElBC,EAAGJ,CAAAG,KAAA,CAAc,GAAd,CAFe,CAGlBE,MAAOL,CAAAG,KAAA,CAAc,OAAd,CAHW,CAIlBG,OAAQN,CAAAG,KAAA,CAAc,QAAd,CAJU,CAHhB,CASNJ,OAAQ,EATF,CAaVA,EAAAd,QAAA,CAAe,QAAS,CAAC1B,CAAD,CAAQ,CAC5B,IAAIgD,EAAa,EAIjB7D,EAAA,CAAWa,CAAAhB,OAAAI,cAAX,CAAuC,QAAS,CAACC,CAAD,CAAM4D,CAAN,CAAW,CACvDD,CAAA,CAAWC,CAAX,CAAA,CAAkBjD,CAAA,CAAMiD,CAAN,CADqC,CAA3D,CAGAD,EAAAhD,MAAA,CAAmBA,CACnB0C,EAAAF,OAAA,CAAWxC,CAAAkD,GAAX,CAAA,CAAuBF,CATK,CAAhC,CAYA;MAAON,EA1BuC,CA2ClDS,QAASA,EAAgB,CAACnD,CAAD,CAAQ,CAAA,IACzBhB,EAASgB,CAAAhB,OADgB,CAEzBoE,EAAWpE,CAAAS,QAAAC,SAAA2D,QAEf,OAAOrD,EAAAP,QAAA,CAAc2D,CAAd,CAAA,CAEHpE,CAAAwD,OAAAc,OAAA,CAAqB,QAAS,CAACC,CAAD,CAAe,CACzC,MAAOA,EAAA9D,QAAA,CAAqB2D,CAArB,CAAP,GAA0CpD,CAAAP,QAAA,CAAc2D,CAAd,CADD,CAA7C,CAFG,CAMH,CAACpD,CAAD,CAVyB,CA8EjCwD,QAASA,EAAY,CAAC3C,CAAD,CAAIb,CAAJ,CAAW,CAAA,IACxByD,EAAgBN,CAAA,CAAiBnD,CAAjB,CADQ,CAExBhB,EAASgB,CAAAhB,OAFe,CAGxBY,EAAQZ,CAAAY,MAHgB,CAIxB6C,CAGCiB,EAAA,CACD1E,CAAAS,QAAAC,SADC,EAC0BV,CAAAS,QAAAC,SAAAiE,WAD1B,CAED,CAAA,CAFC,CAAL,GAII/D,CAAAgE,aACA,CADqBnB,CACrB,CADgCzD,CAAA6E,YAAA,CAAmBJ,CAAnB,CAChC,CAAA7D,CAAAkE,iBAAA,CAAuB,SAAvB,CAAkC9E,CAAAS,QAAAC,SAAA+C,SAAlC,CAAAsB,IAAA,CACS/E,CAAAgF,MADT,CALJ,CAUApE,EAAAkC,aAAA,CAAqB,CACjBC,OAAQQ,CAAA,CAAoB1B,CAApB,CAAuB4C,CAAvB,CAAsChB,CAAtC,CADS,CAEjBzC,MAAOA,CAFU,CAGjByD,cAAeA,CAHE,CAIjBQ,WAAY,CAAA,CAJK,CAjBO,CA2ChCC,QAASA,EAAY,CAACpC,CAAD,CAAeqC,CAAf,CAAuB,CAAA,IACpCnE,EAAQ8B,CAAA9B,MAD4B,CAGpCP,EAAU2E,CAAA,CADDpE,CAAAhB,OACOS,QAAAC,SAAN;AAA+BM,CAAAP,QAAAC,SAA/B,CAH0B,CAIpC2E,EAAc,EAJsB,CAKpCC,EAAaxC,CAAAyC,WALuB,CAMpCC,EAAU,EAIdrF,EAAA,CAAWa,CAAAhB,OAAAI,cAAX,CAAuC,QAAS,CAACC,CAAD,CAAM4D,CAAN,CAAW,CAGvD,GACIqB,CAAAA,CADJ,EAEQA,CAFR,GAEuBrB,CAFvB,EAGS5D,CAAAoF,OAHT,GAIQnF,CAAAD,CAAAC,WAJR,EAIsD,CAAA,CAJtD,GAI0BG,CAAA,CAAQJ,CAAAC,WAAR,CAJ1B,EAaA,GACIgF,CADJ,EAEQjF,CAAAkB,KAFR,GAIyB,GAJzB,GAIYlB,CAAAiB,KAJZ,EAIgCb,CAAAe,WAJhC,EAKyB,GALzB,GAKYnB,CAAAiB,KALZ,EAKgCb,CAAAgB,WALhC,EASI4D,CAAA,CAAYpB,CAAZ,CAAA,CAAmB5D,CAzBgC,CAA3D,CA8BAqC,EAAC4C,CAAA,CACG,CAACtE,CAAD,CADH,CAEG8B,CAAA2B,cAFJ/B,SAAA,CAGI,QAAS,CAACrB,CAAD,CAAI,CACTmE,CAAA,CAAQnE,CAAA6C,GAAR,CAAA,CAAgB,CACZlD,MAAOK,CADK,CAEZqE,UAAWrE,CAAAsE,cAAA,CACP7C,CAAAC,OADO,CACcoC,CADd,CACsBE,CADtB,CAFC,CADP,CAHjB,CAYA,OAAOG,EApDiC,CAoE5CI,QAASA,EAAY,CAAChF,CAAD,CAAQiF,CAAR,CAAiB,CAAA,IAC9BC,EAAYlF,CAAAkC,aAAAgD,UACZC,EAAAA,CAA0B,CAAA,CAAZ,GAAAF,CAAA,CAAoB,CAAA,CAApB,CAA4BT,CAAA,CAAM,CAC5CY,SAAU,GADkC,CAAN,CAEvCpF,CAAAH,QAAAwF,UAFuC,CAI9CrF,EAAAsF,oBAAA,CAA4B,CAAA,CAG5B/F,EAAA,CAAW2F,CAAX,CAAsB,QAAS,CAACK,CAAD,CAAW,CACtCA,CAAAnF,MAAAoF,OAAA,CAAsBD,CAAAT,UAAtB;AAA0C,CAAA,CAA1C,CADsC,CAA1C,CAIA9E,EAAAyF,OAAA,CAAaN,CAAb,CAKAO,WAAA,CAAW,QAAS,EAAG,CACnB,OAAO1F,CAAAsF,oBACHtF,EAAA2F,WAAJ,EAAyBC,CAAA5F,CAAA4F,YAAzB,EACI5F,CAAA2F,WAAAE,gBAAA,EAHe,CAAvB,CAKGV,CAAAC,SALH,CAlBkC,CAyUtCU,QAASA,EAAQ,CAAC1F,CAAD,CAAQ,CAAA,IACjBJ,EAAQI,CAAAhB,OAARY,EAAwBI,CAAAhB,OAAAY,MADP,CAEjBkC,EAAelC,CAAfkC,EAAwBlC,CAAAkC,aAGxBlC,EAAAA,CADJ,EAEI4F,CAAA5F,CAAA4F,YAFJ,EAIQ1D,CAJR,GAMYA,CAAAmC,WANZ,EAOYnC,CAAA6D,uBAPZ,EAQY7D,CAAA8D,iBARZ,GAQ8C5F,CAAAkD,GAR9C,GAYItD,CAAAiG,gBAAA,EAhBiB,CAsOzBC,QAASA,EAAU,CAACC,CAAD,CAAS,CACxB,IAAIC,EAAQ,CAAZ,CAES3F,CAAT,KAASA,CAAT,GAAc0F,EAAd,CACQA,CAAAE,eAAA,CAAsB5F,CAAtB,CAAJ,EACI2F,CAAA,EAGR,OAAOA,EARiB,CAyB5BE,QAASA,EAAY,CAACH,CAAD,CAAS,CAC1B,IAAK1F,IAAIA,CAAT,GAAc0F,EAAd,CACI,GAAIA,CAAAE,eAAA,CAAsB5F,CAAtB,CAAJ,CACI,MAAO0F,EAAA,CAAO1F,CAAP,CAHW,CA2D9B8F,QAASA,EAAS,CAACtF,CAAD,CAAIjB,CAAJ,CAAW,CAEzB,GAAI,CAAAA,CAAAwG,oBAAA,CAA0BvF,CAA1B,CAAJ,CAAA,CAFyB,IAMrBiB;AAAelC,CAAAkC,aANM,CAOrB9B,CAPqB,CAQrBqG,CAEAC,EAAAA,CAAe,CAGfxE,EAAJ,EAAoBA,CAAAmC,WAApB,GACIjE,CAqBA,CArBQ8B,CAAA9B,MAqBR,CApBAqG,CAoBA,CApBqBrG,CAAAhB,OAAAS,QAAAC,SAoBrB,CAjBAmB,CAAA0F,eAAA,EAiBA,CAdKzE,CAAA6D,uBAcL,GAbI7D,CAAA6D,uBAaJ,CAb0ChE,CAAA,CAClCd,CADkC,CAC/BjB,CAD+B,CACxB8D,CAAA,CACN1D,CAAAP,QAAAC,SADM,EAEFM,CAAAP,QAAAC,SAAA8G,gBAFE,CAGNH,CAHM,EAIFA,CAAAG,gBAJE,CAp6CGC,CAo6CH,CADwB,CAa1C,EAAI3E,CAAA6D,uBAAJ,GAEI7D,CAAAgD,UAUA,CAVyBZ,CAAA,CAAapC,CAAb,CAA2BjB,CAA3B,CAUzB,CAPAiE,CAOA,CAPYhD,CAAAgD,UAOZ,CANAwB,CAMA,CANeR,CAAA,CAAWhB,CAAX,CAMf,CALAK,CAKA,CAL4B,CAAjB,GAAAmB,CAAA,CACPJ,CAAA,CAAapB,CAAb,CADO,CAEP,IAGJ,CAAA9E,CAAA0G,eAAA,CAAqB,MAArB,CAA6B,CACzB3E,OAAQD,CAAAC,OADiB,CAEzB+C,UAAWhD,CAAAgD,UAFc,CAGzBK,SAAUA,CAAVA,EAAsBA,CAAAT,UAHG,CAIzBiC,WAAYxB,CAAZwB,EAAwBxB,CAAAnF,MAAAkD,GAJC,CAKzBoD,aAAcA,CALW,CAMzBxF,OAAQD,CAAAC,OANiB,CAOzBC,OAAQF,CAAAE,OAPiB,CAA7B,CAQG,QAAS,EAAG,CAhmBC,IACpB/B;AAgmBoBgB,CAhmBXhB,OADW,CAEpBY,EAAQZ,CAAAY,MAFY,CAGpBgH,EAAOhH,CAAAkC,aAHa,CAIpBrC,EAAU2E,CAAA,CAAMpF,CAAAS,QAAAC,SAAN,CA6lBUM,CA7lBqBP,QAAAC,SAA/B,CAJU,CAKpBc,EAAaf,CAAAe,WALO,CAMpBC,EAAahB,CAAAgB,WANO,CAOpBsB,EAAS6E,CAAA7E,OAPW,CAQpB8E,EAylBiBhG,CAzlBZC,OAAL+F,CAAgB9E,CAAAjB,OARI,CASpBgG,EAwlBiBjG,CAxlBZE,OAAL+F,CAAgB/E,CAAAhB,OATI,CAUpBgG,EAAQF,CAVY,CAWpBtC,EAAaqC,CAAArC,WAGb3E,EAAAoH,SAAJ,GACIH,CACA,CADK,CAACC,CACN,CAAAA,CAAA,CAAK,CAACC,CAFV,CAOA,IAAIrD,CAAA,CAAKjE,CAAAkE,WAAL,CAAyB,CAAA,CAAzB,CAAJ,CACIiB,CAAA,CAAahF,CAAb,CAAoB,CAAA,CAApB,CAGA,CAwkBoBI,CAxkBpByF,gBAAA,EAJJ,KAQI,IAAIlB,CAAJ,CAAA,CAE0BsC,IAAAA,EAAAA,CAAAA,CAAIC,EAAAA,CAAJD,CA7E1B7H,EA+oBoBgB,CA/oBXhB,OA6EiB6H,CA5E1BjH,EAAQZ,CAAAY,MA4EkBiH,CA3E1B/E,EAAelC,CAAAkC,aA2EW+E,CA1E1BI,CA0E0BJ,CAzE1B1B,CAyE0B0B,CAxE1BvC,EAAatF,CAAAI,cAAA,CAAqB0C,CAAAyC,WAArB,CAGjBY,EAAA,CAAWrD,CAAAgD,UAAA,CAuoBa9E,CAvoBUkD,GAAvB,CAAAwB,UACXuC,EAAA,CAA8C,UAAjC,GAAA,MAAO3C,EAAA2C,WAAP,CACT3C,CAAA2C,WAAA,CAAsB9B,CAAtB,CAqoBoBnF,CAroBpB,CADS,CACgCsE,CAAA2C,WAGzC3C,EAAA4C,aAAJ,EACI5C,CAAA4C,aAAA,CAAwBtH,CAAAgE,aAAxB,CAA4CuB,CAA5C,CAioBoBnF,CAjoBpB,CAKA4D,KAAAA;AAAAhE,CAAAgE,aAAAA,CACA,EAAoB,GAApB,GAAAU,CAAAhE,KAAA,EAA2BtB,CAAA2B,MAAAwG,SAA3B,EACoB,GADpB,GACA7C,CAAAhE,KADA,EAC2BtB,CAAA0B,MAAAyG,SAD3B,CAEI1I,CAAA,CAAewI,CAAf,CAFJ,CAEiCA,CAHjCrD,CAKO,EAAoB,GAApB,GAAAU,CAAAhE,KAAA,CACCuG,CADD,EACO/E,CAAAC,OAAAqF,OADP,EACqC,CADrC,EAC0C,CANjDxD,CAOO,EAAoB,GAApB,GAAAU,CAAAhE,KAAA,CACCwG,CADD,EACOhF,CAAAC,OAAAsF,OADP,EACqC,CADrC,EAC0C,CARjDzD,CAzNA0D,CAEJ,QAAQC,CAAR,EACA,KAAK,MAAL,CACID,CAAA,CAAc,CACV3E,EAAG6E,CAAA5E,KAAA,CAAU,GAAV,CAAHD,CAAoBA,CADV,CAEVG,MAAOV,IAAAqF,IAAA,CAAS,CAAT,CAAYD,CAAA5E,KAAA,CAAU,OAAV,CAAZ,CAAiCD,CAAjC,CAFG,CAId,MACJ,MAAK,OAAL,CACI2E,CAAA,CAAc,CACVxE,MAAOV,IAAAqF,IAAA,CAAS,CAAT,CAAYD,CAAA5E,KAAA,CAAU,OAAV,CAAZ,CAAiCD,CAAjC,CADG,CAGd,MACJ,MAAK,KAAL,CACI2E,CAAA,CAAc,CACVzE,EAAG2E,CAAA5E,KAAA,CAAU,GAAV,CAAHC,CAAoBA,CADV,CAEVE,OAAQX,IAAAqF,IAAA,CAAS,CAAT,CAAYD,CAAA5E,KAAA,CAAU,QAAV,CAAZ,CAAkCC,CAAlC,CAFE,CAId,MACJ,MAAK,QAAL,CACIyE,CAAA,CAAc,CACVvE,OAAQX,IAAAqF,IAAA,CAAS,CAAT,CAAYD,CAAA5E,KAAA,CAAU,QAAV,CAAZ,CAAkCC,CAAlC,CADE,CAnBlB,CAyBA2E,CAAA5E,KAAA,CAAU0E,CAAV,CAsPI,CAAA,IAKI1H,EAAAgE,aAAA8D,UAAA,CACIlH,CAAA,CAAaqG,CAAb,CAAkB,CADtB,CACyBpG,CAAA,CAAaqG,CAAb,CAAkB,CAD3C,CAOR/E,EAAAqF,OAAA;AAAgBP,CAChB9E,EAAAsF,OAAA,CAAgBP,CAsjBO,CARf,CAZJ,CAtBJ,CAXA,CAFyB,CA2E7Ba,QAASA,EAAO,CAAC9G,CAAD,CAAIjB,CAAJ,CAAW,CACvB,IAAIkC,EAAelC,CAAAkC,aAEnB,IACIA,CADJ,EAEIA,CAAAmC,WAFJ,EAGInC,CAAA6D,uBAHJ,CAIE,CAAA,IACM3F,EAAQ8B,CAAA9B,MADd,CAEM8E,EAAYhD,CAAAgD,UAFlB,CAGMwB,EAAeR,CAAA,CAAWhB,CAAX,CAHrB,CAIMK,EAA4B,CAAjB,GAAAmB,CAAA,CACPJ,CAAA,CAAapB,CAAb,CADO,CAEP,IAGJlF,EAAA4F,YAAJ,EACI5F,CAAAiG,gBAAA,EAIJhF,EAAA0F,eAAA,EACA3G,EAAAgI,YAAA,CAAoB,CAAA,CAIpB5H,EAAA0G,eAAA,CAAqB,MAArB,CAA6B,CACzB3E,OAAQD,CAAAC,OADiB,CAEzBjB,OAAQD,CAAAC,OAFiB,CAGzBC,OAAQF,CAAAE,OAHiB,CAIzB+D,UAAWA,CAJc,CAKzBwB,aAAcA,CALW,CAMzBnB,SAAUA,CAAVA,EAAsBA,CAAAT,UANG,CAOzBiC,WAAYxB,CAAZwB,EAAwBxB,CAAAnF,MAAAkD,GAPC,CAA7B,CAQG,QAAS,EAAG,CACX0B,CAAA,CAAahF,CAAb,CADW,CARf,CAnBF,CAiCF,OAAOA,CAAAkC,aAIHlC,EAAAgE,aAAJ,GACIhE,CAAAgE,aAAAiE,QAAA,EACA,CAAA,OAAOjI,CAAAgE,aAFX,CA5CuB,CAwK3BkE,QAASA,EAAiB,CAAClI,CAAD,CAAQ,CAAA,IAC1BmI,EAAYnI,CAAAmI,UADc;AAE1BC,EAAMxJ,CAAAwJ,IAGNrI,EAAA,CAAiBC,CAAjB,CAAJ,GACIsB,CAAA,CAAU6G,CAAV,CAAqB,CAAC,WAAD,CAAc,YAAd,CAArB,CAAkD,QAAS,CAAClH,CAAD,CAAI,CACjD,CAAA,CAAAD,CAAA,CAAmBC,CAAnB,CAAsBjB,CAAtB,CAhHO,KACrBqI,EA+G4CrI,CA/GhC2F,WADS,CAErB2C,EAAkB1J,CAAA4F,MAAA,CACd6D,CAAAjJ,OAAAS,QAAAC,SADc,CAEduI,CAAAxI,QAAAC,SAFc,CAFG,CAMrBc,EAAa0H,CAAA1H,WAAbA,EAA2C,CAAA,CANtB,CAOrBC,EAAayH,CAAAzH,WAAbA,EAA2C,CAAA,CAyGCb,EAtGhDgI,YAAA,CAAoB,CAAA,CAGdpH,EAAAA,CAAN,EAAoBC,CAAAA,CAApB,EAmGgDb,CA9F5CwG,oBAAA,CAA0BvF,CAA1B,CALJ,GAmGgDjB,CAzF5CkC,aAAJ,EAyFgDlC,CAzFtBkC,aAAAmC,WAA1B,CACI0D,CAAA,CAAQ9G,CAAR,CAwF4CjB,CAxF5C,CADJ,CAMIqI,CANJ,EAMiBlI,CAAA,CAAekI,CAAf,CANjB,GAyFgDrI,CAlF5CuI,YAEA,CAFoB,CAAA,CAEpB,CADA3E,CAAA,CAAa3C,CAAb,CAAgBoH,CAAhB,CACA,CAAAA,CAAAvB,eAAA,CAAyB,WAAzB,CAAsC7F,CAAtC,CATJ,CAVA,CAkGmE,CAA/D,CAqBA,CAlBAK,CAAA,CAAU6G,CAAV,CAAqB,CAAC,WAAD,CAAc,WAAd,CAArB,CAAiD,QAAS,CAAClH,CAAD,CAAI,CAC1DsF,CAAA,CAAUvF,CAAA,CAAmBC,CAAnB,CAAsBjB,CAAtB,CAAV,CAAwCA,CAAxC,CAD0D,CAA9D,CAkBA,CAfA6B,CAAA,CAASsG,CAAT,CAAoB,YAApB,CAAkC,QAAS,CAAClH,CAAD,CAAI,CAC3C8G,CAAA,CAAQ/G,CAAA,CAAmBC,CAAnB,CAAsBjB,CAAtB,CAAR,CAAsCA,CAAtC,CAD2C,CAA/C,CAeA,CAZAA,CAAAwI,sBAYA,CAZ8BlH,CAAA,CAC1B8G,CAD0B,CAE1B,CAAC,SAAD,CAAY,UAAZ,CAF0B;AAG1B,QAAS,CAACnH,CAAD,CAAI,CACT8G,CAAA,CAAQ/G,CAAA,CAAmBC,CAAnB,CAAsBjB,CAAtB,CAAR,CAAsCA,CAAtC,CADS,CAHa,CAY9B,CAHAA,CAAAyI,uBAGA,CAH+B,CAAA,CAG/B,CAAA5G,CAAA,CAAS7B,CAAT,CAAgB,SAAhB,CAA2B,QAAS,EAAG,CAC/BA,CAAAwI,sBAAJ,EACIxI,CAAAwI,sBAAA,EAF+B,CAAvC,CAtBJ,CAL8B,CAnhFxB,IA+IN3G,EAAWjD,CAAAiD,SA/IL,CAgJNtC,EAAaX,CAAAW,WAhJP,CAiJNuE,EAAOlF,CAAAkF,KAjJD,CAkJNU,EAAQ5F,CAAA4F,MAlJF,CAmJNkE,EAAc9J,CAAA8J,YAnJR,CAuNNC,EAAuBA,QAAS,CAACvI,CAAD,CAAQ,CACpCwI,CAAAA,CAAYxI,CAAAwI,UAAZA,EAA+BxI,CAAAyI,QAAAC,QAAA,EADK,KAEpC7J,EAAM2J,CAAAG,EAAN9J,EAAqB,CAFe,CAIpC+J,EAAUJ,CAAAzF,OAAV6F,CAA6B,CAEjC,OAAO,CAEH,GAFG,CAEE,CAFF,CAEK/J,CAFL,CAGH,GAHG,CAGE,CAHF,CAGK+J,CAHL,CAGe,CAHf,CAKH,GALG,CAKE,CALF,CAKK,CALL,CAKQ,CALR,CAKW,CALX,CAKc,CALd,CAKiB,CALjB,CAKoBA,CALpB,CAK8B,CAL9B,CAMH,GANG,CAME,CANF,CAMK,CANL,CAMQ,CANR,CAMW,CANX,CAMc,CANd,CAMiB,CANjB,CAMoBA,CANpB,CAM8B,CAN9B,CAQH,GARG,CAQE,CARF,CAQKA,CARL,CAQe,CARf,CASH,GATG,CASE,CATF,CAHMJ,CAAAzF,OAGN,CAHyBlE,CAGzB,CANiC,CAvNlC,CA2ONgK,EAAoBP,CAAAQ,KAAAC,UAAA3J,cAApByJ,CAA+D,CAC/DlG,EAAG,CACCrC,KAAM,GADP,CAECC,KAAM,CAAA,CAFP,CAD4D,CAK/DsC,EAAG,CACCvC,KAAM,GADP,CAECC,KAAM,CAAA,CAFP,CAL4D,CAY/D+H,EAAAU,MAAJ,GACIV,CAAAU,MAAAD,UAAA3J,cADJ,CACgDyJ,CADhD,CAMA,KAAII,EAAsBX,CAAAY,OAAAH,UAAA3J,cAAtB6J;AAAmE,CACnEtG,EAAG,CACCrC,KAAM,GADP,CAECC,KAAM,CAAA,CAFP,CADgE,CAKnEsC,EAAG,CACCvC,KAAM,GADP,CAECC,KAAM,CAAA,CAFP,CAGCkE,OAAQ,CAAA,CAHT,CAKCyC,aAAcA,QAAS,CAACzE,CAAD,CAAW0G,CAAX,CAAsBnJ,CAAtB,CAA6B,CAAA,IAK5CoJ,EAAYpJ,CAAAhB,OAAAqK,oBALgC,CAM5CxG,EAAIJ,CAAAG,KAAA,CAAc,GAAd,CAIJuG,EAAAtG,EAAJ,EAAmB7C,CAAAhB,OAAAS,QAAA2J,UAAnB,EAEIrG,CAEA,CAFSN,CAAAG,KAAA,CAAc,QAAd,CAET,CAAAH,CAAAG,KAAA,CAAc,CACVG,OAAQX,IAAAqF,IAAA,CAAS,CAAT,CAAYrF,IAAAkH,MAAA,CAAWvG,CAAX,EAFjBqG,CAAAG,CAAYH,CAAZG,EAAyB1G,CAAzB0G,CAA6BxG,CAA7BwG,EAAuC,CAEtB,EAAZ,CADE,CAAd,CAJJ,EASI9G,CAAAG,KAAA,CAAc,CACVC,EAAGT,IAAAkH,MAAA,CAAWzG,CAAX,EAAgBuG,CAAA,CAAYA,CAAZ,CAAwBvG,CAAxB,CAA4B,CAA5C,EADO,CAAd,CAnB4C,CALrD,CA+BCoE,WAAYA,QAAS,CAACkC,CAAD,CAAYnJ,CAAZ,CAAmB,CAAA,IAEhCwF,EADQxF,CAAAhB,OAAAY,MACM4F,YACd9G,EAAAA,CAAOyK,CAAAtG,EAAA,GAAgB7C,CAAAhB,OAAAS,QAAA2J,UAAhB,EAAkD,CAAlD,EACH,KADG,CACK,QACZI,EAAAA,CAAW/K,CAAA,CAAeC,CAAf,CAGX8G,EAAA,CAAYgE,CAAZ,CAAJ,GACIhE,CAAA,CAAYgE,CAAZ,CAAA3B,QAAA,EACA,CAAA,OAAOrC,CAAA,CAAYgE,CAAZ,CAFX,CAIA,OAAO9K,EAZ6B,CA/BzC,CA8CC+K,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,IAAI0J,EAAO1J,CAAAwI,UAAPkB,EAA0B1J,CAAAyI,QAAAC,QAAA,EAE9B;MAAO,CACH/F,EAAG+G,CAAA/G,EADA,CAEHE,EAAG7C,CAAA6C,EAAA,GAAY7C,CAAAhB,OAAAS,QAAA2J,UAAZ,EAA8C,CAA9C,EACCM,CAAA7G,EADD,CACU6G,CAAA7G,EADV,CACmB6G,CAAA3G,OAHnB,CAHwB,CA9CpC,CAwDC4G,gBAAiBA,QAAS,CAAC3J,CAAD,CAAQ,CAC1BwI,CAAAA,CAAYxI,CAAAwI,UADc,KAE1BoB,EAASpB,CAAAG,EAATiB,EAAwB,CAFE,CAG1BC,EAAUrB,CAAA1F,MAAV+G,CAA4B,CAEhC,OAAO,CAEH,GAFG,CAEED,CAFF,CAEU,CAFV,CAGH,GAHG,CAGEC,CAHF,CAGY,CAHZ,CAGe,CAHf,CAKH,GALG,CAKE,CALF,CAKK,CALL,CAKQ,CALR,CAKW,CALX,CAKc,CALd,CAKiBA,CALjB,CAK2B,CAL3B,CAK8B,CAL9B,CAMH,GANG,CAME,CANF,CAMK,CANL,CAMQ,CANR,CAMW,CANX,CAMc,CANd,CAMiBA,CANjB,CAM2B,CAN3B,CAM8B,CAN9B,CAQH,GARG,CAQEA,CARF,CAQY,CARZ,CAQe,CARf,CASH,GATG,CASErB,CAAA1F,MATF,CASoB8G,CATpB,CAS4B,CAT5B,CALuB,CAxDnC,CALgE,CAkFnEtB,EAAAwB,OAAJ,GACIxB,CAAAwB,OAAAf,UAAA3J,cADJ,CACiD,CACzCuD,EAAGsG,CAAAtG,EADsC,CAEzCE,EAAGoG,CAAApG,EAFsC,CAWzCkH,OAAQ,CACJzK,WAAY,iBADR,CAEJgB,KAAM,GAFF,CAGJC,KAAM,CAAA,CAHF,CAIJkE,OAAQ,CAAA,CAJJ,CAKJwC,WAAY,KALR,CAMJwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,IAAI0J,EAAO1J,CAAAgK,cAAAtB,QAAA,EAEX,OAAO,CACH/F,EAAG3C,CAAAiK,KADA,CAEHpH,EAAG6G,CAAA7G,EAAHA,CAAY6G,CAAA3G,OAAZF,CAA0B,CAFvB,CAHwB,CAN/B,CAcJ8G,gBAAiBV,CAAApG,EAAA8G,gBAdb,CAXiC,CADjD,CAgCIrB;CAAA4B,YAAJ,GACI5B,CAAA4B,YAAAnB,UAAA3J,cADJ,CACsD,CAC9CuD,EAAG,CACCrC,KAAM,GADP,CAECC,KAAM,CAAA,CAFP,CAD2C,CAa9C4J,IAAK,CACD7K,WAAY,cADX,CAEDgB,KAAM,GAFL,CAGDC,KAAM,CAAA,CAHL,CAIDkE,OAAQ,CAAA,CAJP,CAKDwC,WAAY,QALX,CAMDwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC3B0J,CAAAA,CAAO1J,CAAAwI,UAAPkB,EAA0B1J,CAAAyI,QAAAC,QAAA,EAE9B,OAAO,CACH/F,EAAG+G,CAAA/G,EADA,CAEHE,EAAG6G,CAAA7G,EAAHA,CAAY6G,CAAA3G,OAFT,CAHwB,CANlC,CAcD4G,gBAAiBV,CAAApG,EAAA8G,gBAdhB,CAeDS,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAAqK,KADkB,CAfnC,CAbyC,CAwC9CA,KAAM,CACF/K,WAAY,eADV,CAEFgB,KAAM,GAFJ,CAGFC,KAAM,CAAA,CAHJ,CAIFkE,OAAQ,CAAA,CAJN,CAKFwC,WAAY,KALV,CAMFwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC3B0J,CAAAA,CAAO1J,CAAAwI,UAAPkB,EAA0B1J,CAAAyI,QAAAC,QAAA,EAE9B,OAAO,CACH/F,EAAG+G,CAAA/G,EADA,CAEHE,EAAG6G,CAAA7G,EAFA,CAHwB,CANjC,CAcF8G,gBAAiBV,CAAApG,EAAA8G,gBAdf;AAeFS,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAAmK,IADkB,CAflC,CAxCwC,CADtD,CAgEI7B,EAAAgC,QAAJ,GACIhC,CAAAgC,QAAAvB,UAAA3J,cADJ,CACkD,CAC1CuD,EAAGsG,CAAAtG,EADuC,CAU1CwH,IAAK,CACD7K,WAAY,cADX,CAEDgB,KAAM,GAFL,CAGDC,KAAM,CAAA,CAHL,CAIDkE,OAAQ,CAAA,CAJP,CAKDwC,WAAY,QALX,CAMDwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO,CACH2C,EAAG3C,CAAAwI,UAAA7F,EADA,CAEHE,EAAG7C,CAAAuK,QAFA,CADwB,CANlC,CAYDZ,gBAAiBV,CAAApG,EAAA8G,gBAZhB,CAaDS,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAAwK,GADkB,CAbnC,CAVqC,CAmC1CA,GAAI,CACAlL,WAAY,aADZ,CAEAgB,KAAM,GAFN,CAGAC,KAAM,CAAA,CAHN,CAIAkE,OAAQ,CAAA,CAJR,CAKAwC,WAAY,QALZ,CAMAwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO,CACH2C,EAAG3C,CAAAwI,UAAA7F,EADA,CAEHE,EAAG7C,CAAAyK,OAFA,CADwB,CANnC,CAYAd,gBAAiBV,CAAApG,EAAA8G,gBAZjB;AAaAS,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAA0K,OAAd,EAA8BrL,CAA9B,EAAqCW,CAAAmK,IADL,CAbpC,CAnCsC,CAoD1CO,OAAQ,CAGJpK,KAAM,GAHF,CAIJC,KAAM,CAAA,CAJF,CApDkC,CAkE1CoK,GAAI,CACArL,WAAY,aADZ,CAEAgB,KAAM,GAFN,CAGAC,KAAM,CAAA,CAHN,CAIAkE,OAAQ,CAAA,CAJR,CAKAwC,WAAY,KALZ,CAMAwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO,CACH2C,EAAG3C,CAAAwI,UAAA7F,EADA,CAEHE,EAAG7C,CAAA4K,OAFA,CADwB,CANnC,CAYAjB,gBAAiBV,CAAApG,EAAA8G,gBAZjB,CAaAS,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAAqK,KAAd,EAA4BhL,CAA5B,EAAmCW,CAAA0K,OADH,CAbpC,CAlEsC,CA2F1CL,KAAM,CACF/K,WAAY,eADV,CAEFgB,KAAM,GAFJ,CAGFC,KAAM,CAAA,CAHJ,CAIFkE,OAAQ,CAAA,CAJN,CAKFwC,WAAY,KALV,CAMFwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO,CACH2C,EAAG3C,CAAAwI,UAAA7F,EADA,CAEHE,EAAG7C,CAAA6K,SAFA,CADwB,CANjC,CAYFlB,gBAAiBV,CAAApG,EAAA8G,gBAZf,CAaFS,aAAcA,QAAS,CAAC/K,CAAD;AAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAA2K,GADkB,CAblC,CA3FoC,CADlD,CAkHIrC,EAAAwC,KAAJ,GACIxC,CAAAwC,KAAA/B,UAAA3J,cADJ,CAC+C,CACvCuD,EAAGsG,CAAAtG,EADoC,CAUvCwH,IAAK,CACD7K,WAAY,cADX,CAEDgB,KAAM,GAFL,CAGDC,KAAM,CAAA,CAHL,CAIDkE,OAAQ,CAAA,CAJP,CAKDwC,WAAY,QALX,CAMDwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO,CACH2C,EAAG3C,CAAAwI,UAAA7F,EADA,CAEHE,EAAG7C,CAAA+K,QAFA,CADwB,CANlC,CAYDpB,gBAAiBV,CAAApG,EAAA8G,gBAZhB,CAaDS,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAAgL,KAAd,EAA4B3L,CAA5B,EAAmCW,CAAAiL,MADH,CAbnC,CAVkC,CAmCvCZ,KAAM,CACF/K,WAAY,eADV,CAEFgB,KAAM,GAFJ,CAGFC,KAAM,CAAA,CAHJ,CAIFkE,OAAQ,CAAA,CAJN,CAKFwC,WAAY,KALV,CAMFwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO,CACH2C,EAAG3C,CAAAwI,UAAA7F,EADA,CAEHE,EAAG7C,CAAAkL,SAFA,CADwB,CANjC,CAYFvB,gBAAiBV,CAAApG,EAAA8G,gBAZf,CAaFS,aAAcA,QAAS,CAAC/K,CAAD;AAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAAgL,KAAd,EAA4B3L,CAA5B,EAAmCW,CAAAiL,MADH,CAblC,CAnCiC,CA4DvCD,KAAM,CACF1L,WAAY,eADV,CAEFgB,KAAM,GAFJ,CAGFC,KAAM,CAAA,CAHJ,CAIFkE,OAAQ,CAAA,CAJN,CAKFwC,WAAYA,QAAS,CAACjH,CAAD,CAAQ,CACzB,MAAOA,EAAAgL,KAAA,EAAchL,CAAAiL,MAAd,CAA4B,KAA5B,CAAoC,QADlB,CAL3B,CAQFxB,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO,CACH2C,EAAG3C,CAAAwI,UAAA7F,EADA,CAEHE,EAAG7C,CAAAmL,SAFA,CADwB,CARjC,CAcFxB,gBAAiBV,CAAApG,EAAA8G,gBAdf,CAeFS,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAAqK,KAAd,EAA4BhL,CAA5B,EAAmCW,CAAAmK,IADH,CAflC,CA5DiC,CAuFvCc,MAAO,CACH3L,WAAY,gBADT,CAEHgB,KAAM,GAFH,CAGHC,KAAM,CAAA,CAHH,CAIHkE,OAAQ,CAAA,CAJL,CAKHwC,WAAYA,QAAS,CAACjH,CAAD,CAAQ,CACzB,MAAOA,EAAAgL,KAAA,EAAchL,CAAAiL,MAAd,CAA4B,QAA5B,CAAuC,KADrB,CAL1B,CAQHxB,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO,CACH2C,EAAG3C,CAAAwI,UAAA7F,EADA,CAEHE,EAAG7C,CAAAoL,UAFA,CADwB,CARhC;AAcHzB,gBAAiBV,CAAApG,EAAA8G,gBAdd,CAeHS,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAAqK,KAAd,EAA4BhL,CAA5B,EAAmCW,CAAAmK,IADH,CAfjC,CAvFgC,CAD/C,CA+GA,IAAI7B,CAAA+C,UAAJ,CAA2B,CACnBC,IAAAA,EAA2BhD,CAAA4B,YAAAnB,UAAA3J,cAA3BkM,CAGAC,EAA2BA,QAAS,CAACvL,CAAD,CAAQ,CACpC4J,CAAAA,CAAS5J,CAAAyI,QAAA,CACTzI,CAAAyI,QAAAC,QAAA,EAAA5F,MADS,CACuB,CADvB,CAC2B,CAD3B,CAET,CAEJ,OAAO,CACH,GADG,CACE,CADF,CACM8G,CADN,CACc,CADd,CAEH,GAFG,CAEEA,CAFF,CAEUA,CAFV,CAEkB,CAFlB,CAEqB,CAFrB,CAEwB,CAFxB,CAEoC,CAFpC,CAE2BA,CAF3B,CAEuC,CAFvC,CAGH,GAHG,CAGEA,CAHF,CAGUA,CAHV,CAGkB,CAHlB,CAGqB,CAHrB,CAGwB,CAHxB,CAGqC,EAHrC,CAG2BA,CAH3B,CAGwC,CAHxC,CALiC,CAYhDtB,EAAA+C,UAAAtC,UAAA3J,cAAA,CAAgD,CAC5CuD,EAAG2I,CAAA3I,EADyC,CAU5CwH,IAAK,CACD7K,WAAY,cADX,CAEDgB,KAAM,GAFL,CAGDC,KAAM,CAAA,CAHL,CAIDkE,OAAQ,CAAA,CAJP,CAKDwC,WAAY,QALX,CAMDwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAG/B,MAAO,CAFH0J,CAEG,CAFI1J,CAAAwL,aAEJ,EAF0BxL,CAAAwL,aAAA9C,QAAA,EAE1B,EAAO,CACV/F,EAAG+G,CAAA/G,EAAHA,CAAY+G,CAAA5G,MAAZH,CAAyB,CADf,CAEVE,EAAG6G,CAAA7G,EAAHA,CAAY6G,CAAA3G,OAAZF;AAA0B,CAFhB,CAAP,CAGH,CAAEF,EAAI,IAAN,CAAWE,EAAI,IAAf,CAN2B,CANlC,CAcD8G,gBAAiB4B,CAdhB,CAeDnB,aAAckB,CAAAnB,IAAAC,aAfb,CAVuC,CAmC5CC,KAAM,CACF/K,WAAY,eADV,CAEFgB,KAAM,GAFJ,CAGFC,KAAM,CAAA,CAHJ,CAIFkE,OAAQ,CAAA,CAJN,CAKFwC,WAAY,KALV,CAMFwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAG/B,MAAO,CAFH0J,CAEG,CAFI1J,CAAAyL,aAEJ,EAF0BzL,CAAAyL,aAAA/C,QAAA,EAE1B,EAAO,CACV/F,EAAG+G,CAAA/G,EAAHA,CAAY+G,CAAA5G,MAAZH,CAAyB,CADf,CAEVE,EAAG6G,CAAA7G,EAAHA,CAAY6G,CAAA3G,OAAZF,CAA0B,CAFhB,CAAP,CAGH,CAAEF,EAAI,IAAN,CAAWE,EAAI,IAAf,CAN2B,CANjC,CAcF8G,gBAAiB4B,CAdf,CAeFnB,aAAckB,CAAAjB,KAAAD,aAfZ,CAnCsC,CAhBzB,CAwEvB9B,CAAAoD,UAAJ,GACIpD,CAAAoD,UAAA3C,UAAA3J,cADJ,CACoD,CAC5CuD,EAAGsG,CAAAtG,EADyC,CAE5CE,EAAGuB,CAAA,CAAM6E,CAAApG,EAAN,CAA6B,CAC5B8G,gBAAiBA,QAAS,CAAC3J,CAAD,CAAQ,CAC9B,MAAOA,EAAA2L,MAAA,EAAe3L,CAAA4L,kBAAf,CAAyC,IAAzC,CACH3C,CAAApG,EAAA8G,gBAAA,CAAsC3J,CAAtC,CAF0B,CADN,CAA7B,CAFyC,CADpD,CAaA,IAAIsI,CAAAuD,OAAJ,CAAwB,IAIhBC;AAAyBA,QAAS,CAAC9L,CAAD,CAAQ+L,CAAR,CAAe,CAAA,IACzC/M,EAASgB,CAAAhB,OADgC,CAEzC2B,EAAQ3B,CAAA2B,MAFiC,CAGzCD,EAAQ1B,CAAA0B,MAHiC,CAIzCsG,EAAWhI,CAAAY,MAAAoH,SAGX9E,EAAAA,CAAOvB,CAAAqL,SAAA,CAAehM,CAAA,CAAM+L,CAAN,CAAf,CAA6B,CAAA,CAA7B,CANX,KAOI5J,EAAOzB,CAAAsL,SAAA,CAAehM,CAAA6C,EAAf,CAAwB,CAAA,CAAxB,CAGPmE,EAAJ,EACI9E,CACA,CADOvB,CAAAsL,IACP,CADmB/J,CACnB,CAAAC,CAAA,CAAOzB,CAAAuL,IAAP,CAAmB9J,CAAnB,CACInC,CAAAwI,UAAAzF,OADJ,CAC6B,CAHjC,EAKIZ,CALJ,EAKYnC,CAAAwI,UAAAzF,OALZ,CAKqC,CAGrC,OAAO,CACHJ,EAAGP,IAAAkH,MAAA,CAAWpH,CAAX,CADA,CAEHW,EAAGT,IAAAkH,MAAA,CAAWnH,CAAX,CAFA,CAnBsC,CAJjC,CA4BhB+J,EAAsB5D,CAAAuD,OAAA9C,UAAA3J,cAAtB8M,CAAmE,CAC/DrJ,EAAG,CACCvC,KAAM,GADP,CAECC,KAAM,CAAA,CAFP,CAD4D,CAa/DoC,EAAG,CACCrD,WAAY,aADb,CAECgB,KAAM,GAFP,CAGCC,KAAM,CAAA,CAHP,CAICkE,OAAQ,CAAA,CAJT,CAKCwC,WAAY,MALb,CAMCwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO8L,EAAA,CAAuB9L,CAAvB,CAA8B,GAA9B,CADwB,CANpC,CASC2J,gBAAiBpB,CATlB,CAUC6B,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAAmM,GADkB,CAVrC,CAb4D,CAmC/DA,GAAI,CACA7M,WAAY,aADZ,CAEAgB,KAAM,GAFN;AAGAC,KAAM,CAAA,CAHN,CAIAkE,OAAQ,CAAA,CAJR,CAKAwC,WAAY,OALZ,CAMAwC,iBAAkBA,QAAS,CAACzJ,CAAD,CAAQ,CAC/B,MAAO8L,EAAA,CAAuB9L,CAAvB,CAA8B,IAA9B,CADwB,CANnC,CASA2J,gBAAiBpB,CATjB,CAUA6B,aAAcA,QAAS,CAAC/K,CAAD,CAAMW,CAAN,CAAa,CAChC,MAAOX,EAAP,EAAcW,CAAA2C,EADkB,CAVpC,CAnC2D,CAqDvE2F,EAAA8D,MAAJ,GACI9D,CAAA8D,MAAArD,UAAA3J,cADJ,CACgD,CACxCyD,EAAGqJ,CAAArJ,EADqC,CAUxCwJ,MAAOjI,CAAA,CAAM8H,CAAAvJ,EAAN,CAA6B,CAChCrD,WAAY,gBADoB,CAGhCgN,uBAAwBA,QAAS,CAACtM,CAAD,CAAQ,CACrC,MAAO,CAACA,CAAAuM,UAD6B,CAHT,CAA7B,CAViC,CAyBxCC,IAAKpI,CAAA,CAAM8H,CAAAC,GAAN,CAA8B,CAC/B7M,WAAY,cADmB,CAG/BgN,uBAAwBA,QAAS,CAACtM,CAAD,CAAQ,CACrC,MAAO,CAACA,CAAAuM,UAD6B,CAHV,CAA9B,CAzBmC,CADhD,CAqCA,yGAAA,MAAA,CAAA,GAAA,CAAA7K,QAAA,CAgBI,QAAS,CAACF,CAAD,CAAO,CACR8G,CAAA,CAAY9G,CAAZ,CAAJ;CACI8G,CAAA,CAAY9G,CAAZ,CAAAuH,UAAA3J,cADJ,CACgD,IADhD,CADY,CAhBpB,CAkEA,KAAIqN,EAAyB,CAMzB,UAAW,CAOPC,UAAW,6BAPJ,CAcPC,UAAW,CAdJ,CAsBPC,UAAW,MAtBJ,CA8BPC,MAAO,oBA9BA,CAqCPC,OAAQ,MArCD,CA4CPC,OAAQ,GA5CD,CANc,CAA7B,CA6DIC,EAA2B,CA6B3BN,UAAW,wBA7BgB,CAqC3BG,MAAO,MArCoB,CA6C3BD,UAAW,oBA7CgB,CAoD3BD,UAAW,CApDgB,CA2D3BI,OAAQ,GA3DmB,CA01B/BvO,EAAAyO,MAAAlE,UAAAjF,iBAAA,CAAqCoJ,QAAS,CAACC,CAAD,CAAQ1N,CAAR,CAAiB,CAAA,IACvDgD,EAAW,IAAAmB,aACXwJ,EAAAA,CAAkBhJ,CAAA,CAAMqI,CAAN,CAA8BhN,CAA9B,CAClB4N,EAAAA,CAAejJ,CAAA,CAAMgJ,CAAAE,QAAN,CAA+BF,CAAA,CAAgBD,CAAhB,CAA/B,CAEnB,OAAO1K,EAAAG,KAAA,CACG,CACF8J,UAAWW,CAAAX,UADT,CAEFa,OAAQF,CAAAT,UAFN,CAGFY,YAAaH,CAAAV,UAHX,CAIFc,KAAMJ,CAAAR,MAJJ,CAKFC,OAAQO,CAAAP,OALN,CAMFC,OAAQM,CAAAN,OANN,CADH,CAAAW,IAAA,CAUE,CAAEC,cAAe,MAAjB,CAVF,CALoD,CA+C/DnP;CAAAoP,MAAA7E,UAAApE,cAAA,CAAkCkJ,QAAS,CAAC9L,CAAD,CAASoC,CAAT,CAAiBE,CAAjB,CAA8B,CAAA,IACjErE,EAAQ,IADyD,CAEjEhB,EAASgB,CAAAhB,OAFwD,CAGjES,EAAU2E,CAAA,CAAMpF,CAAAS,QAAAC,SAAN,CAA+BM,CAAAP,QAAAC,SAA/B,CAHuD,CAIjEgB,EAAQ1B,CAAA0B,MAJyD,CAKjEC,EAAQ3B,CAAA2B,MALyD,CAMjEkG,EAAK1C,CAAArD,OAAL+F,CAAqB9E,CAAAjB,OACrBgG,EAAAA,CAAK3C,CAAApD,OAAL+F,CAAqB/E,CAAAhB,OAP4C,KAQjEiB,EAAO0B,CAAA,CAAK3B,CAAAY,EAAL,CAAe3C,CAAA2C,EAAf,CAR0D,CASjEV,EAAOyB,CAAA,CAAK3B,CAAAc,EAAL,CAAe7C,CAAA6C,EAAf,CAT0D,CAUjEiL,EAAUnN,CAAAoN,QAAA,CACNpN,CAAAqL,SAAA,CAAehK,CAAf,CAAqB,CAAA,CAArB,CADM,EAELrB,CAAAqN,MAAA,CAAcnH,CAAd,CAAmBC,CAFd,EAGN,CAAA,CAHM,CAAVgH,CAII9L,CAd6D,CAejEiM,EAAUvN,CAAAqN,QAAA,CACNrN,CAAAsL,SAAA,CAAe/J,CAAf,CAAqB,CAAA,CAArB,CADM,EAELvB,CAAAsN,MAAA,CAAcnH,CAAd,CAAmBC,CAFd,EAGN,CAAA,CAHM,CAAVmH,CAIIhM,CAnB6D,CAoBjEiM,EAAS,EApBwD,CAqBjEC,CArBiE,CAsBjEC,EAAcrM,CAAAS,OAAA,CAAcxC,CAAAkD,GAAd,CAtBmD,CAyB5DD,CAAT,KAASA,CAAT,GAAgBoB,EAAhB,CACI,GAAIA,CAAA4B,eAAA,CAA2BhD,CAA3B,CAAJ,CAAqC,CACjC,GAAyB1E,IAAAA,EAAzB,GAAI4P,CAAJ,CAAoC,CAChCA,CAAA,CAAmB,CAAA,CACnB,MAFgC,CAIpCA,CAAA,CAAmB,CAAA,CALc,CA6BzChP,CAAA,CAAWkF,CAAX,CAAwB,QAAS,CAAChF,CAAD,CAAM4D,CAAN,CAAW,CAAA,IACpCoL,EAASD,CAAA,CAAYnL,CAAZ,CAD2B,CAEpCqL,CACI,EAAA,CAAAD,CAAA,EAAuB,GAAb,GAAAhP,CAAAiB,KAAA,CAAmBwN,CAAnB,CAA6BG,CAAvC,CACA,KAAA,EAAA5O,CAAAiB,KAAAiO,YAAA,EAAA,CArBJC,EAAmBxP,CAAA,CAAOyP,CAAAC,YAAA,EAAP,CAAiC,MAAjC,CAAAC,WAAA;AACD,CADC,CACG,CAoBlB,CAnBJC,EAAYlL,CAAA,CACRjE,CAAA,CAAQ,eAAR,CAA0BgP,CAA1B,CADQ,CAC8BD,CAD9B,CAmBR,CAhBJK,EAAMnL,CAAA,CAAKjE,CAAA,CAAQ,SAAR,CAAoBgP,CAApB,CAAL,CAAqC,CAACK,QAAtC,CAgBF,CAfJrH,EAAM/D,CAAA,CAAKjE,CAAA,CAAQ,SAAR,CAAoBgP,CAApB,CAAL,CAAqCK,QAArC,CAGNF,EAAJ,GACIlM,CADJ,CACUN,IAAAkH,MAAA,CAAW5G,CAAX,CAAiBkM,CAAjB,CADV,CACwCA,CADxC,CAGA,EAAA,CAAOxM,IAAAqF,IAAA,CAASoH,CAAT,CAAczM,IAAAyM,IAAA,CAASpH,CAAT,CAAc/E,CAAd,CAAd,CAgBCyL,EAFR,EAGQ9O,CAAA+K,aAHR,EAIS,CAAA/K,CAAA+K,aAAA,CAAiBkE,CAAjB,CAAyBtO,CAAzB,CAJT,EAMezB,IAAAA,EANf,GAMI8P,CANJ,GAQIH,CAAA,CAAOjL,CAAP,CARJ,CAQkBqL,CARlB,CATwC,CAA5C,CAqBA,OAAOJ,EA5E8D,CA4FzE1P,EAAAuQ,OAAAhG,UAAAlF,YAAA,CAAiCmL,QAAS,CAACxM,CAAD,CAAS,CAAA,IAC3C5C,EAAQ,IAAAA,MADmC,CAE3CqP,EAAOH,QAFoC,CAG3CI,EAAO,CAACJ,QAHmC,CAI3CK,EAAOL,QAJoC,CAK3CM,EAAO,CAACN,QALmC,CAM3CO,CAGJ7M,EAAAd,QAAA,CAAe,QAAS,CAAC1B,CAAD,CAAQ,CAG5B,CAFI0J,CAEJ,CAFW1J,CAAAyI,QAEX,EAF4BzI,CAAAyI,QAAAC,QAAA,EAE5B,EAFuD1I,CAAAwI,UAEvD,IAAakB,CAAA5G,MAAb,EAA2B4G,CAAA3G,OAA3B,EAA0C2G,CAAA/G,EAA1C,EAAoD+G,CAAA7G,EAApD,IACIwM,CAIA,CAJU,CAAA,CAIV,CAHAJ,CAGA,CAHO7M,IAAAyM,IAAA,CAASnF,CAAA/G,EAAT,CAAiBsM,CAAjB,CAGP,CAFAC,CAEA,CAFO9M,IAAAqF,IAAA,CAASiC,CAAA/G,EAAT,CAAkB+G,CAAA5G,MAAlB,CAA8BoM,CAA9B,CAEP,CADAC,CACA,CADO/M,IAAAyM,IAAA,CAASnF,CAAA7G,EAAT,CAAiBsM,CAAjB,CACP,CAAAC,CAAA,CAAOhN,IAAAqF,IAAA,CAASiC,CAAA7G,EAAT;AAAkB6G,CAAA3G,OAAlB,CAA+BqM,CAA/B,CALX,CAH4B,CAAhC,CAYA,OAAOC,EAAA,CAAUzP,CAAA0P,SAAA9H,KAAA,CACbyH,CADa,CAEbE,CAFa,CAGbD,CAHa,CAGND,CAHM,CAIbG,CAJa,CAIND,CAJM,CAAV,CAKHvP,CAAA0P,SAAAC,EAAA,EA1B2C,CAgInD/Q,EAAAoP,MAAA7E,UAAAtD,gBAAA,CAAoC+J,QAAS,EAAG,CAAA,IACxCxP,EAAQ,IADgC,CAExChB,EAASgB,CAAAhB,OAF+B,CAGxCY,EAAQZ,CAAAY,MAHgC,CAIxC0P,EAAW1P,CAAA0P,SAJ6B,CAKxC7P,EAAU2E,CAAA,CAAMpF,CAAAS,QAAAC,SAAN,CAA+BM,CAAAP,QAAAC,SAA/B,CAIdP,EAAA,CAAWH,CAAAI,cAAX,CAAiC,QAAS,CAACC,CAAD,CAAM4D,CAAN,CAAW,CAAA,IAC7CwM,EAAgBrL,CAAA,CACZ4I,CADY,CAEZ3N,CAAAoQ,cAFY,CAGZhQ,CAAAiQ,WAHY,CAD6B,CAM7CC,EAAc,CACVjD,UAAW+C,CAAA/C,UADD,CAEV,eAAgB+C,CAAA9C,UAFN,CAGVc,KAAMgC,CAAA5C,MAHI,CAIVU,OAAQkC,CAAA7C,UAJE,CAN+B,CAY7CgD,EAAgBH,CAAAG,cAAhBA,EAA+CvQ,CAAAsK,gBAZF,CAa7CkG,EAAaxQ,CAAAoK,iBAbgC,CAiB7CqG,CAGAC,EAAAA,CAAW1Q,CAAAiN,uBAAA,CACPjN,CAAAiN,uBAAA,CAA2BtM,CAA3B,CADO,CAC6B,CAAA,CAGxCX,EAAAoF,OADJ,EAEIsL,CAFJ,EAGI1Q,CAAA4H,WAHJ;AAII2I,CAJJ,GAMQnQ,CAAA,CAAQ,WAAR,CAAsBJ,CAAAiB,KAAAiO,YAAA,EAAtB,CANR,EAOQ9O,CAAA,CAAQJ,CAAAC,WAAR,CAPR,GASgC,CAAA,CAThC,GASIG,CAAA,CAAQJ,CAAAC,WAAR,CATJ,GAaSM,CAAA4F,YAeL,GAdI5F,CAAA4F,YAcJ,CAdwB,CAChBxB,MAAOsL,CAAAC,EAAA,CAAW,mBAAX,CAAAxL,IAAA,CACE/E,CAAAgR,YADF,EACwBhR,CAAAgF,MADxB,CADS,CAcxB,EAPApE,CAAA4F,YAAAxF,MAOA,CAP0BA,CAAAkD,GAO1B,CAJA+M,CAIA,CAJMJ,CAAA,CAAW7P,CAAX,CAIN,CAHA2P,CAAAO,EAGA,CAHgBJ,CAGhB,CAHuBF,CAAA,CAAc5P,CAAd,CAGvB,CAFAmQ,CAEA,CAFuC,UAA1B,GAAA,MAAO9Q,EAAA4H,WAAP,CACT5H,CAAA4H,WAAA,CAAejH,CAAAP,QAAf,CAA8BO,CAA9B,CADS,CAC8BX,CAAA4H,WAC3C,CAAK6I,CAAAA,CAAL,EAAqB,CAArB,CAAaG,CAAAtN,EAAb,EAAkC,CAAlC,CAA0BsN,CAAApN,EAA1B,GAKA8M,CAAA7C,OA6BA,CA7BqB2C,CAAA3C,OAAA,EACH,GADG,GAChBzN,CAAAiB,KADgB,GACM,CAAE0G,CAAApH,CAAAoH,SADR,CAEjB,WAFiB,CAEH,WA2BlB,EAxBAoJ,CAwBA,CAxBSxQ,CAAA4F,YAAA,CAAkB2K,CAAlB,CAwBT,IAtBIC,CAsBJ,CAtBaxQ,CAAA4F,YAAA,CAAkB2K,CAAlB,CAsBb,CAtB6Cb,CAAAQ,KAAA,EAAA/L,IAAA,CAEhCnE,CAAA4F,YAAAxB,MAFgC,CAsB7C,EAhBAoM,CAAA1I,UAAA,CAAiBuI,CAAAtN,EAAjB,CAAwBsN,CAAApN,EAAxB,CAAAD,KAAA,CAAoC+M,CAApC,CAgBA,CAbAzO,CAAA,CACIkP,CAAAC,QADJ,CAEI,CAAC,YAAD;AAAe,WAAf,CAFJ,CAGI,QAAS,CAACxP,CAAD,CAAI,CAEL,CAAA,CAAAD,CAAA,CAAmBC,CAAnB,CAAsBjB,CAAtB,CAlHpB,KAAIA,EAkH8CI,CAlHtChB,OAAAY,MAGRA,EAAAwG,oBAAA,CAA0BvF,CAA1B,CAAJ,GAKAjB,CAAAuI,YASA,CAToB,CAAA,CASpB,CANA3E,CAAA,CAAa3C,CAAb,CAuGkDb,CAvGlD,CAMA,CALAJ,CAAAkC,aAAAyC,WAKA,CALgC1D,CAAA0D,WAKhC,CAiGyDtB,CAjGzD,CAiGkDjD,CArGlD0G,eAAA,CAAqB,WAArB,CAAkC7F,CAAlC,CAIA,CADAA,CAAAyP,gBAAA,EACA,CAAAzP,CAAA0F,eAAA,EAdA,CA6GyB,CAHjB,CAaA,CAJA9E,CAAA,CAAS7B,CAAA4F,YAAAxB,MAAAqM,QAAT,CAA0C,WAA1C,CAAuD,QAAS,EAAG,CAC/DzQ,CAAAkC,aAAA,CAAqBlC,CAAAkC,aAArB,EAA2C,EAC3ClC,EAAAkC,aAAA8D,iBAAA,CAAsC5F,CAAAkD,GAFyB,CAAnE,CAIA,CAAAhC,CAAA,CACItB,CAAA4F,YAAAxB,MAAAqM,QADJ,CAEI,CAAC,UAAD,CAAa,UAAb,CAFJ,CAGI,QAAS,EAAG,CA3JxB,IAAIzQ,EA4JmCI,CA5J3BhB,OAAAY,MAGRA,EAAAkC,aADJ,EA0JuC9B,CAxJnCkD,GAFJ,GAEiBtD,CAAAkC,aAAA8D,iBAFjB,EAII,OAAOhG,CAAAkC,aAAA8D,iBAENhG;CAAA2F,WAAL,EACIG,CAAA,CAmJmC1F,CAnJnC,CAkJoB,CAHhB,CAlCA,CA5BJ,CAvBiD,CAArD,CAT4C,CAgHhDxB,EAAAyO,MAAAlE,UAAAlD,gBAAA,CAAoC0K,QAAS,EAAG,CAChC3Q,IAER4F,YAAJ,GACIrG,CAAA,CAHQS,IAGG4F,YAAX,CAA8B,QAAS,CAACnG,CAAD,CAAM4D,CAAN,CAAW,CAClC,OAAZ,GAAIA,CAAJ,EAAuB5D,CAAAwI,QAAvB,EACIxI,CAAAwI,QAAA,EAF0C,CAAlD,CAQA,CAXQjI,IAQJ4F,YAAAxB,MAGJ,EAXQpE,IAQuB4F,YAAAxB,MAAA6D,QAG/B,EAXQjI,IASJ4F,YAAAxB,MAAA6D,QAAA,EAEJ,CAAA,OAXQjI,IAWD4F,YATX,CAH4C,CAqShD/D,EAAA,CAASjD,CAAAoP,MAAT,CAAkB,WAAlB,CAA+B,QAAS,EAAG,CACvC,IAAI5N,EAAQ,IAEZsF,WAAA,CAAW,QAAS,EAAG,CAhOD,IAClBtG,EAgOUgB,CAhODhB,OADS,CAElBY,EAAQZ,CAARY,EAAkBZ,CAAAY,MAFA,CAGlBkC,EAAelC,CAAfkC,EAAwBlC,CAAAkC,aAGxBlC,EAAAA,CADJ,EAGQkC,CAHR,EAIQA,CAAAmC,WAJR,EAKQnC,CAAA6D,uBALR,EAOK/F,CAAAsF,oBAPL,EAQIxF,CAAAV,CAAAS,QAAAC,SARJ,EAUQE,CAAAH,QAVR,EAWQG,CAAAH,QAAAG,MAXR;AAYQA,CAAAH,QAAAG,MAAA4Q,UAZR,GAgBQ5Q,CAAA4F,YAGJ,EAFI5F,CAAAiG,gBAAA,EAEJ,CAyMU7F,CAzMVyF,gBAAA,EAnBJ,CA2NuB,CAAvB,CAEG,EAFH,CAHuC,CAA3C,CAUAhE,EAAA,CAASjD,CAAAoP,MAAT,CAAkB,UAAlB,CAA8B,QAAS,EAAG,CACtC,IAAI5N,EAAQ,IAEZsF,WAAA,CAAW,QAAS,EAAG,CACftF,CAAAhB,OAAJ,EACI0G,CAAA,CAAS1F,CAAT,CAFe,CAAvB,CAIG,EAJH,CAHsC,CAA1C,CAYAyB,EAAA,CAASjD,CAAAoP,MAAT,CAAkB,QAAlB,CAA4B,QAAS,EAAG,CAAA,IAChChO,EAAQ,IAAAZ,OAAAY,MADwB,CAEhC4F,EAAc5F,CAAA4F,YAEdA,EAAJ,EAAmBA,CAAAxF,MAAnB,GAAyC,IAAAkD,GAAzC,EACItD,CAAAiG,gBAAA,EALgC,CAAxC,CAsBArH,EAAAyO,MAAAlE,UAAA3C,oBAAA,CAAwCqK,QAAS,CAAC5P,CAAD,CAAI,CAAA,IAE7C6P,EAAe,IAAAC,YAAA/Q,MAAf8Q,EAAyC,EAFI,CAG7CE,EAASF,CAAAE,OAATA,EAAgCF,CAAAE,OAAhCA,CAAsD,KAG1D,OAAQ/P,EAAA,CAFM6P,CAAAG,QAEN,EAF8BH,CAAAG,QAE9B,CAFqD,KAErD,CAAR,EAAsBhQ,CAAA,CAAE+P,CAAF,CAN2B,CAyDrDnP,EAAA,CAASjD,CAAAyO,MAAT,CAAkB,QAAlB,CAA4B,QAAS,EAAG,CAE/B,IAAA5E,uBAAL;AACIP,CAAA,CAAkB,IAAlB,CAHgC,CAAxC,CAzjFU,CAAb,CAAA,CAgkFCxJ,CAhkFD,CADmB,CAXvB;","sources":["draggable-points.src.js"],"names":["factory","module","exports","define","amd","Highcharts","undefined","H","flipResizeSide","side","left","right","top","bottom","isSeriesDraggable","series","props","i","objectEach","dragDropProps","val","optionName","push","length","options","dragDrop","isChartDraggable","chart","hasCartesianSeries","polar","isPointMovable","point","seriesDragDropOptions","pointDragDropOptions","hasMovableX","hasMovableY","p","axis","move","draggableX","draggableY","yAxis","xAxis","getNormalizedEvent","e","chartX","chartY","pointer","normalize","addEvents","el","types","fn","removeFuncs","map","type","addEvent","forEach","hasDraggedPastSensitivity","sensitivity","orig","dragDropData","origin","oldX","oldY","newX","newY","Math","sqrt","distance","getPositionSnapshot","points","guideBox","res","x","attr","y","width","height","pointProps","key","id","getGroupedPoints","groupKey","groupBy","filter","comparePoint","initDragDrop","groupedPoints","pick","liveRedraw","dragGuideBox","getGuideBox","setGuideBoxState","add","group","isDragging","getNewPoints","newPos","merge","updateProps","resizeProp","updateProp","hashmap","resize","newValues","getDropValues","updatePoints","animate","newPoints","animOptions","duration","animation","isDragDropAnimating","newPoint","update","redraw","setTimeout","hoverPoint","dragHandles","showDragHandles","mouseOut","draggedPastSensitivity","isHoveringHandle","hideDragHandles","countProps","object","count","hasOwnProperty","getFirstProp","mouseMove","zoomOrPanKeyPressed","seriesDragDropOpts","numNewPoints","preventDefault","dragSensitivity","defaultDragSensitivity","firePointEvent","newPointId","data","dX","dY","oldDx","inverted","resizeSide","beforeResize","reversed","prevdX","prevdY","resizeAttrs","updateSide","rect","max","translate","mouseUp","cancelClick","destroy","addDragDropEvents","container","doc","dragPoint","dragDropOptions","mouseIsDown","unbindDragDropMouseUp","hasAddedDragDropEvents","seriesTypes","horizHandleFormatter","shapeArgs","graphic","getBBox","r","centerY","lineDragDropProps","line","prototype","flags","columnDragDropProps","column","pointVals","threshold","translatedThreshold","round","diff","flipSide","handlePositioner","bBox","handleFormatter","radius","centerX","bullet","target","targetGraphic","barX","columnrange","low","propValidate","high","boxplot","lowPlot","q1","q1Plot","median","q3","q3Plot","highPlot","ohlc","plotLow","open","close","plotHigh","plotOpen","plotClose","arearange","columnrangeDragDropProps","arearangeHandleFormatter","lowerGraphic","upperGraphic","waterfall","isSum","isIntermediateSum","xrange","xrangeHandlePositioner","xProp","toPixels","len","xrangeDragDropProps","x2","gantt","start","validateIndividualDrag","milestone","end","defaultGuideBoxOptions","className","lineWidth","lineColor","color","cursor","zIndex","defaultDragHandleOptions","Chart","H.Chart.prototype.setGuideBoxState","state","guideBoxOptions","stateOptions","default","stroke","strokeWidth","fill","css","pointerEvents","Point","H.Point.prototype.getDropValues","dXValue","toValue","horiz","dYValue","result","updateSingleProp","pointOrigin","oldVal","newVal","toUpperCase","defaultPrecision","direction","toLowerCase","categories","precision","min","Infinity","Series","H.Series.prototype.getGuideBox","minX","maxX","minY","maxY","changed","renderer","g","H.Point.prototype.showDragHandles","handleOptions","dragHandle","handleAttrs","pathFormatter","positioner","path","validate","markerGroup","pos","d","handleSide","handle","element","stopPropagation","H.Chart.prototype.hideDragHandles","options3d","H.Chart.prototype.zoomOrPanKeyPressed","chartOptions","userOptions","panKey","zoomKey"]}
@@ -0,0 +1,2650 @@
1
+ /**
2
+ * @license Highcharts JS v7.0.3 (2019-02-06)
3
+ *
4
+ * (c) 2009-2019 Torstein Honsi
5
+ *
6
+ * License: www.highcharts.com/license
7
+ */
8
+ 'use strict';
9
+ (function (factory) {
10
+ if (typeof module === 'object' && module.exports) {
11
+ factory['default'] = factory;
12
+ module.exports = factory;
13
+ } else if (typeof define === 'function' && define.amd) {
14
+ define(function () {
15
+ return factory;
16
+ });
17
+ } else {
18
+ factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
19
+ }
20
+ }(function (Highcharts) {
21
+ (function (H) {
22
+ /**
23
+ * (c) 2009-2019 Highsoft AS
24
+ * Authors: Øystein Moseng, Torstein Hønsi, Jon A. Nygård
25
+ *
26
+ * License: www.highcharts.com/license
27
+ */
28
+
29
+ /**
30
+ * Function callback to execute while series points are dragged. Return false to
31
+ * stop the default drag action.
32
+ *
33
+ * @callback Highcharts.SeriesPointDragCallbackFunction
34
+ *
35
+ * @param {Highcharts.Point} this
36
+ * Point where the event occured.
37
+ *
38
+ * @param {Highcharts.SeriesPointDragEventObject} event
39
+ * Event arguments.
40
+ */
41
+
42
+ /**
43
+ * Contains common information for a drag event on series points.
44
+ *
45
+ * @interface Highcharts.SeriesPointDragEventObject
46
+ *//**
47
+ * New points during drag.
48
+ * @name Highcharts.SeriesPointDragEventObject#newPoints
49
+ * @type {Highcharts.Dictionary<Highcharts.SeriesPointDragPointObject>}
50
+ *//**
51
+ * Original data.
52
+ * @name Highcharts.SeriesPointDragEventObject#origin
53
+ * @type {object}
54
+ *//**
55
+ * Prevent default drag action.
56
+ * @name Highcharts.SeriesPointDragEventObject#preventDefault
57
+ * @type {Function}
58
+ *//**
59
+ * Target point that caused the event.
60
+ * @name Highcharts.SeriesPointDragEventObject#target
61
+ * @type {Highcharts.Point}
62
+ *//**
63
+ * Event type.
64
+ * @name Highcharts.SeriesPointDragEventObject#type
65
+ * @type {"drag"}
66
+ */
67
+
68
+ /**
69
+ * Contains information about a dragged points new values.
70
+ *
71
+ * @interface Highcharts.SeriesPointDragPointObject
72
+ *//**
73
+ * New values.
74
+ * @name Highcharts.SeriesPointDragPointObject#newValues
75
+ * @type {Highcharts.Dictionary<number>}
76
+ *//**
77
+ * Dragged point.
78
+ * @name Highcharts.SeriesPointDragPointObject#point
79
+ * @type {Highcharts.Point}
80
+ */
81
+
82
+ /**
83
+ * Function callback to execute when a series point is dragged.
84
+ *
85
+ * @callback Highcharts.SeriesPointDragStartCallbackFunction
86
+ *
87
+ * @param {Highcharts.Point} this
88
+ * Point where the event occured.
89
+ *
90
+ * @param {Highcharts.SeriesPointDragStartEventObject} event
91
+ * Event arguments.
92
+ */
93
+
94
+ /**
95
+ * Contains common information for a drag event on series point.
96
+ *
97
+ * @interface Highcharts.SeriesPointDragStartEventObject
98
+ *
99
+ * @implements {global.MouseDownEvent}
100
+ *//**
101
+ * Data property being dragged.
102
+ * @name Highcharts.SeriesPointDragStartEventObject#updateProp
103
+ * @type {Highcharts.Dictionary<number>}
104
+ */
105
+
106
+ /**
107
+ * Function callback to execute when series points are dropped.
108
+ *
109
+ * @callback Highcharts.SeriesPointDropCallbackFunction
110
+ *
111
+ * @param {Highcharts.Point} this
112
+ * Point where the event occured.
113
+ *
114
+ * @param {Highcharts.SeriesPointDropEventObject} event
115
+ * Event arguments.
116
+ */
117
+
118
+ /**
119
+ * Contains common information for a drop event on series points.
120
+ *
121
+ * @interface Highcharts.SeriesPointDropEventObject
122
+ *//**
123
+ * New points after drop.
124
+ * @name Highcharts.SeriesPointDropEventObject#newPoints
125
+ * @type {Highcharts.Dictionary<Highcharts.SeriesPointDropPointObject>}
126
+ *//**
127
+ * Number of new points.
128
+ * @name Highcharts.SeriesPointDropEventObject#numNewPoints
129
+ * @type {number}
130
+ *//**
131
+ * Original data.
132
+ * @name Highcharts.SeriesPointDropEventObject#origin
133
+ * @type {object}
134
+ *//**
135
+ * Prevent default drop action.
136
+ * @name Highcharts.SeriesPointDropEventObject#preventDefault
137
+ * @type {Function}
138
+ *//**
139
+ * Target point that caused the event.
140
+ * @name Highcharts.SeriesPointDropEventObject#target
141
+ * @type {Highcharts.Point}
142
+ *//**
143
+ * Event type.
144
+ * @name Highcharts.SeriesPointDropEventObject#type
145
+ * @type {"drop"}
146
+ */
147
+
148
+ /**
149
+ * Contains information about a dropped points new values.
150
+ *
151
+ * @interface Highcharts.SeriesPointDropPointObject
152
+ *//**
153
+ * New values.
154
+ * @name Highcharts.SeriesPointDropPointObject#newValues
155
+ * @type {Highcharts.Dictionary<number>}
156
+ *//**
157
+ * Dragged point.
158
+ * @name Highcharts.SeriesPointDropPointObject#point
159
+ * @type {Highcharts.Point}
160
+ */
161
+
162
+
163
+
164
+ var addEvent = H.addEvent,
165
+ objectEach = H.objectEach,
166
+ pick = H.pick,
167
+ merge = H.merge,
168
+ seriesTypes = H.seriesTypes;
169
+
170
+ /**
171
+ * Flip a side property, used with resizeRect. If input side is "left", return
172
+ * "right" etc.
173
+ *
174
+ * @private
175
+ * @function flipResizeSide
176
+ *
177
+ * @param {string} side
178
+ * Side prop to flip. Can be `left`, `right`, `top` or `bottom`.
179
+ *
180
+ * @return {"bottom"|"left"|"right"|"top"|undefined}
181
+ * The flipped side.
182
+ */
183
+ function flipResizeSide(side) {
184
+ return {
185
+ left: 'right',
186
+ right: 'left',
187
+ top: 'bottom',
188
+ bottom: 'top'
189
+ }[side];
190
+ }
191
+
192
+ /* @todo
193
+ Add drag/drop support to specific data props for different series types.
194
+
195
+ The dragDrop.draggableX/Y user options on series enable/disable all of these per
196
+ irection unless they are specifically set in options using
197
+ dragDrop.{optionName}. If the prop does not specify an optionName here, it can
198
+ only be enabled/disabled by the user with draggableX/Y.
199
+
200
+ Supported options for each prop:
201
+ optionName: User option in series.dragDrop that enables/disables
202
+ dragging this prop.
203
+ axis: Can be 'x' or 'y'. Whether this prop is linked to x or y axis.
204
+ move: Whether or not this prop should be updated when moving points.
205
+ resize: Whether or not to draw a drag handle and allow user to drag and
206
+ update this prop by itself.
207
+ beforeResize: Hook to perform tasks before a resize is made. Gets
208
+ the guide box, the new points values, and the point as args.
209
+ resizeSide: Which side of the guide box to resize when dragging the
210
+ handle. Can be "left", "right", "top", "bottom". Chart.inverted is
211
+ handled automatically. Can also be a function, taking the new point
212
+ values as parameter, as well as the point, and returning a string
213
+ with the side.
214
+ propValidate: Function that takes the prop value and the point as
215
+ arguments, and returns true if the prop value is valid, false if
216
+ not. It is used to prevent e.g. resizing "low" above "high".
217
+ handlePositioner: For resizeable props, return 0,0 in SVG plot coords of
218
+ where to place the dragHandle. Gets point as argument. Should return
219
+ object with x and y properties.
220
+ handleFormatter: For resizeable props, return the path of the drag
221
+ handle as an SVG path array. Gets the point as argument. The handle
222
+ is translated according to handlePositioner.
223
+ handleOptions: Options to merge with the default handle options.
224
+
225
+ TODO:
226
+ - It makes sense to have support for resizing the size of bubbles and
227
+ e.g variwide columns. This requires us to support dragging along a
228
+ z-axis, somehow computing a relative value from old to new pixel
229
+ size.
230
+ - Moving maps could be useful, although we would have to compute new
231
+ point.path values in order to do it properly (using SVG translate
232
+ is easier, but won't update the data).
233
+ */
234
+
235
+ // 90deg rotated column handle path, used in multiple series types
236
+ var horizHandleFormatter = function (point) {
237
+ var shapeArgs = point.shapeArgs || point.graphic.getBBox(),
238
+ top = shapeArgs.r || 0, // Rounding of bar corners
239
+ bottom = shapeArgs.height - top,
240
+ centerY = shapeArgs.height / 2;
241
+
242
+ return [
243
+ // Top wick
244
+ 'M', 0, top,
245
+ 'L', 0, centerY - 5,
246
+ // Circle
247
+ 'A', 1, 1, 0, 0, 0, 0, centerY + 5,
248
+ 'A', 1, 1, 0, 0, 0, 0, centerY - 5,
249
+ // Bottom wick
250
+ 'M', 0, centerY + 5,
251
+ 'L', 0, bottom
252
+ ];
253
+ };
254
+
255
+ // Line series - only draggableX/Y, no drag handles
256
+ var lineDragDropProps = seriesTypes.line.prototype.dragDropProps = {
257
+ x: {
258
+ axis: 'x',
259
+ move: true
260
+ },
261
+ y: {
262
+ axis: 'y',
263
+ move: true
264
+ }
265
+ };
266
+
267
+ // Flag series - same as line/scatter
268
+ if (seriesTypes.flags) {
269
+ seriesTypes.flags.prototype.dragDropProps = lineDragDropProps;
270
+ }
271
+
272
+ // Column series - x can be moved, y can only be resized. Note extra
273
+ // functionality for handling upside down columns (below threshold).
274
+ var columnDragDropProps = seriesTypes.column.prototype.dragDropProps = {
275
+ x: {
276
+ axis: 'x',
277
+ move: true
278
+ },
279
+ y: {
280
+ axis: 'y',
281
+ move: false,
282
+ resize: true,
283
+ // Force guideBox start coordinates
284
+ beforeResize: function (guideBox, pointVals, point) {
285
+ // We need to ensure that guideBox always starts at threshold.
286
+ // We flip whether or not we update the top or bottom of the guide
287
+ // box at threshold, but if we drag the mouse fast, the top has not
288
+ // reached threshold before we cross over and update the bottom.
289
+ var threshold = point.series.translatedThreshold,
290
+ y = guideBox.attr('y'),
291
+ height,
292
+ diff;
293
+
294
+ if (pointVals.y >= point.series.options.threshold || 0) {
295
+ // Above threshold - always set height to hit the threshold
296
+ height = guideBox.attr('height');
297
+ diff = threshold ? threshold - (y + height) : 0;
298
+ guideBox.attr({
299
+ height: Math.max(0, Math.round(height + diff))
300
+ });
301
+ } else {
302
+ // Below - always set y to start at threshold
303
+ guideBox.attr({
304
+ y: Math.round(y + (threshold ? threshold - y : 0))
305
+ });
306
+ }
307
+ },
308
+ // Flip the side of the resize handle if column is below threshold.
309
+ // Make sure we remove the handle on the other side.
310
+ resizeSide: function (pointVals, point) {
311
+ var chart = point.series.chart,
312
+ dragHandles = chart.dragHandles,
313
+ side = pointVals.y >= (point.series.options.threshold || 0) ?
314
+ 'top' : 'bottom',
315
+ flipSide = flipResizeSide(side);
316
+
317
+ // Force remove handle on other side
318
+ if (dragHandles[flipSide]) {
319
+ dragHandles[flipSide].destroy();
320
+ delete dragHandles[flipSide];
321
+ }
322
+ return side;
323
+ },
324
+ // Position handle at bottom if column is below threshold
325
+ handlePositioner: function (point) {
326
+ var bBox = point.shapeArgs || point.graphic.getBBox();
327
+
328
+ return {
329
+ x: bBox.x,
330
+ y: point.y >= (point.series.options.threshold || 0) ?
331
+ bBox.y : bBox.y + bBox.height
332
+ };
333
+ },
334
+ // Horizontal handle
335
+ handleFormatter: function (point) {
336
+ var shapeArgs = point.shapeArgs,
337
+ radius = shapeArgs.r || 0, // Rounding of bar corners
338
+ centerX = shapeArgs.width / 2;
339
+
340
+ return [
341
+ // Left wick
342
+ 'M', radius, 0,
343
+ 'L', centerX - 5, 0,
344
+ // Circle
345
+ 'A', 1, 1, 0, 0, 0, centerX + 5, 0,
346
+ 'A', 1, 1, 0, 0, 0, centerX - 5, 0,
347
+ // Right wick
348
+ 'M', centerX + 5, 0,
349
+ 'L', shapeArgs.width - radius, 0
350
+ ];
351
+ }
352
+ }
353
+ };
354
+
355
+ // Bullet graph, x/y same as column, but also allow target to be dragged.
356
+ if (seriesTypes.bullet) {
357
+ seriesTypes.bullet.prototype.dragDropProps = {
358
+ x: columnDragDropProps.x,
359
+ y: columnDragDropProps.y,
360
+ /**
361
+ * Allow target value to be dragged individually. Requires
362
+ * `draggable-points` module.
363
+ *
364
+ * @type {boolean}
365
+ * @default true
366
+ * @apioption plotOptions.bullet.dragDrop.draggableTarget
367
+ */
368
+ target: {
369
+ optionName: 'draggableTarget',
370
+ axis: 'y',
371
+ move: true,
372
+ resize: true,
373
+ resizeSide: 'top',
374
+ handlePositioner: function (point) {
375
+ var bBox = point.targetGraphic.getBBox();
376
+
377
+ return {
378
+ x: point.barX,
379
+ y: bBox.y + bBox.height / 2
380
+ };
381
+ },
382
+ handleFormatter: columnDragDropProps.y.handleFormatter
383
+ }
384
+ };
385
+ }
386
+
387
+ // Columnrange series - move x, resize or move low/high
388
+ if (seriesTypes.columnrange) {
389
+ seriesTypes.columnrange.prototype.dragDropProps = {
390
+ x: {
391
+ axis: 'x',
392
+ move: true
393
+ },
394
+ /**
395
+ * Allow low value to be dragged individually. Requires
396
+ * `draggable-points` module.
397
+ *
398
+ * @type {boolean}
399
+ * @default true
400
+ * @apioption plotOptions.columnrange.dragDrop.draggableLow
401
+ */
402
+ low: {
403
+ optionName: 'draggableLow',
404
+ axis: 'y',
405
+ move: true,
406
+ resize: true,
407
+ resizeSide: 'bottom',
408
+ handlePositioner: function (point) {
409
+ var bBox = point.shapeArgs || point.graphic.getBBox();
410
+
411
+ return {
412
+ x: bBox.x,
413
+ y: bBox.y + bBox.height
414
+ };
415
+ },
416
+ handleFormatter: columnDragDropProps.y.handleFormatter,
417
+ propValidate: function (val, point) {
418
+ return val <= point.high;
419
+ }
420
+ },
421
+ /**
422
+ * Allow high value to be dragged individually. Requires
423
+ * `draggable-points` module.
424
+ *
425
+ * @type {boolean}
426
+ * @default true
427
+ * @apioption plotOptions.columnrange.dragDrop.draggableHigh
428
+ */
429
+ high: {
430
+ optionName: 'draggableHigh',
431
+ axis: 'y',
432
+ move: true,
433
+ resize: true,
434
+ resizeSide: 'top',
435
+ handlePositioner: function (point) {
436
+ var bBox = point.shapeArgs || point.graphic.getBBox();
437
+
438
+ return {
439
+ x: bBox.x,
440
+ y: bBox.y
441
+ };
442
+ },
443
+ handleFormatter: columnDragDropProps.y.handleFormatter,
444
+ propValidate: function (val, point) {
445
+ return val >= point.low;
446
+ }
447
+ }
448
+ };
449
+ }
450
+
451
+ // Boxplot series - move x, resize or move low/q1/q3/high
452
+ if (seriesTypes.boxplot) {
453
+ seriesTypes.boxplot.prototype.dragDropProps = {
454
+ x: columnDragDropProps.x,
455
+ /**
456
+ * Allow low value to be dragged individually. Requires
457
+ * `draggable-points` module.
458
+ *
459
+ * @type {boolean}
460
+ * @default true
461
+ * @apioption plotOptions.boxplot.dragDrop.draggableLow
462
+ */
463
+ low: {
464
+ optionName: 'draggableLow',
465
+ axis: 'y',
466
+ move: true,
467
+ resize: true,
468
+ resizeSide: 'bottom',
469
+ handlePositioner: function (point) {
470
+ return {
471
+ x: point.shapeArgs.x,
472
+ y: point.lowPlot
473
+ };
474
+ },
475
+ handleFormatter: columnDragDropProps.y.handleFormatter,
476
+ propValidate: function (val, point) {
477
+ return val <= point.q1;
478
+ }
479
+ },
480
+ /**
481
+ * Allow Q1 value to be dragged individually. Requires
482
+ * `draggable-points` module.
483
+ *
484
+ * @type {boolean}
485
+ * @default true
486
+ * @apioption plotOptions.boxplot.dragDrop.draggableQ1
487
+ */
488
+ q1: {
489
+ optionName: 'draggableQ1',
490
+ axis: 'y',
491
+ move: true,
492
+ resize: true,
493
+ resizeSide: 'bottom',
494
+ handlePositioner: function (point) {
495
+ return {
496
+ x: point.shapeArgs.x,
497
+ y: point.q1Plot
498
+ };
499
+ },
500
+ handleFormatter: columnDragDropProps.y.handleFormatter,
501
+ propValidate: function (val, point) {
502
+ return val <= point.median && val >= point.low;
503
+ }
504
+ },
505
+ median: {
506
+ // Median can not be dragged individually, just move the whole
507
+ // point for this.
508
+ axis: 'y',
509
+ move: true
510
+ },
511
+ /**
512
+ * Allow Q3 value to be dragged individually. Requires
513
+ * `draggable-points` module.
514
+ *
515
+ * @type {boolean}
516
+ * @default true
517
+ * @apioption plotOptions.boxplot.dragDrop.draggableQ3
518
+ */
519
+ q3: {
520
+ optionName: 'draggableQ3',
521
+ axis: 'y',
522
+ move: true,
523
+ resize: true,
524
+ resizeSide: 'top',
525
+ handlePositioner: function (point) {
526
+ return {
527
+ x: point.shapeArgs.x,
528
+ y: point.q3Plot
529
+ };
530
+ },
531
+ handleFormatter: columnDragDropProps.y.handleFormatter,
532
+ propValidate: function (val, point) {
533
+ return val <= point.high && val >= point.median;
534
+ }
535
+ },
536
+ /**
537
+ * Allow high value to be dragged individually. Requires
538
+ * `draggable-points` module.
539
+ *
540
+ * @type {boolean}
541
+ * @default true
542
+ * @apioption plotOptions.boxplot.dragDrop.draggableHigh
543
+ */
544
+ high: {
545
+ optionName: 'draggableHigh',
546
+ axis: 'y',
547
+ move: true,
548
+ resize: true,
549
+ resizeSide: 'top',
550
+ handlePositioner: function (point) {
551
+ return {
552
+ x: point.shapeArgs.x,
553
+ y: point.highPlot
554
+ };
555
+ },
556
+ handleFormatter: columnDragDropProps.y.handleFormatter,
557
+ propValidate: function (val, point) {
558
+ return val >= point.q3;
559
+ }
560
+ }
561
+ };
562
+ }
563
+
564
+
565
+ // OHLC series - move x, resize or move open/high/low/close
566
+ if (seriesTypes.ohlc) {
567
+ seriesTypes.ohlc.prototype.dragDropProps = {
568
+ x: columnDragDropProps.x,
569
+ /**
570
+ * Allow low value to be dragged individually. Requires
571
+ * `draggable-points` module.
572
+ *
573
+ * @type {boolean}
574
+ * @default true
575
+ * @apioption plotOptions.ohlc.dragDrop.draggableLow
576
+ */
577
+ low: {
578
+ optionName: 'draggableLow',
579
+ axis: 'y',
580
+ move: true,
581
+ resize: true,
582
+ resizeSide: 'bottom',
583
+ handlePositioner: function (point) {
584
+ return {
585
+ x: point.shapeArgs.x,
586
+ y: point.plotLow
587
+ };
588
+ },
589
+ handleFormatter: columnDragDropProps.y.handleFormatter,
590
+ propValidate: function (val, point) {
591
+ return val <= point.open && val <= point.close;
592
+ }
593
+ },
594
+ /**
595
+ * Allow high value to be dragged individually. Requires
596
+ * `draggable-points` module.
597
+ *
598
+ * @type {boolean}
599
+ * @default true
600
+ * @apioption plotOptions.ohlc.dragDrop.draggableHigh
601
+ */
602
+ high: {
603
+ optionName: 'draggableHigh',
604
+ axis: 'y',
605
+ move: true,
606
+ resize: true,
607
+ resizeSide: 'top',
608
+ handlePositioner: function (point) {
609
+ return {
610
+ x: point.shapeArgs.x,
611
+ y: point.plotHigh
612
+ };
613
+ },
614
+ handleFormatter: columnDragDropProps.y.handleFormatter,
615
+ propValidate: function (val, point) {
616
+ return val >= point.open && val >= point.close;
617
+ }
618
+ },
619
+ /**
620
+ * Allow open value to be dragged individually. Requires
621
+ * `draggable-points` module.
622
+ *
623
+ * @type {boolean}
624
+ * @default true
625
+ * @apioption plotOptions.ohlc.dragDrop.draggableOpen
626
+ */
627
+ open: {
628
+ optionName: 'draggableOpen',
629
+ axis: 'y',
630
+ move: true,
631
+ resize: true,
632
+ resizeSide: function (point) {
633
+ return point.open >= point.close ? 'top' : 'bottom';
634
+ },
635
+ handlePositioner: function (point) {
636
+ return {
637
+ x: point.shapeArgs.x,
638
+ y: point.plotOpen
639
+ };
640
+ },
641
+ handleFormatter: columnDragDropProps.y.handleFormatter,
642
+ propValidate: function (val, point) {
643
+ return val <= point.high && val >= point.low;
644
+ }
645
+ },
646
+ /**
647
+ * Allow close value to be dragged individually. Requires
648
+ * `draggable-points` module.
649
+ *
650
+ * @type {boolean}
651
+ * @default true
652
+ * @apioption plotOptions.ohlc.dragDrop.draggableClose
653
+ */
654
+ close: {
655
+ optionName: 'draggableClose',
656
+ axis: 'y',
657
+ move: true,
658
+ resize: true,
659
+ resizeSide: function (point) {
660
+ return point.open >= point.close ? 'bottom' : 'top';
661
+ },
662
+ handlePositioner: function (point) {
663
+ return {
664
+ x: point.shapeArgs.x,
665
+ y: point.plotClose
666
+ };
667
+ },
668
+ handleFormatter: columnDragDropProps.y.handleFormatter,
669
+ propValidate: function (val, point) {
670
+ return val <= point.high && val >= point.low;
671
+ }
672
+ }
673
+ };
674
+ }
675
+
676
+ // Arearange series - move x, resize or move low/high
677
+ if (seriesTypes.arearange) {
678
+ var columnrangeDragDropProps = seriesTypes.columnrange
679
+ .prototype.dragDropProps,
680
+ // Use a circle covering the marker as drag handle
681
+ arearangeHandleFormatter = function (point) {
682
+ var radius = point.graphic ?
683
+ point.graphic.getBBox().width / 2 + 1 :
684
+ 4;
685
+
686
+ return [
687
+ 'M', 0 - radius, 0,
688
+ 'a', radius, radius, 0, 1, 0, radius * 2, 0,
689
+ 'a', radius, radius, 0, 1, 0, radius * -2, 0
690
+ ];
691
+ };
692
+
693
+ seriesTypes.arearange.prototype.dragDropProps = {
694
+ x: columnrangeDragDropProps.x,
695
+ /**
696
+ * Allow low value to be dragged individually. Requires
697
+ * `draggable-points` module.
698
+ *
699
+ * @type {boolean}
700
+ * @default true
701
+ * @apioption plotOptions.arearange.dragDrop.draggableLow
702
+ */
703
+ low: {
704
+ optionName: 'draggableLow',
705
+ axis: 'y',
706
+ move: true,
707
+ resize: true,
708
+ resizeSide: 'bottom',
709
+ handlePositioner: function (point) {
710
+ var bBox = point.lowerGraphic && point.lowerGraphic.getBBox();
711
+
712
+ return bBox ? {
713
+ x: bBox.x + bBox.width / 2,
714
+ y: bBox.y + bBox.height / 2
715
+ } : { x: -999, y: -999 };
716
+ },
717
+ handleFormatter: arearangeHandleFormatter,
718
+ propValidate: columnrangeDragDropProps.low.propValidate
719
+ },
720
+ /**
721
+ * Allow high value to be dragged individually. Requires
722
+ * `draggable-points` module.
723
+ *
724
+ * @type {boolean}
725
+ * @default true
726
+ * @apioption plotOptions.arearange.dragDrop.draggableHigh
727
+ */
728
+ high: {
729
+ optionName: 'draggableHigh',
730
+ axis: 'y',
731
+ move: true,
732
+ resize: true,
733
+ resizeSide: 'top',
734
+ handlePositioner: function (point) {
735
+ var bBox = point.upperGraphic && point.upperGraphic.getBBox();
736
+
737
+ return bBox ? {
738
+ x: bBox.x + bBox.width / 2,
739
+ y: bBox.y + bBox.height / 2
740
+ } : { x: -999, y: -999 };
741
+ },
742
+ handleFormatter: arearangeHandleFormatter,
743
+ propValidate: columnrangeDragDropProps.high.propValidate
744
+ }
745
+ };
746
+ }
747
+
748
+ // Waterfall - mostly as column, but don't show drag handles for sum points
749
+ if (seriesTypes.waterfall) {
750
+ seriesTypes.waterfall.prototype.dragDropProps = {
751
+ x: columnDragDropProps.x,
752
+ y: merge(columnDragDropProps.y, {
753
+ handleFormatter: function (point) {
754
+ return point.isSum || point.isIntermediateSum ? null :
755
+ columnDragDropProps.y.handleFormatter(point);
756
+ }
757
+ })
758
+ };
759
+ }
760
+
761
+ // Xrange - resize/move x/x2, and move y
762
+ if (seriesTypes.xrange) {
763
+ // Handle positioner logic is the same for x and x2 apart from the
764
+ // x value. shapeArgs does not take yAxis reversed etc into account, so we
765
+ // use axis.toPixels to handle positioning.
766
+ var xrangeHandlePositioner = function (point, xProp) {
767
+ var series = point.series,
768
+ xAxis = series.xAxis,
769
+ yAxis = series.yAxis,
770
+ inverted = series.chart.inverted,
771
+ // Using toPixels handles axis.reversed, but doesn't take
772
+ // chart.inverted into account.
773
+ newX = xAxis.toPixels(point[xProp], true),
774
+ newY = yAxis.toPixels(point.y, true);
775
+
776
+ // Handle chart inverted
777
+ if (inverted) {
778
+ newX = xAxis.len - newX;
779
+ newY = yAxis.len - newY -
780
+ point.shapeArgs.height / 2;
781
+ } else {
782
+ newY -= point.shapeArgs.height / 2;
783
+ }
784
+
785
+ return {
786
+ x: Math.round(newX),
787
+ y: Math.round(newY)
788
+ };
789
+ },
790
+ xrangeDragDropProps = seriesTypes.xrange.prototype.dragDropProps = {
791
+ y: {
792
+ axis: 'y',
793
+ move: true
794
+ },
795
+ /**
796
+ * Allow x value to be dragged individually. Requires
797
+ * `draggable-points` module.
798
+ *
799
+ * @type {boolean}
800
+ * @default true
801
+ * @apioption plotOptions.xrange.dragDrop.draggableX1
802
+ */
803
+ x: {
804
+ optionName: 'draggableX1',
805
+ axis: 'x',
806
+ move: true,
807
+ resize: true,
808
+ resizeSide: 'left',
809
+ handlePositioner: function (point) {
810
+ return xrangeHandlePositioner(point, 'x');
811
+ },
812
+ handleFormatter: horizHandleFormatter,
813
+ propValidate: function (val, point) {
814
+ return val <= point.x2;
815
+ }
816
+ },
817
+ /**
818
+ * Allow x2 value to be dragged individually. Requires
819
+ * `draggable-points` module.
820
+ *
821
+ * @type {boolean}
822
+ * @default true
823
+ * @apioption plotOptions.xrange.dragDrop.draggableX2
824
+ */
825
+ x2: {
826
+ optionName: 'draggableX2',
827
+ axis: 'x',
828
+ move: true,
829
+ resize: true,
830
+ resizeSide: 'right',
831
+ handlePositioner: function (point) {
832
+ return xrangeHandlePositioner(point, 'x2');
833
+ },
834
+ handleFormatter: horizHandleFormatter,
835
+ propValidate: function (val, point) {
836
+ return val >= point.x;
837
+ }
838
+ }
839
+ };
840
+ }
841
+
842
+ // Gantt - same as xrange, but with aliases
843
+ if (seriesTypes.gantt) {
844
+ seriesTypes.gantt.prototype.dragDropProps = {
845
+ y: xrangeDragDropProps.y,
846
+ /**
847
+ * Allow start value to be dragged individually. Requires
848
+ * `draggable-points` module.
849
+ *
850
+ * @type {boolean}
851
+ * @default true
852
+ * @apioption plotOptions.gantt.dragDrop.draggableStart
853
+ */
854
+ start: merge(xrangeDragDropProps.x, {
855
+ optionName: 'draggableStart',
856
+ // Do not allow individual drag handles for milestones
857
+ validateIndividualDrag: function (point) {
858
+ return !point.milestone;
859
+ }
860
+ }),
861
+ /**
862
+ * Allow end value to be dragged individually. Requires
863
+ * `draggable-points` module.
864
+ *
865
+ * @type {boolean}
866
+ * @default true
867
+ * @apioption plotOptions.gantt.dragDrop.draggableEnd
868
+ */
869
+ end: merge(xrangeDragDropProps.x2, {
870
+ optionName: 'draggableEnd',
871
+ // Do not allow individual drag handles for milestones
872
+ validateIndividualDrag: function (point) {
873
+ return !point.milestone;
874
+ }
875
+ })
876
+ };
877
+ }
878
+
879
+ // Don't support certain series types
880
+ [
881
+ 'gauge',
882
+ 'pie',
883
+ 'sunburst',
884
+ 'wordcloud',
885
+ 'sankey',
886
+ 'histogram',
887
+ 'pareto',
888
+ 'vector',
889
+ 'windbarb',
890
+ 'treemap',
891
+ 'bellcurve',
892
+ 'sma',
893
+ 'map',
894
+ 'mapline'
895
+ ].forEach(
896
+ function (type) {
897
+ if (seriesTypes[type]) {
898
+ seriesTypes[type].prototype.dragDropProps = null;
899
+ }
900
+ }
901
+ );
902
+
903
+ /**
904
+ * The draggable-points module allows points to be moved around or modified in
905
+ * the chart. In addition to the options mentioned under the `dragDrop` API
906
+ * structure, the module fires three events,
907
+ * [point.dragStart](plotOptions.series.point.events.dragStart),
908
+ * [point.drag](plotOptions.series.point.events.drag) and
909
+ * [point.drop](plotOptions.series.point.events.drop).
910
+ *
911
+ * It requires the `modules/draggable-points.js` file to be loaded.
912
+ *
913
+ * @sample highcharts/dragdrop/resize-column
914
+ * Draggable column and line series
915
+ * @sample highcharts/dragdrop/bar-series
916
+ * Draggable bar
917
+ * @sample highcharts/dragdrop/drag-bubble
918
+ * Draggable bubbles
919
+ * @sample highcharts/dragdrop/drag-xrange
920
+ * Draggable X range series
921
+ *
922
+ * @since 6.2.0
923
+ * @apioption plotOptions.series.dragDrop
924
+ */
925
+
926
+ /**
927
+ * The amount of pixels to drag the pointer before it counts as a drag
928
+ * operation. This prevents drag/drop to fire when just clicking or selecting
929
+ * points.
930
+ *
931
+ * @type {number}
932
+ * @default 2
933
+ * @since 6.2.0
934
+ * @apioption plotOptions.series.dragDrop.dragSensitivity
935
+ */
936
+ var defaultDragSensitivity = 2;
937
+
938
+ /**
939
+ * Style options for the guide box. The guide box has one state by default, the
940
+ * `default` state.
941
+ *
942
+ * @type {Highcharts.Dictionary<Highcharts.PlotSeriesDragDropGuideBoxDefaultOptions>}
943
+ * @since 6.2.0
944
+ * @optionparent plotOptions.series.dragDrop.guideBox
945
+ */
946
+ var defaultGuideBoxOptions = {
947
+ /**
948
+ * Style options for the guide box default state.
949
+ *
950
+ * @since 6.2.0
951
+ */
952
+ 'default': {
953
+ /**
954
+ * CSS class name of the guide box in this state. Defaults to
955
+ * `highcharts-drag-box-default`.
956
+ *
957
+ * @since 6.2.0
958
+ */
959
+ className: 'highcharts-drag-box-default',
960
+
961
+ /**
962
+ * Width of the line around the guide box.
963
+ *
964
+ * @since 6.2.0
965
+ */
966
+ lineWidth: 1,
967
+
968
+ /**
969
+ * Color of the border around the guide box.
970
+ *
971
+ * @type {Highcharts.ColorString}
972
+ * @since 6.2.0
973
+ */
974
+ lineColor: '#888',
975
+
976
+ /**
977
+ * Guide box fill color.
978
+ *
979
+ * @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
980
+ * @since 6.2.0
981
+ */
982
+ color: 'rgba(0, 0, 0, 0.1)',
983
+
984
+ /**
985
+ * Guide box cursor.
986
+ *
987
+ * @since 6.2.0
988
+ */
989
+ cursor: 'move',
990
+
991
+ /**
992
+ * Guide box zIndex.
993
+ *
994
+ * @since 6.2.0
995
+ */
996
+ zIndex: 900
997
+ }
998
+ };
999
+
1000
+
1001
+ /**
1002
+ * Options for the drag handles.
1003
+ *
1004
+ * @since 6.2.0
1005
+ * @optionparent plotOptions.series.dragDrop.dragHandle
1006
+ */
1007
+ var defaultDragHandleOptions = {
1008
+
1009
+ /**
1010
+ * Function to define the SVG path to use for the drag handles. Takes the
1011
+ * point as argument. Should return an SVG path in array format. The SVG
1012
+ * path is automatically positioned on the point.
1013
+ *
1014
+ * @type {Function}
1015
+ * @since 6.2.0
1016
+ * @apioption plotOptions.series.dragDrop.dragHandle.pathFormatter
1017
+ */
1018
+ // pathFormatter: null,
1019
+
1020
+ /**
1021
+ * The mouse cursor to use for the drag handles. By default this is
1022
+ * intelligently switching between `ew-resize` and `ns-resize` depending on
1023
+ * the direction the point is being dragged.
1024
+ *
1025
+ * @type {string}
1026
+ * @since 6.2.0
1027
+ * @apioption plotOptions.series.dragDrop.dragHandle.cursor
1028
+ */
1029
+ // cursor: null,
1030
+
1031
+ /**
1032
+ * The class name of the drag handles. Defaults to `highcharts-drag-handle`.
1033
+ *
1034
+ * @since 6.2.0
1035
+ */
1036
+ className: 'highcharts-drag-handle',
1037
+
1038
+ /**
1039
+ * The fill color of the drag handles.
1040
+ *
1041
+ * @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
1042
+ * @since 6.2.0
1043
+ */
1044
+ color: '#fff',
1045
+
1046
+ /**
1047
+ * The line color of the drag handles.
1048
+ *
1049
+ * @type {Highcharts.ColorString}
1050
+ * @since 6.2.0
1051
+ */
1052
+ lineColor: 'rgba(0, 0, 0, 0.6)',
1053
+
1054
+ /**
1055
+ * The line width for the drag handles.
1056
+ *
1057
+ * @since 6.2.0
1058
+ */
1059
+ lineWidth: 1,
1060
+
1061
+ /**
1062
+ * The z index for the drag handles.
1063
+ *
1064
+ * @since 6.2.0
1065
+ */
1066
+ zIndex: 901
1067
+ };
1068
+
1069
+ /**
1070
+ * Set the minimum X value the points can be moved to.
1071
+ *
1072
+ * @sample {gantt} gantt/dragdrop/drag-gantt
1073
+ * Limit dragging
1074
+ * @sample {highcharts} highcharts/dragdrop/drag-xrange
1075
+ * Limit dragging
1076
+ *
1077
+ * @type {number}
1078
+ * @since 6.2.0
1079
+ * @apioption plotOptions.series.dragDrop.dragMinX
1080
+ */
1081
+
1082
+ /**
1083
+ * Set the maximum X value the points can be moved to.
1084
+ *
1085
+ * @sample {gantt} gantt/dragdrop/drag-gantt
1086
+ * Limit dragging
1087
+ * @sample {highcharts} highcharts/dragdrop/drag-xrange
1088
+ * Limit dragging
1089
+ *
1090
+ * @type {number}
1091
+ * @since 6.2.0
1092
+ * @apioption plotOptions.series.dragDrop.dragMaxX
1093
+ */
1094
+
1095
+ /**
1096
+ * Set the minimum Y value the points can be moved to.
1097
+ *
1098
+ * @sample {gantt} gantt/dragdrop/drag-gantt
1099
+ * Limit dragging
1100
+ * @sample {highcharts} highcharts/dragdrop/drag-xrange
1101
+ * Limit dragging
1102
+ *
1103
+ * @type {number}
1104
+ * @since 6.2.0
1105
+ * @apioption plotOptions.series.dragDrop.dragMinY
1106
+ */
1107
+
1108
+ /**
1109
+ * Set the maximum Y value the points can be moved to.
1110
+ *
1111
+ * @sample {gantt} gantt/dragdrop/drag-gantt
1112
+ * Limit dragging
1113
+ * @sample {highcharts} highcharts/dragdrop/drag-xrange
1114
+ * Limit dragging
1115
+ *
1116
+ * @type {number}
1117
+ * @since 6.2.0
1118
+ * @apioption plotOptions.series.dragDrop.dragMaxY
1119
+ */
1120
+
1121
+ /**
1122
+ * The X precision value to drag to for this series. Set to 0 to disable. By
1123
+ * default this is disabled, except for category axes, where the default is 1.
1124
+ *
1125
+ * @type {number}
1126
+ * @default 0
1127
+ * @since 6.2.0
1128
+ * @apioption plotOptions.series.dragDrop.dragPrecisionX
1129
+ */
1130
+
1131
+ /**
1132
+ * The Y precision value to drag to for this series. Set to 0 to disable. By
1133
+ * default this is disabled, except for category axes, where the default is 1.
1134
+ *
1135
+ * @type {number}
1136
+ * @default 0
1137
+ * @since 6.2.0
1138
+ * @apioption plotOptions.series.dragDrop.dragPrecisionY
1139
+ */
1140
+
1141
+ /**
1142
+ * Enable dragging in the X dimension.
1143
+ *
1144
+ * @type {boolean}
1145
+ * @since 6.2.0
1146
+ * @apioption plotOptions.series.dragDrop.draggableX
1147
+ */
1148
+
1149
+ /**
1150
+ * Enable dragging in the Y dimension. Note that this is not supported for
1151
+ * TreeGrid axes (the default axis type in Gantt charts).
1152
+ *
1153
+ * @type {boolean}
1154
+ * @since 6.2.0
1155
+ * @apioption plotOptions.series.dragDrop.draggableY
1156
+ */
1157
+
1158
+ /**
1159
+ * Group the points by a property. Points with the same property value will be
1160
+ * grouped together when moving.
1161
+ *
1162
+ * @sample {gantt} gantt/dragdrop/drag-gantt
1163
+ * Drag grouped points
1164
+ * @sample {highcharts} highcharts/dragdrop/drag-xrange
1165
+ * Drag grouped points
1166
+ *
1167
+ * @type {string}
1168
+ * @since 6.2.0
1169
+ * @apioption plotOptions.series.dragDrop.groupBy
1170
+ */
1171
+
1172
+ /**
1173
+ * Update points as they are dragged. If false, a guide box is drawn to
1174
+ * illustrate the new point size.
1175
+ *
1176
+ * @sample {gantt} gantt/dragdrop/drag-gantt
1177
+ * liveRedraw disabled
1178
+ * @sample {highcharts} highcharts/dragdrop/drag-xrange
1179
+ * liveRedraw disabled
1180
+ *
1181
+ * @type {boolean}
1182
+ * @default true
1183
+ * @since 6.2.0
1184
+ * @apioption plotOptions.series.dragDrop.liveRedraw
1185
+ */
1186
+
1187
+ /**
1188
+ * Set a key to hold when dragging to zoom the chart. Requires the
1189
+ * draggable-points module. This is useful to avoid zooming while moving points.
1190
+ * Should be set different than [chart.panKey](#chart.panKey).
1191
+ *
1192
+ * @type {string}
1193
+ * @since 6.2.0
1194
+ * @validvalue ["alt", "ctrl", "meta", "shift"]
1195
+ * @apioption chart.zoomKey
1196
+ */
1197
+
1198
+ /**
1199
+ * Callback that fires when starting to drag a point. The mouse event object is
1200
+ * passed in as an argument. If a drag handle is used, `e.updateProp` is set to
1201
+ * the data property being dragged. The `this` context is the point. See
1202
+ * [drag and drop options](plotOptions.series.dragDrop).
1203
+ *
1204
+ * Requires the `draggable-points` module.
1205
+ *
1206
+ * @sample {highcharts} highcharts/dragdrop/drag-xrange
1207
+ * Drag events
1208
+ *
1209
+ * @type {Highcharts.SeriesPointDragStartCallbackFunction}
1210
+ * @since 6.2.0
1211
+ * @apioption plotOptions.series.point.events.dragStart
1212
+ */
1213
+
1214
+ /**
1215
+ * Callback that fires while dragging a point. The mouse event is passed in as
1216
+ * parameter. The original data can be accessed from `e.origin`, and the new
1217
+ * point values can be accessed from `e.newPoints`. If there is only a single
1218
+ * point being updated, it can be accessed from `e.newPoint` for simplicity, and
1219
+ * its ID can be accessed from `e.newPointId`. The `this` context is the point
1220
+ * being dragged. To stop the default drag action, return false. See
1221
+ * [drag and drop options](plotOptions.series.dragDrop).
1222
+ *
1223
+ * Requires the `draggable-points` module.
1224
+ *
1225
+ * @sample {highcharts} highcharts/dragdrop/drag-xrange
1226
+ * Drag events
1227
+ *
1228
+ * @type {Highcharts.SeriesPointDragCallbackFunction}
1229
+ * @since 6.2.0
1230
+ * @apioption plotOptions.series.point.events.drag
1231
+ */
1232
+
1233
+ /**
1234
+ * Callback that fires when the point is dropped. The parameters passed are the
1235
+ * same as for [drag](#plotOptions.series.point.events.drag). To stop the
1236
+ * default drop action, return false. See
1237
+ * [drag and drop options](plotOptions.series.dragDrop).
1238
+ *
1239
+ * Requires the `draggable-points` module.
1240
+ *
1241
+ * @sample {highcharts} highcharts/dragdrop/drag-xrange
1242
+ * Drag events
1243
+ *
1244
+ * @type {Highcharts.SeriesPointDropCallbackFunction}
1245
+ * @since 6.2.0
1246
+ * @apioption plotOptions.series.point.events.drop
1247
+ */
1248
+
1249
+ /**
1250
+ * Point specific options for the draggable-points module. Overrides options on
1251
+ * `series.dragDrop`.
1252
+ *
1253
+ * Requires the `draggable-points` module.
1254
+ *
1255
+ * @extends plotOptions.series.dragDrop
1256
+ * @since 6.2.0
1257
+ * @apioption series.line.data.dragDrop
1258
+ */
1259
+
1260
+
1261
+ /**
1262
+ * Utility function to test if a series is using drag/drop, looking at its
1263
+ * options.
1264
+ *
1265
+ * @private
1266
+ * @function isSeriesDraggable
1267
+ *
1268
+ * @param {Highcharts.Series} series
1269
+ * The series to test.
1270
+ *
1271
+ * @return {boolean}
1272
+ * True if the series is using drag/drop.
1273
+ */
1274
+ function isSeriesDraggable(series) {
1275
+ var props = ['draggableX', 'draggableY'],
1276
+ i;
1277
+
1278
+ // Add optionNames from dragDropProps to the array of props to check for
1279
+ objectEach(series.dragDropProps, function (val) {
1280
+ if (val.optionName) {
1281
+ props.push(val.optionName);
1282
+ }
1283
+ });
1284
+
1285
+ // Loop over all options we have that could enable dragDrop for this
1286
+ // series. If any of them are truthy, this series is draggable.
1287
+ i = props.length;
1288
+ while (i--) {
1289
+ if (series.options.dragDrop[props[i]]) {
1290
+ return true;
1291
+ }
1292
+ }
1293
+ }
1294
+
1295
+
1296
+ /**
1297
+ * Utility function to test if a chart should have drag/drop enabled, looking at
1298
+ * its options.
1299
+ *
1300
+ * @private
1301
+ * @function isChartDraggable
1302
+ *
1303
+ * @param {Highcharts.Chart} chart
1304
+ * The chart to test.
1305
+ *
1306
+ * @return {boolean}
1307
+ * True if the chart is drag/droppable.
1308
+ */
1309
+ function isChartDraggable(chart) {
1310
+ var i = chart.series ? chart.series.length : 0;
1311
+
1312
+ if (chart.hasCartesianSeries && !chart.polar) {
1313
+ while (i--) {
1314
+ if (
1315
+ chart.series[i].options.dragDrop &&
1316
+ isSeriesDraggable(chart.series[i])
1317
+ ) {
1318
+ return true;
1319
+ }
1320
+ }
1321
+ }
1322
+ }
1323
+
1324
+
1325
+ /**
1326
+ * Utility function to test if a point is movable (any of its props can be
1327
+ * dragged by a move, not just individually).
1328
+ *
1329
+ * @private
1330
+ * @function isPointMovable
1331
+ *
1332
+ * @param {Highcharts.Point} point
1333
+ * The point to test.
1334
+ *
1335
+ * @return {boolean}
1336
+ * True if the point is movable.
1337
+ */
1338
+ function isPointMovable(point) {
1339
+ var series = point.series,
1340
+ seriesDragDropOptions = series.options.dragDrop || {},
1341
+ pointDragDropOptions = point.options && point.options.dragDrop,
1342
+ updateProps = series.dragDropProps,
1343
+ hasMovableX,
1344
+ hasMovableY;
1345
+
1346
+ objectEach(updateProps, function (p) {
1347
+ if (p.axis === 'x' && p.move) {
1348
+ hasMovableX = true;
1349
+ } else if (p.axis === 'y' && p.move) {
1350
+ hasMovableY = true;
1351
+ }
1352
+ });
1353
+
1354
+ // We can only move the point if draggableX/Y is set, even if all the
1355
+ // individual prop options are set.
1356
+ return (
1357
+ seriesDragDropOptions.draggableX && hasMovableX ||
1358
+ seriesDragDropOptions.draggableY && hasMovableY
1359
+ ) &&
1360
+ !(
1361
+ pointDragDropOptions &&
1362
+ pointDragDropOptions.draggableX === false &&
1363
+ pointDragDropOptions.draggableY === false
1364
+ ) &&
1365
+ series.yAxis &&
1366
+ series.xAxis;
1367
+ }
1368
+
1369
+
1370
+ /**
1371
+ * Take a mouse/touch event and return the event object with chartX/chartY.
1372
+ *
1373
+ * @private
1374
+ * @function getNormalizedEvent
1375
+ *
1376
+ * @param {global.Event} e
1377
+ * The event to normalize.
1378
+ *
1379
+ * @return {global.Event}
1380
+ * The normalized event.
1381
+ */
1382
+ function getNormalizedEvent(e, chart) {
1383
+ return e.chartX === undefined || e.chartY === undefined ?
1384
+ chart.pointer.normalize(e) : e;
1385
+ }
1386
+
1387
+
1388
+ /**
1389
+ * Add multiple event listeners with the same handler to the same element.
1390
+ *
1391
+ * @private
1392
+ * @function addEvents
1393
+ *
1394
+ * @param {*} el
1395
+ * The element or object to add listeners to.
1396
+ *
1397
+ * @param {Array<string>} types
1398
+ * Array with the event types this handler should apply to.
1399
+ *
1400
+ * @param {Highcharts.EventCallbackFunction} fn
1401
+ * The function callback to execute when the events are fired.
1402
+ *
1403
+ * @param {Highcharts.Dictionary<*>} options
1404
+ * Event options
1405
+ *
1406
+ * @param {number} options.order
1407
+ * The order the event handler should be called. This opens for having
1408
+ * one handler be called before another, independent of in which order
1409
+ * they were added.
1410
+ *
1411
+ * @return {Function}
1412
+ * A callback function to remove the added events.
1413
+ */
1414
+ function addEvents(el, types, fn, options) {
1415
+ var removeFuncs = types.map(function (type) {
1416
+ return addEvent(el, type, fn, options);
1417
+ });
1418
+
1419
+ return function () {
1420
+ removeFuncs.forEach(function (fn) {
1421
+ fn();
1422
+ });
1423
+ };
1424
+ }
1425
+
1426
+
1427
+ /**
1428
+ * In mousemove events, check that we have dragged mouse further than the
1429
+ * dragSensitivity before we call mouseMove handler.
1430
+ *
1431
+ * @private
1432
+ * @function hasDraggedPastSensitivity
1433
+ *
1434
+ * @param {global.Event} e
1435
+ * Mouse move event to test.
1436
+ *
1437
+ * @param {Highcharts.Chart} chart
1438
+ * Chart that has started dragging.
1439
+ *
1440
+ * @param {number} sensitivity
1441
+ * Pixel sensitivity to test against.
1442
+ *
1443
+ * @return {boolean}
1444
+ * True if the event is moved past sensitivity relative to the chart's
1445
+ * drag origin.
1446
+ */
1447
+ function hasDraggedPastSensitivity(e, chart, sensitivity) {
1448
+ var orig = chart.dragDropData.origin,
1449
+ oldX = orig.chartX,
1450
+ oldY = orig.chartY,
1451
+ newX = e.chartX,
1452
+ newY = e.chartY,
1453
+ distance = Math.sqrt(
1454
+ (newX - oldX) * (newX - oldX) +
1455
+ (newY - oldY) * (newY - oldY)
1456
+ );
1457
+
1458
+ return distance > sensitivity;
1459
+ }
1460
+
1461
+
1462
+ /**
1463
+ * Get a snapshot of points, mouse position, and guide box dimensions
1464
+ *
1465
+ * @private
1466
+ * @function getPositionSnapshot
1467
+ *
1468
+ * @param {global.Event} e
1469
+ * Mouse event with mouse position to snapshot.
1470
+ *
1471
+ * @param {Array<Highcharts.Point>} points
1472
+ * Points to take snapshot of. We store the value of the data properties
1473
+ * defined in each series' dragDropProps.
1474
+ *
1475
+ * @param {Highcharts.SVGElement} [guideBox]
1476
+ * The guide box to take snapshot of.
1477
+ *
1478
+ * @return {object}
1479
+ * Snapshot object. Point properties are placed in a hashmap with IDs as
1480
+ * keys.
1481
+ */
1482
+ function getPositionSnapshot(e, points, guideBox) {
1483
+ var res = {
1484
+ chartX: e.chartX,
1485
+ chartY: e.chartY,
1486
+ guideBox: guideBox && {
1487
+ x: guideBox.attr('x'),
1488
+ y: guideBox.attr('y'),
1489
+ width: guideBox.attr('width'),
1490
+ height: guideBox.attr('height')
1491
+ },
1492
+ points: {}
1493
+ };
1494
+
1495
+ // Loop over the points and add their props
1496
+ points.forEach(function (point) {
1497
+ var pointProps = {};
1498
+
1499
+ // Add all of the props defined in the series' dragDropProps to the
1500
+ // snapshot
1501
+ objectEach(point.series.dragDropProps, function (val, key) {
1502
+ pointProps[key] = point[key];
1503
+ });
1504
+ pointProps.point = point; // Store reference to point
1505
+ res.points[point.id] = pointProps;
1506
+ });
1507
+
1508
+ return res;
1509
+ }
1510
+
1511
+
1512
+ /**
1513
+ * Get a list of points that are grouped with this point. If only one point is
1514
+ * in the group, that point is returned by itself in an array.
1515
+ *
1516
+ * @private
1517
+ * @function getGroupedPoints
1518
+ *
1519
+ * @param {Highcharts.Point} point
1520
+ * Point to find group from.
1521
+ *
1522
+ * @return {Array<Highcharts.Point>}
1523
+ * Array of points in this group.
1524
+ */
1525
+ function getGroupedPoints(point) {
1526
+ var series = point.series,
1527
+ groupKey = series.options.dragDrop.groupBy;
1528
+
1529
+ return point.options[groupKey] ?
1530
+ // If we have a grouping option, filter the points by that
1531
+ series.points.filter(function (comparePoint) {
1532
+ return comparePoint.options[groupKey] === point.options[groupKey];
1533
+ }) :
1534
+ // Otherwise return the point by itself only
1535
+ [point];
1536
+ }
1537
+
1538
+
1539
+ /**
1540
+ * Resize a rect element on one side. The element is modified.
1541
+ *
1542
+ * @private
1543
+ * @function resizeRect
1544
+ *
1545
+ * @param {Highcharts.SVGElement} rect
1546
+ * Rect element to resize.
1547
+ *
1548
+ * @param {string} updateSide
1549
+ * Which side of the rect to update. Can be `left`, `right`, `top` or
1550
+ * `bottom`.
1551
+ *
1552
+ * @param {object} update
1553
+ * Object with x and y properties, detailing how much to resize each
1554
+ * dimension.
1555
+ *
1556
+ * @return {Highcharts.SVGElement}
1557
+ * The modified rect.
1558
+ */
1559
+ function resizeRect(rect, updateSide, update) {
1560
+ var resizeAttrs;
1561
+
1562
+ switch (updateSide) {
1563
+ case 'left':
1564
+ resizeAttrs = {
1565
+ x: rect.attr('x') + update.x,
1566
+ width: Math.max(1, rect.attr('width') - update.x)
1567
+ };
1568
+ break;
1569
+ case 'right':
1570
+ resizeAttrs = {
1571
+ width: Math.max(1, rect.attr('width') + update.x)
1572
+ };
1573
+ break;
1574
+ case 'top':
1575
+ resizeAttrs = {
1576
+ y: rect.attr('y') + update.y,
1577
+ height: Math.max(1, rect.attr('height') - update.y)
1578
+ };
1579
+ break;
1580
+ case 'bottom':
1581
+ resizeAttrs = {
1582
+ height: Math.max(1, rect.attr('height') + update.y)
1583
+ };
1584
+ break;
1585
+ default:
1586
+ }
1587
+ rect.attr(resizeAttrs);
1588
+ }
1589
+
1590
+
1591
+ /**
1592
+ * Prepare chart.dragDropData with origin info, and show the guide box.
1593
+ *
1594
+ * @private
1595
+ * @function initDragDrop
1596
+ *
1597
+ * @param {global.Event} e
1598
+ * Mouse event with original mouse position.
1599
+ *
1600
+ * @param {Highcharts.Point} point
1601
+ * The point the dragging started on.
1602
+ */
1603
+ function initDragDrop(e, point) {
1604
+ var groupedPoints = getGroupedPoints(point),
1605
+ series = point.series,
1606
+ chart = series.chart,
1607
+ guideBox;
1608
+
1609
+ // If liveRedraw is disabled, show the guide box with the default state
1610
+ if (!pick(
1611
+ series.options.dragDrop && series.options.dragDrop.liveRedraw,
1612
+ true
1613
+ )) {
1614
+ chart.dragGuideBox = guideBox = series.getGuideBox(groupedPoints);
1615
+ chart.setGuideBoxState('default', series.options.dragDrop.guideBox)
1616
+ .add(series.group);
1617
+ }
1618
+
1619
+ // Store some data on the chart to pick up later
1620
+ chart.dragDropData = {
1621
+ origin: getPositionSnapshot(e, groupedPoints, guideBox),
1622
+ point: point,
1623
+ groupedPoints: groupedPoints,
1624
+ isDragging: true
1625
+ };
1626
+ }
1627
+
1628
+
1629
+ /**
1630
+ * Calculate new point options from points being dragged.
1631
+ *
1632
+ * @private
1633
+ * @function getNewPoints
1634
+ *
1635
+ * @param {object} dragDropData
1636
+ * A chart's dragDropData with drag/drop origin information, and info on
1637
+ * which points are being dragged.
1638
+ *
1639
+ * @param {global.Event} newPos
1640
+ * Event with the new position of the mouse (chartX/Y properties).
1641
+ *
1642
+ * @return {Array<object>}
1643
+ * Hashmap with point.id mapped to an object with the original point
1644
+ * reference, as well as the new data values.
1645
+ */
1646
+ function getNewPoints(dragDropData, newPos) {
1647
+ var point = dragDropData.point,
1648
+ series = point.series,
1649
+ options = merge(series.options.dragDrop, point.options.dragDrop),
1650
+ updateProps = {},
1651
+ resizeProp = dragDropData.updateProp,
1652
+ hashmap = {};
1653
+
1654
+ // Go through the data props that can be updated on this series and find out
1655
+ // which ones we want to update.
1656
+ objectEach(point.series.dragDropProps, function (val, key) {
1657
+ // If we are resizing, skip if this key is not the correct one or it
1658
+ // is not resizable.
1659
+ if (
1660
+ resizeProp && (
1661
+ resizeProp !== key ||
1662
+ !val.resize ||
1663
+ val.optionName && options[val.optionName] === false
1664
+ )
1665
+ ) {
1666
+ return;
1667
+ }
1668
+
1669
+ // If we are resizing, we now know it is good. If we are moving, check
1670
+ // that moving along this axis is enabled, and the prop is movable.
1671
+ // If this prop is enabled, add it to be updated.
1672
+ if (
1673
+ resizeProp || (
1674
+ val.move &&
1675
+ (
1676
+ val.axis === 'x' && options.draggableX ||
1677
+ val.axis === 'y' && options.draggableY
1678
+ )
1679
+ )
1680
+ ) {
1681
+ updateProps[key] = val;
1682
+ }
1683
+ });
1684
+
1685
+ // Go through the points to be updated and get new options for each of them
1686
+ (resizeProp ? // If resizing).forEach(only update the point we are resizing
1687
+ [point] :
1688
+ dragDropData.groupedPoints).forEach(
1689
+ function (p) {
1690
+ hashmap[p.id] = {
1691
+ point: p,
1692
+ newValues: p.getDropValues(
1693
+ dragDropData.origin, newPos, updateProps
1694
+ )
1695
+ };
1696
+ }
1697
+ );
1698
+ return hashmap;
1699
+ }
1700
+
1701
+
1702
+ /**
1703
+ * Update the points in a chart from dragDropData.newPoints.
1704
+ *
1705
+ * @private
1706
+ * @function updatePoints
1707
+ *
1708
+ * @param {Highcharts.Chart} chart
1709
+ * A chart with dragDropData.newPoints.
1710
+ *
1711
+ * @param {boolean} [animate=true]
1712
+ * Animate updating points?
1713
+ */
1714
+ function updatePoints(chart, animate) {
1715
+ var newPoints = chart.dragDropData.newPoints,
1716
+ animOptions = animate === false ? false : merge({
1717
+ duration: 400 // 400 is the default in H.animate
1718
+ }, chart.options.animation);
1719
+
1720
+ chart.isDragDropAnimating = true;
1721
+
1722
+ // Update the points
1723
+ objectEach(newPoints, function (newPoint) {
1724
+ newPoint.point.update(newPoint.newValues, false);
1725
+ });
1726
+
1727
+ chart.redraw(animOptions);
1728
+
1729
+ // Clear the isAnimating flag after animation duration is complete.
1730
+ // The complete handler for animation seems to have bugs at this time, so
1731
+ // we have to use a timeout instead.
1732
+ setTimeout(function () {
1733
+ delete chart.isDragDropAnimating;
1734
+ if (chart.hoverPoint && !chart.dragHandles) {
1735
+ chart.hoverPoint.showDragHandles();
1736
+ }
1737
+ }, animOptions.duration);
1738
+ }
1739
+
1740
+
1741
+ /**
1742
+ * Resize the guide box according to point options and a difference in mouse
1743
+ * positions. Handles reversed axes.
1744
+ *
1745
+ * @private
1746
+ * @function resizeGuideBox
1747
+ *
1748
+ * @param {Highcharts.Point} point
1749
+ * The point that is being resized.
1750
+ *
1751
+ * @param {number} dX
1752
+ * Difference in X position.
1753
+ *
1754
+ * @param {number} dY
1755
+ * Difference in Y position.
1756
+ */
1757
+ function resizeGuideBox(point, dX, dY) {
1758
+ var series = point.series,
1759
+ chart = series.chart,
1760
+ dragDropData = chart.dragDropData,
1761
+ resizeSide,
1762
+ newPoint,
1763
+ resizeProp = series.dragDropProps[dragDropData.updateProp];
1764
+
1765
+ // dragDropProp.resizeSide holds info on which side to resize.
1766
+ newPoint = dragDropData.newPoints[point.id].newValues;
1767
+ resizeSide = typeof resizeProp.resizeSide === 'function' ?
1768
+ resizeProp.resizeSide(newPoint, point) : resizeProp.resizeSide;
1769
+
1770
+ // Call resize hook if it is defined
1771
+ if (resizeProp.beforeResize) {
1772
+ resizeProp.beforeResize(chart.dragGuideBox, newPoint, point);
1773
+ }
1774
+
1775
+ // Do the resize
1776
+ resizeRect(
1777
+ chart.dragGuideBox,
1778
+ resizeProp.axis === 'x' && series.xAxis.reversed ||
1779
+ resizeProp.axis === 'y' && series.yAxis.reversed ?
1780
+ flipResizeSide(resizeSide) : resizeSide,
1781
+ {
1782
+ x: resizeProp.axis === 'x' ?
1783
+ dX - (dragDropData.origin.prevdX || 0) : 0,
1784
+ y: resizeProp.axis === 'y' ?
1785
+ dY - (dragDropData.origin.prevdY || 0) : 0
1786
+ }
1787
+ );
1788
+ }
1789
+
1790
+
1791
+ /**
1792
+ * Default mouse move handler while dragging. Handles updating points or guide
1793
+ * box.
1794
+ *
1795
+ * @private
1796
+ * @function dragMove
1797
+ *
1798
+ * @param {global.Event} e
1799
+ * The mouse move event.
1800
+ *
1801
+ * @param {Highcharts.Point} point
1802
+ * The point that is dragged.
1803
+ */
1804
+ function dragMove(e, point) {
1805
+ var series = point.series,
1806
+ chart = series.chart,
1807
+ data = chart.dragDropData,
1808
+ options = merge(series.options.dragDrop, point.options.dragDrop),
1809
+ draggableX = options.draggableX,
1810
+ draggableY = options.draggableY,
1811
+ origin = data.origin,
1812
+ dX = e.chartX - origin.chartX,
1813
+ dY = e.chartY - origin.chartY,
1814
+ oldDx = dX,
1815
+ updateProp = data.updateProp;
1816
+
1817
+ // Handle inverted
1818
+ if (chart.inverted) {
1819
+ dX = -dY;
1820
+ dY = -oldDx;
1821
+ }
1822
+
1823
+ // If we have liveRedraw enabled, update the points immediately. Otherwise
1824
+ // update the guideBox.
1825
+ if (pick(options.liveRedraw, true)) {
1826
+ updatePoints(chart, false);
1827
+
1828
+ // Update drag handles
1829
+ point.showDragHandles();
1830
+
1831
+ } else {
1832
+ // No live redraw, update guide box
1833
+ if (updateProp) {
1834
+ // We are resizing, so resize the guide box
1835
+ resizeGuideBox(point, dX, dY);
1836
+ } else {
1837
+ // We are moving, so move the guide box
1838
+ chart.dragGuideBox.translate(
1839
+ draggableX ? dX : 0, draggableY ? dY : 0
1840
+ );
1841
+ }
1842
+ }
1843
+
1844
+ // Update stored previous dX/Y
1845
+ origin.prevdX = dX;
1846
+ origin.prevdY = dY;
1847
+ }
1848
+
1849
+
1850
+ /**
1851
+ * Set the state of the guide box.
1852
+ *
1853
+ * @private
1854
+ * @function Highcharts.Chart#setGuideBoxState
1855
+ *
1856
+ * @param {string} state
1857
+ * The state to set the guide box to.
1858
+ *
1859
+ * @param {object} options
1860
+ * Additional overall guideBox options to consider.
1861
+ *
1862
+ * @return {Highcharts.SVGElement}
1863
+ * The modified guide box.
1864
+ */
1865
+ H.Chart.prototype.setGuideBoxState = function (state, options) {
1866
+ var guideBox = this.dragGuideBox,
1867
+ guideBoxOptions = merge(defaultGuideBoxOptions, options),
1868
+ stateOptions = merge(guideBoxOptions.default, guideBoxOptions[state]);
1869
+
1870
+ return guideBox
1871
+ .attr({
1872
+ className: stateOptions.className,
1873
+ stroke: stateOptions.lineColor,
1874
+ strokeWidth: stateOptions.lineWidth,
1875
+ fill: stateOptions.color,
1876
+ cursor: stateOptions.cursor,
1877
+ zIndex: stateOptions.zIndex
1878
+ })
1879
+ // Use pointerEvents 'none' to avoid capturing the click event
1880
+ .css({ pointerEvents: 'none' });
1881
+ };
1882
+
1883
+
1884
+ /**
1885
+ * Get updated point values when dragging a point.
1886
+ *
1887
+ * @private
1888
+ * @function Highcharts.Point#getDropValues
1889
+ *
1890
+ * @param {object} origin
1891
+ * Mouse position (chartX/Y) and point props at current data values.
1892
+ * Point props should be organized per point.id in a hashmap.
1893
+ *
1894
+ * @param {global.Event} newPos
1895
+ * New mouse position (chartX/Y).
1896
+ *
1897
+ * @param {object} updateProps
1898
+ * Point props to modify. Map of prop objects where each key refers to
1899
+ * the prop, and the value is an object with an axis property. Example:
1900
+ * {
1901
+ * x: {
1902
+ * axis: 'x'
1903
+ * },
1904
+ * x2: {
1905
+ * axis: 'x'
1906
+ * }
1907
+ * }
1908
+ *
1909
+ * @return {object}
1910
+ * An object with updated data values.
1911
+ */
1912
+ H.Point.prototype.getDropValues = function (origin, newPos, updateProps) {
1913
+ var point = this,
1914
+ series = point.series,
1915
+ options = merge(series.options.dragDrop, point.options.dragDrop),
1916
+ yAxis = series.yAxis,
1917
+ xAxis = series.xAxis,
1918
+ dX = newPos.chartX - origin.chartX,
1919
+ dY = newPos.chartY - origin.chartY,
1920
+ oldX = pick(origin.x, point.x),
1921
+ oldY = pick(origin.y, point.y),
1922
+ dXValue = xAxis.toValue(
1923
+ xAxis.toPixels(oldX, true) +
1924
+ (xAxis.horiz ? dX : dY),
1925
+ true
1926
+ ) - oldX,
1927
+ dYValue = yAxis.toValue(
1928
+ yAxis.toPixels(oldY, true) +
1929
+ (yAxis.horiz ? dX : dY),
1930
+ true
1931
+ ) - oldY,
1932
+ result = {},
1933
+ updateSingleProp,
1934
+ pointOrigin = origin.points[point.id];
1935
+
1936
+ // Find out if we only have one prop to update
1937
+ for (var key in updateProps) {
1938
+ if (updateProps.hasOwnProperty(key)) {
1939
+ if (updateSingleProp !== undefined) {
1940
+ updateSingleProp = false;
1941
+ break;
1942
+ }
1943
+ updateSingleProp = true;
1944
+ }
1945
+ }
1946
+
1947
+ // Utility function to apply precision and limit a value within the
1948
+ // draggable range
1949
+ function limitToRange(val, direction) {
1950
+ var defaultPrecision = series[direction.toLowerCase() + 'Axis']
1951
+ .categories ? 1 : 0,
1952
+ precision = pick(
1953
+ options['dragPrecision' + direction], defaultPrecision
1954
+ ),
1955
+ min = pick(options['dragMin' + direction], -Infinity),
1956
+ max = pick(options['dragMax' + direction], Infinity),
1957
+ res = val;
1958
+
1959
+ if (precision) {
1960
+ res = Math.round(res / precision) * precision;
1961
+ }
1962
+ return Math.max(min, Math.min(max, res));
1963
+ }
1964
+
1965
+ // Assign new value to property. Adds dX/YValue to the old value, limiting
1966
+ // it within min/max ranges.
1967
+ objectEach(updateProps, function (val, key) {
1968
+ var oldVal = pointOrigin[key],
1969
+ newVal = limitToRange(
1970
+ oldVal + (val.axis === 'x' ? dXValue : dYValue),
1971
+ val.axis.toUpperCase()
1972
+ );
1973
+
1974
+ // If we are updating a single prop, and it has a validation function
1975
+ // for the prop, run it. If it fails, don't update the value.
1976
+ if (
1977
+ !(
1978
+ updateSingleProp &&
1979
+ val.propValidate &&
1980
+ !val.propValidate(newVal, point)
1981
+ ) &&
1982
+ oldVal !== undefined
1983
+ ) {
1984
+ result[key] = newVal;
1985
+ }
1986
+ });
1987
+
1988
+ return result;
1989
+ };
1990
+
1991
+
1992
+ /**
1993
+ * Returns an SVGElement to use as the guide box for a set of points.
1994
+ *
1995
+ * @private
1996
+ * @function Highcharts.Series#getGuideBox
1997
+ *
1998
+ * @param {Array<Highcharts.Point>} points
1999
+ * The state to set the guide box to.
2000
+ *
2001
+ * @return {Highcharts.SVGElement}
2002
+ * An SVG element for the guide box, not added to DOM.
2003
+ */
2004
+ H.Series.prototype.getGuideBox = function (points) {
2005
+ var chart = this.chart,
2006
+ minX = Infinity,
2007
+ maxX = -Infinity,
2008
+ minY = Infinity,
2009
+ maxY = -Infinity,
2010
+ changed;
2011
+
2012
+ // Find bounding box of all points
2013
+ points.forEach(function (point) {
2014
+ var bBox = point.graphic && point.graphic.getBBox() || point.shapeArgs;
2015
+
2016
+ if (bBox && (bBox.width || bBox.height || bBox.x || bBox.y)) {
2017
+ changed = true;
2018
+ minX = Math.min(bBox.x, minX);
2019
+ maxX = Math.max(bBox.x + bBox.width, maxX);
2020
+ minY = Math.min(bBox.y, minY);
2021
+ maxY = Math.max(bBox.y + bBox.height, maxY);
2022
+ }
2023
+ });
2024
+
2025
+ return changed ? chart.renderer.rect(
2026
+ minX,
2027
+ minY,
2028
+ maxX - minX,
2029
+ maxY - minY
2030
+ ) : chart.renderer.g();
2031
+ };
2032
+
2033
+
2034
+ /**
2035
+ * On point mouse out. Hide drag handles, depending on state.
2036
+ *
2037
+ * @private
2038
+ * @function mouseOut
2039
+ *
2040
+ * @param {Highcharts.Point} point
2041
+ * The point mousing out of.
2042
+ */
2043
+ function mouseOut(point) {
2044
+ var chart = point.series && point.series.chart,
2045
+ dragDropData = chart && chart.dragDropData;
2046
+
2047
+ if (
2048
+ chart &&
2049
+ chart.dragHandles &&
2050
+ !(
2051
+ dragDropData &&
2052
+ (
2053
+ dragDropData.isDragging &&
2054
+ dragDropData.draggedPastSensitivity ||
2055
+ dragDropData.isHoveringHandle === point.id
2056
+ )
2057
+ )
2058
+ ) {
2059
+ chart.hideDragHandles();
2060
+ }
2061
+ }
2062
+
2063
+
2064
+ /**
2065
+ * Mouseout on resize handle. Handle states, and possibly run mouseOut on point.
2066
+ *
2067
+ * @private
2068
+ * @function onResizeHandleMouseOut
2069
+ *
2070
+ * @param {Highcharts.Point} point
2071
+ * The point mousing out of.
2072
+ */
2073
+ function onResizeHandleMouseOut(point) {
2074
+ var chart = point.series.chart;
2075
+
2076
+ if (
2077
+ chart.dragDropData &&
2078
+ point.id === chart.dragDropData.isHoveringHandle
2079
+ ) {
2080
+ delete chart.dragDropData.isHoveringHandle;
2081
+ }
2082
+ if (!chart.hoverPoint) {
2083
+ mouseOut(point);
2084
+ }
2085
+ }
2086
+
2087
+
2088
+ /**
2089
+ * Mousedown on resize handle. Init a drag if the conditions are right.
2090
+ *
2091
+ * @private
2092
+ * @function onResizeHandleMouseDown
2093
+ *
2094
+ * @param {global.Event} e
2095
+ * The mousedown event.
2096
+ *
2097
+ * @param {Highcharts.Point} point
2098
+ * The point mousing down on.
2099
+ *
2100
+ * @param {string} updateProp
2101
+ * The data property this resize handle is attached to for this point.
2102
+ */
2103
+ function onResizeHandleMouseDown(e, point, updateProp) {
2104
+ var chart = point.series.chart;
2105
+
2106
+ // Ignore if zoom/pan key is pressed
2107
+ if (chart.zoomOrPanKeyPressed(e)) {
2108
+ return;
2109
+ }
2110
+
2111
+ // Prevent zooming
2112
+ chart.mouseIsDown = false;
2113
+
2114
+ // We started a drag
2115
+ initDragDrop(e, point);
2116
+ chart.dragDropData.updateProp = e.updateProp = updateProp;
2117
+ point.firePointEvent('dragStart', e);
2118
+
2119
+ // Prevent default to avoid point click for dragging too
2120
+ e.stopPropagation();
2121
+ e.preventDefault();
2122
+ }
2123
+
2124
+
2125
+ /**
2126
+ * Render drag handles on a point - depending on which handles are enabled - and
2127
+ * attach events to them.
2128
+ *
2129
+ * @private
2130
+ * @function Highcharts.Point#showDragHandles
2131
+ */
2132
+ H.Point.prototype.showDragHandles = function () {
2133
+ var point = this,
2134
+ series = point.series,
2135
+ chart = series.chart,
2136
+ renderer = chart.renderer,
2137
+ options = merge(series.options.dragDrop, point.options.dragDrop);
2138
+
2139
+ // Go through each updateProp and see if we are supposed to create a handle
2140
+ // for it.
2141
+ objectEach(series.dragDropProps, function (val, key) {
2142
+ var handleOptions = merge(
2143
+ defaultDragHandleOptions,
2144
+ val.handleOptions,
2145
+ options.dragHandle
2146
+ ),
2147
+ handleAttrs = {
2148
+ className: handleOptions.className,
2149
+ 'stroke-width': handleOptions.lineWidth,
2150
+ fill: handleOptions.color,
2151
+ stroke: handleOptions.lineColor
2152
+ },
2153
+ pathFormatter = handleOptions.pathFormatter || val.handleFormatter,
2154
+ positioner = val.handlePositioner,
2155
+ pos,
2156
+ handle,
2157
+ handleSide,
2158
+ path,
2159
+ // Run validation function on whether or not we allow individual
2160
+ // updating of this prop.
2161
+ validate = val.validateIndividualDrag ?
2162
+ val.validateIndividualDrag(point) : true;
2163
+
2164
+ if (
2165
+ val.resize &&
2166
+ validate &&
2167
+ val.resizeSide &&
2168
+ pathFormatter &&
2169
+ (
2170
+ options['draggable' + val.axis.toUpperCase()] ||
2171
+ options[val.optionName]
2172
+ ) &&
2173
+ options[val.optionName] !== false
2174
+ ) {
2175
+
2176
+ // Create group if it doesn't exist
2177
+ if (!chart.dragHandles) {
2178
+ chart.dragHandles = {
2179
+ group: renderer.g('drag-drop-handles')
2180
+ .add(series.markerGroup || series.group)
2181
+ };
2182
+ }
2183
+
2184
+ // Store which point this is
2185
+ chart.dragHandles.point = point.id;
2186
+
2187
+ // Find position and path of handle
2188
+ pos = positioner(point);
2189
+ handleAttrs.d = path = pathFormatter(point);
2190
+ handleSide = typeof val.resizeSide === 'function' ?
2191
+ val.resizeSide(point.options, point) : val.resizeSide;
2192
+ if (!path || pos.x < 0 || pos.y < 0) {
2193
+ return;
2194
+ }
2195
+
2196
+ // If cursor is not set explicitly, use axis direction
2197
+ handleAttrs.cursor = handleOptions.cursor ||
2198
+ (val.axis === 'x') !== !!chart.inverted ?
2199
+ 'ew-resize' : 'ns-resize';
2200
+
2201
+ // Create and add the handle element if it doesn't exist
2202
+ handle = chart.dragHandles[handleSide];
2203
+ if (!handle) {
2204
+ handle = chart.dragHandles[handleSide] = renderer
2205
+ .path()
2206
+ .add(chart.dragHandles.group);
2207
+ }
2208
+
2209
+ // Move and update handle
2210
+ handle.translate(pos.x, pos.y).attr(handleAttrs);
2211
+
2212
+ // Add events
2213
+ addEvents(
2214
+ handle.element,
2215
+ ['touchstart', 'mousedown'],
2216
+ function (e) {
2217
+ onResizeHandleMouseDown(
2218
+ getNormalizedEvent(e, chart), point, key
2219
+ );
2220
+ }
2221
+ );
2222
+ addEvent(chart.dragHandles.group.element, 'mouseover', function () {
2223
+ chart.dragDropData = chart.dragDropData || {};
2224
+ chart.dragDropData.isHoveringHandle = point.id;
2225
+ });
2226
+ addEvents(
2227
+ chart.dragHandles.group.element,
2228
+ ['touchend', 'mouseout'],
2229
+ function () {
2230
+ onResizeHandleMouseOut(point);
2231
+ }
2232
+ );
2233
+ }
2234
+ });
2235
+ };
2236
+
2237
+
2238
+ /**
2239
+ * Remove the chart's drag handles if they exist.
2240
+ *
2241
+ * @private
2242
+ * @function Highcharts.Chart#hideDragHandles
2243
+ */
2244
+ H.Chart.prototype.hideDragHandles = function () {
2245
+ var chart = this;
2246
+
2247
+ if (chart.dragHandles) {
2248
+ objectEach(chart.dragHandles, function (val, key) {
2249
+ if (key !== 'group' && val.destroy) {
2250
+ val.destroy();
2251
+ }
2252
+ });
2253
+ if (chart.dragHandles.group && chart.dragHandles.group.destroy) {
2254
+ chart.dragHandles.group.destroy();
2255
+ }
2256
+ delete chart.dragHandles;
2257
+ }
2258
+ };
2259
+
2260
+
2261
+ /**
2262
+ * Utility function to count the number of props in an object.
2263
+ *
2264
+ * @private
2265
+ * @function countProps
2266
+ *
2267
+ * @param {object} object
2268
+ * The object to count.
2269
+ *
2270
+ * @return {number}
2271
+ * Number of own properties on the object.
2272
+ */
2273
+ function countProps(object) {
2274
+ var count = 0;
2275
+
2276
+ for (var p in object) {
2277
+ if (object.hasOwnProperty(p)) {
2278
+ count++;
2279
+ }
2280
+ }
2281
+ return count;
2282
+ }
2283
+
2284
+
2285
+ /**
2286
+ * Utility function to get the value of the first prop of an object. (Note that
2287
+ * the order of keys in an object is usually not guaranteed.)
2288
+ *
2289
+ * @private
2290
+ * @function getFirstProp
2291
+ *
2292
+ * @param {object} object
2293
+ * The object to count.
2294
+ *
2295
+ * @return {*}
2296
+ * Value of the first prop in the object.
2297
+ */
2298
+ function getFirstProp(object) {
2299
+ for (var p in object) {
2300
+ if (object.hasOwnProperty(p)) {
2301
+ return object[p];
2302
+ }
2303
+ }
2304
+ }
2305
+
2306
+
2307
+ /**
2308
+ * Mouseover on a point. Show drag handles if the conditions are right.
2309
+ *
2310
+ * @private
2311
+ * @function mouseOver
2312
+ *
2313
+ * @param {Highcharts.Point} point
2314
+ * The point mousing over.
2315
+ */
2316
+ function mouseOver(point) {
2317
+ var series = point.series,
2318
+ chart = series && series.chart,
2319
+ dragDropData = chart && chart.dragDropData;
2320
+
2321
+ if (
2322
+ chart &&
2323
+ !(
2324
+ dragDropData &&
2325
+ dragDropData.isDragging && // Ignore if dragging a point
2326
+ dragDropData.draggedPastSensitivity
2327
+ ) &&
2328
+ !chart.isDragDropAnimating && // Ignore if animating
2329
+ series.options.dragDrop && // No need to compute handles without this
2330
+ !(
2331
+ chart.options &&
2332
+ chart.options.chart &&
2333
+ chart.options.chart.options3d // No 3D support
2334
+ )
2335
+ ) {
2336
+ // Hide the handles if they exist on another point already
2337
+ if (chart.dragHandles) {
2338
+ chart.hideDragHandles();
2339
+ }
2340
+ point.showDragHandles();
2341
+ }
2342
+ }
2343
+
2344
+
2345
+ /**
2346
+ * On container mouse move. Handle drag sensitivity and fire drag event.
2347
+ *
2348
+ * @private
2349
+ * @function mouseMove
2350
+ *
2351
+ * @param {global.Event} e
2352
+ * The mouse move event.
2353
+ *
2354
+ * @param {Highcharts.Chart} chart
2355
+ * The chart we are moving across.
2356
+ */
2357
+ function mouseMove(e, chart) {
2358
+ // Ignore if zoom/pan key is pressed
2359
+ if (chart.zoomOrPanKeyPressed(e)) {
2360
+ return;
2361
+ }
2362
+
2363
+ var dragDropData = chart.dragDropData,
2364
+ point,
2365
+ seriesDragDropOpts,
2366
+ newPoints,
2367
+ numNewPoints = 0,
2368
+ newPoint;
2369
+
2370
+ if (dragDropData && dragDropData.isDragging) {
2371
+ point = dragDropData.point;
2372
+ seriesDragDropOpts = point.series.options.dragDrop;
2373
+
2374
+ // No tooltip for dragging
2375
+ e.preventDefault();
2376
+
2377
+ // Update sensitivity test if not passed yet
2378
+ if (!dragDropData.draggedPastSensitivity) {
2379
+ dragDropData.draggedPastSensitivity = hasDraggedPastSensitivity(
2380
+ e, chart, pick(
2381
+ point.options.dragDrop &&
2382
+ point.options.dragDrop.dragSensitivity,
2383
+ seriesDragDropOpts &&
2384
+ seriesDragDropOpts.dragSensitivity,
2385
+ defaultDragSensitivity
2386
+ )
2387
+ );
2388
+ }
2389
+
2390
+ // If we have dragged past dragSensitivity, run the mousemove handler
2391
+ // for dragging
2392
+ if (dragDropData.draggedPastSensitivity) {
2393
+ // Find the new point values from the moving
2394
+ dragDropData.newPoints = getNewPoints(dragDropData, e);
2395
+
2396
+ // If we are only dragging one point, add it to the event
2397
+ newPoints = dragDropData.newPoints;
2398
+ numNewPoints = countProps(newPoints);
2399
+ newPoint = numNewPoints === 1 ?
2400
+ getFirstProp(newPoints) :
2401
+ null;
2402
+
2403
+ // Run the handler
2404
+ point.firePointEvent('drag', {
2405
+ origin: dragDropData.origin,
2406
+ newPoints: dragDropData.newPoints,
2407
+ newPoint: newPoint && newPoint.newValues,
2408
+ newPointId: newPoint && newPoint.point.id,
2409
+ numNewPoints: numNewPoints,
2410
+ chartX: e.chartX,
2411
+ chartY: e.chartY
2412
+ }, function () {
2413
+ dragMove(e, point);
2414
+ });
2415
+ }
2416
+ }
2417
+ }
2418
+
2419
+
2420
+ /**
2421
+ * On container mouse up. Fire drop event and reset state.
2422
+ *
2423
+ * @private
2424
+ * @function mouseUp
2425
+ *
2426
+ * @param {global.Event} e
2427
+ * The mouse up event.
2428
+ *
2429
+ * @param {Highcharts.Chart} chart
2430
+ * The chart we were dragging in.
2431
+ */
2432
+ function mouseUp(e, chart) {
2433
+ var dragDropData = chart.dragDropData;
2434
+
2435
+ if (
2436
+ dragDropData &&
2437
+ dragDropData.isDragging &&
2438
+ dragDropData.draggedPastSensitivity
2439
+ ) {
2440
+ var point = dragDropData.point,
2441
+ newPoints = dragDropData.newPoints,
2442
+ numNewPoints = countProps(newPoints),
2443
+ newPoint = numNewPoints === 1 ?
2444
+ getFirstProp(newPoints) :
2445
+ null;
2446
+
2447
+ // Hide the drag handles
2448
+ if (chart.dragHandles) {
2449
+ chart.hideDragHandles();
2450
+ }
2451
+
2452
+ // Prevent default action
2453
+ e.preventDefault();
2454
+ chart.cancelClick = true;
2455
+
2456
+ // Fire the event, with a default handler that updates the points
2457
+
2458
+ point.firePointEvent('drop', {
2459
+ origin: dragDropData.origin,
2460
+ chartX: e.chartX,
2461
+ chartY: e.chartY,
2462
+ newPoints: newPoints,
2463
+ numNewPoints: numNewPoints,
2464
+ newPoint: newPoint && newPoint.newValues,
2465
+ newPointId: newPoint && newPoint.point.id
2466
+ }, function () {
2467
+ updatePoints(chart);
2468
+ });
2469
+ }
2470
+
2471
+ // Reset
2472
+ delete chart.dragDropData;
2473
+
2474
+ // Clean up the drag guide box if it exists. This is always added on
2475
+ // drag start, even if user is overriding events.
2476
+ if (chart.dragGuideBox) {
2477
+ chart.dragGuideBox.destroy();
2478
+ delete chart.dragGuideBox;
2479
+ }
2480
+ }
2481
+
2482
+
2483
+ /**
2484
+ * On container mouse down. Init dragdrop if conditions are right.
2485
+ *
2486
+ * @private
2487
+ * @function mouseDown
2488
+ *
2489
+ * @param {global.Event} e
2490
+ * The mouse down event.
2491
+ *
2492
+ * @param {Highcharts.Chart} chart
2493
+ * The chart we are clicking.
2494
+ */
2495
+ function mouseDown(e, chart) {
2496
+ var dragPoint = chart.hoverPoint,
2497
+ dragDropOptions = H.merge(
2498
+ dragPoint.series.options.dragDrop,
2499
+ dragPoint.options.dragDrop
2500
+ ),
2501
+ draggableX = dragDropOptions.draggableX || false,
2502
+ draggableY = dragDropOptions.draggableY || false;
2503
+
2504
+ // Reset cancel click
2505
+ chart.cancelClick = false;
2506
+
2507
+ // Ignore if option is disable for the point
2508
+ if (!(draggableX || draggableY)) {
2509
+ return;
2510
+ }
2511
+
2512
+ // Ignore if zoom/pan key is pressed
2513
+ if (chart.zoomOrPanKeyPressed(e)) {
2514
+ return;
2515
+ }
2516
+
2517
+ // If we somehow get a mousedown event while we are dragging, cancel
2518
+ if (chart.dragDropData && chart.dragDropData.isDragging) {
2519
+ mouseUp(e, chart);
2520
+ return;
2521
+ }
2522
+
2523
+ // If this point is movable, start dragging it
2524
+ if (dragPoint && isPointMovable(dragPoint)) {
2525
+ chart.mouseIsDown = false; // Prevent zooming
2526
+ initDragDrop(e, dragPoint);
2527
+ dragPoint.firePointEvent('dragStart', e);
2528
+ }
2529
+ }
2530
+
2531
+
2532
+ // Point hover event. We use a short timeout due to issues with coordinating
2533
+ // point mouseover/out events on dragHandles and points. Particularly arearange
2534
+ // series are finicky since the markers are not individual points. This logic
2535
+ // should preferably be improved in the future. Notice that the mouseOut event
2536
+ // below must have a shorter timeout to ensure event order.
2537
+ addEvent(H.Point, 'mouseOver', function () {
2538
+ var point = this;
2539
+
2540
+ setTimeout(function () {
2541
+ mouseOver(point);
2542
+ }, 12);
2543
+ });
2544
+
2545
+
2546
+ // Point mouseleave event. See above function for explanation of the timeout.
2547
+ addEvent(H.Point, 'mouseOut', function () {
2548
+ var point = this;
2549
+
2550
+ setTimeout(function () {
2551
+ if (point.series) {
2552
+ mouseOut(point);
2553
+ }
2554
+ }, 10);
2555
+ });
2556
+
2557
+
2558
+ // Hide drag handles on a point if it is removed
2559
+ addEvent(H.Point, 'remove', function () {
2560
+ var chart = this.series.chart,
2561
+ dragHandles = chart.dragHandles;
2562
+
2563
+ if (dragHandles && dragHandles.point === this.id) {
2564
+ chart.hideDragHandles();
2565
+ }
2566
+ });
2567
+
2568
+
2569
+ /**
2570
+ * Check whether the zoomKey or panKey is pressed.
2571
+ *
2572
+ * @private
2573
+ * @function Highcharts.Chart#zoomOrPanKeyPressed
2574
+ *
2575
+ * @param {global.Event} e
2576
+ * A mouse event.
2577
+ *
2578
+ * @return {boolean}
2579
+ * True if the zoom or pan keys are pressed. False otherwise.
2580
+ */
2581
+ H.Chart.prototype.zoomOrPanKeyPressed = function (e) {
2582
+ // Check whether the panKey and zoomKey are set in chart.userOptions
2583
+ var chartOptions = this.userOptions.chart || {},
2584
+ panKey = chartOptions.panKey && chartOptions.panKey + 'Key',
2585
+ zoomKey = chartOptions.zoomKey && chartOptions.zoomKey + 'Key';
2586
+
2587
+ return (e[zoomKey] || e[panKey]);
2588
+ };
2589
+
2590
+
2591
+ /**
2592
+ * Add events to document and chart if the chart is draggable.
2593
+ *
2594
+ * @private
2595
+ * @function addDragDropEvents
2596
+ *
2597
+ * @param {Highcharts.Chart} chart
2598
+ * The chart to add events to.
2599
+ */
2600
+ function addDragDropEvents(chart) {
2601
+ var container = chart.container,
2602
+ doc = H.doc;
2603
+
2604
+ // Only enable if we have a draggable chart
2605
+ if (isChartDraggable(chart)) {
2606
+ addEvents(container, ['mousedown', 'touchstart'], function (e) {
2607
+ mouseDown(getNormalizedEvent(e, chart), chart);
2608
+ });
2609
+ addEvents(container, ['mousemove', 'touchmove'], function (e) {
2610
+ mouseMove(getNormalizedEvent(e, chart), chart);
2611
+ });
2612
+ addEvent(container, 'mouseleave', function (e) {
2613
+ mouseUp(getNormalizedEvent(e, chart), chart);
2614
+ });
2615
+ chart.unbindDragDropMouseUp = addEvents(
2616
+ doc,
2617
+ ['mouseup', 'touchend'],
2618
+ function (e) {
2619
+ mouseUp(getNormalizedEvent(e, chart), chart);
2620
+ }
2621
+ );
2622
+
2623
+ // Add flag to avoid doing this again
2624
+ chart.hasAddedDragDropEvents = true;
2625
+
2626
+ // Add cleanup to make sure we don't pollute document
2627
+ addEvent(chart, 'destroy', function () {
2628
+ if (chart.unbindDragDropMouseUp) {
2629
+ chart.unbindDragDropMouseUp();
2630
+ }
2631
+ });
2632
+ }
2633
+ }
2634
+
2635
+
2636
+ // Add event listener to Chart.render that checks whether or not we should add
2637
+ // dragdrop.
2638
+ addEvent(H.Chart, 'render', function () {
2639
+ // If we don't have dragDrop events, see if we should add them
2640
+ if (!this.hasAddedDragDropEvents) {
2641
+ addDragDropEvents(this);
2642
+ }
2643
+ });
2644
+
2645
+ }(Highcharts));
2646
+ return (function () {
2647
+
2648
+
2649
+ }());
2650
+ }));