def __setupLayout(self): layout = PlotLayout() (width, height) = self.getDimensions() layout.setPlotDimensions(width, height) if self.plotParams is not None: layout.setPlotParameters(**self.plotParams) if self.latex == True: layout.useLatexLabels() layout.addPlot(self) return layout
def __setupLayout(self): layout = PlotLayout() (width, height) = self.getDimensions() layout.setPlotDimensions(width, height, dpi=self.dpi) if self.plotParams is not None: layout.setPlotParameters(**self.plotParams) if self.latex == True: layout.useLatexLabels() if self.axesLabelSize is not None: layout.setAxesLabelSize(self.axesLabelSize) if self.xTickLabelSize is not None: layout.setXTickLabelSize(self.xTickLabelSize) if self.yTickLabelSize is not None: layout.setYTickLabelSize(self.yTickLabelSize) layout.addPlot(self) return layout
def __setupLayout(self): layout = PlotLayout() (width, height) = self.getDimensions() layout.setPlotDimensions(width, height, dpi=self.dpi) if self.plotParams is not None: layout.setPlotParameters(**self.plotParams) if self.titleSize is not None: layout.setTitleSize(self.titleSize) if self.latex == True: layout.useLatexLabels() if self.axesLabelSize is not None: layout.setAxesLabelSize(self.axesLabelSize) if self.xTickLabelSize is not None: layout.setXTickLabelSize(self.xTickLabelSize) if self.yTickLabelSize is not None: layout.setYTickLabelSize(self.yTickLabelSize) layout.addPlot(self) return layout