Can't able to see graph in light monitoring project

The graph in light monitoring system project IOT is displayed after collecting nearly 50 data points.

Hi @vishnu.kolluri02,

You have to write the code for the type of graph that you wish. You can also import custom snippets too from bolt cloud. Here is the code for the bar graph

setChartLibrary('google-chart');
setChartTitle('Your Graph Title');
setChartType('lineGraph');
setAxisName('X-Axis Name','Y-axis Name');
plotChart('time_stamp','your_variable_name');

The data collected by the sensor will be shown in the form of the table. You’ll have to write a separate code to see the graph.

Hi @vishnu.kolluri02 ,Use use google library on bolt about the graph chart to represent data in graph form.
Hope it’s useful