Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jritsema/freeboard-jqplot
This is a widget plugin for http://freeboard.io that allows dashboard widget authoring using http://www.jqplot.com
https://github.com/jritsema/freeboard-jqplot
dashboard freeboard jqplot widget widget-plugin
Last synced: about 1 month ago
JSON representation
This is a widget plugin for http://freeboard.io that allows dashboard widget authoring using http://www.jqplot.com
- Host: GitHub
- URL: https://github.com/jritsema/freeboard-jqplot
- Owner: jritsema
- License: mit
- Created: 2014-11-10T19:58:17.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2023-08-20T23:32:28.000Z (over 1 year ago)
- Last Synced: 2023-08-21T00:29:15.874Z (over 1 year ago)
- Topics: dashboard, freeboard, jqplot, widget, widget-plugin
- Language: JavaScript
- Size: 447 KB
- Stars: 28
- Watchers: 9
- Forks: 18
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Freeboard jqPlot Widget Plugin
===============================This is a widget plugin for [Freeboard](http://freeboard.io) (open source web ui dashboard) that allows dashboard widget authoring using [jqPlot](http://www.jqplot.com)
![Screenshot](screenshot1.png)
![Screenshot](screenshot2.png)
### Installation
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](https://github.com/Freeboard/freeboard/blob/master/index.html#L14) 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);
})
```For a better development experience checkout the [widget template](https://github.com/jritsema/freeboard-jqplot-widget) which has tooling that lets you configure a widget instance in files and auto-update a dashboard.json.