Reputation: 3024
I want to hide all column labels on google chart same as the image bellow.
Can anyone help me ?
Thank in advance.
Upvotes: 4
Views: 12793
Reputation: 408
Its Already Explained in this URL :: https://stackoverflow.com/a/14751106/4119740
Please Go Through it .
If You Want to hide then you can using options from :: https://developers.google.com/chart/interactive/docs/gallery/barchart#Configuration_Options
Example
var options = {
hAxis: { textPosition: 'none' }
};
var chart = new google.visualization.LineChart(document.getElementById('yourID'));
chart.draw(data, options);
Hope it helps
Upvotes: 10