Note that there is indeed a limitation in the number of rows that you can get from a Fusion Table via the Google Chart Tools API and that is set to 500 rows. See http://code.google.com/apis/fusiontables/docs/sample_code.html :
"Using the Google Chart Tools<http://code.google.com/apis/charttools/index.html>, you can request data from Fusion Tables to use in visualizations or to display directly in an HTML page. Note: responses are limited to 500 rows of data" I don't know the reason for such limitation, but you can work around it by using the raw fusion tables SQL API ( http://code.google.com/apis/fusiontables/docs/developers_guide.html ) and query your datasource asking for a response in JSONP format. This doesn't seem to have the same row limitation. Once you have the response in JSONP format, you can easily transform it into a DataTable on the client and then pass it to the visualization. You can use this file<http://code.google.com/p/google-visualization-io2011/source/browse/js/rosling.js>, starting from line 105 as an example of the process (using the jQuery library). /R. On 24 July 2011 08:33, visigoth <[email protected]> wrote: > Hi Ramana, > > Could you please post this in the Fusion Table Users > Group<https://groups.google.com/forum/#!forum/fusion-tables-users-group> so > we can check whether this limitation is imposed by Fusion Tables? > I don't know of any such limitation as part of the GViz DataTable. > > -- > You received this message because you are subscribed to the Google Groups > "Google Visualization API" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/google-visualization-api/-/ZLq586CqOQQJ. > > 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. > -- 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.
