コード例 #1
0
ファイル: plot_marker.py プロジェクト: petebachant/python-qwt
 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.)
コード例 #2
0
ファイル: plot_marker.py プロジェクト: berrosse/PythonQwt
 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.)
コード例 #3
0
ファイル: plot_grid.py プロジェクト: igrekus/PythonQwt
 def __init__(self, title="Grid"):
     QwtPlotItem.__init__(self, title)
     self.__data = QwtPlotGrid_PrivateData()
     self.setItemInterest(QwtPlotItem.ScaleInterest, True)
     self.setZ(10.0)
コード例 #4
0
 def __init__(self):
     QwtPlotItem.__init__(self, QwtText("Grid"))
     self.__data = QwtPlotGrid_PrivateData()
     self.setItemInterest(QwtPlotItem.ScaleInterest, True)
     self.setZ(10.)
コード例 #5
0
ファイル: plot_grid.py プロジェクト: berrosse/PythonQwt
 def __init__(self):
     QwtPlotItem.__init__(self, QwtText("Grid"))
     self.__data = QwtPlotGrid_PrivateData()
     self.setItemInterest(QwtPlotItem.ScaleInterest, True)
     self.setZ(10.)
コード例 #6
0
ファイル: plot_series.py プロジェクト: robinkqin/PythonQwt
 def __init__(self, title):
     if not isinstance(title, QwtText):
         title = QwtText(title)
     QwtPlotItem.__init__(self, title)
     self.__data = QwtPlotSeriesItem_PrivateData()
コード例 #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)
コード例 #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()