This is a widget plugin for Freeboard (open source web ui dashboard) that allows dashboard widget authoring using jqPlot
Copy the plugin (index.js in this repo) to your freeboard installation, for example:
$ cp ./index.js /freeboard/plugins/jqplot
edit the freeboard index.html file and add a link to the plugin near the end of the head.js script loader, like:
head.js(
'js/freeboard_plugins.min.js',
'plugins/jqplot/index.js',
$(function() {
//DOM Ready
freeboard.initialize(true);
})