アットウィキロゴ

家計消費状況調査

google.load("visualization", '1', {packages:['corechart']});
 
function sample() {
  var query = new google.visualization.Query(
      'https://docs.google.com/spreadsheet/ccc?key=0Atc7WttLh-m7dHF0bUgxU1hSdG1xZmVOXzB4eFQzTnc&usp=drive_web#gid=0');
 
  query.send(handleQueryResponse);
}
 
function handleQueryResponse(response) {
  if (response.isError()) {
    alert('Error in query: ' + response.getMessage() + ' ' + response.getDetailedMessage());
    return;
  }
var options = {
          title: '出所;総務省「家計消費状況調査」',
          hAxis: {title: '期間', titleTextStyle: {color: 'black'}},
          vAxis: {title: '移動電話(携帯電話・PHS)使用料', titleTextStyle: {color: 'black'}}
        };
 
  var data = response.getDataTable();
  var chart = new google.visualization.LineChart(document.getElementById('co'));
chart.draw(data,options);
}
最終更新:2014年02月08日 21:41