Re: pyqtgraph window position

2015-02-14 Thread Poul Riis
Den lørdag den 14. februar 2015 kl. 06.59.20 UTC+1 skrev Cousin Stanley: > > I can control the size of my pyqtgraph window below with 'resize'. > > > > But how can I control the position on the screen? > > > > Also, try > > w.setGeometry( x_pos , y_pos , width , height ) > > > --

Re: pyqtgraph window position

2015-02-13 Thread Cousin Stanley
> I can control the size of my pyqtgraph window below with 'resize'. > > But how can I control the position on the screen? > Also, try w.setGeometry( x_pos , y_pos , width , height ) -- Stanley C. Kitching Human Being Phoenix, Arizona -- https://mail.python.org/mailman/listinf

Re: pyqtgraph window position

2015-02-13 Thread Cousin Stanley
> I can control the size of my pyqtgraph window below > with 'resize'. > > But how can I control the position on the screen ? > > import pyqtgraph as pg > > w = pg.GraphicsWindow() > w.resize(250,400) > > for i in range(4): > w.addPlot(0, i) > > def onClick(event): > but=event.button()

pyqtgraph window position

2015-02-13 Thread Poul Riis
I can control the size of my pyqtgraph window below with 'resize'. But how can I control the position on the screen? Poul Riis import pyqtgraph as pg w = pg.GraphicsWindow() w.resize(250,400) for i in range(4): w.addPlot(0, i) def onClick(event): but=event.button() print("but: ",b