Like the title says I have a column chart that shows the values of each column on the column itself. I would like to add commas to it if possible. I have looked at this page here:
but I think I'm missing something because it doesn't quite work. Here's my code so far:
var chart = new google.visualization.ColumnChart(document.getElementById('homescreenDetailChart'));
var formatter = new google.visualization.NumberFormat({
groupingSymbol: ','
});
chart.draw(view, options);