Hi,
First of all: congrat to your work. Quite impresive.
We are actually looking at ways to present our data on the wbe, using for the mment Google Doc spreadsheets.
The idea is to have people feeding the data in the spreadsheets but the result (using fusion Chart is an example) displaye din a website.
Our current are as follow:
- With google apps and visualisation, it is possible to querry the tabel in order to group and sum some areas for the graphic/chart display.
is it possibel to do so wihtin Fusin Chart (in the form of the gadget it is not seems possible.
- The data range request that we enter the address of cells. Actually, if we want to automate the process, we woud like the tol to get the full column... ??
Current querry sample (Group and sum)
function drawVisualization() {
var query = new google.visualization.Query(
'http://spreadsheets.google.com/ccc?key=pIrV50N9kwm5b8acslyW2aA');
// Apply query language.
query.setQuery('select D,sum(E),sum(F) group by D');
query.send(handleQueryResponse);
}
function handleQueryResponse(response) {
if (response.isError()) {
alert('Error in query: ' + response.getMessage() + ' ' + response.getDetailedMessage());
return;
}