我有一个非常基本的PyQtgraph设置,在一台显示器上看起来非常完美,但是当我将其移到另一台显示器上时,它将无法缩放。
我尝试浏览pyqtgraph网站上的viewBox文档,并查看了教程代码。
from pyqtgraph.Qt import QtCore,QtGui
import pyqtgraph as pg
class Graph:
def setup(self):
'''
Setup the graph
'''
self.layout = pg.GraphicsLayoutWidget()
self.layout.resize(600,400)
self.layout.show()
self.plot = self.layout.addPlot(title = 'Plot')
self.viewBox = self.plot.getViewBox()
self.viewBox.enableAutoRange(self.viewBox.XAxis, enable = False)
self.viewBox.setAspectLocked(lock=True)
import sys
app = QtGui.QApplication(sys.argv)
Graph = Graph()
Graph.setup()
app.instance().exec()
我希望窗口会自动缩放到新窗口,但不会发生。