There is no built-in limitation; most visualizations hit performance limitations before they hit the data size limits imposed by javascript. 5000 data points is well within what the charts are typically capable of handling. What kind of visualization you are using? From the sound of things, I would hazard a guess that you are using a ColumnChart (or a BarChart). The limit there is in the number of pixels the chart has to draw columns with: if we assume 1 pixel per data point, you need a minimum width of 5000 pixels just to fit all of the data on the chart. If this is the scenario you are facing, you might want to look into using a ChartRangeFilter<https://developers.google.com/chart/interactive/docs/gallery/controls#chartrangefilter>(or other control) to allow users to narrow the data range.
On Sunday, April 28, 2013 10:57:33 AM UTC-4, Paul Blakeley wrote: > > Hi, > I have a chart with over 100 rows and about 50 columns. I am finding > that the chart will only display a small number of the columns until I > substantially reduce the number of rows. Or if I reduce the number of > columns I can increase my rows. Can someone then please tell me what the > limitation is of the data??? > > -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-visualization-api?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
