can DonutProgress start from the center of top?
Damaer opened this issue · 2 comments
Damaer commented
can DonutProgress start from the center of top?
nzkozar commented
Yes, it can, or at any particular point on the circle. Just use donutProgress.setStartingDegree(int degree);
to set your preferred starting degree. To start at center top, use -90 as degree parameter.
Alternatively, you can also set this in your xml layout using
app:donut_circle_starting_degree="-90"
Damaer commented
I get it.thank you very much.