如何获得下图中显示的框的坐标?
fig, ax = subplots()
x = ax.annotate('text', xy=(0.5, 0), xytext=(0.0,0.7),
ha='center', va='bottom',
bbox=dict(boxstyle='round', fc='gray', alpha=0.5),
arrowprops=dict(arrowstyle='->', color='blue'))
我试图检查这个对象的属性,但我找不到适合这个目的的东西。有一个名为的属性get_bbox_patch()
可能在正确的轨道上,但是,我在不同的坐标系中得到结果(或与不同的属性相关联)
y = x.get_bbox_patch()
y.get_width()
63.265625
非常感谢!