How can I set a figure window's title in pylab/python?

fig = figure(9) # 9 is now the title of the window
fig.set_title("Test") #doesn't work
fig.title = "Test" #doesn't work
link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

It's the title function in the pylab module

pylab.title('Test')

Edit: Sorry about that, if you want to actually change the window you can do:

fig = pylab.gcf()
fig.canvas.set_window_title('Test')
link|improve this answer
Not working. I have multiple figures that will be shown. Also, I'm importing pylab via from pylab import * and pylab.title("test") and title("test") don't work. – Omar Apr 28 '11 at 2:53
fig.canvas.set_window_title('Test') works. Thanks – Omar Apr 28 '11 at 3:48
feedback

Your Answer

 
or
required, but never shown

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