You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
This seems like an oversight. There is no way to set min and max on an image speedometer without overriding the class. SpeedView has this code in updateBackgroundBitmap.
if (tickNumber > 0)
drawTicks(c)
else
drawDefMinMaxSpeedPosition(c)
ImageSpeedometer just has
drawMarks(c)
drawTicks(c)
drawDefMinMaxSpeedPosition is protected so you can't call it without overriding the class.
The text was updated successfully, but these errors were encountered:
Describe the bug
This seems like an oversight. There is no way to set min and max on an image speedometer without overriding the class.
SpeedView
has this code inupdateBackgroundBitmap
.ImageSpeedometer
just hasdrawDefMinMaxSpeedPosition
is protected so you can't call it without overriding the class.The text was updated successfully, but these errors were encountered: