@datagrok/helm 2.3.2 → 2.3.3

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 (323) hide show
  1. package/CHANGELOG.md +12 -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 +228 -69
  13. package/src/package.ts +7 -69
  14. package/src/tests/findMonomers-tests.ts +2 -1
  15. package/src/tests/get-monomer-tests.ts +1 -49
  16. package/src/utils/get-monomer.ts +49 -1
  17. package/src/utils/helm-grid-cell-renderer.ts +8 -9
  18. package/src/utils/index.ts +2 -3
  19. package/src/widgets/helm-input.ts +4 -4
  20. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
  21. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
  22. package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
  23. package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
  24. package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
  25. package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
  26. package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
  27. package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
  28. package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
  29. package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
  30. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
  31. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
  32. package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
  33. package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
  34. package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
  35. package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
  36. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
  37. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
  38. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
  39. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
  40. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
  41. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
  42. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
  43. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
  44. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
  45. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
  46. package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
  47. package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
  48. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
  49. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
  50. package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
  51. package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
  52. package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
  53. package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
  54. package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
  55. package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
  56. package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
  57. package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
  58. package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
  59. package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
  60. package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
  61. package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
  62. package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
  63. package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
  64. package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
  65. package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
  66. package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
  67. package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
  68. package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
  69. package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
  70. package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
  71. package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
  72. package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
  73. package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
  74. package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
  75. package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
  76. package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
  77. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
  78. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
  79. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
  80. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
  81. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
  82. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
  83. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
  84. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
  85. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
  86. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
  87. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
  88. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
  89. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
  90. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
  91. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
  92. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
  93. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
  94. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
  95. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
  96. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
  97. package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
  98. package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
  99. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
  100. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
  101. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
  102. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
  103. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
  104. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
  105. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
  106. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
  107. package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
  108. package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
  109. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
  110. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
  111. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
  112. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
  113. package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
  114. package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
  115. package/vendor/dojo-1.10.10/dijit/main.js +4 -0
  116. package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
  117. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
  118. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
  119. package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
  120. package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
  121. package/vendor/dojo-1.10.10/dijit/place.js +142 -0
  122. package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
  123. package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
  124. package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
  125. package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
  126. package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
  127. package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
  128. package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
  129. package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
  130. package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
  131. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
  132. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
  133. package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
  134. package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
  135. package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
  136. package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
  137. package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
  138. package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
  139. package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
  140. package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
  141. package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
  142. package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
  143. package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
  144. package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
  145. package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
  146. package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
  147. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
  148. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
  149. package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
  150. package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
  151. package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
  152. package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
  153. package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
  154. package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
  155. package/vendor/dojo-1.10.10/dojo/html.js +161 -0
  156. package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
  157. package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
  158. package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
  159. package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
  160. package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
  161. package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
  162. package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
  163. package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
  164. package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
  165. package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
  166. package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
  167. package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
  168. package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
  169. package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
  170. package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
  171. package/vendor/dojo-1.10.10/dojo/require.js +11 -0
  172. package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
  173. package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
  174. package/vendor/dojo-1.10.10/dojo/string.js +67 -0
  175. package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
  176. package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
  177. package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
  178. package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
  179. package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
  180. package/vendor/dojo-1.10.10/dojo/window.js +141 -0
  181. package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
  182. package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
  183. package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
  184. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
  185. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
  186. package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
  187. package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
  188. package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
  189. package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
  190. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
  191. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
  192. package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
  193. package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
  194. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
  195. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
  196. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
  197. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
  198. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
  199. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
  200. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
  201. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
  202. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
  203. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
  204. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
  205. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
  206. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
  207. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
  208. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
  209. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
  210. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
  211. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
  212. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
  213. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
  214. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
  215. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
  216. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
  217. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
  218. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
  219. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
  220. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
  221. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
  222. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
  223. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
  224. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
  225. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
  226. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
  227. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
  228. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
  229. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
  230. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
  231. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
  232. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
  233. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
  234. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
  235. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
  236. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
  237. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
  238. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
  239. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
  240. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
  241. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
  242. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
  243. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
  244. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
  245. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
  246. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
  247. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
  248. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
  249. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
  250. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
  251. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
  252. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
  253. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
  254. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
  255. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
  256. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
  257. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
  258. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
  259. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
  260. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
  261. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
  262. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
  263. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
  264. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
  265. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
  266. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
  267. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
  268. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
  269. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
  270. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
  271. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
  272. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
  273. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
  274. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
  275. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
  276. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
  277. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
  278. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
  279. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
  280. package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
  281. package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
  282. package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
  283. package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
  284. package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
  285. package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
  286. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
  287. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
  288. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
  289. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
  290. package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
  291. package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
  292. package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
  293. package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
  294. package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
  295. package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
  296. package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
  297. package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
  298. package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
  299. package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
  300. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
  301. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
  302. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
  303. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
  304. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
  305. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
  306. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
  307. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
  308. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
  309. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
  310. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
  311. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
  312. package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
  313. package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
  314. package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
  315. package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
  316. package/vendor/dojo-1.10.10/dojox/main.js +4 -0
  317. package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
  318. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
  319. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
  320. package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
  321. package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
  322. package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
  323. package/vendor/dojo-1.10.10/dojox/storage/manager.js.uncompressed.js +263 -0
