I am trying to rotate the labels to verticle (e.g. along the y-axis
).
a0.pie(adata, labels=alabel,startangle=180, radius=1, autopct='%1.1f%%')
a1.pie(bdata, explode=explode, labels=blabel, startangle=0, autopct="%1.1f%%")
By default, it is parallel to the x-axis
, and rotatelabels=True
is not an option in this case, as I want, 90degree rotation.
How I can do that?