2👍
✅
Using your hand-made addCommas
function should do the trick :
options: {
scales: {
yAxes: [{
ticks: {
userCallback: function(item) {
return addCommas(item);
},
}
}]
}
}
Source:stackexchange.com