|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 7/23/2007 9:24:36 AM
Posts: 1,
Visits: 8
|
|
Hello,
I found a bug when I do two (or more) simultaneous updates on the gauge.
I use the setDialValue() function to update the gauge.
And I create a custom function to do update like below:
function doUpdate() {
setDialValue('myGauge', 1, 20);
setDialValue('myGauge', 1, 50);
}
If i execute doUpdate(), it will stop at the first update (20), and the second update is not executed. I cannot even do a single update to the gauge afterwards. It's like as it is unaccessible anymore.
Maybe anyone can give me a solution. I've looked on the documentation and didn't find anything regarding this issue.
Thank you so much.
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: 5/12/2008 6:29:47 AM
Posts: 1,772,
Visits: 448
|
|
You need to put time delay between two simultaneous updates.
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|