Reputation: 415
I saw this documentation on Google Developer site, they show me how to format hAxis label but only label with number format. I don't know how to format the labels that use date format. Here is my chart:
I want to format the date from Dec 7, 2015
to 7 Dec
.
Upvotes: 2
Views: 13316
Reputation: 17946
var options = {
hAxis: {
format: 'd MMM',
}
See documentation here: https://developers.google.com/chart/interactive/docs/datesandtimes#formatting-axis-gridline-and-tick-labels
Upvotes: 14