@@ -0,0 +1,20 @@
1
+ //>>built
2
+ define("dojox/charting/plot2d/StackedColumns",["dojo/_base/declare","./Columns","./commonStacked"],function(_1,_2,_3){
3
+ return _1("dojox.charting.plot2d.StackedColumns",_2,{getSeriesStats:function(){
4
+ var _4=_3.collectStats(this.series);
5
+ _4.hmin-=0.5;
6
+ _4.hmax+=0.5;
7
+ return _4;
8
+ },getValue:function(_5,_6,_7,_8){
9
+ var x,y;
10
+ if(_8){
11
+ x=_6;
12
+ y=_3.getIndexValue(this.series,_7,x);
13
+ }else{
14
+ x=_5.x-1;
15
+ y=_3.getValue(this.series,_7,_5.x);
16
+ y=[y[0]?y[0].y:null,y[1]?y[1]:null];
17
+ }
18
+ return {x:x,y:y[0],py:y[1]};
19
+ }});
20
+ });
@@ -0,0 +1,31 @@
1
+ define("dojox/charting/plot2d/StackedColumns", ["dojo/_base/declare", "./Columns", "./commonStacked"],
2
+ function( declare, Columns, commonStacked){
3
+
4
+ return declare("dojox.charting.plot2d.StackedColumns", Columns, {
5
+ // summary:
6
+ // The plot object representing a stacked column chart (vertical bars).
7
+ getSeriesStats: function(){
8
+ // summary:
9
+ // Calculate the min/max on all attached series in both directions.
10
+ // returns: Object
11
+ // {hmin, hmax, vmin, vmax} min/max in both directions.
12
+ var stats = commonStacked.collectStats(this.series);
13
+ stats.hmin -= 0.5;
14
+ stats.hmax += 0.5;
15
+ return stats; // Object
16
+ },
17
+ getValue: function(value, index, seriesIndex, indexed){
18
+ var x, y;
19
+ if(indexed){
20
+ x = index;
21
+ y = commonStacked.getIndexValue(this.series, seriesIndex, x);
22
+ }else{
23
+ x = value.x - 1;
24
+ y = commonStacked.getValue(this.series, seriesIndex, value.x);
25
+ y = [ y[0]?y[0].y:null, y[1]?y[1]:null ];
26
+ }
27
+ // in py we return the previous stack value as we need it to position labels on columns
28
+ return { x: x, y: y[0], py: y[1] };
29
+ }
30
+ });
31
+ });
@@ -0,0 +1,6 @@
1
+ //>>built
2
+ define("dojox/charting/plot2d/StackedLines",["dojo/_base/declare","./Stacked"],function(_1,_2){
3
+ return _1("dojox.charting.plot2d.StackedLines",_2,{constructor:function(){
4
+ this.opt.lines=true;
5
+ }});
6
+ });
@@ -0,0 +1,12 @@
1
+ define("dojox/charting/plot2d/StackedLines", ["dojo/_base/declare", "./Stacked"], function(declare, Stacked){
2
+
3
+ return declare("dojox.charting.plot2d.StackedLines", Stacked, {
4
+ // summary:
5
+ // A convenience object to create a stacked line chart.
6
+ constructor: function(){
7
+ // summary:
8
+ // Force our Stacked base to be lines only.
9
+ this.opt.lines = true;
10
+ }
11
+ });
12
+ });
@@ -0,0 +1,68 @@
1
+ //>>built
2
+ define("dojox/charting/plot2d/_PlotEvents",["dojo/_base/lang","dojo/_base/array","dojo/_base/declare","dojo/_base/connect"],function(_1,_2,_3,_4){
3
+ return _3("dojox.charting.plot2d._PlotEvents",null,{constructor:function(){
4
+ this._shapeEvents=[];
5
+ this._eventSeries={};
6
+ },destroy:function(){
7
+ this.resetEvents();
8
+ this.inherited(arguments);
9
+ },plotEvent:function(o){
10
+ },raiseEvent:function(o){
11
+ this.plotEvent(o);
12
+ var t=_1.delegate(o);
13
+ t.originalEvent=o.type;
14
+ t.originalPlot=o.plot;
15
+ t.type="onindirect";
16
+ _2.forEach(this.chart.stack,function(_5){
17
+ if(_5!==this&&_5.plotEvent){
18
+ t.plot=_5;
19
+ _5.plotEvent(t);
20
+ }
21
+ },this);
22
+ },connect:function(_6,_7){
23
+ this.dirty=true;
24
+ return _4.connect(this,"plotEvent",_6,_7);
25
+ },events:function(){
26
+ return !!this.plotEvent.after;
27
+ },resetEvents:function(){
28
+ if(this._shapeEvents.length){
29
+ _2.forEach(this._shapeEvents,function(_8){
30
+ _8.shape.disconnect(_8.handle);
31
+ });
32
+ this._shapeEvents=[];
33
+ }
34
+ this.raiseEvent({type:"onplotreset",plot:this});
35
+ },_connectSingleEvent:function(o,_9){
36
+ this._shapeEvents.push({shape:o.eventMask,handle:o.eventMask.connect(_9,this,function(e){
37
+ o.type=_9;
38
+ o.event=e;
39
+ this.raiseEvent(o);
40
+ o.event=null;
41
+ })});
42
+ },_connectEvents:function(o){
43
+ if(o){
44
+ o.chart=this.chart;
45
+ o.plot=this;
46
+ o.hAxis=this.hAxis||null;
47
+ o.vAxis=this.vAxis||null;
48
+ o.eventMask=o.eventMask||o.shape;
49
+ this._connectSingleEvent(o,"onmouseover");
50
+ this._connectSingleEvent(o,"onmouseout");
51
+ this._connectSingleEvent(o,"onclick");
52
+ }
53
+ },_reconnectEvents:function(_a){
54
+ var a=this._eventSeries[_a];
55
+ if(a){
56
+ _2.forEach(a,this._connectEvents,this);
57
+ }
58
+ },fireEvent:function(_b,_c,_d,_e){
59
+ var s=this._eventSeries[_b];
60
+ if(s&&s.length&&_d<s.length){
61
+ var o=s[_d];
62
+ o.type=_c;
63
+ o.event=_e||null;
64
+ this.raiseEvent(o);
65
+ o.event=null;
66
+ }
67
+ }});
68
+ });
@@ -0,0 +1,120 @@
1
+ define("dojox/charting/plot2d/_PlotEvents", ["dojo/_base/lang", "dojo/_base/array", "dojo/_base/declare", "dojo/_base/connect"],
2
+ function(lang, arr, declare, hub){
3
+
4
+ return declare("dojox.charting.plot2d._PlotEvents", null, {
5
+ constructor: function(){
6
+ this._shapeEvents = [];
7
+ this._eventSeries = {};
8
+ },
9
+ destroy: function(){
10
+ // summary:
11
+ // Destroy any internal elements and event handlers.
12
+ this.resetEvents();
13
+ this.inherited(arguments);
14
+ },
15
+ plotEvent: function(o){
16
+ // summary:
17
+ // Stub function for use by specific plots.
18
+ // o: Object
19
+ // An object intended to represent event parameters.
20
+ },
21
+ raiseEvent: function(o){
22
+ // summary:
23
+ // Raises events in predefined order
24
+ // o: Object
25
+ // An object intended to represent event parameters.
26
+ this.plotEvent(o);
27
+ var t = lang.delegate(o);
28
+ t.originalEvent = o.type;
29
+ t.originalPlot = o.plot;
30
+ t.type = "onindirect";
31
+ arr.forEach(this.chart.stack, function(plot){
32
+ if(plot !== this && plot.plotEvent){
33
+ t.plot = plot;
34
+ plot.plotEvent(t);
35
+ }
36
+ }, this);
37
+ },
38
+ connect: function(object, method){
39
+ // summary:
40
+ // Helper function to connect any object's method to our plotEvent.
41
+ // object: Object
42
+ // The object to connect to.
43
+ // method: String|Function
44
+ // The method to fire when our plotEvent is fired.
45
+ // returns: Array
46
+ // The handle as returned from dojo.connect (see dojo.connect).
47
+ this.dirty = true;
48
+ return hub.connect(this, "plotEvent", object, method); // Array
49
+ },
50
+ events: function(){
51
+ // summary:
52
+ // Find out if any event handlers have been connected to our plotEvent.
53
+ // returns: Boolean
54
+ // A flag indicating that there are handlers attached.
55
+ return !!this.plotEvent.after;
56
+ },
57
+ resetEvents: function(){
58
+ // summary:
59
+ // Reset all events attached to our plotEvent (i.e. disconnect).
60
+ if(this._shapeEvents.length){
61
+ arr.forEach(this._shapeEvents, function(item){
62
+ item.shape.disconnect(item.handle);
63
+ });
64
+ this._shapeEvents = [];
65
+ }
66
+ this.raiseEvent({type: "onplotreset", plot: this});
67
+ },
68
+ _connectSingleEvent: function(o, eventName){
69
+ this._shapeEvents.push({
70
+ shape: o.eventMask,
71
+ handle: o.eventMask.connect(eventName, this, function(e){
72
+ o.type = eventName;
73
+ o.event = e;
74
+ this.raiseEvent(o);
75
+ o.event = null;
76
+ })
77
+ });
78
+ },
79
+ _connectEvents: function(o){
80
+ if(o){
81
+ o.chart = this.chart;
82
+ o.plot = this;
83
+ o.hAxis = this.hAxis || null;
84
+ o.vAxis = this.vAxis || null;
85
+ o.eventMask = o.eventMask || o.shape;
86
+ this._connectSingleEvent(o, "onmouseover");
87
+ this._connectSingleEvent(o, "onmouseout");
88
+ this._connectSingleEvent(o, "onclick");
89
+ }
90
+ },
91
+ _reconnectEvents: function(seriesName){
92
+ var a = this._eventSeries[seriesName];
93
+ if(a){
94
+ arr.forEach(a, this._connectEvents, this);
95
+ }
96
+ },
97
+ fireEvent: function(seriesName, eventName, index, eventObject){
98
+ // summary:
99
+ // Emulates firing an event for a given data value (specified by
100
+ // an index) of a given series.
101
+ // seriesName: String
102
+ // Series name.
103
+ // eventName: String
104
+ // Event name to emulate.
105
+ // index: Number
106
+ // Valid data value index used to raise an event.
107
+ // eventObject: Object?
108
+ // Optional event object. Especially useful for synthetic events.
109
+ // Default: null.
110
+ var s = this._eventSeries[seriesName];
111
+ if(s && s.length && index < s.length){
112
+ var o = s[index];
113
+ o.type = eventName;
114
+ o.event = eventObject || null;
115
+ this.raiseEvent(o);
116
+ o.event = null;
117
+ }
118
+ }
119
+ });
120
+ });
@@ -0,0 +1,209 @@
1
+ //>>built
2
+ define("dojox/charting/plot2d/common",["dojo/_base/lang","dojo/_base/array","dojo/_base/Color","dojox/gfx","dojox/lang/functional","../scaler/common"],function(_1,_2,_3,g,df,sc){
3
+ var _4=_1.getObject("dojox.charting.plot2d.common",true);
4
+ return _1.mixin(_4,{doIfLoaded:sc.doIfLoaded,makeStroke:function(_5){
5
+ if(!_5){
6
+ return _5;
7
+ }
8
+ if(typeof _5=="string"||_5 instanceof _3){
9
+ _5={color:_5};
10
+ }
11
+ return g.makeParameters(g.defaultStroke,_5);
12
+ },augmentColor:function(_6,_7){
13
+ var t=new _3(_6),c=new _3(_7);
14
+ c.a=t.a;
15
+ return c;
16
+ },augmentStroke:function(_8,_9){
17
+ var s=_4.makeStroke(_8);
18
+ if(s){
19
+ s.color=_4.augmentColor(s.color,_9);
20
+ }
21
+ return s;
22
+ },augmentFill:function(_a,_b){
23
+ var fc,c=new _3(_b);
24
+ if(typeof _a=="string"||_a instanceof _3){
25
+ return _4.augmentColor(_a,_b);
26
+ }
27
+ return _a;
28
+ },defaultStats:{vmin:Number.POSITIVE_INFINITY,vmax:Number.NEGATIVE_INFINITY,hmin:Number.POSITIVE_INFINITY,hmax:Number.NEGATIVE_INFINITY},collectSimpleStats:function(_c){
29
+ var _d=_1.delegate(_4.defaultStats);
30
+ for(var i=0;i<_c.length;++i){
31
+ var _e=_c[i];
32
+ for(var j=0;j<_e.data.length;j++){
33
+ if(_e.data[j]!==null){
34
+ if(typeof _e.data[j]=="number"){
35
+ var _f=_d.vmin,_10=_d.vmax;
36
+ _2.forEach(_e.data,function(val,i){
37
+ if(val!==null){
38
+ var x=i+1,y=val;
39
+ if(isNaN(y)){
40
+ y=0;
41
+ }
42
+ _d.hmin=Math.min(_d.hmin,x);
43
+ _d.hmax=Math.max(_d.hmax,x);
44
+ _d.vmin=Math.min(_d.vmin,y);
45
+ _d.vmax=Math.max(_d.vmax,y);
46
+ }
47
+ });
48
+ if("ymin" in _e){
49
+ _d.vmin=Math.min(_f,_e.ymin);
50
+ }
51
+ if("ymax" in _e){
52
+ _d.vmax=Math.max(_10,_e.ymax);
53
+ }
54
+ }else{
55
+ var _11=_d.hmin,_12=_d.hmax,_f=_d.vmin,_10=_d.vmax;
56
+ if(!("xmin" in _e)||!("xmax" in _e)||!("ymin" in _e)||!("ymax" in _e)){
57
+ _2.forEach(_e.data,function(val,i){
58
+ if(val!==null){
59
+ var x="x" in val?val.x:i+1,y=val.y;
60
+ if(isNaN(x)){
61
+ x=0;
62
+ }
63
+ if(isNaN(y)){
64
+ y=0;
65
+ }
66
+ _d.hmin=Math.min(_d.hmin,x);
67
+ _d.hmax=Math.max(_d.hmax,x);
68
+ _d.vmin=Math.min(_d.vmin,y);
69
+ _d.vmax=Math.max(_d.vmax,y);
70
+ }
71
+ });
72
+ }
73
+ if("xmin" in _e){
74
+ _d.hmin=Math.min(_11,_e.xmin);
75
+ }
76
+ if("xmax" in _e){
77
+ _d.hmax=Math.max(_12,_e.xmax);
78
+ }
79
+ if("ymin" in _e){
80
+ _d.vmin=Math.min(_f,_e.ymin);
81
+ }
82
+ if("ymax" in _e){
83
+ _d.vmax=Math.max(_10,_e.ymax);
84
+ }
85
+ }
86
+ break;
87
+ }
88
+ }
89
+ }
90
+ return _d;
91
+ },calculateBarSize:function(_13,opt,_14){
92
+ if(!_14){
93
+ _14=1;
94
+ }
95
+ var gap=opt.gap,_15=(_13-2*gap)/_14;
96
+ if("minBarSize" in opt){
97
+ _15=Math.max(_15,opt.minBarSize);
98
+ }
99
+ if("maxBarSize" in opt){
100
+ _15=Math.min(_15,opt.maxBarSize);
101
+ }
102
+ _15=Math.max(_15,1);
103
+ gap=(_13-_15*_14)/2;
104
+ return {size:_15,gap:gap};
105
+ },collectStackedStats:function(_16){
106
+ var _17=_1.clone(_4.defaultStats);
107
+ if(_16.length){
108
+ _17.hmin=Math.min(_17.hmin,1);
109
+ _17.hmax=df.foldl(_16,"seed, run -> Math.max(seed, run.data.length)",_17.hmax);
110
+ for(var i=0;i<_17.hmax;++i){
111
+ var v=_16[0].data[i];
112
+ v=v&&(typeof v=="number"?v:v.y);
113
+ if(isNaN(v)){
114
+ v=0;
115
+ }
116
+ _17.vmin=Math.min(_17.vmin,v);
117
+ for(var j=1;j<_16.length;++j){
118
+ var t=_16[j].data[i];
119
+ t=t&&(typeof t=="number"?t:t.y);
120
+ if(isNaN(t)){
121
+ t=0;
122
+ }
123
+ v+=t;
124
+ }
125
+ _17.vmax=Math.max(_17.vmax,v);
126
+ }
127
+ }
128
+ return _17;
129
+ },curve:function(a,_18){
130
+ var _19=a.slice(0);
131
+ if(_18=="x"){
132
+ _19[_19.length]=_19[0];
133
+ }
134
+ var p=_2.map(_19,function(_1a,i){
135
+ if(i==0){
136
+ return "M"+_1a.x+","+_1a.y;
137
+ }
138
+ if(!isNaN(_18)){
139
+ var dx=_1a.x-_19[i-1].x,dy=_19[i-1].y;
140
+ return "C"+(_1a.x-(_18-1)*(dx/_18))+","+dy+" "+(_1a.x-(dx/_18))+","+_1a.y+" "+_1a.x+","+_1a.y;
141
+ }else{
142
+ if(_18=="X"||_18=="x"||_18=="S"){
143
+ var p0,p1=_19[i-1],p2=_19[i],p3;
144
+ var _1b,_1c,_1d,_1e;
145
+ var f=1/6;
146
+ if(i==1){
147
+ if(_18=="x"){
148
+ p0=_19[_19.length-2];
149
+ }else{
150
+ p0=p1;
151
+ }
152
+ f=1/3;
153
+ }else{
154
+ p0=_19[i-2];
155
+ }
156
+ if(i==(_19.length-1)){
157
+ if(_18=="x"){
158
+ p3=_19[1];
159
+ }else{
160
+ p3=p2;
161
+ }
162
+ f=1/3;
163
+ }else{
164
+ p3=_19[i+1];
165
+ }
166
+ var _1f=Math.sqrt((p2.x-p1.x)*(p2.x-p1.x)+(p2.y-p1.y)*(p2.y-p1.y));
167
+ var _20=Math.sqrt((p2.x-p0.x)*(p2.x-p0.x)+(p2.y-p0.y)*(p2.y-p0.y));
168
+ var _21=Math.sqrt((p3.x-p1.x)*(p3.x-p1.x)+(p3.y-p1.y)*(p3.y-p1.y));
169
+ var _22=_20*f;
170
+ var _23=_21*f;
171
+ if(_22>_1f/2&&_23>_1f/2){
172
+ _22=_1f/2;
173
+ _23=_1f/2;
174
+ }else{
175
+ if(_22>_1f/2){
176
+ _22=_1f/2;
177
+ _23=_1f/2*_21/_20;
178
+ }else{
179
+ if(_23>_1f/2){
180
+ _23=_1f/2;
181
+ _22=_1f/2*_20/_21;
182
+ }
183
+ }
184
+ }
185
+ if(_18=="S"){
186
+ if(p0==p1){
187
+ _22=0;
188
+ }
189
+ if(p2==p3){
190
+ _23=0;
191
+ }
192
+ }
193
+ _1b=p1.x+_22*(p2.x-p0.x)/_20;
194
+ _1c=p1.y+_22*(p2.y-p0.y)/_20;
195
+ _1d=p2.x-_23*(p3.x-p1.x)/_21;
196
+ _1e=p2.y-_23*(p3.y-p1.y)/_21;
197
+ }
198
+ }
199
+ return "C"+(_1b+","+_1c+" "+_1d+","+_1e+" "+p2.x+","+p2.y);
200
+ });
201
+ return p.join(" ");
202
+ },getLabel:function(_24,_25,_26){
203
+ return sc.doIfLoaded("dojo/number",function(_27){
204
+ return (_25?_27.format(_24,{places:_26}):_27.format(_24))||"";
205
+ },function(){
206
+ return _25?_24.toFixed(_26):_24.toString();
207
+ });
208
+ }});
209
+ });
@@ -0,0 +1,214 @@
1
+ define("dojox/charting/plot2d/common", ["dojo/_base/lang", "dojo/_base/array", "dojo/_base/Color",
2
+ "dojox/gfx", "dojox/lang/functional", "../scaler/common"],
3
+ function(lang, arr, Color, g, df, sc){
4
+
5
+ var common = lang.getObject("dojox.charting.plot2d.common", true);
6
+
7
+ return lang.mixin(common, {
8
+ doIfLoaded: sc.doIfLoaded,
9
+ makeStroke: function(stroke){
10
+ if(!stroke){ return stroke; }
11
+ if(typeof stroke == "string" || stroke instanceof Color){
12
+ stroke = {color: stroke};
13
+ }
14
+ return g.makeParameters(g.defaultStroke, stroke);
15
+ },
16
+ augmentColor: function(target, color){
17
+ var t = new Color(target),
18
+ c = new Color(color);
19
+ c.a = t.a;
20
+ return c;
21
+ },
22
+ augmentStroke: function(stroke, color){
23
+ var s = common.makeStroke(stroke);
24
+ if(s){
25
+ s.color = common.augmentColor(s.color, color);
26
+ }
27
+ return s;
28
+ },
29
+ augmentFill: function(fill, color){
30
+ var fc, c = new Color(color);
31
+ if(typeof fill == "string" || fill instanceof Color){
32
+ return common.augmentColor(fill, color);
33
+ }
34
+ return fill;
35
+ },
36
+
37
+ defaultStats: {
38
+ vmin: Number.POSITIVE_INFINITY, vmax: Number.NEGATIVE_INFINITY,
39
+ hmin: Number.POSITIVE_INFINITY, hmax: Number.NEGATIVE_INFINITY
40
+ },
41
+
42
+ collectSimpleStats: function(series){
43
+ var stats = lang.delegate(common.defaultStats);
44
+ for(var i = 0; i < series.length; ++i){
45
+ var run = series[i];
46
+ for(var j = 0; j < run.data.length; j++){
47
+ if(run.data[j] !== null){
48
+ if(typeof run.data[j] == "number"){
49
+ // 1D case
50
+ var old_vmin = stats.vmin, old_vmax = stats.vmax;
51
+ arr.forEach(run.data, function(val, i){
52
+ if(val !== null){
53
+ var x = i + 1, y = val;
54
+ if(isNaN(y)){ y = 0; }
55
+ stats.hmin = Math.min(stats.hmin, x);
56
+ stats.hmax = Math.max(stats.hmax, x);
57
+ stats.vmin = Math.min(stats.vmin, y);
58
+ stats.vmax = Math.max(stats.vmax, y);
59
+ }
60
+ });
61
+ if("ymin" in run){ stats.vmin = Math.min(old_vmin, run.ymin); }
62
+ if("ymax" in run){ stats.vmax = Math.max(old_vmax, run.ymax); }
63
+ }else{
64
+ // 2D case
65
+ var old_hmin = stats.hmin, old_hmax = stats.hmax,
66
+ old_vmin = stats.vmin, old_vmax = stats.vmax;
67
+ if(!("xmin" in run) || !("xmax" in run) || !("ymin" in run) || !("ymax" in run)){
68
+ arr.forEach(run.data, function(val, i){
69
+ if(val !== null){
70
+ var x = "x" in val ? val.x : i + 1, y = val.y;
71
+ if(isNaN(x)){ x = 0; }
72
+ if(isNaN(y)){ y = 0; }
73
+ stats.hmin = Math.min(stats.hmin, x);
74
+ stats.hmax = Math.max(stats.hmax, x);
75
+ stats.vmin = Math.min(stats.vmin, y);
76
+ stats.vmax = Math.max(stats.vmax, y);
77
+ }
78
+ });
79
+ }
80
+ if("xmin" in run){ stats.hmin = Math.min(old_hmin, run.xmin); }
81
+ if("xmax" in run){ stats.hmax = Math.max(old_hmax, run.xmax); }
82
+ if("ymin" in run){ stats.vmin = Math.min(old_vmin, run.ymin); }
83
+ if("ymax" in run){ stats.vmax = Math.max(old_vmax, run.ymax); }
84
+ }
85
+
86
+ break;
87
+ }
88
+ }
89
+ }
90
+ return stats;
91
+ },
92
+
93
+ calculateBarSize: function(/* Number */ availableSize, /* Object */ opt, /* Number? */ clusterSize){
94
+ if(!clusterSize){
95
+ clusterSize = 1;
96
+ }
97
+ var gap = opt.gap, size = (availableSize - 2 * gap) / clusterSize;
98
+ if("minBarSize" in opt){
99
+ size = Math.max(size, opt.minBarSize);
100
+ }
101
+ if("maxBarSize" in opt){
102
+ size = Math.min(size, opt.maxBarSize);
103
+ }
104
+ size = Math.max(size, 1);
105
+ gap = (availableSize - size * clusterSize) / 2;
106
+ return {size: size, gap: gap}; // Object
107
+ },
108
+
109
+ collectStackedStats: function(series){
110
+ // collect statistics
111
+ var stats = lang.clone(common.defaultStats);
112
+ if(series.length){
113
+ // 1st pass: find the maximal length of runs
114
+ stats.hmin = Math.min(stats.hmin, 1);
115
+ stats.hmax = df.foldl(series, "seed, run -> Math.max(seed, run.data.length)", stats.hmax);
116
+ // 2nd pass: stack values
117
+ for(var i = 0; i < stats.hmax; ++i){
118
+ var v = series[0].data[i];
119
+ v = v && (typeof v == "number" ? v : v.y);
120
+ if(isNaN(v)){ v = 0; }
121
+ stats.vmin = Math.min(stats.vmin, v);
122
+ for(var j = 1; j < series.length; ++j){
123
+ var t = series[j].data[i];
124
+ t = t && (typeof t == "number" ? t : t.y);
125
+ if(isNaN(t)){ t = 0; }
126
+ v += t;
127
+ }
128
+ stats.vmax = Math.max(stats.vmax, v);
129
+ }
130
+ }
131
+ return stats;
132
+ },
133
+
134
+ curve: function(/* Number[] */a, /* Number|String */tension){
135
+ // FIX for #7235, submitted by Enzo Michelangeli.
136
+ // Emulates the smoothing algorithms used in a famous, unnamed spreadsheet
137
+ // program ;)
138
+ var array = a.slice(0);
139
+ if(tension == "x") {
140
+ array[array.length] = array[0]; // add a last element equal to the first, closing the loop
141
+ }
142
+ var p=arr.map(array, function(item, i){
143
+ if(i==0){ return "M" + item.x + "," + item.y; }
144
+ if(!isNaN(tension)) { // use standard Dojo smoothing in tension is numeric
145
+ var dx=item.x-array[i-1].x, dy=array[i-1].y;
146
+ return "C"+(item.x-(tension-1)*(dx/tension))+","+dy+" "+(item.x-(dx/tension))+","+item.y+" "+item.x+","+item.y;
147
+ } else if(tension == "X" || tension == "x" || tension == "S") {
148
+ // use Excel "line smoothing" algorithm (http://xlrotor.com/resources/files.shtml)
149
+ var p0, p1 = array[i-1], p2 = array[i], p3;
150
+ var bz1x, bz1y, bz2x, bz2y;
151
+ var f = 1/6;
152
+ if(i==1) {
153
+ if(tension == "x") {
154
+ p0 = array[array.length-2];
155
+ } else { // "tension == X || tension == "S"
156
+ p0 = p1;
157
+ }
158
+ f = 1/3;
159
+ } else {
160
+ p0 = array[i-2];
161
+ }
162
+ if(i==(array.length-1)) {
163
+ if(tension == "x") {
164
+ p3 = array[1];
165
+ } else { // "tension == X || tension == "S"
166
+ p3 = p2;
167
+ }
168
+ f = 1/3;
169
+ } else {
170
+ p3 = array[i+1];
171
+ }
172
+ var p1p2 = Math.sqrt((p2.x-p1.x)*(p2.x-p1.x)+(p2.y-p1.y)*(p2.y-p1.y));
173
+ var p0p2 = Math.sqrt((p2.x-p0.x)*(p2.x-p0.x)+(p2.y-p0.y)*(p2.y-p0.y));
174
+ var p1p3 = Math.sqrt((p3.x-p1.x)*(p3.x-p1.x)+(p3.y-p1.y)*(p3.y-p1.y));
175
+
176
+ var p0p2f = p0p2 * f;
177
+ var p1p3f = p1p3 * f;
178
+
179
+ if(p0p2f > p1p2/2 && p1p3f > p1p2/2) {
180
+ p0p2f = p1p2/2;
181
+ p1p3f = p1p2/2;
182
+ } else if(p0p2f > p1p2/2) {
183
+ p0p2f = p1p2/2;
184
+ p1p3f = p1p2/2 * p1p3/p0p2;
185
+ } else if(p1p3f > p1p2/2) {
186
+ p1p3f = p1p2/2;
187
+ p0p2f = p1p2/2 * p0p2/p1p3;
188
+ }
189
+
190
+ if(tension == "S") {
191
+ if(p0 == p1) { p0p2f = 0; }
192
+ if(p2 == p3) { p1p3f = 0; }
193
+ }
194
+
195
+ bz1x = p1.x + p0p2f*(p2.x - p0.x)/p0p2;
196
+ bz1y = p1.y + p0p2f*(p2.y - p0.y)/p0p2;
197
+ bz2x = p2.x - p1p3f*(p3.x - p1.x)/p1p3;
198
+ bz2y = p2.y - p1p3f*(p3.y - p1.y)/p1p3;
199
+ }
200
+ return "C"+(bz1x+","+bz1y+" "+bz2x+","+bz2y+" "+p2.x+","+p2.y);
201
+ });
202
+ return p.join(" ");
203
+ },
204
+
205
+ getLabel: function(/*Number*/number, /*Boolean*/fixed, /*Number*/precision){
206
+ return sc.doIfLoaded("dojo/number", function(numberLib){
207
+ return (fixed ? numberLib.format(number, {places : precision}) :
208
+ numberLib.format(number)) || "";
209
+ }, function(){
210
+ return fixed ? number.toFixed(precision) : number.toString();
211
+ });
212
+ }
213
+ });
214
+ });