Hi Marcus Schwarz,

I had same issue.

It was fixed by removing 2 lines 

google.load("visualization", "1", {packages:["corechart"]}); 
google.setOnLoadCallback(drawVisualization); 

I added another code lines at end of the page as 

 $(document).ready(function(){ 
    setTimeout(function(){ 
        google.load("visualization", 
"1",{'packages':['corechart'],"callback" : drawVisualization );  
  }, 1); 
  }); 

Regards,
Nadun

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


Reply via email to