On 23 Sep 2010, at 18:02, lc wrote: > but if I want to render a new chart after the page is loaded by > calling a JavaScript function, which loads the visualization library > and calls 'google.setOnLoadCallback()' it does not work.
All that call does is set a function that will be called after a page is loaded, so that will happen once. Calling it again later won't do anything as the page is already loaded. You need to call your drawchart() function directly to redraw it later. Marcus -- You received this message because you are subscribed to the Google Groups "Google Chart 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-chart-api?hl=en.
