When drawing a pie chart in compose, I draw each s...
# compose
z
When drawing a pie chart in compose, I draw each slice using
DrawScope.drawArc
and get the exact result I want wanted. Id now like to complicate my life by making each slice have rounded corners... something tells me this wont be easy, my assumption is that Ill need to draw each slice with a path/line in order to make it happen. Am I right? Please tell me theres an easier way?
r