- Timestamp:
- 12/07/05 14:40:43 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Release12/python/asapplotter.py
r759 r782 148 148 else: 149 149 self._plotter.set_panels() 150 allxlim=[] 150 151 rows = self._cursor["t"] 151 152 rows = rows[:n] … … 228 229 if self._minmaxx is not None: 229 230 xlim = self._minmaxx 230 self._plotter.axes.set_xlim(xlim) 231 allxlim += xlim 232 allxlim.sort() 233 self._plotter.axes.set_xlim([allxlim[0],allxlim[-1]]) 231 234 self._plotter.set_axes('xlabel',xlab) 232 235 self._plotter.set_axes('ylabel',ylab) 233 236 self._plotter.set_axes('title',tlab) 237 234 238 return 235 239 … … 269 273 colvals = eval(cdict2.get(colmode)) 270 274 rowsel = self._cursor["t"][0] 275 allxlim=[] 271 276 for j in colvals: 272 277 polmode = "raw" … … 331 336 if self._minmaxx is not None: 332 337 xlim = self._minmaxx 333 self._plotter.axes.set_xlim(xlim) 334 338 allxlim += xlim 339 allxlim.sort() 340 self._plotter.axes.set_xlim([allxlim[0],allxlim[-1]]) 335 341 self._plotter.set_axes('xlabel',xlab) 336 342 self._plotter.set_axes('ylabel',ylab) … … 377 383 eval(cdict.get(self._panelling)) 378 384 385 allxlim=[] 379 386 colvals = eval(cdict2.get(colmode)) 380 387 for j in colvals: … … 470 477 if self._minmaxx is not None: 471 478 xlim = self._minmaxx 472 self._plotter.axes.set_xlim(xlim) 479 allxlim += xlim 480 allxlim.sort() 481 self._plotter.axes.set_xlim([allxlim[0],allxlim[-1]]) 473 482 474 483 self._plotter.set_axes('xlabel',xlab)
Note:
See TracChangeset
for help on using the changeset viewer.