本文整理汇总了Python中pyqtgraph.PlotWidget.getAxis方法的典型用法代码示例。如果您正苦于以下问题:Python PlotWidget.getAxis方法的具体用法?Python PlotWidget.getAxis怎么用?Python PlotWidget.getAxis使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyqtgraph.PlotWidget
的用法示例。
在下文中一共展示了PlotWidget.getAxis方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Ui_plotWindow
# 需要导入模块: from pyqtgraph import PlotWidget [as 别名]
# 或者: from pyqtgraph.PlotWidget import getAxis [as 别名]
class Ui_plotWindow(QtGui.QWidget, subpanel):
def setupUi(self, plotWindow, commTransport):
plotWindow.setObjectName(_fromUtf8("plotWindow"))
plotWindow.resize(818, 418)
self.gridLayout = QtGui.QGridLayout(plotWindow)
self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
self.graphicsView = PlotWidget(plotWindow)
self.graphicsView.setObjectName(_fromUtf8("graphicsView"))
self.gridLayout.addWidget(self.graphicsView, 0, 0, 1, 1)
self.retranslateUi(plotWindow)
QtCore.QMetaObject.connectSlotsByName(plotWindow)
self.serialComm = commTransport
self.graphicsView.hideAxis('bottom')
self.graphicsView.getAxis('left').setWidth(100)
# custom code added
'''
self.dataPlot.hideAxis('bottom')
self.dataPlot.showGrid(y=True)
self.dataPlot.getAxis('left').setWidth(100)
plotSize = 256
self.plotCount = 6
self.output = []
for i in range(self.plotCount):
self.output.append(deque([0.0]*plotSize))
self.axis = deque(range(plotSize))
self.value = plotSize
'''
def retranslateUi(self, plotWindow):
plotWindow.setWindowTitle(QtGui.QApplication.translate("plotWindow", "Form", None, QtGui.QApplication.UnicodeUTF8))
def readContinuousData(self, serialComm):
'''