|
From: Phil E. <pel...@gm...> - 2012-10-03 13:32:46
|
Personally, I am not a fan of adding a window specific keyword to the
figure function (although there may be some there already).
With 1.2 you can use Matthew Emmett/Paul Ivanov's awesome new context
manager to remove the toolbar for the duration of the with statement:
import matplotlib.pyplot as plt
import matplotlib as mpl
with mpl.rc_context({'toolbar':False}):
plt.plot(range(10))
plt.show()
Does that make things easier/nicer for you?
Cheers,
|