0

With VisPy library, one can set canvas position by doing:

from vispy import app    
canvas = app.Canvas(position=(0,0)) #Left top position

Is there a way to do the same with PyQtGraph library?

import pyqtgraph as pg
win = pg.GraphicsWindow() #position?
Skryge
  • 81
  • 1
  • 9

1 Answers1

0

One can use QWidget::move method. In my example :

win.move(pos_x, pos_y)

This post gives further details.

Skryge
  • 81
  • 1
  • 9