I am facing problem with Google pie chart and Update panel. Their is one Tab container inside a update panel which has two Tab panels. Each tab panel contains div and script to plot Google pie chart. when first time page gets load it works properly. but if i change the tab then pie chart doesn't work. i have used "Sys.Application.add_load(methodname) inside each tab panel. i have used script which is in Google play. Thanks in Advance.
相关问题
- Broken axis in Google charts
- Google Charts backgroundColor not working with exa
- Drawing a chart after a click of a button in Googl
- Set API key with embed API google analytics
- Google Charts-Code for Category Filter
相关文章
- Google Chart veritcal axis with percentage sign
- Google Combo Chart add horizontal and vertical lin
- How can I send int array from ajax to c# mvc?
- Google charts X-axis don't look so good
- Submit Ajax.BeginForm via ActionLink
- ASP.NET MVC jQuery autocomplete with url.action he
- ASP.Net MVC 3.0 Ajax.ActionLink Onbegin Function t
- Animated gif freezes in UpdateProgress in IE8
The call to
google.load
only loads the Visualization API and fires a callback the first time it is called only. Subsequent calls togoogle.load
for the same package do nothing. If your charts draw in a callback from the google loader in your second tab, the callback will not fire, so you need to use a callback from the update process instead.