Thanks, that's great, as I wanted to use ImageView widget
If I may take one more related question about widgets size: I have this code:
========================================
l = QtGui.QGridLayout()
iv = pg.ImageView()
l.addWidget(iv, 0, 0, 3, 1)
pw = pg.PlotWidget()
pw.setXLink(iv.view)
l.addWidget(pw, 1, 0, 1, 1)
========================================
expecting it would size top widget across 3 rows and bottom widget on 1 row, but it's not happens.
I tried using `addWidget(pw, 1, 0, rowspan=3, colspan=1), but the command does not understand these parameters