@datagrok/helm 2.3.2 → 2.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/package-test.js +1 -1
  3. package/dist/package-test.js.map +1 -1
  4. package/dist/package.js +1 -1
  5. package/dist/package.js.map +1 -1
  6. package/package.json +4 -4
  7. package/src/cell-renderer.ts +5 -4
  8. package/src/helm-helper.ts +6 -6
  9. package/src/helm-monomer-placer.ts +1 -1
  10. package/src/helm-web-editor.ts +5 -5
  11. package/src/package-test.ts +0 -1
  12. package/src/package-utils.ts +211 -69
  13. package/src/package.ts +10 -71
  14. package/src/tests/findMonomers-tests.ts +2 -1
  15. package/src/tests/get-monomer-tests.ts +1 -49
  16. package/src/tests/helm-input-tests.ts +31 -20
  17. package/src/utils/get-monomer.ts +49 -1
  18. package/src/utils/helm-grid-cell-renderer.ts +8 -9
  19. package/src/utils/index.ts +2 -3
  20. package/src/widgets/helm-input.ts +4 -4
  21. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
  22. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
  23. package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
  24. package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
  25. package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
  26. package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
  27. package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
  28. package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
  29. package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
  30. package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
  31. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
  32. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
  33. package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
  34. package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
  35. package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
  36. package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
  37. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
  38. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
  39. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
  40. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
  41. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
  42. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
  43. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
  44. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
  45. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
  46. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
  47. package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
  48. package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
  49. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
  50. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
  51. package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
  52. package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
  53. package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
  54. package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
  55. package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
  56. package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
  57. package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
  58. package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
  59. package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
  60. package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
  61. package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
  62. package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
  63. package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
  64. package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
  65. package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
  66. package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
  67. package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
  68. package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
  69. package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
  70. package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
  71. package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
  72. package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
  73. package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
  74. package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
  75. package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
  76. package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
  77. package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
  78. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
  79. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
  80. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
  81. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
  82. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
  83. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
  84. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
  85. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
  86. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
  87. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
  88. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
  89. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
  90. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
  91. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
  92. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
  93. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
  94. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
  95. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
  96. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
  97. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
  98. package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
  99. package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
  100. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
  101. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
  102. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
  103. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
  104. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
  105. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
  106. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
  107. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
  108. package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
  109. package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
  110. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
  111. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
  112. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
  113. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
  114. package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
  115. package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
  116. package/vendor/dojo-1.10.10/dijit/main.js +4 -0
  117. package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
  118. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
  119. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
  120. package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
  121. package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
  122. package/vendor/dojo-1.10.10/dijit/place.js +142 -0
  123. package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
  124. package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
  125. package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
  126. package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
  127. package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
  128. package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
  129. package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
  130. package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
  131. package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
  132. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
  133. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
  134. package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
  135. package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
  136. package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
  137. package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
  138. package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
  139. package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
  140. package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
  141. package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
  142. package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
  143. package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
  144. package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
  145. package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
  146. package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
  147. package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
  148. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
  149. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
  150. package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
  151. package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
  152. package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
  153. package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
  154. package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
  155. package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
  156. package/vendor/dojo-1.10.10/dojo/html.js +161 -0
  157. package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
  158. package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
  159. package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
  160. package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
  161. package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
  162. package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
  163. package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
  164. package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
  165. package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
  166. package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
  167. package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
  168. package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
  169. package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
  170. package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
  171. package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
  172. package/vendor/dojo-1.10.10/dojo/require.js +11 -0
  173. package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
  174. package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
  175. package/vendor/dojo-1.10.10/dojo/string.js +67 -0
  176. package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
  177. package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
  178. package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
  179. package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
  180. package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
  181. package/vendor/dojo-1.10.10/dojo/window.js +141 -0
  182. package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
  183. package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
  184. package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
  185. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
  186. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
  187. package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
  188. package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
  189. package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
  190. package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
  191. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
  192. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
  193. package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
  194. package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
  195. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
  196. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
  197. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
  198. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
  199. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
  200. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
  201. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
  202. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
  203. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
  204. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
  205. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
  206. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
  207. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
  208. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
  209. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
  210. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
  211. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
  212. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
  213. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
  214. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
  215. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
  216. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
  217. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
  218. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
  219. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
  220. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
  221. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
  222. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
  223. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
  224. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
  225. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
  226. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
  227. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
  228. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
  229. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
  230. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
  231. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
  232. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
  233. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
  234. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
  235. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
  236. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
  237. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
  238. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
  239. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
  240. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
  241. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
  242. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
  243. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
  244. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
  245. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
  246. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
  247. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
  248. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
  249. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
  250. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
  251. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
  252. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
  253. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
  254. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
  255. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
  256. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
  257. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
  258. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
  259. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
  260. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
  261. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
  262. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
  263. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
  264. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
  265. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
  266. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
  267. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
  268. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
  269. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
  270. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
  271. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
  272. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
  273. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
  274. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
  275. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
  276. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
  277. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
  278. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
  279. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
  280. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
  281. package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
  282. package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
  283. package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
  284. package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
  285. package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
  286. package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
  287. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
  288. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
  289. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
  290. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
  291. package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
  292. package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
  293. package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
  294. package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
  295. package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
  296. package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
  297. package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
  298. package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
  299. package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
  300. package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
  301. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
  302. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
  303. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
  304. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
  305. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
  306. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
  307. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
  308. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
  309. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
  310. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
  311. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
  312. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
  313. package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
  314. package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
  315. package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
  316. package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
  317. package/vendor/dojo-1.10.10/dojox/main.js +4 -0
  318. package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
  319. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
  320. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
  321. package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
  322. package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
  323. package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
  324. package/vendor/dojo-1.10.10/dojox/storage/manager.js.uncompressed.js +263 -0
