1
在此處出現在中間的代碼,我谷歌路線圖 - vAxis線的時候沒有數據傳遞
var data = new google.visualization.DataTable(
{
cols: [{ label: 'week', type: 'number' },
{ label: 'Completion', type: 'number' },
{ type: 'string', role: 'tooltip' }],
rows: progressList
}
);
var options = {
width: 400,
height: 265,
hAxis: {
title: 'Week',
titleTextStyle: { fontSize: 12 },
'margin-top': '20'
},
chartArea: { 'width': '82%', 'height': '75%' },
pointSize: 5,
legend: 'none',
tooltip: { showColorCode: true },
vAxis: {
title: 'Completion %',
titleTextStyle: { fontSize: 12 },
ticks: [0, 20, 40, 60, 80, 100]
}
};
chart.draw(data, options);
這是我的圖表看起來如何當一個空數組[]被傳入它。
有沒有辦法移動Vaxis線向左?
希望這有助於... – WhiteHat