标签: python matplotlib
fig = plt.figure() ax = fig.add_subplot(111) ax.add_patch(...) # several times ax.text(x,y,"something") # several times ax.autoscale_view()
截断文字。即它在视口计算中不考虑文本位置,宽度和高度。
如何使autoscale_view尊重ax.text(...)调用?