@@ -214,15 +214,19 class RTIPlot(Figure): | |||
|
214 | 214 | |
|
215 | 215 | ncolspan = 1 |
|
216 | 216 | colspan = 1 |
|
217 | widthplot = self.WIDTH | |
|
218 | heightplot = self.HEIGHT | |
|
217 | 219 | if showprofile: |
|
218 | 220 | ncolspan = 7 |
|
219 | 221 | colspan = 6 |
|
220 | 222 | self.__nsubplots = 2 |
|
223 | widthplot += self.WIDTHPROF | |
|
224 | heightplot += self.HEIGHTPROF | |
|
221 | 225 | |
|
222 | 226 | self.createFigure(idfigure = idfigure, |
|
223 | 227 | wintitle = wintitle, |
|
224 |
widthplot = |
|
|
225 |
heightplot = |
|
|
228 | widthplot = widthplot, | |
|
229 | heightplot = heightplot) | |
|
226 | 230 | |
|
227 | 231 | nrow, ncol = self.getSubplots() |
|
228 | 232 | |
@@ -396,15 +400,19 class SpectraPlot(Figure): | |||
|
396 | 400 | |
|
397 | 401 | ncolspan = 1 |
|
398 | 402 | colspan = 1 |
|
403 | widthplot = self.WIDTH | |
|
404 | heightplot = self.HEIGHT | |
|
399 | 405 | if showprofile: |
|
400 | 406 | ncolspan = 3 |
|
401 | 407 | colspan = 2 |
|
402 | 408 | self.__nsubplots = 2 |
|
403 | ||
|
409 | widthplot += self.WIDTHPROF | |
|
410 | heightplot += self.HEIGHTPROF | |
|
411 | ||
|
404 | 412 | self.createFigure(idfigure = idfigure, |
|
405 | 413 | wintitle = wintitle, |
|
406 |
widthplot = |
|
|
407 |
heightplot = |
|
|
414 | widthplot = widthplot, | |
|
415 | heightplot = heightplot) | |
|
408 | 416 | |
|
409 | 417 | nrow, ncol = self.getSubplots() |
|
410 | 418 |
General Comments 0
You need to be logged in to leave comments.
Login now