我想使用单个注释文本用多个箭头注释多个数据点。我做了一个简单的解决方法:
ax = plt.gca()
ax.plot([1,2,3,4],[1,4,2,6])
an1 = ax.annotate('Test',
xy=(2,4), xycoords='data',
xytext=(30,-80), textcoords='offset points',
arrowprops=dict(arrowstyle="-|>",
connectionstyle="arc3,rad=0.2",
fc="w"))
an2 = ax.annotate('Test',
xy=(3,2), xycoords='data',
xytext=(0,0), textcoords=an1,
arrowprops=dict(arrowstyle="-|>",
connectionstyle="arc3,rad=0.2",
fc="w"))
plt.show()
产生以下结果:
但我真的不喜欢这个解决方案,因为它是......好吧,一个丑陋的肮脏黑客。
除此之外,它还会影响注释的外观(主要是在使用半透明 bbox 等时)。
所以,如果有人得到了一个实际的解决方案,或者至少知道如何实现它,请分享。