Lines Matching refs:self
67 def __init__(self, sId, oData, oDisp):
68 self._sId = sId;
69 self._oData = oData;
70 self._oDisp = oDisp;
72 self._cxGraph = 1024;
73 self._cyGraph = 448;
74 self._cDpiGraph = 96;
76 self._sTitle = None;
77 self._cPtFont = 8;
79 def headerContent(self):
85 def renderGraph(self):
92 def setTitle(self, sTitle):
94 self._sTitle = sTitle;
97 def setWidth(self, cx):
99 self._cxGraph = cx;
102 def setHeight(self, cy):
104 self._cyGraph = cy;
107 def setDpi(self, cDotsPerInch):
109 self._cDpiGraph = cDotsPerInch;
112 def setFontSize(self, cPtFont):
114 self._cPtFont = cPtFont;