本文整理汇总了Python中pyqtgraph.PlotWidget.resize方法的典型用法代码示例。如果您正苦于以下问题:Python PlotWidget.resize方法的具体用法?Python PlotWidget.resize怎么用?Python PlotWidget.resize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyqtgraph.PlotWidget
的用法示例。
在下文中一共展示了PlotWidget.resize方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Example
# 需要导入模块: from pyqtgraph import PlotWidget [as 别名]
# 或者: from pyqtgraph.PlotWidget import resize [as 别名]
class Example(QtGui.QWidget):
def __init__(self):
super(Example, self).__init__()
self.initUI()
self.current_y = 0
self.timer = QtCore.QTimer()
self.timer.timeout.connect(self.update_plot)
self.timer.setInterval(1000/FREQ)
self.timer.start()
def initUI(self):
self.setGeometry(300, 300, 1000, 1000)
self.setWindowTitle('Icon')
self.setWindowIcon(QtGui.QIcon('web.png'))
self.plot = PlotWidget(self, axisItems={'bottom': TimeAxisItem(orientation='bottom')})
self.plot.resize(900, 900)
self.curve = self.plot.plot(x, ys[0])
#self.curve.attach(self.plot)
self.show()
def update_plot(self):
self.curve.setData(x, ys[self.current_y])
self.current_y = (self.current_y + 1) % YS
示例2: Example
# 需要导入模块: from pyqtgraph import PlotWidget [as 别名]
# 或者: from pyqtgraph.PlotWidget import resize [as 别名]
class Example(QtGui.QWidget):
def __init__(self):
super(Example, self).__init__()
self.setGeometry(300, 300, 400, 400)
self.plot = PlotWidget(self, axisItems={'bottom': TimeAxisItem(orientation='bottom')})
self.plot.resize(300, 300)
self.curve = self.plot.plot(np.linspace(0, 10, 100), np.random.random(100))
self.show()
示例3: Example
# 需要导入模块: from pyqtgraph import PlotWidget [as 别名]
# 或者: from pyqtgraph.PlotWidget import resize [as 别名]
class Example(QtGui.QWidget):
def __init__(self):
super(Example, self).__init__()
self.initUI()
self.current_y = 0
#self.timer = QtCore.QTimer()
#self.timer.timeout.connect(self.update_plot)
#self.timer.setInterval(1000/FREQ)
#self.timer.start()
def initUI(self):
self.setGeometry(300, 300, 1000, 1000)
self.setWindowTitle('Icon')
self.setWindowIcon(QtGui.QIcon('web.png'))
self.plot = PlotWidget(self)
self.plot.resize(900, 900)
self.curves = []
for x, y in zip(chunkedx, chunkedy):
print('plot', len(x), len(y))
self.curves.append(self.plot.plot(x, y))
print(self.curves[-1])
self.show()
@timeme
def update_plot(self):
self.curves[-1].setData(small_x, ys[self.current_y])
self.current_y = (self.current_y + 1) % YS