Re: [Matplotlib-users] Control the position of a figure window

2012-10-04 Thread Juergen Hasch
If you like to use qt4 as backend, you can also do it like this: import sys from PySide import QtGui import numpy as np from matplotlib.figure import Figure from matplotlib.backends.backend_qt4agg \ import FigureCanvasQTAgg as FigureCanvas fig = Figure() axes = fig.add_subplot(111) x =

Re: [Matplotlib-users] Control the position of a figure window

2012-10-03 Thread Benjamin Root
On Tue, Oct 2, 2012 at 11:38 PM, Jianbao Tao jianbao@gmail.com wrote: Hi, Is it possible to specify the position of a figure window when one is created? This will be a killing feature if one wants to put the figure window at the right place in the screen automatically. It is annoying if

Re: [Matplotlib-users] Control the position of a figure window

2012-10-03 Thread Gökhan Sever
I was after a similar issue once, and asked this question at SO: http://stackoverflow.com/questions/7802366/matplotlib-window-layout-questions Manual positioning is fine sometimes if I want to really place windows side-by-side for comparison purposes. However it would be nicer if mpl were to

[Matplotlib-users] Control the position of a figure window

2012-10-02 Thread Jianbao Tao
Hi, Is it possible to specify the position of a figure window when one is created? This will be a killing feature if one wants to put the figure window at the right place in the screen automatically. It is annoying if ones has to drag a new figure to a comfortable place in the screen every time a