3 messages in com.googlegroups.google-visualization-api[visualization-api] Questions on Data...
FromSent OnAttachments
kkev12501 Jul 2008 12:13 
VizGuy (Google)01 Jul 2008 23:56 
kkev12502 Jul 2008 08:59 
Subject:[visualization-api] Questions on Dataqueries and Annotated Timeline.
From:kkev125 (kkev@hotmail.com)
Date:07/01/2008 12:13:54 PM
List:com.googlegroups.google-visualization-api

Hey,

I'm trying to make an Annotated Timeline from a spread sheet, but I keep encountering a "Error in Query: Timeout" error. I don't think there's anything wrong with the query... could someone tell me what's causing the Timeout?

<html> <head>

<script type="text/javascript" src="http://www.google.com/jsapi"></ script> <script type="text/javascript"> google.load("visualization", "1", {packages: ["annotatedtimeline"]}); google.setOnLoadCallback(initialize);

function initialize() { // Replace data source URL on next line with your data source URL var query = new google.visualization.Query('http:// spreadsheets.google.com/tq?key=p0Bbv-9vLv3e9TcSbFJf- Wg&pub=1&range=A1:B83'); query.send(handleQueryResponse); // Send the query with a callback function

}

function handleQueryResponse(response) {

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

var data = response.getDataTable();

var chart = new google.visualization.AnnotatedTimeLine(document.getElementById('chart_div')); chart.draw(data, {displayAnnotations: false}); }

</script>

</head>

<body> <div id="chart_div" style="width: 700px; height: 240px;"></div> </body> </html>