Toxin
unread,Sep 21, 2008, 11:16:34 PM9/21/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Visualization API
I have data with the columns:
timestamp (e.g. 8/25/2008 10:00:00)
volume (e.g. 12)
type (e.g. mountain dew)
and I am trying to see what days of the week I drink the most soda..
so I started to write the following query
select timestamp, count(type) group by timestamp format timestamp
"EEE" options no_values
but I get the following javascript error:
this.e is undefined
[Break on this error] e+Pa);b[e]=true}},O=function(a,b,c)
{if(b...e=[];for(var b=0;b<this.g[u];b++){var c=
if I take out "options no_values", the query works, but then it doesnt
aggregate by day of the week like I want.
what gives? Any suggestions? Thanks!