Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

enter image description here

Is there a way to have the "Zoom to rectangle" tool automatically activated by default when a matplotlib figure is shown?

import numpy as np
import matplotlib.pyplot as plt
x=np.arange(-300, 300)
y=x**2-7*x
fig=plt.figure()
ax=fig.add_subplot(1,1,1)
plt.plot(x, y)
# Add something here to activate the "Zoom to rectangle" tool?
plt.show()
share|improve this question
1  
This will probably be backend-dependent. Which backend do you use? To be clear, I don't know the answer. :) – Sven Marnach Nov 15 '11 at 23:19
I was wrong with my first comment: matplotlib.sourceforge.net/api/… Don't know on which object this method must be called, though. – Sven Marnach Nov 15 '11 at 23:29
I'm using GtkAgg, in case that matters. – unutbu Nov 15 '11 at 23:34

1 Answer

up vote 3 down vote accepted

This works for me:

plt.get_current_fig_manager().toolbar.zoom()
share|improve this answer
Excellent. Thanks so much. – unutbu Nov 16 '11 at 0:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.