You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this awesome tutorial. I am fairly new to jquery and chartjs. I got my first chart working and it's awesome. If I wanted to update this chart every 60 seconds, how would I go about that?
Normally, I'd do something like:
setInterval(function(){
functionName();
}, 60000 );
But since this doesn't have a function name, it just does a document ready function, I am not sure what to do. Also, chartjs has an update function. I'd love to know how to utilize that.
The text was updated successfully, but these errors were encountered:
Thanks for this awesome tutorial. I am fairly new to jquery and chartjs. I got my first chart working and it's awesome. If I wanted to update this chart every 60 seconds, how would I go about that?
Normally, I'd do something like:
setInterval(function(){
functionName();
}, 60000 );
But since this doesn't have a function name, it just does a document ready function, I am not sure what to do. Also, chartjs has an update function. I'd love to know how to utilize that.
The text was updated successfully, but these errors were encountered: