Re: [Matplotlib-users] Create a figure window without navigation toolbar

2012-10-03 Thread Benjamin Root
On Tue, Oct 2, 2012 at 11:09 PM, Jianbao Tao jianbao@gmail.com wrote: Hi, I know one can make a figure window without toolbar by doing mpl.rcParams['toolbar'] = 'None' However, this approach is kind of annoying if one just wants to remove the toolbar for one figure window and to keep

Re: [Matplotlib-users] Create a figure window without navigation toolbar

2012-10-03 Thread Phil Elson
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

[Matplotlib-users] Create a figure window without navigation toolbar

2012-10-02 Thread Jianbao Tao
Hi, I know one can make a figure window without toolbar by doing mpl.rcParams['toolbar'] = 'None' However, this approach is kind of annoying if one just wants to remove the toolbar for one figure window and to keep the default behavior to be with a toolbar. So, I am wondering if it is possible