@@ -0,0 +1,356 @@
1
+ define("dojox/charting/plot2d/Grid", ["dojo/_base/lang", "dojo/_base/declare", "dojo/_base/array", "dojo/sniff",
2
+ "./CartesianBase", "./common", "dojox/lang/utils", "dojox/gfx/fx"],
3
+ function(lang, declare, arr, has, CartesianBase, dc, du, fx){
4
+
5
+ var sortTicks = function(a,b){return a.value - b.value};
6
+
7
+ /*=====
8
+ declare("dojox.charting.plot2d.__GridCtorArgs", dojox.charting.plot2d.__CartesianCtorArgs, {
9
+ // summary:
10
+ // A special keyword arguments object that is specific to a grid "plot".
11
+
12
+ // majorHLine: dojox.gfx.Stroke?
13
+ // An optional dojox.gfx.Stroke for a major horizontal line. By default major lines use major tick stroke.
14
+ majorHLine:undefined,
15
+
16
+ // minorHLine: dojox.gfx.Stroke?
17
+ // An optional dojox.gfx.Stroke for a minor horizontal line. By default minor lines use minor tick stroke.
18
+ minorHLine:undefined,
19
+
20
+ // majorVLine: dojox.gfx.Stroke?
21
+ // An optional dojox.gfx.Stroke for a major vertical line. By default major lines use major tick stroke.
22
+ majorVLine:undefined,
23
+
24
+ // minorVLine: dojox.gfx.Stroke?
25
+ // An optional dojox.gfx.Stroke for a minor vertical line. By default major lines use major tick stroke.
26
+ minorVLine:undefined,
27
+
28
+ // hFill: dojox.gfx.Fill?
29
+ // An optional dojox.gfx.Fill used to fill every other horizontal stripe created by grid lines.
30
+ hFill: undefined,
31
+
32
+ // hAlternateFill: dojox.gfx.Fill?
33
+ // An optional dojox.gfx.Fill used to fill alternating horizontal stripe created by grid lines not filled by `hFill`.
34
+ hAlternateFill: undefined,
35
+
36
+ // vFill: dojox.gfx.Fill?
37
+ // An optional dojox.gfx.Fill used to fill every other vertical stripe created by grid lines.
38
+ vFill: undefined,
39
+
40
+ // vAlternateFill: dojox.gfx.Fill?
41
+ // An optional dojox.gfx.Fill used to fill alternating vertical stripe created by grid lines not filled by `vFill`.
42
+ vAlternateFill: undefined,
43
+
44
+ // hMajorLines: Boolean?
45
+ // Whether to show lines at the major ticks along the horizontal axis. Default is true.
46
+ hMajorLines: true,
47
+
48
+ // hMinorLines: Boolean?
49
+ // Whether to show lines at the minor ticks along the horizontal axis. Default is false.
50
+ hMinorLines: false,
51
+
52
+ // vMajorLines: Boolean?
53
+ // Whether to show lines at the major ticks along the vertical axis. Default is true.
54
+ vMajorLines: true,
55
+
56
+ // vMinorLines: Boolean?
57
+ // Whether to show lines at the major ticks along the vertical axis. Default is false.
58
+ vMinorLines: false,
59
+
60
+ // hStripes: Boolean?
61
+ // Whether to show horizontal stripes. Default is false.
62
+ hStripes: false,
63
+
64
+ // vStripes: Boolean?
65
+ // Whether to show vertical stripes. Default is false.
66
+ vStripes: false,
67
+
68
+ // enableCache: Boolean?
69
+ // Whether the grid lines are cached from one rendering to another. This improves the rendering performance of
70
+ // successive rendering but penalize the first rendering. Default false.
71
+ enableCache: false,
72
+
73
+ // renderOnAxis: Boolean?
74
+ // Whether or not the grid is rendered when drawn at horizontal or vertical axis position. Default is true.
75
+ renderOnAxis: true
76
+ });
77
+ =====*/
78
+
79
+ return declare("dojox.charting.plot2d.Grid", CartesianBase, {
80
+ // summary:
81
+ // A "faux" plot that can be placed behind other plots to represent
82
+ // a grid against which other plots can be easily measured.
83
+ defaultParams: {
84
+ hMajorLines: true, // draw horizontal major lines
85
+ hMinorLines: false, // draw horizontal minor lines
86
+ vMajorLines: true, // draw vertical major lines
87
+ vMinorLines: false, // draw vertical minor lines
88
+ hStripes: false, // draw vertical stripes
89
+ vStripes: false, // draw vertical stripes
90
+ animate: null, // animate bars into place
91
+ enableCache: false,
92
+ renderOnAxis: true
93
+ },
94
+
95
+ optionalParams: {
96
+ majorHLine: {},
97
+ minorHLine: {},
98
+ majorVLine: {},
99
+ minorVLine: {},
100
+ hFill: {},
101
+ vFill: {},
102
+ hAlternateFill: {},
103
+ vAlternateFill: {}
104
+ },
105
+
106
+ constructor: function(chart, kwArgs){
107
+ // summary:
108
+ // Create the faux Grid plot.
109
+ // chart: dojox/charting/Chart
110
+ // The chart this plot belongs to.
111
+ // kwArgs: dojox.charting.plot2d.__GridCtorArgs?
112
+ // An optional keyword arguments object to help define the parameters of the underlying grid.
113
+ this.opt = lang.clone(this.defaultParams);
114
+ du.updateWithObject(this.opt, kwArgs);
115
+ du.updateWithPattern(this.opt, kwArgs, this.optionalParams);
116
+ this.animate = this.opt.animate;
117
+ if(this.opt.enableCache){
118
+ this._lineFreePool = [];
119
+ this._lineUsePool = [];
120
+ this._rectFreePool = [];
121
+ this._rectUsePool = [];
122
+ }
123
+ },
124
+ addSeries: function(run){
125
+ // summary:
126
+ // Ignored but included as a dummy method.
127
+ // returns: dojox/charting/plot2d/Grid
128
+ // The reference to this plot for functional chaining.
129
+ return this; // dojox/charting/plot2d/Grid
130
+ },
131
+ getSeriesStats: function(){
132
+ // summary:
133
+ // Returns default stats (irrelevant for this type of plot).
134
+ // returns: Object
135
+ // {hmin, hmax, vmin, vmax} min/max in both directions.
136
+ return lang.delegate(dc.defaultStats); // Object
137
+ },
138
+ cleanGroup: function(){
139
+ this.inherited(arguments);
140
+ if(this.opt.enableCache){
141
+ this._lineFreePool = this._lineFreePool.concat(this._lineUsePool);
142
+ this._lineUsePool = [];
143
+ this._rectFreePool = this._rectFreePool.concat(this._rectUsePool);
144
+ this._rectUsePool = [];
145
+ }
146
+ },
147
+ createLine: function(creator, params){
148
+ var line;
149
+ if(this.opt.enableCache && this._lineFreePool.length > 0){
150
+ line = this._lineFreePool.pop();
151
+ line.setShape(params);
152
+ // was cleared, add it back
153
+ creator.add(line);
154
+ }else{
155
+ line = creator.createLine(params);
156
+ }
157
+ if(this.opt.enableCache){
158
+ this._lineUsePool.push(line);
159
+ }
160
+ return line;
161
+ },
162
+ createRect: function(creator, params){
163
+ var rect;
164
+ if(this.opt.enableCache && this._rectFreePool.length > 0){
165
+ rect = this._rectFreePool.pop();
166
+ rect.setShape(params);
167
+ // was cleared, add it back
168
+ creator.add(rect);
169
+ }else{
170
+ rect = creator.createRect(params);
171
+ }
172
+ if(this.opt.enableCache){
173
+ this._rectUsePool.push(rect);
174
+ }
175
+ return rect;
176
+ },
177
+
178
+ render: function(dim, offsets){
179
+ // summary:
180
+ // Render the plot on the chart.
181
+ // dim: Object
182
+ // An object of the form { width, height }.
183
+ // offsets: Object
184
+ // An object of the form { l, r, t, b }.
185
+ // returns: dojox/charting/plot2d/Grid
186
+ // A reference to this plot for functional chaining.
187
+ if(this.zoom){
188
+ return this.performZoom(dim, offsets);
189
+ }
190
+ this.dirty = this.isDirty();
191
+ if(!this.dirty){ return this; }
192
+ this.cleanGroup();
193
+ var s = this.getGroup(), ta = this.chart.theme, lineStroke, ticks;
194
+ if((has("ios") && has("ios") < 6) || has("android") || (has("safari") && !has("ios"))){
195
+ // clipping seems buggy in some mobile Webkit browser and Safari desktop
196
+ // it does not clip correctly if only lines are present => create a invisible rectangle...
197
+ var w = Math.max(0, dim.width - offsets.l - offsets.r),
198
+ h = Math.max(0, dim.height - offsets.t - offsets.b);
199
+ s.createRect({ x: offsets.l, y: offsets.t, width: w, height: h});
200
+ }
201
+ if(this._vAxis){
202
+ // draw horizontal stripes and lines
203
+ ticks = this._vAxis.getTicks();
204
+ var vScaler = this._vAxis.getScaler();
205
+ if(ticks != null && vScaler != null){
206
+ var vt = vScaler.scaler.getTransformerFromModel(vScaler);
207
+ if(this.opt.hStripes){
208
+ this._renderHRect(ticks, ta.grid, dim, offsets, vScaler, vt);
209
+ }
210
+ if(this.opt.hMinorLines){
211
+ lineStroke = this.opt.minorHLine || (ta.grid && ta.grid.minorLine) || ta.axis.minorTick;
212
+ this._renderHLines(ticks.minor, lineStroke, dim, offsets, vScaler, vt);
213
+ }
214
+ if(this.opt.hMajorLines){
215
+ lineStroke = this.opt.majorHLine || (ta.grid && ta.grid.majorLine) || ta.axis.majorTick;
216
+ this._renderHLines(ticks.major, lineStroke, dim, offsets, vScaler, vt);
217
+ }
218
+ }
219
+
220
+ }
221
+ if(this._hAxis){
222
+ // draw vertical stripes and lines
223
+ ticks = this._hAxis.getTicks();
224
+ var hScaler = this._hAxis.getScaler();
225
+ if(ticks != null && hScaler != null){
226
+ var ht = hScaler.scaler.getTransformerFromModel(hScaler);
227
+ if(this.opt.vStripes){
228
+ this._renderVRect(ticks, ta.grid, dim, offsets, hScaler, ht);
229
+ }
230
+ if(ticks && this.opt.vMinorLines){
231
+ lineStroke = this.opt.minorVLine || (ta.grid && ta.grid.minorLine) || ta.axis.minorTick;
232
+ this._renderVLines(ticks.minor, lineStroke, dim, offsets, hScaler, ht);
233
+ }
234
+ if(ticks && this.opt.vMajorLines){
235
+ lineStroke = this.opt.majorVLine || (ta.grid && ta.grid.majorLine) || ta.axis.majorTick;
236
+ this._renderVLines(ticks.major, lineStroke, dim, offsets, hScaler, ht);
237
+ }
238
+
239
+ }
240
+ }
241
+ this.dirty = false;
242
+ return this; // dojox/charting/plot2d/Grid
243
+ },
244
+ _renderHLines: function(ticks, lineStroke, dim, offsets, vScaler, vt){
245
+ var s = this.getGroup();
246
+ arr.forEach(ticks, function(tick){
247
+ if(!this.opt.renderOnAxis && tick.value == (this._vAxis.opt.leftBottom?vScaler.bounds.from:vScaler.bounds.to)){
248
+ return;
249
+ }
250
+ var y = dim.height - offsets.b - vt(tick.value);
251
+ var hLine = this.createLine(s, {
252
+ x1: offsets.l,
253
+ y1: y,
254
+ x2: dim.width - offsets.r,
255
+ y2: y
256
+ }).setStroke(lineStroke);
257
+ if(this.animate){
258
+ this._animateGrid(hLine, "h", offsets.l, offsets.r + offsets.l - dim.width);
259
+ }
260
+ }, this);
261
+ },
262
+ _renderVLines: function(ticks, lineStroke, dim, offsets, hScaler, ht){
263
+ var s = this.getGroup();
264
+ arr.forEach(ticks, function(tick){
265
+ if(!this.opt.renderOnAxis && tick.value == (this._hAxis.opt.leftBottom?hScaler.bounds.from:hScaler.bounds.to)){
266
+ return;
267
+ }
268
+ var x = offsets.l + ht(tick.value);
269
+ var vLine = this.createLine(s, {
270
+ x1: x,
271
+ y1: offsets.t,
272
+ x2: x,
273
+ y2: dim.height - offsets.b
274
+ }).setStroke(lineStroke);
275
+ if(this.animate){
276
+ this._animateGrid(vLine, "v", dim.height - offsets.b, dim.height - offsets.b - offsets.t);
277
+ }
278
+ }, this);
279
+ },
280
+ _renderHRect: function(ticks, theme, dim, offsets, vScaler, vt){
281
+ var fill, tick, y, y2, hStripe;
282
+ var allTicks = ticks.major.concat(ticks.minor);
283
+ allTicks.sort(sortTicks);
284
+ if(allTicks[0].value > vScaler.bounds.from){
285
+ allTicks.splice(0, 0, {value: vScaler.bounds.from});
286
+ }
287
+ if(allTicks[allTicks.length - 1].value < vScaler.bounds.to){
288
+ allTicks.push({value: vScaler.bounds.to});
289
+ }
290
+ var s = this.getGroup();
291
+ for(var j = 0; j < allTicks.length - 1; j++){
292
+ tick = allTicks[j];
293
+ y = dim.height - offsets.b - vt(tick.value);
294
+ y2 = dim.height - offsets.b - vt(allTicks[j+1].value);
295
+
296
+ fill = (j%2 == 0)?(this.opt.hAlternateFill ||(theme && theme.alternateFill)):
297
+ (this.opt.hFill || (theme && theme.fill));
298
+ if(fill){
299
+ hStripe = this.createRect(s, {
300
+ x: offsets.l,
301
+ y: y,
302
+ width: dim.width - offsets.r,
303
+ height: y - y2
304
+ }).setFill(fill);
305
+ if(this.animate){
306
+ this._animateGrid(hStripe, "h", offsets.l, offsets.r + offsets.l - dim.width);
307
+ }
308
+ }
309
+ }
310
+ },
311
+ _renderVRect: function(ticks, theme, dim, offsets, hScaler, ht){
312
+ var fill, tick, x, x2, vStripe;
313
+ var allTicks = ticks.major.concat(ticks.minor);
314
+ allTicks.sort(sortTicks);
315
+ if(allTicks[0].value > hScaler.bounds.from){
316
+ allTicks.splice(0, 0, {value: hScaler.bounds.from});
317
+ }
318
+ if(allTicks[allTicks.length - 1].value < hScaler.bounds.to){
319
+ allTicks.push({value: hScaler.bounds.to});
320
+ }
321
+ var s = this.getGroup();
322
+ for(var j = 0; j < allTicks.length - 1; j++){
323
+ tick = allTicks[j];
324
+ x = offsets.l + ht(tick.value);
325
+ x2 = offsets.l + ht(allTicks[j+1].value);
326
+
327
+ fill = (j%2 == 0)?(this.opt.vAlternateFill ||(theme && theme.alternateFill)):
328
+ (this.opt.vFill || (theme && theme.fill));
329
+ if(fill){
330
+ vStripe = this.createRect(s, {
331
+ x: x,
332
+ y: offsets.t,
333
+ width: x2 - x,
334
+ height: dim.width - offsets.r
335
+ }).setFill(fill);
336
+ if(this.animate){
337
+ this._animateGrid(vStripe, "v", dim.height - offsets.b, dim.height - offsets.b - offsets.t);
338
+ }
339
+ }
340
+ }
341
+ },
342
+ _animateGrid: function(shape, type, offset, size){
343
+ var transStart = type == "h" ? [offset, 0] : [0, offset];
344
+ var scaleStart = type == "h" ? [1/size, 1] : [1, 1/size];
345
+ fx.animateTransform(lang.delegate({
346
+ shape: shape,
347
+ duration: 1200,
348
+ transform: [
349
+ {name: "translate", start: transStart, end: [0, 0]},
350
+ {name: "scale", start: scaleStart, end: [1, 1]},
351
+ {name: "original"}
352
+ ]
353
+ }, this.animate)).play();
354
+ }
355
+ });
356
+ });
@@ -0,0 +1,6 @@
1
+ //>>built
2
+ define("dojox/charting/plot2d/Lines",["dojo/_base/declare","./Default"],function(_1,_2){
3
+ return _1("dojox.charting.plot2d.Lines",_2,{constructor:function(){
4
+ this.opt.lines=true;
5
+ }});
6
+ });
@@ -0,0 +1,12 @@
1
+ define("dojox/charting/plot2d/Lines", ["dojo/_base/declare", "./Default"], function(declare, Default){
2
+
3
+ return declare("dojox.charting.plot2d.Lines", Default, {
4
+ // summary:
5
+ // A convenience constructor to create a typical line chart.
6
+ constructor: function(){
7
+ // summary:
8
+ // Preset our default plot to be line-based.
9
+ this.opt.lines = true;
10
+ }
11
+ });
12
+ });
@@ -0,0 +1,6 @@
1
+ //>>built
2
+ define("dojox/charting/plot2d/Markers",["dojo/_base/declare","./Default"],function(_1,_2){
3
+ return _1("dojox.charting.plot2d.Markers",_2,{constructor:function(){
4
+ this.opt.markers=true;
5
+ }});
6
+ });
@@ -0,0 +1,12 @@
1
+ define("dojox/charting/plot2d/Markers", ["dojo/_base/declare", "./Default"], function(declare, Default){
2
+
3
+ return declare("dojox.charting.plot2d.Markers", Default, {
4
+ // summary:
5
+ // A convenience plot to draw a line chart with markers.
6
+ constructor: function(){
7
+ // summary:
8
+ // Set up the plot for lines and markers.
9
+ this.opt.markers = true;
10
+ }
11
+ });
12
+ });
@@ -0,0 +1,7 @@
1
+ //>>built
2
+ define("dojox/charting/plot2d/MarkersOnly",["dojo/_base/declare","./Default"],function(_1,_2){
3
+ return _1("dojox.charting.plot2d.MarkersOnly",_2,{constructor:function(){
4
+ this.opt.lines=false;
5
+ this.opt.markers=true;
6
+ }});
7
+ });
@@ -0,0 +1,13 @@
1
+ define("dojox/charting/plot2d/MarkersOnly", ["dojo/_base/declare", "./Default"], function(declare, Default){
2
+
3
+ return declare("dojox.charting.plot2d.MarkersOnly", Default, {
4
+ // summary:
5
+ // A convenience object to draw only markers (like a scatter but not quite).
6
+ constructor: function(){
7
+ // summary:
8
+ // Set up our default plot to only have markers and no lines.
9
+ this.opt.lines = false;
10
+ this.opt.markers = true;
11
+ }
12
+ });
13
+ });
@@ -0,0 +1,110 @@
1
+ //>>built
2
+ define("dojox/charting/plot2d/OHLC",["dojo/_base/lang","dojo/_base/array","dojo/_base/declare","dojo/has","./CartesianBase","./_PlotEvents","./common","dojox/lang/functional","dojox/lang/functional/reversed","dojox/lang/utils","dojox/gfx/fx"],function(_1,_2,_3,_4,_5,_6,dc,df,_7,du,fx){
3
+ var _8=_7.lambda("item.purgeGroup()");
4
+ return _3("dojox.charting.plot2d.OHLC",[_5,_6],{defaultParams:{gap:2,animate:null},optionalParams:{minBarSize:1,maxBarSize:1,stroke:{},outline:{},shadow:{},fill:{},font:"",fontColor:""},constructor:function(_9,_a){
5
+ this.opt=_1.clone(this.defaultParams);
6
+ du.updateWithObject(this.opt,_a);
7
+ du.updateWithPattern(this.opt,_a,this.optionalParams);
8
+ this.animate=this.opt.animate;
9
+ },collectStats:function(_b){
10
+ var _c=_1.delegate(dc.defaultStats);
11
+ for(var i=0;i<_b.length;i++){
12
+ var _d=_b[i];
13
+ if(!_d.data.length){
14
+ continue;
15
+ }
16
+ var _e=_c.vmin,_f=_c.vmax;
17
+ if(!("ymin" in _d)||!("ymax" in _d)){
18
+ _2.forEach(_d.data,function(val,idx){
19
+ if(val!==null){
20
+ var x=val.x||idx+1;
21
+ _c.hmin=Math.min(_c.hmin,x);
22
+ _c.hmax=Math.max(_c.hmax,x);
23
+ _c.vmin=Math.min(_c.vmin,val.open,val.close,val.high,val.low);
24
+ _c.vmax=Math.max(_c.vmax,val.open,val.close,val.high,val.low);
25
+ }
26
+ });
27
+ }
28
+ if("ymin" in _d){
29
+ _c.vmin=Math.min(_e,_d.ymin);
30
+ }
31
+ if("ymax" in _d){
32
+ _c.vmax=Math.max(_f,_d.ymax);
33
+ }
34
+ }
35
+ return _c;
36
+ },getSeriesStats:function(){
37
+ var _10=this.collectStats(this.series);
38
+ _10.hmin-=0.5;
39
+ _10.hmax+=0.5;
40
+ return _10;
41
+ },render:function(dim,_11){
42
+ if(this.zoom&&!this.isDataDirty()){
43
+ return this.performZoom(dim,_11);
44
+ }
45
+ this.resetEvents();
46
+ this.dirty=this.isDirty();
47
+ if(this.dirty){
48
+ _2.forEach(this.series,_8);
49
+ this._eventSeries={};
50
+ this.cleanGroup();
51
+ var s=this.getGroup();
52
+ df.forEachRev(this.series,function(_12){
53
+ _12.cleanGroup(s);
54
+ });
55
+ }
56
+ var t=this.chart.theme,f,gap,_13,ht=this._hScaler.scaler.getTransformerFromModel(this._hScaler),vt=this._vScaler.scaler.getTransformerFromModel(this._vScaler),_14=this.events();
57
+ f=dc.calculateBarSize(this._hScaler.bounds.scale,this.opt);
58
+ gap=f.gap;
59
+ _13=f.size;
60
+ for(var i=this.series.length-1;i>=0;--i){
61
+ var run=this.series[i];
62
+ if(!this.dirty&&!run.dirty){
63
+ t.skip();
64
+ this._reconnectEvents(run.name);
65
+ continue;
66
+ }
67
+ run.cleanGroup();
68
+ var _15=t.next("candlestick",[this.opt,run]),s=run.group,_16=new Array(run.data.length);
69
+ for(var j=0;j<run.data.length;++j){
70
+ var v=run.data[j];
71
+ if(v!==null){
72
+ var _17=t.addMixin(_15,"candlestick",v,true);
73
+ var x=ht(v.x||(j+0.5))+_11.l+gap,y=dim.height-_11.b,_18=vt(v.open),_19=vt(v.close),_1a=vt(v.high),low=vt(v.low);
74
+ if(low>_1a){
75
+ var tmp=_1a;
76
+ _1a=low;
77
+ low=tmp;
78
+ }
79
+ if(_13>=1){
80
+ var hl={x1:_13/2,x2:_13/2,y1:y-_1a,y2:y-low},op={x1:0,x2:((_13/2)+((_17.series.stroke.width||1)/2)),y1:y-_18,y2:y-_18},cl={x1:((_13/2)-((_17.series.stroke.width||1)/2)),x2:_13,y1:y-_19,y2:y-_19};
81
+ var _1b=s.createGroup();
82
+ _1b.setTransform({dx:x,dy:0});
83
+ var _1c=_1b.createGroup();
84
+ _1c.createLine(hl).setStroke(_17.series.stroke);
85
+ _1c.createLine(op).setStroke(_17.series.stroke);
86
+ _1c.createLine(cl).setStroke(_17.series.stroke);
87
+ run.dyn.stroke=_17.series.stroke;
88
+ if(_14){
89
+ var o={element:"candlestick",index:j,run:run,shape:_1c,x:x,y:y-Math.max(_18,_19),cx:_13/2,cy:(y-Math.max(_18,_19))+(Math.max(_18>_19?_18-_19:_19-_18,1)/2),width:_13,height:Math.max(_18>_19?_18-_19:_19-_18,1),data:v};
90
+ this._connectEvents(o);
91
+ _16[j]=o;
92
+ }
93
+ }
94
+ if(this.animate){
95
+ this._animateOHLC(_1b,y-low,_1a-low);
96
+ }
97
+ }
98
+ }
99
+ this._eventSeries[run.name]=_16;
100
+ run.dirty=false;
101
+ }
102
+ this.dirty=false;
103
+ if(_4("dojo-bidi")){
104
+ this._checkOrientation(this.group,dim,_11);
105
+ }
106
+ return this;
107
+ },_animateOHLC:function(_1d,_1e,_1f){
108
+ fx.animateTransform(_1.delegate({shape:_1d,duration:1200,transform:[{name:"translate",start:[0,_1e-(_1e/_1f)],end:[0,0]},{name:"scale",start:[1,1/_1f],end:[1,1]},{name:"original"}]},this.animate)).play();
109
+ }});
110
+ });