Originally posted this here: Trying to load Google charts through a (jQuery)ajax call but have modified my code a bit but I still can\'t get it to work properly.
I am t
Your original code:
google.load('visualization', '1.0', {'packages':['corechart']}); // Load the Visualization API and the piechart package.
add one more parameter and it should be OK:
google.load('visualization', '1.0', {'packages':['corechart'], **"callback": drawChart**});