Duc Doan
Duc Doan

Reputation: 415

How to format hAxis label date in google chart

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: enter image description here

I want to format the date from Dec 7, 2015 to 7 Dec.

Upvotes: 2

Views: 13316

Answers (1)

Charles Clayton
Charles Clayton

Reputation: 17946

var options = {
    hAxis: {
      format: 'd MMM',
}

JSFiddle

See documentation here: https://developers.google.com/chart/interactive/docs/datesandtimes#formatting-axis-gridline-and-tick-labels

Upvotes: 14

Related Questions