Sign in to follow this  
Pallav

Cannot do multiple update simulaneously on Angular Gauge

Recommended Posts

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.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this