Chartjs-Element occurrences AngularJs Chart.js

0👍

use instead:

$scope.labels = []; // -> $scope.labels.splice(0);
$scope.data = []; // -> $scope.data .splice(0);
//... something else

0👍

Fixed the easiest possible way using Underscore.js
Thanks for the help

Leave a comment