防止创建绘图窗口 - Pyqtgraph plot

Posted

技术标签:

【中文标题】防止创建绘图窗口 - Pyqtgraph plot【英文标题】:Prevent plot window from being created - Pyqtgraph plot 【发布时间】:2019-06-11 19:50:19 【问题描述】:

我正在创建 pyqtgraph.plot() 项目的字典,然后将这些项目添加到选项卡式 PyQt 窗口。但是,一旦创建了这些对象,也会生成一个窗口。我可以调用 win.hide() 函数来摆脱这些窗口,但它们最初仍然会弹出。有什么办法可以防止在创建绘图对象时弹出窗口?

import pyqtgraph as pg
#Generate dictionary containing pyqtgraph plots
plot_dict = 'plot_1': pg.plot(),
             'plot_2': pg.plot(),
             'plot_3': [pg.plot()'
              
#Hide plot windows after they are generated
for plot in plot_dict:
    plot.win.hide()

基本上:我可以在 pg.plot() 中包含一个标志来阻止窗口显示吗?

【问题讨论】:

'plot_3': [pg.plot()' 应该是'plot_3': pg.plot() 【参考方案1】:

plot() 只是一个显示PlotWindows 的辅助函数。 (见plot)。 PlotWindow 是一个继承自 PlotWidget 的类,并显示在一个窗口中。 (它也调用show() 并做一些其他的事情,比如设置标题和调整大小)。 如果mkQApp() 不存在,这两个都会创建QApplication

仅供参考:

class PlotWindow(PlotWidget):
    def __init__(self, title=None, **kargs):
        mkQApp()
        self.win = QtGui.QMainWindow()
        PlotWidget.__init__(self, **kargs)
        self.win.setCentralWidget(self)
        for m in ['resize']:
            setattr(self, m, getattr(self.win, m))
        if title is not None:
            self.win.setWindowTitle(title)
        self.win.show()

def mkQApp():
    global QAPP
    inst = QtGui.QApplication.instance()
    if inst is None:
        QAPP = QtGui.QApplication([])
    else:
        QAPP = inst
    return QAPP

所以解决方法是直接使用PlotWidget,想看的时候自己调用show()。您还必须自己创建QApplication

import pyqtgraph as pg

if __name__ == '__main__':

    app = pg.mkQApp()

    plot_dict = 'plot_1': pg.PlotWidget(),
             'plot_2': pg.PlotWidget(),
             'plot_3': pg.PlotWidget()
              

    plot_dict['plot_1'].show() # manually call show()

    app.exec()

【讨论】:

感谢您的详细解释——这绝对解决了我的困惑!

以上是关于防止创建绘图窗口 - Pyqtgraph plot的主要内容,如果未能解决你的问题,请参考以下文章

pyqtgraph 滚动图:分块绘图,在当前窗口中仅显示最新的 10 秒样本

如何使用 pyqtgraph 得到一个简单的绘图

使用 PyQtGraph 我的 Surface Plot 显示在窗口的左下角。

移动到 QGraphicsView 时创建没有窗口打开和关闭的 pyqtgraph 图

PyQtGraph PlotWidget:如何强制每次绘制(更改范围)以进行“实时”绘图

Pyqtgraph 绘图很慢