def __init__(self, oModel, dParams, fSubReport = False, fnDPrint = None, oDisp = None): WuiReportBase.__init__(self, oModel, dParams, fSubReport = fSubReport, fnDPrint = fnDPrint, oDisp = oDisp); # Select graph implementation. if dParams[WuiMain.ksParamGraphWizImpl] == 'charts': from testmanager.webui.wuihlpgraphgooglechart import WuiHlpLineGraphErrorbarY as MyGraph; self.oGraphClass = MyGraph; elif dParams[WuiMain.ksParamGraphWizImpl] == 'matplotlib': from testmanager.webui.wuihlpgraphmatplotlib import WuiHlpLineGraphErrorbarY as MyGraph; self.oGraphClass = MyGraph; else: self.oGraphClass = WuiHlpLineGraphErrorbarY;