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

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -