Project 5 : assignment on advanced graphs

I am not able to find API docs for the graphs and cannot understand how to animate graph.

@simtastic99 Please refer this link,

1 Like

Hello ,
API docs are present in bolt cloud for that u need to login to your bolt cloud account using your email id and password and then on left hand side u will get API click on that and API credentials window will open in that API Documentation is present u can refer that. And for graphs u can plot which ever graph u want to plot like line graph , bar graph or scatter graph. To plot this graph u need to write following syntax:

setChartLibrary("google-chart");
setChartTitle('chart_title what name you want to give to chart');
setChartType('chart_type means which chart u want to plot');

Hope u understood.Best luck

1 Like

A graph is shown animated i.e., each plot in a graph shows its progress from 0 to its particular value as an animation (shows one of the beauty of data visualisation:grin:)
This feature in enabled by default…given as an assignment for us to get to know about it.
To disable this feature add setAnimation(false);

1 Like