I have a screen with 6 charts. All ajax calls to google charts. I have a 
drop down to select the details from, i.e., if I select a subject area, i 
see 6 charts relevant to that subject. Often, the first few times on fresh 
load and perhaps the first or second change of subject, one or the other 
chart does not load. After couple of subject changes the charts always 
load. I do use google.load as shown below from the main driving page.

<script type="text/javascript" src="https://www.google.com/jsapi";></script>
<script type="text/javascript">
  google.load("jquery", "1.4.2");
  google.load("jqueryui", "1.7.2");
  google.load("visualization", "1.0");
</script>

The individal pages do load --  since i use a callback as shown below.

     google.load('visualization', '1.0', 
{ callback: function() { this.drawChart(); }, 
                  packages: ["corechart"] } );

Any idea to troubleshoot why a random (1 of 6) page does not load in the 
first two times.

Thanks

-- 
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.
For more options, visit https://groups.google.com/d/optout.

Reply via email to