python - How to make autoscale_view respect text -
fig = plt.figure() ax = fig.add_subplot(111) ax.add_patch(...) # several times ax.text(x,y,"something") # several times ax.autoscale_view()
truncates text. i.e. not respect text position, width , height in viewport calculations.
how make autoscale_view respect ax.text(...) calls?
Comments
Post a Comment