The API for chart.js allows one to edit points of the datasets loaded into it, for example:
.update( ) Calling update() on
.update( )
Calling update() on
You need to clean old data. No need to re initialize:
for (i in myChartLine.datasets[0].points) myChartLine.removeData();