@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,141 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/charting/plot2d/Bubble",["dojo/_base/lang","dojo/_base/declare","dojo/_base/array","dojo/has","./CartesianBase","./_PlotEvents","./common","dojox/lang/functional","dojox/lang/functional/reversed","dojox/lang/utils","dojox/gfx/fx"],function(_1,_2,_3,_4,_5,_6,dc,df,_7,du,fx){
|
|
3
|
+
var _8=_7.lambda("item.purgeGroup()");
|
|
4
|
+
return _2("dojox.charting.plot2d.Bubble",[_5,_6],{defaultParams:{animate:null},optionalParams:{stroke:{},outline:{},shadow:{},fill:{},filter:{},styleFunc:null,font:"",fontColor:"",labelFunc:null},constructor:function(_9,_a){
|
|
5
|
+
this.opt=_1.clone(_1.mixin(this.opt,this.defaultParams));
|
|
6
|
+
du.updateWithObject(this.opt,_a);
|
|
7
|
+
du.updateWithPattern(this.opt,_a,this.optionalParams);
|
|
8
|
+
if(!this.opt.labelFunc){
|
|
9
|
+
this.opt.labelFunc=function(_b,_c,_d){
|
|
10
|
+
return this._getLabel(_b.size,_c,_d);
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
this.animate=this.opt.animate;
|
|
14
|
+
},render:function(_e,_f){
|
|
15
|
+
var s;
|
|
16
|
+
if(this.zoom&&!this.isDataDirty()){
|
|
17
|
+
return this.performZoom(_e,_f);
|
|
18
|
+
}
|
|
19
|
+
this.resetEvents();
|
|
20
|
+
this.dirty=this.isDirty();
|
|
21
|
+
if(this.dirty){
|
|
22
|
+
_3.forEach(this.series,_8);
|
|
23
|
+
this._eventSeries={};
|
|
24
|
+
this.cleanGroup();
|
|
25
|
+
s=this.getGroup();
|
|
26
|
+
df.forEachRev(this.series,function(_10){
|
|
27
|
+
_10.cleanGroup(s);
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
var t=this.chart.theme,ht=this._hScaler.scaler.getTransformerFromModel(this._hScaler),vt=this._vScaler.scaler.getTransformerFromModel(this._vScaler),_11=this.events();
|
|
31
|
+
for(var i=this.series.length-1;i>=0;--i){
|
|
32
|
+
var run=this.series[i];
|
|
33
|
+
if(!this.dirty&&!run.dirty){
|
|
34
|
+
t.skip();
|
|
35
|
+
this._reconnectEvents(run.name);
|
|
36
|
+
continue;
|
|
37
|
+
}
|
|
38
|
+
run.cleanGroup();
|
|
39
|
+
if(!run.data.length){
|
|
40
|
+
run.dirty=false;
|
|
41
|
+
t.skip();
|
|
42
|
+
continue;
|
|
43
|
+
}
|
|
44
|
+
if(typeof run.data[0]=="number"){
|
|
45
|
+
console.warn("dojox.charting.plot2d.Bubble: the data in the following series cannot be rendered as a bubble chart; ",run);
|
|
46
|
+
continue;
|
|
47
|
+
}
|
|
48
|
+
var _12=t.next("circle",[this.opt,run]),_13=_3.map(run.data,function(v){
|
|
49
|
+
return v?{x:ht(v.x)+_f.l,y:_e.height-_f.b-vt(v.y),radius:this._vScaler.bounds.scale*(v.size/2)}:null;
|
|
50
|
+
},this);
|
|
51
|
+
if(run.hidden){
|
|
52
|
+
run.dyn.fill=_12.series.fill;
|
|
53
|
+
run.dyn.stroke=_12.series.stroke;
|
|
54
|
+
continue;
|
|
55
|
+
}
|
|
56
|
+
s=run.group;
|
|
57
|
+
var _14=null,_15=null,_16=null,_17=this.opt.styleFunc;
|
|
58
|
+
var _18=function(_19){
|
|
59
|
+
if(_17){
|
|
60
|
+
return t.addMixin(_12,"circle",[_19,_17(_19)],true);
|
|
61
|
+
}
|
|
62
|
+
return t.addMixin(_12,"circle",_19,true);
|
|
63
|
+
};
|
|
64
|
+
if(_12.series.shadow){
|
|
65
|
+
_16=_3.map(_13,function(_1a,i){
|
|
66
|
+
if(_1a!==null){
|
|
67
|
+
var _1b=_18(run.data[i]),_1c=_1b.series.shadow;
|
|
68
|
+
var _1d=s.createCircle({cx:_1a.x+_1c.dx,cy:_1a.y+_1c.dy,r:_1a.radius}).setStroke(_1c).setFill(_1c.color);
|
|
69
|
+
if(this.animate){
|
|
70
|
+
this._animateBubble(_1d,_e.height-_f.b,_1a.radius);
|
|
71
|
+
}
|
|
72
|
+
return _1d;
|
|
73
|
+
}
|
|
74
|
+
return null;
|
|
75
|
+
},this);
|
|
76
|
+
if(_16.length){
|
|
77
|
+
run.dyn.shadow=_16[_16.length-1].getStroke();
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
if(_12.series.outline){
|
|
81
|
+
_15=_3.map(_13,function(_1e,i){
|
|
82
|
+
if(_1e!==null){
|
|
83
|
+
var _1f=_18(run.data[i]),_20=dc.makeStroke(_1f.series.outline);
|
|
84
|
+
_20.width=2*_20.width+_12.series.stroke.width;
|
|
85
|
+
var _21=s.createCircle({cx:_1e.x,cy:_1e.y,r:_1e.radius}).setStroke(_20);
|
|
86
|
+
if(this.animate){
|
|
87
|
+
this._animateBubble(_21,_e.height-_f.b,_1e.radius);
|
|
88
|
+
}
|
|
89
|
+
return _21;
|
|
90
|
+
}
|
|
91
|
+
return null;
|
|
92
|
+
},this);
|
|
93
|
+
if(_15.length){
|
|
94
|
+
run.dyn.outline=_15[_15.length-1].getStroke();
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
_14=_3.map(_13,function(_22,i){
|
|
98
|
+
if(_22!==null){
|
|
99
|
+
var _23=_18(run.data[i]),_24={x:_22.x-_22.radius,y:_22.y-_22.radius,width:2*_22.radius,height:2*_22.radius};
|
|
100
|
+
var _25=this._plotFill(_23.series.fill,_e,_f);
|
|
101
|
+
_25=this._shapeFill(_25,_24);
|
|
102
|
+
var _26=s.createCircle({cx:_22.x,cy:_22.y,r:_22.radius}).setFill(_25).setStroke(_23.series.stroke);
|
|
103
|
+
if(_26.setFilter&&_23.series.filter){
|
|
104
|
+
_26.setFilter(_23.series.filter);
|
|
105
|
+
}
|
|
106
|
+
if(this.animate){
|
|
107
|
+
this._animateBubble(_26,_e.height-_f.b,_22.radius);
|
|
108
|
+
}
|
|
109
|
+
this.createLabel(s,run.data[i],_24,_23);
|
|
110
|
+
return _26;
|
|
111
|
+
}
|
|
112
|
+
return null;
|
|
113
|
+
},this);
|
|
114
|
+
if(_14.length){
|
|
115
|
+
run.dyn.fill=_14[_14.length-1].getFill();
|
|
116
|
+
run.dyn.stroke=_14[_14.length-1].getStroke();
|
|
117
|
+
}
|
|
118
|
+
if(_11){
|
|
119
|
+
var _27=new Array(_14.length);
|
|
120
|
+
_3.forEach(_14,function(s,i){
|
|
121
|
+
if(s!==null){
|
|
122
|
+
var o={element:"circle",index:i,run:run,shape:s,outline:_15&&_15[i]||null,shadow:_16&&_16[i]||null,x:run.data[i].x,y:run.data[i].y,r:run.data[i].size/2,cx:_13[i].x,cy:_13[i].y,cr:_13[i].radius};
|
|
123
|
+
this._connectEvents(o);
|
|
124
|
+
_27[i]=o;
|
|
125
|
+
}
|
|
126
|
+
},this);
|
|
127
|
+
this._eventSeries[run.name]=_27;
|
|
128
|
+
}else{
|
|
129
|
+
delete this._eventSeries[run.name];
|
|
130
|
+
}
|
|
131
|
+
run.dirty=false;
|
|
132
|
+
}
|
|
133
|
+
this.dirty=false;
|
|
134
|
+
if(_4("dojo-bidi")){
|
|
135
|
+
this._checkOrientation(this.group,_e,_f);
|
|
136
|
+
}
|
|
137
|
+
return this;
|
|
138
|
+
},_animateBubble:function(_28,_29,_2a){
|
|
139
|
+
fx.animateTransform(_1.delegate({shape:_28,duration:1200,transform:[{name:"translate",start:[0,_29],end:[0,0]},{name:"scale",start:[0,1/_2a],end:[1,1]},{name:"original"}]},this.animate)).play();
|
|
140
|
+
}});
|
|
141
|
+
});
|
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
define("dojox/charting/plot2d/Bubble", ["dojo/_base/lang", "dojo/_base/declare", "dojo/_base/array", "dojo/has",
|
|
2
|
+
"./CartesianBase", "./_PlotEvents", "./common", "dojox/lang/functional", "dojox/lang/functional/reversed",
|
|
3
|
+
"dojox/lang/utils", "dojox/gfx/fx"],
|
|
4
|
+
function(lang, declare, arr, has, CartesianBase, _PlotEvents, dc, df, dfr, du, fx){
|
|
5
|
+
|
|
6
|
+
var purgeGroup = dfr.lambda("item.purgeGroup()");
|
|
7
|
+
|
|
8
|
+
return declare("dojox.charting.plot2d.Bubble", [CartesianBase, _PlotEvents], {
|
|
9
|
+
// summary:
|
|
10
|
+
// A plot representing bubbles. Note that data for Bubbles requires 3 parameters,
|
|
11
|
+
// in the form of: { x, y, size }, where size determines the size of the bubble.
|
|
12
|
+
defaultParams: {
|
|
13
|
+
animate: null // animate bars into place
|
|
14
|
+
},
|
|
15
|
+
optionalParams: {
|
|
16
|
+
// theme component
|
|
17
|
+
stroke: {},
|
|
18
|
+
outline: {},
|
|
19
|
+
shadow: {},
|
|
20
|
+
fill: {},
|
|
21
|
+
filter: {},
|
|
22
|
+
styleFunc: null,
|
|
23
|
+
font: "",
|
|
24
|
+
fontColor: "",
|
|
25
|
+
labelFunc: null
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
constructor: function(chart, kwArgs){
|
|
29
|
+
// summary:
|
|
30
|
+
// Create a plot of bubbles.
|
|
31
|
+
// chart: dojox/charting/Chart
|
|
32
|
+
// The chart this plot belongs to.
|
|
33
|
+
// kwArgs: dojox.charting.plot2d.__DefaultCtorArgs?
|
|
34
|
+
// Optional keyword arguments object to help define plot parameters.
|
|
35
|
+
this.opt = lang.clone(lang.mixin(this.opt, this.defaultParams));
|
|
36
|
+
du.updateWithObject(this.opt, kwArgs);
|
|
37
|
+
du.updateWithPattern(this.opt, kwArgs, this.optionalParams);
|
|
38
|
+
if(!this.opt.labelFunc){
|
|
39
|
+
this.opt.labelFunc = function(value, fixed, precision){
|
|
40
|
+
return this._getLabel(value.size, fixed, precision);
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
this.animate = this.opt.animate;
|
|
44
|
+
},
|
|
45
|
+
|
|
46
|
+
// override the render so that we are plotting only circles.
|
|
47
|
+
render: function(dim, offsets){
|
|
48
|
+
// summary:
|
|
49
|
+
// Run the calculations for any axes for this plot.
|
|
50
|
+
// dim: Object
|
|
51
|
+
// An object in the form of { width, height }
|
|
52
|
+
// offsets: Object
|
|
53
|
+
// An object of the form { l, r, t, b}.
|
|
54
|
+
// returns: dojox/charting/plot2d/Bubble
|
|
55
|
+
// A reference to this plot for functional chaining.
|
|
56
|
+
var s;
|
|
57
|
+
if(this.zoom && !this.isDataDirty()){
|
|
58
|
+
return this.performZoom(dim, offsets);
|
|
59
|
+
}
|
|
60
|
+
this.resetEvents();
|
|
61
|
+
this.dirty = this.isDirty();
|
|
62
|
+
if(this.dirty){
|
|
63
|
+
arr.forEach(this.series, purgeGroup);
|
|
64
|
+
this._eventSeries = {};
|
|
65
|
+
this.cleanGroup();
|
|
66
|
+
s = this.getGroup();
|
|
67
|
+
df.forEachRev(this.series, function(item){ item.cleanGroup(s); });
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
var t = this.chart.theme,
|
|
71
|
+
ht = this._hScaler.scaler.getTransformerFromModel(this._hScaler),
|
|
72
|
+
vt = this._vScaler.scaler.getTransformerFromModel(this._vScaler),
|
|
73
|
+
events = this.events();
|
|
74
|
+
|
|
75
|
+
for(var i = this.series.length - 1; i >= 0; --i){
|
|
76
|
+
var run = this.series[i];
|
|
77
|
+
if(!this.dirty && !run.dirty){
|
|
78
|
+
t.skip();
|
|
79
|
+
this._reconnectEvents(run.name);
|
|
80
|
+
continue;
|
|
81
|
+
}
|
|
82
|
+
run.cleanGroup();
|
|
83
|
+
if(!run.data.length){
|
|
84
|
+
run.dirty = false;
|
|
85
|
+
t.skip();
|
|
86
|
+
continue;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
if(typeof run.data[0] == "number"){
|
|
90
|
+
console.warn("dojox.charting.plot2d.Bubble: the data in the following series cannot be rendered as a bubble chart; ", run);
|
|
91
|
+
continue;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
var theme = t.next("circle", [this.opt, run]),
|
|
95
|
+
points = arr.map(run.data, function(v){
|
|
96
|
+
return v ? {
|
|
97
|
+
x: ht(v.x) + offsets.l,
|
|
98
|
+
y: dim.height - offsets.b - vt(v.y),
|
|
99
|
+
radius: this._vScaler.bounds.scale * (v.size / 2)
|
|
100
|
+
} : null;
|
|
101
|
+
}, this);
|
|
102
|
+
|
|
103
|
+
if(run.hidden){
|
|
104
|
+
run.dyn.fill = theme.series.fill;
|
|
105
|
+
run.dyn.stroke = theme.series.stroke;
|
|
106
|
+
continue;
|
|
107
|
+
}
|
|
108
|
+
s = run.group;
|
|
109
|
+
|
|
110
|
+
var frontCircles = null, outlineCircles = null, shadowCircles = null, styleFunc = this.opt.styleFunc;
|
|
111
|
+
|
|
112
|
+
var getFinalTheme = function(item){
|
|
113
|
+
if(styleFunc){
|
|
114
|
+
return t.addMixin(theme, "circle", [item, styleFunc(item)], true);
|
|
115
|
+
}
|
|
116
|
+
return t.addMixin(theme, "circle", item, true);
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
// make shadows if needed
|
|
120
|
+
if(theme.series.shadow){
|
|
121
|
+
shadowCircles = arr.map(points, function(item, i){
|
|
122
|
+
if(item !== null){
|
|
123
|
+
var finalTheme = getFinalTheme(run.data[i]),
|
|
124
|
+
shadow = finalTheme.series.shadow;
|
|
125
|
+
var shape = s.createCircle({
|
|
126
|
+
cx: item.x + shadow.dx, cy: item.y + shadow.dy, r: item.radius
|
|
127
|
+
}).setStroke(shadow).setFill(shadow.color);
|
|
128
|
+
if(this.animate){
|
|
129
|
+
this._animateBubble(shape, dim.height - offsets.b, item.radius);
|
|
130
|
+
}
|
|
131
|
+
return shape;
|
|
132
|
+
}
|
|
133
|
+
return null;
|
|
134
|
+
}, this);
|
|
135
|
+
if(shadowCircles.length){
|
|
136
|
+
run.dyn.shadow = shadowCircles[shadowCircles.length - 1].getStroke();
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// make outlines if needed
|
|
141
|
+
if(theme.series.outline){
|
|
142
|
+
outlineCircles = arr.map(points, function(item, i){
|
|
143
|
+
if(item !== null){
|
|
144
|
+
var finalTheme = getFinalTheme(run.data[i]),
|
|
145
|
+
outline = dc.makeStroke(finalTheme.series.outline);
|
|
146
|
+
outline.width = 2 * outline.width + theme.series.stroke.width;
|
|
147
|
+
var shape = s.createCircle({
|
|
148
|
+
cx: item.x, cy: item.y, r: item.radius
|
|
149
|
+
}).setStroke(outline);
|
|
150
|
+
if(this.animate){
|
|
151
|
+
this._animateBubble(shape, dim.height - offsets.b, item.radius);
|
|
152
|
+
}
|
|
153
|
+
return shape;
|
|
154
|
+
}
|
|
155
|
+
return null;
|
|
156
|
+
}, this);
|
|
157
|
+
if(outlineCircles.length){
|
|
158
|
+
run.dyn.outline = outlineCircles[outlineCircles.length - 1].getStroke();
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// run through the data and add the circles.
|
|
163
|
+
frontCircles = arr.map(points, function(item, i){
|
|
164
|
+
if(item !== null){
|
|
165
|
+
var finalTheme = getFinalTheme(run.data[i]),
|
|
166
|
+
rect = {
|
|
167
|
+
x: item.x - item.radius,
|
|
168
|
+
y: item.y - item.radius,
|
|
169
|
+
width: 2 * item.radius,
|
|
170
|
+
height: 2 * item.radius
|
|
171
|
+
};
|
|
172
|
+
var specialFill = this._plotFill(finalTheme.series.fill, dim, offsets);
|
|
173
|
+
specialFill = this._shapeFill(specialFill, rect);
|
|
174
|
+
var shape = s.createCircle({
|
|
175
|
+
cx: item.x, cy: item.y, r: item.radius
|
|
176
|
+
}).setFill(specialFill).setStroke(finalTheme.series.stroke);
|
|
177
|
+
if(shape.setFilter && finalTheme.series.filter){
|
|
178
|
+
shape.setFilter(finalTheme.series.filter);
|
|
179
|
+
}
|
|
180
|
+
if(this.animate){
|
|
181
|
+
this._animateBubble(shape, dim.height - offsets.b, item.radius);
|
|
182
|
+
}
|
|
183
|
+
this.createLabel(s, run.data[i], rect, finalTheme);
|
|
184
|
+
return shape;
|
|
185
|
+
}
|
|
186
|
+
return null;
|
|
187
|
+
}, this);
|
|
188
|
+
if(frontCircles.length){
|
|
189
|
+
run.dyn.fill = frontCircles[frontCircles.length - 1].getFill();
|
|
190
|
+
run.dyn.stroke = frontCircles[frontCircles.length - 1].getStroke();
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
if(events){
|
|
194
|
+
var eventSeries = new Array(frontCircles.length);
|
|
195
|
+
arr.forEach(frontCircles, function(s, i){
|
|
196
|
+
if(s !== null){
|
|
197
|
+
var o = {
|
|
198
|
+
element: "circle",
|
|
199
|
+
index: i,
|
|
200
|
+
run: run,
|
|
201
|
+
shape: s,
|
|
202
|
+
outline: outlineCircles && outlineCircles[i] || null,
|
|
203
|
+
shadow: shadowCircles && shadowCircles[i] || null,
|
|
204
|
+
x: run.data[i].x,
|
|
205
|
+
y: run.data[i].y,
|
|
206
|
+
r: run.data[i].size / 2,
|
|
207
|
+
cx: points[i].x,
|
|
208
|
+
cy: points[i].y,
|
|
209
|
+
cr: points[i].radius
|
|
210
|
+
};
|
|
211
|
+
this._connectEvents(o);
|
|
212
|
+
eventSeries[i] = o;
|
|
213
|
+
}
|
|
214
|
+
}, this);
|
|
215
|
+
this._eventSeries[run.name] = eventSeries;
|
|
216
|
+
}else{
|
|
217
|
+
delete this._eventSeries[run.name];
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
run.dirty = false;
|
|
221
|
+
}
|
|
222
|
+
this.dirty = false;
|
|
223
|
+
// chart mirroring starts
|
|
224
|
+
if(has("dojo-bidi")){
|
|
225
|
+
this._checkOrientation(this.group, dim, offsets);
|
|
226
|
+
}
|
|
227
|
+
// chart mirroring ends
|
|
228
|
+
return this; // dojox/charting/plot2d/Bubble
|
|
229
|
+
},
|
|
230
|
+
_animateBubble: function(shape, offset, size){
|
|
231
|
+
fx.animateTransform(lang.delegate({
|
|
232
|
+
shape: shape,
|
|
233
|
+
duration: 1200,
|
|
234
|
+
transform: [
|
|
235
|
+
{name: "translate", start: [0, offset], end: [0, 0]},
|
|
236
|
+
{name: "scale", start: [0, 1/size], end: [1, 1]},
|
|
237
|
+
{name: "original"}
|
|
238
|
+
]
|
|
239
|
+
}, this.animate)).play();
|
|
240
|
+
}
|
|
241
|
+
});
|
|
242
|
+
});
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/charting/plot2d/Candlesticks",["dojo/_base/lang","dojo/_base/declare","dojo/_base/array","dojo/has","./CartesianBase","./_PlotEvents","./common","dojox/lang/functional","dojox/lang/functional/reversed","dojox/lang/utils","dojox/gfx/fx"],function(_1,_2,_3,_4,_5,_6,dc,df,_7,du,fx){
|
|
3
|
+
var _8=_7.lambda("item.purgeGroup()");
|
|
4
|
+
return _2("dojox.charting.plot2d.Candlesticks",[_5,_6],{defaultParams:{gap:2,animate:null},optionalParams:{minBarSize:1,maxBarSize:1,stroke:{},outline:{},shadow:{},fill:{},font:"",fontColor:""},constructor:function(_9,_a){
|
|
5
|
+
this.opt=_1.clone(this.defaultParams);
|
|
6
|
+
du.updateWithObject(this.opt,_a);
|
|
7
|
+
du.updateWithPattern(this.opt,_a,this.optionalParams);
|
|
8
|
+
this.animate=this.opt.animate;
|
|
9
|
+
},collectStats:function(_b){
|
|
10
|
+
var _c=_1.delegate(dc.defaultStats);
|
|
11
|
+
for(var i=0;i<_b.length;i++){
|
|
12
|
+
var _d=_b[i];
|
|
13
|
+
if(!_d.data.length){
|
|
14
|
+
continue;
|
|
15
|
+
}
|
|
16
|
+
var _e=_c.vmin,_f=_c.vmax;
|
|
17
|
+
if(!("ymin" in _d)||!("ymax" in _d)){
|
|
18
|
+
_3.forEach(_d.data,function(val,idx){
|
|
19
|
+
if(val!==null){
|
|
20
|
+
var x=val.x||idx+1;
|
|
21
|
+
_c.hmin=Math.min(_c.hmin,x);
|
|
22
|
+
_c.hmax=Math.max(_c.hmax,x);
|
|
23
|
+
_c.vmin=Math.min(_c.vmin,val.open,val.close,val.high,val.low);
|
|
24
|
+
_c.vmax=Math.max(_c.vmax,val.open,val.close,val.high,val.low);
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
if("ymin" in _d){
|
|
29
|
+
_c.vmin=Math.min(_e,_d.ymin);
|
|
30
|
+
}
|
|
31
|
+
if("ymax" in _d){
|
|
32
|
+
_c.vmax=Math.max(_f,_d.ymax);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return _c;
|
|
36
|
+
},getSeriesStats:function(){
|
|
37
|
+
var _10=this.collectStats(this.series);
|
|
38
|
+
_10.hmin-=0.5;
|
|
39
|
+
_10.hmax+=0.5;
|
|
40
|
+
return _10;
|
|
41
|
+
},render:function(dim,_11){
|
|
42
|
+
if(this.zoom&&!this.isDataDirty()){
|
|
43
|
+
return this.performZoom(dim,_11);
|
|
44
|
+
}
|
|
45
|
+
this.resetEvents();
|
|
46
|
+
this.dirty=this.isDirty();
|
|
47
|
+
var s;
|
|
48
|
+
if(this.dirty){
|
|
49
|
+
_3.forEach(this.series,_8);
|
|
50
|
+
this._eventSeries={};
|
|
51
|
+
this.cleanGroup();
|
|
52
|
+
s=this.getGroup();
|
|
53
|
+
df.forEachRev(this.series,function(_12){
|
|
54
|
+
_12.cleanGroup(s);
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
var t=this.chart.theme,f,gap,_13,ht=this._hScaler.scaler.getTransformerFromModel(this._hScaler),vt=this._vScaler.scaler.getTransformerFromModel(this._vScaler),_14=this.events();
|
|
58
|
+
f=dc.calculateBarSize(this._hScaler.bounds.scale,this.opt);
|
|
59
|
+
gap=f.gap;
|
|
60
|
+
_13=f.size;
|
|
61
|
+
for(var i=this.series.length-1;i>=0;--i){
|
|
62
|
+
var run=this.series[i];
|
|
63
|
+
if(!this.dirty&&!run.dirty){
|
|
64
|
+
t.skip();
|
|
65
|
+
this._reconnectEvents(run.name);
|
|
66
|
+
continue;
|
|
67
|
+
}
|
|
68
|
+
run.cleanGroup();
|
|
69
|
+
var _15=t.next("candlestick",[this.opt,run]),_16=new Array(run.data.length);
|
|
70
|
+
if(run.hidden){
|
|
71
|
+
run.dyn.fill=_15.series.fill;
|
|
72
|
+
run.dyn.stroke=_15.series.stroke;
|
|
73
|
+
continue;
|
|
74
|
+
}
|
|
75
|
+
s=run.group;
|
|
76
|
+
for(var j=0;j<run.data.length;++j){
|
|
77
|
+
var v=run.data[j];
|
|
78
|
+
if(v!==null){
|
|
79
|
+
var _17=t.addMixin(_15,"candlestick",v,true);
|
|
80
|
+
var x=ht(v.x||(j+0.5))+_11.l+gap,y=dim.height-_11.b,_18=vt(v.open),_19=vt(v.close),_1a=vt(v.high),low=vt(v.low);
|
|
81
|
+
if("mid" in v){
|
|
82
|
+
var mid=vt(v.mid);
|
|
83
|
+
}
|
|
84
|
+
if(low>_1a){
|
|
85
|
+
var tmp=_1a;
|
|
86
|
+
_1a=low;
|
|
87
|
+
low=tmp;
|
|
88
|
+
}
|
|
89
|
+
if(_13>=1){
|
|
90
|
+
var _1b=_18>_19;
|
|
91
|
+
var _1c={x1:_13/2,x2:_13/2,y1:y-_1a,y2:y-low},_1d={x:0,y:y-Math.max(_18,_19),width:_13,height:Math.max(_1b?_18-_19:_19-_18,1)};
|
|
92
|
+
var _1e=s.createGroup();
|
|
93
|
+
_1e.setTransform({dx:x,dy:0});
|
|
94
|
+
var _1f=_1e.createGroup();
|
|
95
|
+
_1f.createLine(_1c).setStroke(_17.series.stroke);
|
|
96
|
+
_1f.createRect(_1d).setStroke(_17.series.stroke).setFill(_1b?_17.series.fill:"white");
|
|
97
|
+
if("mid" in v){
|
|
98
|
+
_1f.createLine({x1:(_17.series.stroke.width||1),x2:_13-(_17.series.stroke.width||1),y1:y-mid,y2:y-mid}).setStroke(_1b?"white":_17.series.stroke);
|
|
99
|
+
}
|
|
100
|
+
run.dyn.fill=_17.series.fill;
|
|
101
|
+
run.dyn.stroke=_17.series.stroke;
|
|
102
|
+
if(_14){
|
|
103
|
+
var o={element:"candlestick",index:j,run:run,shape:_1f,x:x,y:y-Math.max(_18,_19),cx:_13/2,cy:(y-Math.max(_18,_19))+(Math.max(_1b?_18-_19:_19-_18,1)/2),width:_13,height:Math.max(_1b?_18-_19:_19-_18,1),data:v};
|
|
104
|
+
this._connectEvents(o);
|
|
105
|
+
_16[j]=o;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
if(this.animate){
|
|
109
|
+
this._animateCandlesticks(_1e,y-low,_1a-low);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
this._eventSeries[run.name]=_16;
|
|
114
|
+
run.dirty=false;
|
|
115
|
+
}
|
|
116
|
+
this.dirty=false;
|
|
117
|
+
if(_4("dojo-bidi")){
|
|
118
|
+
this._checkOrientation(this.group,dim,_11);
|
|
119
|
+
}
|
|
120
|
+
return this;
|
|
121
|
+
},tooltipFunc:function(o){
|
|
122
|
+
return "<table cellpadding=\"1\" cellspacing=\"0\" border=\"0\" style=\"font-size:0.9em;\">"+"<tr><td>Open:</td><td align=\"right\"><strong>"+o.data.open+"</strong></td></tr>"+"<tr><td>High:</td><td align=\"right\"><strong>"+o.data.high+"</strong></td></tr>"+"<tr><td>Low:</td><td align=\"right\"><strong>"+o.data.low+"</strong></td></tr>"+"<tr><td>Close:</td><td align=\"right\"><strong>"+o.data.close+"</strong></td></tr>"+(o.data.mid!==undefined?"<tr><td>Mid:</td><td align=\"right\"><strong>"+o.data.mid+"</strong></td></tr>":"")+"</table>";
|
|
123
|
+
},_animateCandlesticks:function(_20,_21,_22){
|
|
124
|
+
fx.animateTransform(_1.delegate({shape:_20,duration:1200,transform:[{name:"translate",start:[0,_21-(_21/_22)],end:[0,0]},{name:"scale",start:[1,1/_22],end:[1,1]},{name:"original"}]},this.animate)).play();
|
|
125
|
+
}});
|
|
126
|
+
});
|