我正在使用javascript在我的网络应用程序中显示Google Visulization LineChart。如何让它显示垂直网格线?我已经阅读过使用chg来设置它们,但据我所知,只有在使用查询字符串方法制作图表时才适用。你能告诉我如何在初始化LineChart时得到垂直网格线,如下所示:
new google.visualization.LineChart(div.get(0)).draw(data, {
title: 'Unique visitors - Previous Month',
width: div.width(),
height: 330,
chartArea: {left:50, width:"90%"},
legend: 'none',
yAxis: {title: '(thousands)'}
});