Dynamic highcharts widget plugin for freeboard.io
This widget plugin is highly based on the interactive-indicator created by Hugo Sequeira.
Github repository: https://github.com/onlinux/freeboard-dynamic-highcharts-plugin
See it in action @ https://goo.gl/hbAXXU
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 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);
})