アットウィキロゴ

c5677

google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
 
 
function drawChart() {
 var query = new google.visualization.Query(
'https://docs.google.com/spreadsheet/ccc?key=1XSqP_xwxZ4yxbYrBQMfW7Sdb3EoV5johisMEDoq9-_M#gid=0');
query.send(handleQueryResponse);
}
 
function handleQueryResponse(res) {
if (res.isError()) {alert("Error");
return;
}
 
 
a2 = res.getDataTable().getValue(1,1);
a3 = res.getDataTable().getValue(2,2);
 
alert(a2);
alert(a3);
 
 
}
 
最終更新:2015年10月06日 01:33