├── .gitignore ├── .gitmodules ├── .npmignore ├── Readme.md ├── examples └── express │ ├── flot-example.js │ ├── public │ ├── js │ │ ├── RGraph │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ │ ├── ModalDialog.css │ │ │ │ ├── common.css │ │ │ │ └── website.css │ │ │ ├── docs │ │ │ │ ├── .BC.txt │ │ │ │ ├── .CHANGELOG.txt │ │ │ │ ├── adjusting.html │ │ │ │ ├── animation.html │ │ │ │ ├── annotating.html │ │ │ │ ├── api.html │ │ │ │ ├── async.html │ │ │ │ ├── bar.html │ │ │ │ ├── bipolar.html │ │ │ │ ├── color.html │ │ │ │ ├── combine.html │ │ │ │ ├── context.html │ │ │ │ ├── css.html │ │ │ │ ├── domcontentloaded.html │ │ │ │ ├── donut.html │ │ │ │ ├── downloads │ │ │ │ ├── dynamic.html │ │ │ │ ├── events.html │ │ │ │ ├── external.html │ │ │ │ ├── funnel.html │ │ │ │ ├── gantt.html │ │ │ │ ├── hbar.html │ │ │ │ ├── hprogress.html │ │ │ │ ├── index.html │ │ │ │ ├── ingraph.html │ │ │ │ ├── issues.html │ │ │ │ ├── led.html │ │ │ │ ├── licensing.html │ │ │ │ ├── line.html │ │ │ │ ├── meter.html │ │ │ │ ├── misc.html │ │ │ │ ├── msie.html │ │ │ │ ├── odo.html │ │ │ │ ├── pie.html │ │ │ │ ├── png.html │ │ │ │ ├── released.txt │ │ │ │ ├── resizing.html │ │ │ │ ├── rose.html │ │ │ │ ├── rscatter.html │ │ │ │ ├── scatter.html │ │ │ │ ├── tooltips.html │ │ │ │ ├── tradar.html │ │ │ │ ├── vprogress.html │ │ │ │ └── zoom.html │ │ │ ├── examples │ │ │ │ ├── bar.html │ │ │ │ ├── basic.html │ │ │ │ ├── bipolar.html │ │ │ │ ├── donut.html │ │ │ │ ├── funnel.html │ │ │ │ ├── gantt.html │ │ │ │ ├── hbar.html │ │ │ │ ├── hprogress.html │ │ │ │ ├── index.html │ │ │ │ ├── led.html │ │ │ │ ├── line.html │ │ │ │ ├── meter.html │ │ │ │ ├── odo.html │ │ │ │ ├── pie.html │ │ │ │ ├── rose.html │ │ │ │ ├── rscatter.html │ │ │ │ ├── scatter.html │ │ │ │ ├── showcase.html │ │ │ │ ├── text.html │ │ │ │ ├── tradar.html │ │ │ │ └── vprogress.html │ │ │ ├── excanvas │ │ │ │ ├── EXCANVAS-LICENSE.txt │ │ │ │ ├── HTACCESS-SAMPLE │ │ │ │ ├── excanvas.compressed.js │ │ │ │ └── excanvas.original.js │ │ │ ├── images │ │ │ │ ├── alex.png │ │ │ │ ├── analogo.gif │ │ │ │ ├── analogo.png │ │ │ │ ├── bara1.gif │ │ │ │ ├── bara1.png │ │ │ │ ├── bara16.gif │ │ │ │ ├── bara16.png │ │ │ │ ├── bara2.gif │ │ │ │ ├── bara2.png │ │ │ │ ├── bara32.gif │ │ │ │ ├── bara32.png │ │ │ │ ├── bara4.gif │ │ │ │ ├── bara4.png │ │ │ │ ├── bara8.gif │ │ │ │ ├── bara8.png │ │ │ │ ├── barb1.gif │ │ │ │ ├── barb1.png │ │ │ │ ├── barb16.gif │ │ │ │ ├── barb16.png │ │ │ │ ├── barb2.gif │ │ │ │ ├── barb2.png │ │ │ │ ├── barb32.gif │ │ │ │ ├── barb32.png │ │ │ │ ├── barb4.gif │ │ │ │ ├── barb4.png │ │ │ │ ├── barb8.gif │ │ │ │ ├── barb8.png │ │ │ │ ├── barc1.gif │ │ │ │ ├── barc1.png │ │ │ │ ├── barc16.gif │ │ │ │ ├── barc16.png │ │ │ │ ├── barc2.gif │ │ │ │ ├── barc2.png │ │ │ │ ├── barc32.gif │ │ │ │ ├── barc32.png │ │ │ │ ├── barc4.gif │ │ │ │ ├── barc4.png │ │ │ │ ├── barc8.gif │ │ │ │ ├── barc8.png │ │ │ │ ├── bard1.gif │ │ │ │ ├── bard1.png │ │ │ │ ├── bard16.gif │ │ │ │ ├── bard16.png │ │ │ │ ├── bard2.gif │ │ │ │ ├── bard2.png │ │ │ │ ├── bard32.gif │ │ │ │ ├── bard32.png │ │ │ │ ├── bard4.gif │ │ │ │ ├── bard4.png │ │ │ │ ├── bard8.gif │ │ │ │ ├── bard8.png │ │ │ │ ├── bare1.gif │ │ │ │ ├── bare1.png │ │ │ │ ├── bare16.gif │ │ │ │ ├── bare16.png │ │ │ │ ├── bare2.gif │ │ │ │ ├── bare2.png │ │ │ │ ├── bare32.gif │ │ │ │ ├── bare32.png │ │ │ │ ├── bare4.gif │ │ │ │ ├── bare4.png │ │ │ │ ├── bare8.gif │ │ │ │ ├── bare8.png │ │ │ │ ├── barf1.gif │ │ │ │ ├── barf1.png │ │ │ │ ├── barf16.gif │ │ │ │ ├── barf16.png │ │ │ │ ├── barf2.gif │ │ │ │ ├── barf2.png │ │ │ │ ├── barf32.gif │ │ │ │ ├── barf32.png │ │ │ │ ├── barf4.gif │ │ │ │ ├── barf4.png │ │ │ │ ├── barf8.gif │ │ │ │ ├── barf8.png │ │ │ │ ├── barg1.gif │ │ │ │ ├── barg1.png │ │ │ │ ├── barg16.gif │ │ │ │ ├── barg16.png │ │ │ │ ├── barg2.gif │ │ │ │ ├── barg2.png │ │ │ │ ├── barg32.gif │ │ │ │ ├── barg32.png │ │ │ │ ├── barg4.gif │ │ │ │ ├── barg4.png │ │ │ │ ├── barg8.gif │ │ │ │ ├── barg8.png │ │ │ │ ├── barh1.gif │ │ │ │ ├── barh1.png │ │ │ │ ├── barh16.gif │ │ │ │ ├── barh16.png │ │ │ │ ├── barh2.gif │ │ │ │ ├── barh2.png │ │ │ │ ├── barh32.gif │ │ │ │ ├── barh32.png │ │ │ │ ├── barh4.gif │ │ │ │ ├── barh4.png │ │ │ │ ├── barh8.gif │ │ │ │ ├── barh8.png │ │ │ │ ├── bari1.gif │ │ │ │ ├── bari1.png │ │ │ │ ├── bari16.gif │ │ │ │ ├── bari16.png │ │ │ │ ├── bari2.gif │ │ │ │ ├── bari2.png │ │ │ │ ├── bari32.gif │ │ │ │ ├── bari32.png │ │ │ │ ├── bari4.gif │ │ │ │ ├── bari4.png │ │ │ │ ├── bari8.gif │ │ │ │ ├── bari8.png │ │ │ │ ├── barj1.gif │ │ │ │ ├── barj1.png │ │ │ │ ├── barj16.gif │ │ │ │ ├── barj16.png │ │ │ │ ├── barj2.gif │ │ │ │ ├── barj2.png │ │ │ │ ├── barj32.gif │ │ │ │ ├── barj32.png │ │ │ │ ├── barj4.gif │ │ │ │ ├── barj4.png │ │ │ │ ├── barj8.gif │ │ │ │ ├── barj8.png │ │ │ │ ├── bn.business.png │ │ │ │ ├── bn.personal.png │ │ │ │ ├── buy.png │ │ │ │ ├── buzz.png │ │ │ │ ├── chrome_logo.png │ │ │ │ ├── coins.jpg │ │ │ │ ├── context.png │ │ │ │ ├── delicious.png │ │ │ │ ├── download-beta-sml.png │ │ │ │ ├── download-beta.png │ │ │ │ ├── download-stable-sml.png │ │ │ │ ├── download-stable.png │ │ │ │ ├── download.png │ │ │ │ ├── facebook.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── favicon.png │ │ │ │ ├── friendfeed.png │ │ │ │ ├── googlegroups.png │ │ │ │ ├── html2.gif │ │ │ │ ├── html2.png │ │ │ │ ├── icons_combined.png │ │ │ │ ├── introspection.png │ │ │ │ ├── logo.png │ │ │ │ ├── merry-christmas-snowman.png │ │ │ │ ├── png.icon.png │ │ │ │ ├── reddit.png │ │ │ │ ├── rss.png │ │ │ │ ├── rss_big.png │ │ │ │ ├── sq0.png │ │ │ │ ├── sq1.png │ │ │ │ ├── sq2.png │ │ │ │ ├── sq3.png │ │ │ │ ├── sq4.png │ │ │ │ ├── sq5.png │ │ │ │ ├── sq6.png │ │ │ │ ├── sq7.png │ │ │ │ ├── sq8.png │ │ │ │ ├── sq9.png │ │ │ │ ├── sqg.png │ │ │ │ ├── structure.png │ │ │ │ ├── stumble.png │ │ │ │ ├── twitter.png │ │ │ │ └── unicef.png │ │ │ ├── index.html │ │ │ ├── libraries │ │ │ │ ├── RGraph.bar.js │ │ │ │ ├── RGraph.bipolar.js │ │ │ │ ├── RGraph.common.adjusting.js │ │ │ │ ├── RGraph.common.annotate.js │ │ │ │ ├── RGraph.common.context.js │ │ │ │ ├── RGraph.common.core.js │ │ │ │ ├── RGraph.common.resizing.js │ │ │ │ ├── RGraph.common.tooltips.js │ │ │ │ ├── RGraph.common.zoom.js │ │ │ │ ├── RGraph.funnel.js │ │ │ │ ├── RGraph.gantt.js │ │ │ │ ├── RGraph.hbar.js │ │ │ │ ├── RGraph.hprogress.js │ │ │ │ ├── RGraph.led.js │ │ │ │ ├── RGraph.line.js │ │ │ │ ├── RGraph.meter.js │ │ │ │ ├── RGraph.modaldialog.js │ │ │ │ ├── RGraph.odo.js │ │ │ │ ├── RGraph.pie.js │ │ │ │ ├── RGraph.rose.js │ │ │ │ ├── RGraph.rscatter.js │ │ │ │ ├── RGraph.scatter.js │ │ │ │ ├── RGraph.skeleton.js │ │ │ │ ├── RGraph.tradar.js │ │ │ │ └── RGraph.vprogress.js │ │ │ └── scripts │ │ │ │ └── minify │ │ ├── draw │ │ │ ├── leds.js │ │ │ ├── linealBallsChart.js │ │ │ └── linealChart.js │ │ ├── drawback.js │ │ ├── flot-plugins │ │ │ ├── jquery.flot.coolAxes.js │ │ │ └── jquery.flot.text.js │ │ ├── flot │ │ │ ├── API.txt │ │ │ ├── FAQ.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── NEWS.txt │ │ │ ├── PLUGINS.txt │ │ │ ├── README.txt │ │ │ ├── examples │ │ │ │ ├── ajax.html │ │ │ │ ├── annotating.html │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ ├── basic.html │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ ├── graph-types.html │ │ │ │ ├── hs-2004-27-a-large_web.jpg │ │ │ │ ├── image.html │ │ │ │ ├── index.html │ │ │ │ ├── interacting-axes.html │ │ │ │ ├── interacting.html │ │ │ │ ├── layout.css │ │ │ │ ├── multiple-axes.html │ │ │ │ ├── navigate.html │ │ │ │ ├── percentiles.html │ │ │ │ ├── pie.html │ │ │ │ ├── resize.html │ │ │ │ ├── selection.html │ │ │ │ ├── setting-options.html │ │ │ │ ├── stacking.html │ │ │ │ ├── symbols.html │ │ │ │ ├── thresholding.html │ │ │ │ ├── time.html │ │ │ │ ├── tracking.html │ │ │ │ ├── turning-series.html │ │ │ │ ├── visitors.html │ │ │ │ └── zooming.html │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.threshold.js │ │ │ └── jquery.js │ │ ├── jquery.js │ │ ├── main.js │ │ └── main.rgraph.js │ └── stylesheets │ │ ├── bg.png │ │ └── style.css │ ├── rgraph-example.js │ ├── simple-example.js │ └── views │ ├── layout.jade │ ├── layout.rgraph.jade │ └── partials │ ├── flot.jade │ ├── rgraph.jade │ └── simple.jade ├── lib └── drawback │ └── index.js ├── package.json ├── plugins ├── RGraph │ ├── LICENSE.txt │ └── libraries │ │ ├── RGraph.bar.js │ │ ├── RGraph.bipolar.js │ │ ├── RGraph.common.adjusting.js │ │ ├── RGraph.common.annotate.js │ │ ├── RGraph.common.context.js │ │ ├── RGraph.common.core.js │ │ ├── RGraph.common.resizing.js │ │ ├── RGraph.common.tooltips.js │ │ ├── RGraph.common.zoom.js │ │ ├── RGraph.funnel.js │ │ ├── RGraph.gantt.js │ │ ├── RGraph.hbar.js │ │ ├── RGraph.hprogress.js │ │ ├── RGraph.led.js │ │ ├── RGraph.line.js │ │ ├── RGraph.meter.js │ │ ├── RGraph.modaldialog.js │ │ ├── RGraph.odo.js │ │ ├── RGraph.pie.js │ │ ├── RGraph.rose.js │ │ ├── RGraph.rscatter.js │ │ ├── RGraph.scatter.js │ │ ├── RGraph.skeleton.js │ │ ├── RGraph.tradar.js │ │ └── RGraph.vprogress.js ├── dummies │ ├── dummy.basic.js │ └── dummy.jquery.js ├── flot │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ ├── API.txt.svn-base │ │ │ ├── FAQ.txt.svn-base │ │ │ ├── LICENSE.txt.svn-base │ │ │ ├── Makefile.svn-base │ │ │ ├── NEWS.txt.svn-base │ │ │ ├── PLUGINS.txt.svn-base │ │ │ ├── README.txt.svn-base │ │ │ ├── excanvas.js.svn-base │ │ │ ├── excanvas.min.js.svn-base │ │ │ ├── jquery.colorhelpers.js.svn-base │ │ │ ├── jquery.flot.crosshair.js.svn-base │ │ │ ├── jquery.flot.fillbetween.js.svn-base │ │ │ ├── jquery.flot.image.js.svn-base │ │ │ ├── jquery.flot.js.svn-base │ │ │ ├── jquery.flot.navigate.js.svn-base │ │ │ ├── jquery.flot.pie.js.svn-base │ │ │ ├── jquery.flot.resize.js.svn-base │ │ │ ├── jquery.flot.selection.js.svn-base │ │ │ ├── jquery.flot.stack.js.svn-base │ │ │ ├── jquery.flot.symbol.js.svn-base │ │ │ ├── jquery.flot.threshold.js.svn-base │ │ │ └── jquery.js.svn-base │ ├── LICENSE.txt │ ├── jquery.colorhelpers.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.image.js │ ├── jquery.flot.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.threshold.js │ └── jquery.js ├── plugin.flot.js └── plugin.rgraph.js └── public └── js └── drawback.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | support/* 3 | examples 4 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/Readme.md -------------------------------------------------------------------------------- /examples/express/flot-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/flot-example.js -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/LICENSE.txt -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/css/ModalDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/css/ModalDialog.css -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/css/common.css -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/css/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/css/website.css -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/.BC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/.BC.txt -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/.CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/.CHANGELOG.txt -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/adjusting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/adjusting.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/animation.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/annotating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/annotating.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/api.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/async.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/bar.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/bipolar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/bipolar.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/color.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/combine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/combine.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/context.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/css.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/domcontentloaded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/domcontentloaded.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/donut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnBoost/drawback/HEAD/examples/express/public/js/RGraph/docs/donut.html -------------------------------------------------------------------------------- /examples/express/public/js/RGraph/docs/downloads: -------------------------------------------------------------------------------- 1 |