@datagrok/helm 2.3.2 → 2.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -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 +211 -69
- package/src/package.ts +10 -71
- package/src/tests/findMonomers-tests.ts +2 -1
- package/src/tests/get-monomer-tests.ts +1 -49
- package/src/tests/helm-input-tests.ts +31 -20
- 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,124 @@
|
|
|
1
|
+
define("dojox/charting/action2d/MoveSlice", ["dojo/_base/connect", "dojo/_base/declare", "dojo/_base/array", "./PlotAction", "dojo/fx/easing", "dojox/gfx/matrix",
|
|
2
|
+
"dojox/gfx/fx", "dojox/lang/functional", "dojox/lang/functional/scan", "dojox/lang/functional/fold"],
|
|
3
|
+
function(hub, declare, array, PlotAction, dfe, m, gf, df){
|
|
4
|
+
|
|
5
|
+
/*=====
|
|
6
|
+
var __MoveSliceCtorArgs = {
|
|
7
|
+
// summary:
|
|
8
|
+
// Additional arguments for move slice actions.
|
|
9
|
+
// duration: Number?
|
|
10
|
+
// The amount of time in milliseconds for an animation to last. Default is 400.
|
|
11
|
+
// easing: dojo/fx/easing/*?
|
|
12
|
+
// An easing object (see dojo.fx.easing) for use in an animation. The
|
|
13
|
+
// default is dojo.fx.easing.backOut.
|
|
14
|
+
// scale: Number?
|
|
15
|
+
// The amount to scale the pie slice. Default is 1.05.
|
|
16
|
+
// shift: Number?
|
|
17
|
+
// The amount in pixels to shift the pie slice. Default is 7.
|
|
18
|
+
};
|
|
19
|
+
=====*/
|
|
20
|
+
|
|
21
|
+
var DEFAULT_SCALE = 1.05,
|
|
22
|
+
DEFAULT_SHIFT = 7; // px
|
|
23
|
+
|
|
24
|
+
return declare("dojox.charting.action2d.MoveSlice", PlotAction, {
|
|
25
|
+
// summary:
|
|
26
|
+
// Create an action for a pie chart that moves and scales a pie slice.
|
|
27
|
+
|
|
28
|
+
// the data description block for the widget parser
|
|
29
|
+
defaultParams: {
|
|
30
|
+
duration: 400, // duration of the action in ms
|
|
31
|
+
easing: dfe.backOut, // easing for the action
|
|
32
|
+
scale: DEFAULT_SCALE, // scale of magnification
|
|
33
|
+
shift: DEFAULT_SHIFT // shift of the slice
|
|
34
|
+
},
|
|
35
|
+
optionalParams: {}, // no optional parameters
|
|
36
|
+
|
|
37
|
+
constructor: function(chart, plot, kwArgs){
|
|
38
|
+
// summary:
|
|
39
|
+
// Create the slice moving action and connect it to the plot.
|
|
40
|
+
// chart: dojox/charting/Chart
|
|
41
|
+
// The chart this action belongs to.
|
|
42
|
+
// plot: String?
|
|
43
|
+
// The plot this action is attached to. If not passed, "default" is assumed.
|
|
44
|
+
// kwArgs: __MoveSliceCtorArgs?
|
|
45
|
+
// Optional keyword arguments object for setting parameters.
|
|
46
|
+
if(!kwArgs){ kwArgs = {}; }
|
|
47
|
+
this.scale = typeof kwArgs.scale == "number" ? kwArgs.scale : DEFAULT_SCALE;
|
|
48
|
+
this.shift = typeof kwArgs.shift == "number" ? kwArgs.shift : DEFAULT_SHIFT;
|
|
49
|
+
|
|
50
|
+
this.connect();
|
|
51
|
+
},
|
|
52
|
+
|
|
53
|
+
process: function(o){
|
|
54
|
+
// summary:
|
|
55
|
+
// Process the action on the given object.
|
|
56
|
+
// o: dojox/gfx/shape.Shape
|
|
57
|
+
// The object on which to process the slice moving action.
|
|
58
|
+
if(!o.shape || o.element != "slice" || !(o.type in this.overOutEvents)){ return; }
|
|
59
|
+
|
|
60
|
+
if(!this.angles){
|
|
61
|
+
// calculate the running total of slice angles
|
|
62
|
+
var startAngle = m._degToRad(o.plot.opt.startAngle);
|
|
63
|
+
if(typeof o.run.data[0] == "number"){
|
|
64
|
+
this.angles = df.map(df.scanl(o.run.data, "+", 0),
|
|
65
|
+
"* 2 * Math.PI / this", df.foldl(o.run.data, "+", 0));
|
|
66
|
+
}else{
|
|
67
|
+
this.angles = df.map(df.scanl(o.run.data, "a + b.y", 0),
|
|
68
|
+
"* 2 * Math.PI / this", df.foldl(o.run.data, "a + b.y", 0));
|
|
69
|
+
}
|
|
70
|
+
this.angles = array.map(this.angles, function(item){
|
|
71
|
+
return item + startAngle;
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
var index = o.index, anim, startScale, endScale, startOffset, endOffset,
|
|
76
|
+
angle = (this.angles[index] + this.angles[index + 1]) / 2,
|
|
77
|
+
rotateTo0 = m.rotateAt(-angle, o.cx, o.cy),
|
|
78
|
+
rotateBack = m.rotateAt( angle, o.cx, o.cy);
|
|
79
|
+
|
|
80
|
+
anim = this.anim[index];
|
|
81
|
+
|
|
82
|
+
if(anim){
|
|
83
|
+
anim.action.stop(true);
|
|
84
|
+
}else{
|
|
85
|
+
this.anim[index] = anim = {};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
if(o.type == "onmouseover"){
|
|
89
|
+
startOffset = 0;
|
|
90
|
+
endOffset = this.shift;
|
|
91
|
+
startScale = 1;
|
|
92
|
+
endScale = this.scale;
|
|
93
|
+
}else{
|
|
94
|
+
startOffset = this.shift;
|
|
95
|
+
endOffset = 0;
|
|
96
|
+
startScale = this.scale;
|
|
97
|
+
endScale = 1;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
anim.action = gf.animateTransform({
|
|
101
|
+
shape: o.shape,
|
|
102
|
+
duration: this.duration,
|
|
103
|
+
easing: this.easing,
|
|
104
|
+
transform: [
|
|
105
|
+
rotateBack,
|
|
106
|
+
{name: "translate", start: [startOffset, 0], end: [endOffset, 0]},
|
|
107
|
+
{name: "scaleAt", start: [startScale, o.cx, o.cy], end: [endScale, o.cx, o.cy]},
|
|
108
|
+
rotateTo0
|
|
109
|
+
]
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
if(o.type == "onmouseout"){
|
|
113
|
+
hub.connect(anim.action, "onEnd", this, function(){
|
|
114
|
+
delete this.anim[index];
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
anim.action.play();
|
|
118
|
+
},
|
|
119
|
+
|
|
120
|
+
reset: function(){
|
|
121
|
+
delete this.angles;
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
});
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/charting/action2d/PlotAction",["dojo/_base/connect","dojo/_base/declare","./Base","dojo/fx/easing","dojox/lang/functional"],function(_1,_2,_3,_4,df){
|
|
3
|
+
var _5=400,_6=_4.backOut;
|
|
4
|
+
return _2("dojox.charting.action2d.PlotAction",_3,{overOutEvents:{onmouseover:1,onmouseout:1},constructor:function(_7,_8,_9){
|
|
5
|
+
this.anim={};
|
|
6
|
+
if(!_9){
|
|
7
|
+
_9={};
|
|
8
|
+
}
|
|
9
|
+
this.duration=_9.duration?_9.duration:_5;
|
|
10
|
+
this.easing=_9.easing?_9.easing:_6;
|
|
11
|
+
},connect:function(){
|
|
12
|
+
this.handle=this.chart.connectToPlot(this.plot.name,this,"process");
|
|
13
|
+
},disconnect:function(){
|
|
14
|
+
if(this.handle){
|
|
15
|
+
_1.disconnect(this.handle);
|
|
16
|
+
this.handle=null;
|
|
17
|
+
}
|
|
18
|
+
},reset:function(){
|
|
19
|
+
},destroy:function(){
|
|
20
|
+
this.inherited(arguments);
|
|
21
|
+
df.forIn(this.anim,function(o){
|
|
22
|
+
df.forIn(o,function(_a){
|
|
23
|
+
_a.action.stop(true);
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
this.anim={};
|
|
27
|
+
}});
|
|
28
|
+
});
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
define("dojox/charting/action2d/PlotAction", ["dojo/_base/connect", "dojo/_base/declare", "./Base", "dojo/fx/easing", "dojox/lang/functional"],
|
|
2
|
+
function(hub, declare, Base, dfe, df){
|
|
3
|
+
|
|
4
|
+
/*=====
|
|
5
|
+
var __PlotActionCtorArgs = {
|
|
6
|
+
// summary:
|
|
7
|
+
// The base keyword arguments object for creating an action2d.
|
|
8
|
+
// duration: Number?
|
|
9
|
+
// The amount of time in milliseconds for an animation to last. Default is 400.
|
|
10
|
+
// easing: dojo/fx/easing/*?
|
|
11
|
+
// An easing object (see dojo.fx.easing) for use in an animation. The
|
|
12
|
+
// default is dojo.fx.easing.backOut.
|
|
13
|
+
};
|
|
14
|
+
=====*/
|
|
15
|
+
|
|
16
|
+
var DEFAULT_DURATION = 400, // ms
|
|
17
|
+
DEFAULT_EASING = dfe.backOut;
|
|
18
|
+
|
|
19
|
+
return declare("dojox.charting.action2d.PlotAction", Base, {
|
|
20
|
+
// summary:
|
|
21
|
+
// Base action class for plot actions.
|
|
22
|
+
|
|
23
|
+
overOutEvents: {onmouseover: 1, onmouseout: 1},
|
|
24
|
+
|
|
25
|
+
constructor: function(chart, plot, kwargs){
|
|
26
|
+
// summary:
|
|
27
|
+
// Create a new base PlotAction.
|
|
28
|
+
// chart: dojox/charting/Chart
|
|
29
|
+
// The chart this action applies to.
|
|
30
|
+
// plot: String?
|
|
31
|
+
// The name of the plot this action belongs to. If none is passed "default" is assumed.
|
|
32
|
+
// kwargs: __PlotActionCtorArgs?
|
|
33
|
+
// Optional arguments for the action.
|
|
34
|
+
this.anim = {};
|
|
35
|
+
|
|
36
|
+
// process common optional named parameters
|
|
37
|
+
if(!kwargs){ kwargs = {}; }
|
|
38
|
+
this.duration = kwargs.duration ? kwargs.duration : DEFAULT_DURATION;
|
|
39
|
+
this.easing = kwargs.easing ? kwargs.easing : DEFAULT_EASING;
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
connect: function(){
|
|
43
|
+
// summary:
|
|
44
|
+
// Connect this action to the given plot.
|
|
45
|
+
this.handle = this.chart.connectToPlot(this.plot.name, this, "process");
|
|
46
|
+
},
|
|
47
|
+
|
|
48
|
+
disconnect: function(){
|
|
49
|
+
// summary:
|
|
50
|
+
// Disconnect this action from the given plot, if connected.
|
|
51
|
+
if(this.handle){
|
|
52
|
+
hub.disconnect(this.handle);
|
|
53
|
+
this.handle = null;
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
reset: function(){
|
|
58
|
+
// summary:
|
|
59
|
+
// Reset the action.
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
destroy: function(){
|
|
63
|
+
// summary:
|
|
64
|
+
// Do any cleanup needed when destroying parent elements.
|
|
65
|
+
this.inherited(arguments);
|
|
66
|
+
df.forIn(this.anim, function(o){
|
|
67
|
+
df.forIn(o, function(anim){
|
|
68
|
+
anim.action.stop(true);
|
|
69
|
+
});
|
|
70
|
+
});
|
|
71
|
+
this.anim = {};
|
|
72
|
+
}
|
|
73
|
+
});
|
|
74
|
+
});
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/charting/action2d/Tooltip",["dijit/Tooltip","dojo/_base/lang","dojo/_base/declare","dojo/_base/window","dojo/_base/connect","dojo/dom-style","./PlotAction","dojox/gfx/matrix","dojo/has","dojo/has!dojo-bidi?../bidi/action2d/Tooltip","dojox/lang/functional","dojox/lang/functional/scan","dojox/lang/functional/fold"],function(_1,_2,_3,_4,_5,_6,_7,m,_8,_9,df){
|
|
3
|
+
var _a=function(o,_b){
|
|
4
|
+
var t=o.run&&o.run.data&&o.run.data[o.index];
|
|
5
|
+
if(t&&typeof t!="number"&&(t.tooltip||t.text)){
|
|
6
|
+
return t.tooltip||t.text;
|
|
7
|
+
}
|
|
8
|
+
if(_b.tooltipFunc){
|
|
9
|
+
return _b.tooltipFunc(o);
|
|
10
|
+
}else{
|
|
11
|
+
return o.y;
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
var _c=Math.PI/4,_d=Math.PI/2;
|
|
15
|
+
var _e=_3(_8("dojo-bidi")?"dojox.charting.action2d.NonBidiTooltip":"dojox.charting.action2d.Tooltip",_7,{defaultParams:{text:_a,mouseOver:true},optionalParams:{},constructor:function(_f,_10,_11){
|
|
16
|
+
this.text=_11&&_11.text?_11.text:_a;
|
|
17
|
+
this.mouseOver=_11&&_11.mouseOver!=undefined?_11.mouseOver:true;
|
|
18
|
+
this.connect();
|
|
19
|
+
},process:function(o){
|
|
20
|
+
if(o.type==="onplotreset"||o.type==="onmouseout"){
|
|
21
|
+
_1.hide(this.aroundRect);
|
|
22
|
+
this.aroundRect=null;
|
|
23
|
+
if(o.type==="onplotreset"){
|
|
24
|
+
delete this.angles;
|
|
25
|
+
}
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
if(!o.shape||(this.mouseOver&&o.type!=="onmouseover")||(!this.mouseOver&&o.type!=="onclick")){
|
|
29
|
+
return;
|
|
30
|
+
}
|
|
31
|
+
var _12={type:"rect"},_13=["after-centered","before-centered"];
|
|
32
|
+
switch(o.element){
|
|
33
|
+
case "marker":
|
|
34
|
+
_12.x=o.cx;
|
|
35
|
+
_12.y=o.cy;
|
|
36
|
+
_12.w=_12.h=1;
|
|
37
|
+
break;
|
|
38
|
+
case "circle":
|
|
39
|
+
_12.x=o.cx-o.cr;
|
|
40
|
+
_12.y=o.cy-o.cr;
|
|
41
|
+
_12.w=_12.h=2*o.cr;
|
|
42
|
+
break;
|
|
43
|
+
case "spider_circle":
|
|
44
|
+
_12.x=o.cx;
|
|
45
|
+
_12.y=o.cy;
|
|
46
|
+
_12.w=_12.h=1;
|
|
47
|
+
break;
|
|
48
|
+
case "spider_plot":
|
|
49
|
+
return;
|
|
50
|
+
case "column":
|
|
51
|
+
_13=["above-centered","below-centered"];
|
|
52
|
+
case "bar":
|
|
53
|
+
_12=_2.clone(o.shape.getShape());
|
|
54
|
+
_12.w=_12.width;
|
|
55
|
+
_12.h=_12.height;
|
|
56
|
+
break;
|
|
57
|
+
case "candlestick":
|
|
58
|
+
_12.x=o.x;
|
|
59
|
+
_12.y=o.y;
|
|
60
|
+
_12.w=o.width;
|
|
61
|
+
_12.h=o.height;
|
|
62
|
+
break;
|
|
63
|
+
default:
|
|
64
|
+
if(!this.angles){
|
|
65
|
+
var _14=typeof o.run.data[0]=="number"?df.map(o.run.data,"x ? Math.max(x, 0) : 0"):df.map(o.run.data,"x ? Math.max(x.y, 0) : 0");
|
|
66
|
+
this.angles=df.map(df.scanl(_14,"+",0),"* 2 * Math.PI / this",df.foldl(_14,"+",0));
|
|
67
|
+
}
|
|
68
|
+
var _15=m._degToRad(o.plot.opt.startAngle),_16=(this.angles[o.index]+this.angles[o.index+1])/2+_15;
|
|
69
|
+
_12.x=o.cx+o.cr*Math.cos(_16);
|
|
70
|
+
_12.y=o.cy+o.cr*Math.sin(_16);
|
|
71
|
+
_12.w=_12.h=1;
|
|
72
|
+
if(_15&&(_16<0||_16>2*Math.PI)){
|
|
73
|
+
_16=Math.abs(2*Math.PI-Math.abs(_16));
|
|
74
|
+
}
|
|
75
|
+
if(_16<_c){
|
|
76
|
+
}else{
|
|
77
|
+
if(_16<_d+_c){
|
|
78
|
+
_13=["below-centered","above-centered"];
|
|
79
|
+
}else{
|
|
80
|
+
if(_16<Math.PI+_c){
|
|
81
|
+
_13=["before-centered","after-centered"];
|
|
82
|
+
}else{
|
|
83
|
+
if(_16<2*Math.PI-_c){
|
|
84
|
+
_13=["above-centered","below-centered"];
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
break;
|
|
90
|
+
}
|
|
91
|
+
if(_8("dojo-bidi")){
|
|
92
|
+
this._recheckPosition(o,_12,_13);
|
|
93
|
+
}
|
|
94
|
+
var lt=this.chart.getCoords();
|
|
95
|
+
_12.x+=lt.x;
|
|
96
|
+
_12.y+=lt.y;
|
|
97
|
+
_12.x=Math.round(_12.x);
|
|
98
|
+
_12.y=Math.round(_12.y);
|
|
99
|
+
_12.w=Math.ceil(_12.w);
|
|
100
|
+
_12.h=Math.ceil(_12.h);
|
|
101
|
+
this.aroundRect=_12;
|
|
102
|
+
var _17=this.text(o,this.plot);
|
|
103
|
+
if(_17){
|
|
104
|
+
_1.show(this._format(_17),this.aroundRect,_13);
|
|
105
|
+
}
|
|
106
|
+
if(!this.mouseOver){
|
|
107
|
+
this._handle=_5.connect(_4.doc,"onclick",this,"onClick");
|
|
108
|
+
}
|
|
109
|
+
},onClick:function(){
|
|
110
|
+
this.process({type:"onmouseout"});
|
|
111
|
+
},_recheckPosition:function(obj,_18,_19){
|
|
112
|
+
},_format:function(_1a){
|
|
113
|
+
return _1a;
|
|
114
|
+
}});
|
|
115
|
+
return _8("dojo-bidi")?_3("dojox.charting.action2d.Tooltip",[_e,_9]):_e;
|
|
116
|
+
});
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
define("dojox/charting/action2d/Tooltip", ["dijit/Tooltip", "dojo/_base/lang", "dojo/_base/declare", "dojo/_base/window", "dojo/_base/connect", "dojo/dom-style",
|
|
2
|
+
"./PlotAction", "dojox/gfx/matrix", "dojo/has", "dojo/has!dojo-bidi?../bidi/action2d/Tooltip",
|
|
3
|
+
"dojox/lang/functional", "dojox/lang/functional/scan", "dojox/lang/functional/fold"],
|
|
4
|
+
function(DijitTooltip, lang, declare, win, hub, domStyle, PlotAction, m, has, BidiTooltip, df){
|
|
5
|
+
|
|
6
|
+
/*=====
|
|
7
|
+
var __TooltipCtorArgs = {
|
|
8
|
+
// summary:
|
|
9
|
+
// Additional arguments for tooltip actions.
|
|
10
|
+
// duration: Number?
|
|
11
|
+
// The amount of time in milliseconds for an animation to last. Default is 400.
|
|
12
|
+
// easing: dojo/fx/easing/*?
|
|
13
|
+
// An easing object (see dojo.fx.easing) for use in an animation. The
|
|
14
|
+
// default is dojo.fx.easing.backOut.
|
|
15
|
+
// text: Function?
|
|
16
|
+
// The function that produces the text to be shown within a tooltip. By default this will be
|
|
17
|
+
// set by the plot in question, by returning the value of the element.
|
|
18
|
+
// mouseOver: Boolean?
|
|
19
|
+
// Whether the tooltip is enabled on mouse over or on mouse click / touch down. Default is true.
|
|
20
|
+
};
|
|
21
|
+
=====*/
|
|
22
|
+
|
|
23
|
+
var DEFAULT_TEXT = function(o, plot){
|
|
24
|
+
var t = o.run && o.run.data && o.run.data[o.index];
|
|
25
|
+
if(t && typeof t != "number" && (t.tooltip || t.text)){
|
|
26
|
+
return t.tooltip || t.text;
|
|
27
|
+
}
|
|
28
|
+
if(plot.tooltipFunc){
|
|
29
|
+
return plot.tooltipFunc(o);
|
|
30
|
+
}else{
|
|
31
|
+
return o.y;
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
var pi4 = Math.PI / 4, pi2 = Math.PI / 2;
|
|
36
|
+
|
|
37
|
+
var Tooltip = declare(has("dojo-bidi")? "dojox.charting.action2d.NonBidiTooltip" : "dojox.charting.action2d.Tooltip", PlotAction, {
|
|
38
|
+
// summary:
|
|
39
|
+
// Create an action on a plot where a tooltip is shown when hovering over an element.
|
|
40
|
+
|
|
41
|
+
// the data description block for the widget parser
|
|
42
|
+
defaultParams: {
|
|
43
|
+
text: DEFAULT_TEXT, // the function to produce a tooltip from the object
|
|
44
|
+
mouseOver: true
|
|
45
|
+
},
|
|
46
|
+
optionalParams: {}, // no optional parameters
|
|
47
|
+
|
|
48
|
+
constructor: function(chart, plot, kwArgs){
|
|
49
|
+
// summary:
|
|
50
|
+
// Create the tooltip action and connect it to the plot.
|
|
51
|
+
// chart: dojox/charting/Chart
|
|
52
|
+
// The chart this action belongs to.
|
|
53
|
+
// plot: String?
|
|
54
|
+
// The plot this action is attached to. If not passed, "default" is assumed.
|
|
55
|
+
// kwArgs: __TooltipCtorArgs?
|
|
56
|
+
// Optional keyword arguments object for setting parameters.
|
|
57
|
+
this.text = kwArgs && kwArgs.text ? kwArgs.text : DEFAULT_TEXT;
|
|
58
|
+
this.mouseOver = kwArgs && kwArgs.mouseOver != undefined ? kwArgs.mouseOver : true;
|
|
59
|
+
this.connect();
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
process: function(o){
|
|
63
|
+
// summary:
|
|
64
|
+
// Process the action on the given object.
|
|
65
|
+
// o: dojox/gfx/shape.Shape
|
|
66
|
+
// The object on which to process the highlighting action.
|
|
67
|
+
if(o.type === "onplotreset" || o.type === "onmouseout"){
|
|
68
|
+
DijitTooltip.hide(this.aroundRect);
|
|
69
|
+
this.aroundRect = null;
|
|
70
|
+
if(o.type === "onplotreset"){
|
|
71
|
+
delete this.angles;
|
|
72
|
+
}
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
if(!o.shape || (this.mouseOver && o.type !== "onmouseover") || (!this.mouseOver && o.type !== "onclick")){ return; }
|
|
77
|
+
|
|
78
|
+
// calculate relative coordinates and the position
|
|
79
|
+
var aroundRect = {type: "rect"}, position = ["after-centered", "before-centered"];
|
|
80
|
+
switch(o.element){
|
|
81
|
+
case "marker":
|
|
82
|
+
aroundRect.x = o.cx;
|
|
83
|
+
aroundRect.y = o.cy;
|
|
84
|
+
aroundRect.w = aroundRect.h = 1;
|
|
85
|
+
break;
|
|
86
|
+
case "circle":
|
|
87
|
+
aroundRect.x = o.cx - o.cr;
|
|
88
|
+
aroundRect.y = o.cy - o.cr;
|
|
89
|
+
aroundRect.w = aroundRect.h = 2 * o.cr;
|
|
90
|
+
break;
|
|
91
|
+
case "spider_circle":
|
|
92
|
+
aroundRect.x = o.cx;
|
|
93
|
+
aroundRect.y = o.cy ;
|
|
94
|
+
aroundRect.w = aroundRect.h = 1;
|
|
95
|
+
break;
|
|
96
|
+
case "spider_plot":
|
|
97
|
+
return;
|
|
98
|
+
case "column":
|
|
99
|
+
position = ["above-centered", "below-centered"];
|
|
100
|
+
// intentional fall down
|
|
101
|
+
case "bar":
|
|
102
|
+
aroundRect = lang.clone(o.shape.getShape());
|
|
103
|
+
aroundRect.w = aroundRect.width;
|
|
104
|
+
aroundRect.h = aroundRect.height;
|
|
105
|
+
break;
|
|
106
|
+
case "candlestick":
|
|
107
|
+
aroundRect.x = o.x;
|
|
108
|
+
aroundRect.y = o.y;
|
|
109
|
+
aroundRect.w = o.width;
|
|
110
|
+
aroundRect.h = o.height;
|
|
111
|
+
break;
|
|
112
|
+
default:
|
|
113
|
+
//case "slice":
|
|
114
|
+
if(!this.angles){
|
|
115
|
+
// calculate the running total of slice angles
|
|
116
|
+
var filteredRun = typeof o.run.data[0] == "number" ?
|
|
117
|
+
df.map(o.run.data, "x ? Math.max(x, 0) : 0") : df.map(o.run.data, "x ? Math.max(x.y, 0) : 0");
|
|
118
|
+
this.angles = df.map(df.scanl(filteredRun, "+", 0),
|
|
119
|
+
"* 2 * Math.PI / this", df.foldl(filteredRun, "+", 0));
|
|
120
|
+
}
|
|
121
|
+
var startAngle = m._degToRad(o.plot.opt.startAngle),
|
|
122
|
+
angle = (this.angles[o.index] + this.angles[o.index + 1]) / 2 + startAngle;
|
|
123
|
+
aroundRect.x = o.cx + o.cr * Math.cos(angle);
|
|
124
|
+
aroundRect.y = o.cy + o.cr * Math.sin(angle);
|
|
125
|
+
aroundRect.w = aroundRect.h = 1;
|
|
126
|
+
// depending on startAngle we might go out of the 0-2*PI range, normalize that
|
|
127
|
+
if(startAngle && (angle < 0 || angle > 2 * Math.PI)){
|
|
128
|
+
angle = Math.abs(2 * Math.PI - Math.abs(angle));
|
|
129
|
+
}
|
|
130
|
+
// calculate the position
|
|
131
|
+
if(angle < pi4){
|
|
132
|
+
// do nothing: the position is right
|
|
133
|
+
}else if(angle < pi2 + pi4){
|
|
134
|
+
position = ["below-centered", "above-centered"];
|
|
135
|
+
}else if(angle < Math.PI + pi4){
|
|
136
|
+
position = ["before-centered", "after-centered"];
|
|
137
|
+
}else if(angle < 2 * Math.PI - pi4){
|
|
138
|
+
position = ["above-centered", "below-centered"];
|
|
139
|
+
}
|
|
140
|
+
/*
|
|
141
|
+
else{
|
|
142
|
+
// do nothing: the position is right
|
|
143
|
+
}
|
|
144
|
+
*/
|
|
145
|
+
break;
|
|
146
|
+
}
|
|
147
|
+
if(has("dojo-bidi")){
|
|
148
|
+
this._recheckPosition(o,aroundRect,position);
|
|
149
|
+
}
|
|
150
|
+
// adjust relative coordinates to absolute, and remove fractions
|
|
151
|
+
var lt = this.chart.getCoords();
|
|
152
|
+
aroundRect.x += lt.x;
|
|
153
|
+
aroundRect.y += lt.y;
|
|
154
|
+
aroundRect.x = Math.round(aroundRect.x);
|
|
155
|
+
aroundRect.y = Math.round(aroundRect.y);
|
|
156
|
+
aroundRect.w = Math.ceil(aroundRect.w);
|
|
157
|
+
aroundRect.h = Math.ceil(aroundRect.h);
|
|
158
|
+
this.aroundRect = aroundRect;
|
|
159
|
+
|
|
160
|
+
var tooltipText = this.text(o, this.plot);
|
|
161
|
+
if(tooltipText){
|
|
162
|
+
DijitTooltip.show(this._format(tooltipText), this.aroundRect, position);
|
|
163
|
+
}
|
|
164
|
+
if(!this.mouseOver){
|
|
165
|
+
this._handle = hub.connect(win.doc, "onclick", this, "onClick");
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
onClick: function(){
|
|
169
|
+
this.process({ type: "onmouseout"});
|
|
170
|
+
},
|
|
171
|
+
_recheckPosition: function(obj,rect,position){
|
|
172
|
+
},
|
|
173
|
+
_format: function(tooltipText){
|
|
174
|
+
return tooltipText;
|
|
175
|
+
}
|
|
176
|
+
});
|
|
177
|
+
return has("dojo-bidi")? declare("dojox.charting.action2d.Tooltip", [Tooltip, BidiTooltip]) : Tooltip;
|
|
178
|
+
});
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/charting/axis2d/Base",["dojo/_base/declare","../Element"],function(_1,_2){
|
|
3
|
+
return _1("dojox.charting.axis2d.Base",_2,{constructor:function(_3,_4){
|
|
4
|
+
this.vertical=_4&&_4.vertical;
|
|
5
|
+
this.opt={};
|
|
6
|
+
this.opt.min=_4&&_4.min;
|
|
7
|
+
this.opt.max=_4&&_4.max;
|
|
8
|
+
},clear:function(){
|
|
9
|
+
return this;
|
|
10
|
+
},initialized:function(){
|
|
11
|
+
return false;
|
|
12
|
+
},calculate:function(_5,_6,_7){
|
|
13
|
+
return this;
|
|
14
|
+
},getScaler:function(){
|
|
15
|
+
return null;
|
|
16
|
+
},getTicks:function(){
|
|
17
|
+
return null;
|
|
18
|
+
},getOffsets:function(){
|
|
19
|
+
return {l:0,r:0,t:0,b:0};
|
|
20
|
+
},render:function(_8,_9){
|
|
21
|
+
this.dirty=false;
|
|
22
|
+
return this;
|
|
23
|
+
}});
|
|
24
|
+
});
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
define("dojox/charting/axis2d/Base", ["dojo/_base/declare", "../Element"],
|
|
2
|
+
function(declare, Element){
|
|
3
|
+
/*=====
|
|
4
|
+
var __BaseAxisCtorArgs = {
|
|
5
|
+
// summary:
|
|
6
|
+
// Optional arguments used in the definition of an invisible axis.
|
|
7
|
+
// vertical: Boolean?
|
|
8
|
+
// A flag that says whether an axis is vertical (i.e. y axis) or horizontal. Default is false (horizontal).
|
|
9
|
+
// min: Number?
|
|
10
|
+
// The smallest value on an axis. Default is 0.
|
|
11
|
+
// max: Number?
|
|
12
|
+
// The largest value on an axis. Default is 1.
|
|
13
|
+
};
|
|
14
|
+
=====*/
|
|
15
|
+
return declare("dojox.charting.axis2d.Base", Element, {
|
|
16
|
+
// summary:
|
|
17
|
+
// The base class for any axis. This is more of an interface/API
|
|
18
|
+
// definition than anything else; see dojox.charting.axis2d.Default
|
|
19
|
+
// for more details.
|
|
20
|
+
constructor: function(chart, kwArgs){
|
|
21
|
+
// summary:
|
|
22
|
+
// Return a new base axis.
|
|
23
|
+
// chart: dojox/charting/Chart
|
|
24
|
+
// The chart this axis belongs to.
|
|
25
|
+
// kwArgs: __BaseAxisCtorArgs?
|
|
26
|
+
// An optional arguments object to define the axis parameters.
|
|
27
|
+
this.vertical = kwArgs && kwArgs.vertical;
|
|
28
|
+
this.opt = {};
|
|
29
|
+
this.opt.min = kwArgs && kwArgs.min;
|
|
30
|
+
this.opt.max = kwArgs && kwArgs.max;
|
|
31
|
+
},
|
|
32
|
+
clear: function(){
|
|
33
|
+
// summary:
|
|
34
|
+
// Stub function for clearing the axis.
|
|
35
|
+
// returns: dojox/charting/axis2d/Base
|
|
36
|
+
// A reference to the axis for functional chaining.
|
|
37
|
+
return this; // dojox/charting/axis2d/Base
|
|
38
|
+
},
|
|
39
|
+
initialized: function(){
|
|
40
|
+
// summary:
|
|
41
|
+
// Return a flag as to whether or not this axis has been initialized.
|
|
42
|
+
// returns: Boolean
|
|
43
|
+
// If the axis is initialized or not.
|
|
44
|
+
return false; // Boolean
|
|
45
|
+
},
|
|
46
|
+
calculate: function(min, max, span){
|
|
47
|
+
// summary:
|
|
48
|
+
// Stub function to run the calculations needed for drawing this axis.
|
|
49
|
+
// returns: dojox/charting/axis2d/Base
|
|
50
|
+
// A reference to the axis for functional chaining.
|
|
51
|
+
return this; // dojox/charting/axis2d/Base
|
|
52
|
+
},
|
|
53
|
+
getScaler: function(){
|
|
54
|
+
// summary:
|
|
55
|
+
// A stub function to return the scaler object created during calculate.
|
|
56
|
+
// returns: Object
|
|
57
|
+
// The scaler object (see dojox.charting.scaler.linear for more information)
|
|
58
|
+
return null; // Object
|
|
59
|
+
},
|
|
60
|
+
getTicks: function(){
|
|
61
|
+
// summary:
|
|
62
|
+
// A stub function to return the object that helps define how ticks are rendered.
|
|
63
|
+
// returns: Object
|
|
64
|
+
// The ticks object.
|
|
65
|
+
return null; // Object
|
|
66
|
+
},
|
|
67
|
+
getOffsets: function(){
|
|
68
|
+
// summary:
|
|
69
|
+
// A stub function to return any offsets needed for axis and series rendering.
|
|
70
|
+
// returns: Object
|
|
71
|
+
// An object of the form { l, r, t, b }.
|
|
72
|
+
return {l: 0, r: 0, t: 0, b: 0}; // Object
|
|
73
|
+
},
|
|
74
|
+
render: function(dim, offsets){
|
|
75
|
+
// summary:
|
|
76
|
+
// Stub function to render this axis.
|
|
77
|
+
// returns: dojox/charting/axis2d/Base
|
|
78
|
+
// A reference to the axis for functional chaining.
|
|
79
|
+
this.dirty = false;
|
|
80
|
+
return this; // dojox/charting/axis2d/Base
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
});
|