Example #1
0
 def __init__(self, title=None):
     if title is None:
         title = ""
     if not isinstance(title, QwtText):
         title = QwtText(title)
     QwtPlotItem.__init__(self, title)
     self.__data = QwtPlotMarker_PrivateData()
     self.setZ(30.)
Example #2
0
 def __init__(self, title=None):
     if title is None:
         title = ""
     if not isinstance(title, QwtText):
         title = QwtText(title)
     QwtPlotItem.__init__(self, title)
     self.__data = QwtPlotMarker_PrivateData()
     self.setZ(30.)
Example #3
0
 def __init__(self, title="Grid"):
     QwtPlotItem.__init__(self, title)
     self.__data = QwtPlotGrid_PrivateData()
     self.setItemInterest(QwtPlotItem.ScaleInterest, True)
     self.setZ(10.0)
Example #4
0
 def __init__(self):
     QwtPlotItem.__init__(self, QwtText("Grid"))
     self.__data = QwtPlotGrid_PrivateData()
     self.setItemInterest(QwtPlotItem.ScaleInterest, True)
     self.setZ(10.)
Example #5
0
 def __init__(self):
     QwtPlotItem.__init__(self, QwtText("Grid"))
     self.__data = QwtPlotGrid_PrivateData()
     self.setItemInterest(QwtPlotItem.ScaleInterest, True)
     self.setZ(10.)
Example #6
0
 def __init__(self, title):
     if not isinstance(title, QwtText):
         title = QwtText(title)
     QwtPlotItem.__init__(self, title)
     self.__data = QwtPlotSeriesItem_PrivateData()
Example #7
0
 def __init__(self, title):
     if not isinstance(title, QwtText):
         title = QwtText(title)
     QwtPlotItem.__init__(self, title)
     self.__data = QwtPlotSeriesItem_PrivateData()
     self.setItemInterest(QwtPlotItem.ScaleInterest, True)
Example #8
0
 def __init__(self, title):
     QwtAbstractSeriesStore.__init__(self)
     if not isinstance(title, QwtText):
         title = QwtText(title)
     QwtPlotItem.__init__(self, title)
     self.__data = QwtPlotSeriesItem_PrivateData()