Code for plotting graph instead of table in LDR

how I see my LDR project data in the form of graph instead of a table using suitable Javascript code

You could download the data. Data will be downloaded in .csv format, which you can plot in excel.

you can use bellow code for plot graph

setChartLibrary(“google-chart”);
setChartType(“areaGraph”);
plotChart(‘time_stamp’,‘light’);

for more detailed in graph follow the link given bellow
https://docs.boltiot.com/docs/line-graph

This is the code for plotting the graph:

setChartLibrary(“google-chart”);
setChartType(“areaGraph”);
plotChart(‘time_stamp’,‘variable’);

In place of variable we can declare any name.