我正在尝试在PyQt应用程序中使用PyQtGraph创建绘图布局.
我需要一行包含两个图,前两列宽,第二个宽一列.
阅读文档时,我认为这样可以工作:
# Create the PyQtGraph Plot area
self.view = pg.GraphicsLayoutWidget()
self.w1 = self.view.addPlot(row=1, col=1, colspan=2, title = 'Data1')
self.w2 = self.view.addPlot(row=1, col=3, colspan=1, title = 'Data2')
但是在这种情况下,我得到两个绘图区域,每个区域占窗口宽度的50%.
我究竟做错了什么?
最好的祝福,
本
解决方法:
colspan允许您让网格布局中的单元格跨多列.我以一种方式合并了多个网格单元.在您的示例中,您最终得到1行3列的网格.前两列的宽度显然占总数的25%(或一列的宽度为0%,另一列的宽度为50%),而第三列则占其他宽度的50%.简而言之:colspan不允许您控制列的宽度.
那么,如何设置列的宽度或其内容呢?令人惊讶地很难找到.似乎没有直接处理此问题的PyQtGraph方法,您必须使用基础的Qt类.
pg.GraphicsLayoutWidget具有pg.GraphicsLayout作为其中心项.这又具有包含Qt QGraphicsGridLayout的布局成员.这使您可以使用以下方法操纵列宽:setColumnFixedWidth,setColumnMaximimumWidth,setColumnStretchFactor等.您可能需要这样的东西:
self.view = pg.GraphicsLayoutWidget()
self.w1 = self.view.addPlot(row=0, col=0, title = 'Data1')
self.w2 = self.view.addPlot(row=0, col=1, title = 'Data2')
qGraphicsGridLayout = self.view.ci.layout
qGraphicsGridLayout.setColumnStretchFactor(0, 2)
qGraphicsGridLayout.setColumnStretchFactor(1, 1)
看一下the documentation of QGraphicsGridLayout并进行一些实验.