rmber wrote:
> I've search and there have been some previous post about this that have gone
> unanswered, so I'll go ahead and ask it again:
> 
> Is there a way to set the window title of a figure?  I want the top bar of
> the window to say something other than "Figure 1" or "Figure 2" so I can
> easily identify open plots.  Again, I'm not interested in the figure title
> that you can set with title('something'), but the words in the main window's
> title, on the same bar as the close,maximize, minimize buttons.

This capability was added fairly recently:

import matplotlib.pyplot as plt
fig = plt.figure()
fig.canvas.set_window_title('Custom')
plt.show()


Eric
> 
> Thanks,
> 
> Ryan


------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to