2
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Year', 'Sales', 'Expenses'],
['2004', 1000, 400],
['2005', 1170, 460],
['2006', 660, 1120],
['2007', 1030, 540]
]);
var options = {
title: 'Company Performance',
};
var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
此代碼只顯示水平網格線,我還想顯示垂直線條。如何在谷歌圖表中同時顯示水平和垂直網格線
請問您可以添加一個完整的例子。 – 2014-09-26 04:41:38
@DeveloperSuRu請參閱上面的修改。 – 2014-09-26 04:48:23
@DeveloperSuRu [This answer](http://stackoverflow.com/a/14274651/586051)也可能對您有所幫助。 – 2014-09-26 04:52:52