score:0

you can use setinterval method to execute the code which renders the chart with updated data.

var pollinterval = 15000;  //change this value as needed
function renderchart() {
   // put your existing code to render the chart here
}

$(function () {
     window.setinterval(renderchart, pollinterval);
});

Related Query

More Query from same tag