Hey,

sorry that I didn't mention that.

Yes, I'm getting the data from fusion tables.

How can I switch to the default API?

Now, I am retrieving the data like this:

<script type="text/javascript" id="script">
google.load('visualization', '1', {'packages':['table']});

function changeData(partei) {

  var queryText = encodeURIComponent("SELECT 'Location', 'Party' FROM
1160024");
  var query = new google.visualization.Query('http://www.google.com/
fusiontables/gvizdata?tq='  + queryText);

  query.send(getData);
}

function getData(response) {
  var table = new
google.visualization.Table(document.getElementById('visualization'));
  table.draw(response.getDataTable(), {showRowNumber: true});
}

</script>

Could you help me, fetching the data switching to the "default API"?

Thank you so much,
tj

On 14 Sep., 08:46, Riccardo Govoni ☢ <[email protected]> wrote:
> Where are you pulling data from? If it comes from fusion tables, they trim
> the output to 500 rows when queried using the Google Visualization API
> endpoint (you'd have to switch to their default API and do the format
> conversion on your own).
>
> If not, then I'm not aware of other limitations that cut at 500 rows.
>
> --R.
> On Sep 13, 2011 9:52 PM, "Bmo" <[email protected]> wrote:> Hey all,
>
> > I use the table visualization. My table show just 500 rows - instead
> > of more than 2500.
>
> > How can I get rid of this limitation?
>
> > I use that template
>
> http://code.google.com/intl/de-DE/apis/chart/interactive/docs/gallery...
>
> > Thank you very much
> > tj
>
> > --
> > 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.
>
>
>
>

-- 
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.

Reply via email to