I am having a list of data update daily based.
data.addColumn('date', 'Date');
data.addColumn('number', 'Calorie');
data.addRows([
[new Date(2012,7,1), 400],
[new Date(2012,7,2), 460],
the date will increase for 3 months is there any way for me to display only 1st day of the month in the haxis.
hAxis: {
gridlines:{count:3, color: 'white'},
minValue: new Date(2012, 1, 31),
maxValue: new Date(2012, 9, 30),
showTextEvery:30,
format:'d-MMM',
},
that is my current haxis api code. it somehow display only 1-Aug.