Горячий я могу создать настроенный matplotlib.patches.ArrowStyle?
import matplotlib.pyplot as plt
from matplotlib.patches import ArrowStyle
plt.figure(1, figsize=(9,9))
ArrowStyle("Test", head_length=.4, head_width=200, tail_width=2)
ax = plt.subplot(111)
ax.annotate("",
xy=(0.2, 0.2), xycoords='data',
xytext=(0.8, 0.8), textcoords='data',
arrowprops=dict(arrowstyle="Test",
connectionstyle="arc3"),
)
plt.show()
![?](https://i.stack.imgur.com/4XLnS.png)
Я хотел бы изменить ширину головы ихвост.В документации matplotlib к matplotlib.patches.arrowstyle написано, что объект стиля стрелки можно создать как ArrowStyle("Fancy", head_length=.4, head_width=.4, tail_width=.4)
.Однако при изменении параметров стиль стрелки остается прежним.