Re: [visualization-api] Running into a problem with GOOG spreadsheet integration

2014-12-04 Thread Dana Lemnaru
Hi Guys! I seem to have the same problem creating my table. The column chart works perfect with the same query source, but i'm not getting anything when I try to create a table. I've followed the above instructions but no luck. !DOCTYPE html html head meta http-equiv='content-type'

Re: [visualization-api] Running into a problem with GOOG spreadsheet integration

2014-12-04 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Dana, The reason the ColumnChart works is that the ChartWrapper is always loaded by default, and the ChartWrapper knows how to load other packages, like the corechart package. However, you're trying to use the Table directly, rather than via a ChartWrapper. So you should either use the Table

[visualization-api] Running into a problem with GOOG spreadsheet integration

2014-08-29 Thread Craig Pearce
I'm just learning all this JS and google visualization stuff. I have the following code, I just want it to display a table of the data I have in my google spreadsheet. As you can see, I have used the code from the Google Viz articles. I am trying to display a table first, then build up to

Re: [visualization-api] Running into a problem with GOOG spreadsheet integration

2014-08-29 Thread 'Jon Orwant' via Google Visualization API
JavaScript is case sensitive: you want to say google.visualization.Table to create a Table Chart. Remove that extra curly brace: that was just hiding the real error (undefined is not a function) that you wanted to see. Jon On Sat, Aug 30, 2014 at 12:02 AM, Craig Pearce craigpear...@gmail.com