问题描述
我每天都有一份数据更新清单。
data.addColumn('date','Date');
data.addColumn('number','Calorie');
data.addRows([
[new Date(2012,7,1),400],
[new Date(2012,7,2),460],
日期将会增加3个月,我有什么方法可以在每个月的第1天只显示haxis。 / b>
hAxis:{
gridlines:{count:3,color:'white'},
minValue:新日期(2012,1,31),
maxValue:新日期(2012,9,30),
showTextEvery:30,
格式:'d-MMM',
},
这是我目前的haxis api代码,它只能显示1 - 8月份。 >
hAxis:{
gridlines:{count:3,color:'white'},
minValue:new Date(2012,1,31),
maxValue:new日期(2012,9,30),
// showTextEvery:30,
格式:'d-MMM'
}
查看此 jqfaq.com 一个>网站,它有Google图表相关的常见问题。这可能对您有所帮助。 I am having a list of data update daily based. the date will increase for 3 months is there any way for me to display only 1st day of the month in the haxis. that is my current haxis api code. it somehow display only 1-Aug. To get the result as your wish comment the showTextEvery property in options object. Take a look at this jqfaq.com site,it has Google charts related faqs. It may be helpful to you. 这篇关于谷歌线图api haxis日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!data.addColumn('date', 'Date');
data.addColumn('number', 'Calorie');
data.addRows([
[new Date(2012,7,1), 400],
[new Date(2012,7,2), 460],
hAxis: {
gridlines:{count:3, color: 'white'},
minValue: new Date(2012, 1, 31),
maxValue: new Date(2012, 9, 30),
showTextEvery:30,
format:'d-MMM',
},
hAxis: {
gridlines:{count:3, color: 'white'},
minValue: new Date(2012, 1, 31),
maxValue: new Date(2012, 9, 30),
// showTextEvery:30,
format:'d-MMM'
}