-
-
Notifications
You must be signed in to change notification settings - Fork 326
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
Tick label being chopped off #168
Comments
If you're using |
Plus Can we decrease the length of indicator like its width? |
Simply, ticks are not designed to be in this way. indicatorYou need to use another indicator or custom indicator. |
I have tried increasing tick padding but its still the same and i don't want to turn rotation off because I want labels in this way so help me achieving this. |
This kind pf adjustment isn't possible by simple extension of speedometer. mySpeedometer.setOnPrintTickLapel(object: OnPrintTickLabel {
override fun getTickLabel(tickPosition: Int, tick: Float): CharSequece? {
return if (tick == 100f) "$tick\t\t" else null
}
}) |
When I set tick labels they are being chopped half from bottom and that marker indicator is fine . This is the problem in normal Speedview. Only last and first label have this problem when min degree is 180 and max is 360.
The text was updated successfully, but these errors were encountered: