import pyqtgraph as pgapp = pg.mkQApp()sa = pg.QtGui.QScrollArea()w = pg.GraphicsLayoutWidget()w.setFixedHeight(2000)sa.setWidget(w)for i in range(20):w.addPlot(row=i, col=0)sa.show()
Thank you for this hint. I was looking for the same thing. But now I have the Scrollbar but the GraphicsLayoutWidget does not occupy the whole area in the Window. Is there a way to set minimum Sizes to the Items in the GraphcalLayoutWidget?