-
Notifications
You must be signed in to change notification settings - Fork 398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
radial gauge needle in wrong spot #224
Comments
The last of your In your example, they differ (300 vs 260), so your gauge value would show up 300/260 = 1.15 times too high. |
|
I had this same issue on a Raspberry Pi zero W, running an AJAX script that looped and pulled in values that fed to the gauges. It was a timing issue. I adjusted the gauge variable animationDuration until the values were correct. What's really strange is the value was correct in the text box, it's just the needle that gave a strange value. Hope that helps you. |
I had the same issue, this is due to your code having missing intervals for the major ticks. Currently is has majorTicks: [0,20,40,60,80,100,120,140,160,180,200,240,260,280,300] should be majorTicks: [0,20,40,60,80,100,120,140,160,180,200,220,240,260,280,300] |
What would cause the needle not to match up with the value? for example, a value of 100 shows 150 on the needle?
The text was updated successfully, but these errors were encountered: