在Matplotlib中绘制阴影外的箭头

时间:2014-05-28 22:17:51

标签: python matplotlib

我有以下网格图,并想画一个箭头(用MS绘制的蓝色显示)。我怎么能通过matplotlib做到这一点?我不知道有任何命令要做。

enter image description here

2 个答案:

答案 0 :(得分:17)

import matplotlib.pyplot as plt

fg = plt.figure(1);
fg.clf();
ax = fg.add_subplot(1,1,1)
ax.annotate('', xy=(0, -0.1), xycoords='axes fraction', xytext=(1, -0.1), 
            arrowprops=dict(arrowstyle="<->", color='b'))
ax.grid(True)
fg.canvas.draw()

给出enter image description here

答案 1 :(得分:2)

在ax.arrow中使用clip_on = False