-
-
Notifications
You must be signed in to change notification settings - Fork 8k
Closed
Description
It works fine only at angle 0, otherwise the arrow head is corrupted.
Using this code:
fig = plt.figure()
ax = fig.add_subplot(111, polar=True)
ax.arrow(0, 0, 3.14/2, 0.8, linewidth=3, width=0.005 )
ax.yaxis.set_ticklabels([])
ax.tick_params(axis='both', which='major', labelsize=20)
At zero for 3rd parameter of above arrow call, it looks okay, but only there:
Version: master on OSX, in the notebook, seen both with inline
and nbagg
backend.
m-beau