@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.
- package/CHANGELOG.md +12 -0
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +4 -4
- package/src/cell-renderer.ts +5 -4
- package/src/helm-helper.ts +6 -6
- package/src/helm-monomer-placer.ts +1 -1
- package/src/helm-web-editor.ts +5 -5
- package/src/package-test.ts +0 -1
- package/src/package-utils.ts +228 -69
- package/src/package.ts +7 -69
- package/src/tests/findMonomers-tests.ts +2 -1
- package/src/tests/get-monomer-tests.ts +1 -49
- package/src/utils/get-monomer.ts +49 -1
- package/src/utils/helm-grid-cell-renderer.ts +8 -9
- package/src/utils/index.ts +2 -3
- package/src/widgets/helm-input.ts +4 -4
- package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
- package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
- package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
- package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
- package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
- package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
- package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
- package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
- package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
- package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
- package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
- package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
- package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
- package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
- package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
- package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
- package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
- package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
- package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
- package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
- package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
- package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
- package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
- package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
- package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
- package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
- package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
- package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
- package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
- package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
- package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
- package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
- package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
- package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
- package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
- package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
- package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
- package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
- package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
- package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
- package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
- package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
- package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
- package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
- package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
- package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
- package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
- package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
- package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
- package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
- package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
- package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
- package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
- package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
- package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
- package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
- package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
- package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
- package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
- package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
- package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
- package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
- package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
- package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
- package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
- package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
- package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
- package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
- package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
- package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
- package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
- package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
- package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
- package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
- package/vendor/dojo-1.10.10/dijit/main.js +4 -0
- package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
- package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
- package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
- package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
- package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
- package/vendor/dojo-1.10.10/dijit/place.js +142 -0
- package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
- package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
- package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
- package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
- package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
- package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
- package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
- package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
- package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
- package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
- package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
- package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
- package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
- package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
- package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
- package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
- package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
- package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
- package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
- package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
- package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
- package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
- package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
- package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
- package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
- package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
- package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
- package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
- package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
- package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
- package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
- package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
- package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
- package/vendor/dojo-1.10.10/dojo/html.js +161 -0
- package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
- package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
- package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
- package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
- package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
- package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
- package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
- package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
- package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
- package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
- package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
- package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
- package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
- package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
- package/vendor/dojo-1.10.10/dojo/require.js +11 -0
- package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
- package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
- package/vendor/dojo-1.10.10/dojo/string.js +67 -0
- package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
- package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
- package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
- package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
- package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
- package/vendor/dojo-1.10.10/dojo/window.js +141 -0
- package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
- package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
- package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
- package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
- package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
- package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
- package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
- package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
- package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
- package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
- package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
- package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
- package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
- package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
- package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
- package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
- package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
- package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
- package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
- package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
- package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
- package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
- package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
- package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
- package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
- package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
- package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
- package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
- package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
- package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
- package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
- package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
- package/vendor/dojo-1.10.10/dojox/main.js +4 -0
- package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
- package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
- package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
- package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
- package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
- 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,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
|
+
});
|