Is the data in DataTables stored in a column major or row major
format? Put another way, if I'm looping over all the elements, is it
faster to do:
foreach row:
foreach col:
table.getValue(r,c)
end
end
or
foreach col:
foreach row:
table.getValue(r,c);
end
end
thanks,
--
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.