Chartjs-Chart.js isn't being updated once an update call is made

0👍

The reason getChart() is not being called is because it’s not present on the $scope element. Use $scope.getChart = function() { ... } instead. I recommend reading this documentation page, specifically the part "Scope as Data-Model".

Leave a comment