Hi,
Recent changes to the API broke one of my apps. Of course it's my
fault because I was doing something that wasn't supported, but that's
another story.
This used to work:
function handleQueryResponse(response) {
// Validation removed - we should always be working with a
valid spreadsheet at this point.
var data = response.getDataTable();
var colNum = data.getNumberOfColumns();
// All columns into an "orig_cols" map (object literal)
orig_cols = {};
for (var i = 0; i < colNum; i++) {
var key = data.B[i].id;
orig_cols[key] = {
label: data.B[i].label
};
}
With the changes, B is no longer recognized. So I'm trying
(unsuccessfully) to use the API "properly."
var colNum = data.getNumberOfColumns();
var col_labels = {};
for (var i = 0; i < colNum; i++) {
var col_labels = {data.getColumnLabel([i])};
}
Any help would be greatly appreciated.
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.