星期一, 8月 02, 2010

blog

星期四, 9月 03, 2009

aa

星期三, 8月 26, 2009

aaa

function drawVisualization() {
// To see the data that this visualization uses, browse to
// http://spreadsheets.google.com/ccc?key=pCQbetd-CptGXxxQIG7VFIQ
var query = new google.visualization.Query(
'http://spreadsheets.google.com/ccc?key=tlrECLYSIhv3UEyXIf5k3FQ&hl=en');

// Apply query language.
query.setQuery('SELECT B WHERE B < 100 ORDER BY B');

// Send the query with a callback function.
query.send(handleQueryResponse);
}

function handleQueryResponse(response) {
if (response.isError()) {
alert('Error in query: ' + response.getMessage() + ' ' + response.getDetailedMessage());
return;
}

var data = response.getDataTable();
visualization = new google.visualization.LineChart(document.getElementById('visualization'));
visualization.draw(data, {legend: 'bottom'});
}

星期一, 7月 28, 2008

fff