I'm trying to debug a LineChart that isn't displaying. Is there an easy way to understand why the Visualization API is rejecting the call? I'm just getting a blank div and would like more verbose output. Alternatively, can I paste JSON somewhere to see the results?
I've got JSON that looks like this:
{"rows":[{"c":[{"v":"Date(2013,0,15,20,50,25)"},{"v":12}]},{"c":[{"v":"Date(2013,0,23,2,0,14)"},{"v":16}]}],"cols":[{"type":"datetime","id":"timestamp","label":"Date"},{"type":"number","id":"rank","label":"Rank"}]}
This is valid JSON, but I'm concerned about two things:
1) Rows appearing before columns. While the spec doesn't seem to require this, seems like it could be a problem.
2) Date Format. I've seen some comments online that the date format gets cranky, but this seems to be ok when I compared against the docs.
Any other thoughts would be great!
Thanks
Tim