Bind angularjs currency to scaleLabel in chart.js
👍:0 You can do this, however you’d have to tack your bit of code that does the formatting to some global object (which IMO is not very maintainable). This is how you do it myApp.controller(‘myCtrlr’, [‘$filter’, ‘$scope’, function ($filter, $scope) { Chart.currencify = function(value) { return $filter(‘currency’)(value); } … … var myChart = new Chart(ctx).Line(data, … Read more