Plugin
Dynamic Highcharts widget plugin for freeboard.io
NEW: Two styles available
spline or area
Github repository: https://github.com/onlinux/freeboard-dynamic-highcharts-plugin
See it in action @ https://onlinux.fr/freeboard
INSTALLATION
INSTALLATION
Copy the file (plugin_highcharts.js from https://github.com/onlinux/freeboard-dynamic-highcharts-plugin) to your freeboard installation, for example:
$ cp ./plugin_highcharts.js /freeboard/plugins/thirdparty
Edit the freeboard index.html file and add a link to the plugin js file near the end of the head.js script loader, like:
head.js(
'js/freeboard_plugins.min.js',
'plugins/actuator.js',
$(function() {
//DOM Ready
freeboard.initialize(true);
})head.js(
'js/freeboard_plugins.min.js',
'plugins/thirdparty/plugin_highcharts.js',
$(function() {
//DOM Ready
freeboard.initialize(true);
})