Graphical interface of bolt

If I want to analyze the 3 parameters i.e. Humidity, temperature and moisture in bolt then how to analyze it in . js code?

Hi,
just check out this link it will help u and for any help u need first check out in this link i think i will helps u


this above link shows u types of graph and which one u want use in different cases

var lineGraph = new boltGraph();
lineGraph.setChartType("lineGraph");
lineGraph.setAxisName('X-Axis Name','Y-axis Name');
lineGraph.plotChart('time_stamp','var1');
var barGraph = new boltGraph();
barGraph.setChartType("barGraph");
barGraph.setAxisName('X-Axis Name','Y-axis Name');
barGraph.plotChart('time_stamp','var6');
1 Like