本文整理匯總了Python中PyQt4.Qwt5.QwtPlot.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python QwtPlot.__init__方法的具體用法?Python QwtPlot.__init__怎麽用?Python QwtPlot.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PyQt4.Qwt5.QwtPlot
的用法示例。
在下文中一共展示了QwtPlot.__init__方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from PyQt4.Qwt5 import QwtPlot [as 別名]
# 或者: from PyQt4.Qwt5.QwtPlot import __init__ [as 別名]
def __init__(self, parent):
QwtPlot.__init__(self, parent)
self.variables = []
self.insertLegend(QwtLegend(self), QwtPlot.TopLegend)
self.setCanvasBackground(Qt.white)
self.magnifier = QwtPlotMagnifier(self.canvas())
self.magnifier.setAxisEnabled(QwtPlot.xBottom, False)
self.magnifier.setAxisEnabled(QwtPlot.yLeft, True)
self.panner = QwtPlotPanner(self.canvas())
self.panner.setAxisEnabled(QwtPlot.xBottom, False)
self.panner.setAxisEnabled(QwtPlot.yLeft, True)
示例2: __init__
# 需要導入模塊: from PyQt4.Qwt5 import QwtPlot [as 別名]
# 或者: from PyQt4.Qwt5.QwtPlot import __init__ [as 別名]
def __init__(self, *arg):
QwtPlot.__init__(self, *arg)
self.plotLayout().setAlignCanvasToScales(True)
self.setCanvasBackground(Qt.white)
self.legend = QwtLegend()
self.legend.setItemMode(QwtLegend.ClickableItem)
self.insertLegend(self.legend, QwtPlot.TopLegend)
self.grid = QwtPlotGrid()
self.grid.attach(self)
self.grid.setPen(QPen(Qt.black, 0, Qt.DotLine))
self.zoomer = QwtPlotZoomer(QwtPlot.xBottom, QwtPlot.yLeft, QwtPicker.DragSelection,
QwtPicker.AlwaysOn, self.canvas())
self.zoomer.setRubberBandPen(QPen(Qt.green))
self.zoomer.setTrackerPen(QPen(Qt.red))
self.magnifier = QwtPlotMagnifier(self.canvas())
self.panner = QwtPlotPanner(self.canvas())
self.panner.setMouseButton(Qt.LeftButton, Qt.ControlModifier)
self.connect(self, SIGNAL("legendClicked(QwtPlotItem*)"), self.togglePlotItemVisibility)