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;
}
var data = res.getDataTable();
var options = {
title: 'Amemba',
hAxis:{title: '期間', titleTextStyle: {color: '#FF0000'}},
vAxis:{title: '平均コメント数', titleTextStyle: {color: '#FF0000'}}
};
var table = new google.visualization.BubbleChart(document.getElementById('memo'));
table.draw(data,options);
}
最終更新:2015年10月06日 01:17