Folks,
   I want to use the full screen width in plots,
but it looks as though the size of the screen window is clipped somewhere ?

import pylab as pl
for h in (4,):
     for w in (8, 10, 12):
         fig = pl.figure( figsize=(w,h) )
         pl.plot( range(10) )  # widths 10, 12 display the same, ~ 8.5
         pl.title( "%d x %d ?"% (w,h) )
         pl.savefig( "tmp/%d-%d.png"% (w,h) )  # ok, as given

pl.show()

backend: Qt4Agg
matplotlib-0.99.1.1-py2.5-macosx10.5.dmg
python 2.5.1
Qt 4.4.3
mac ppc 10.4.11


(Is there an overview of the clipping / fitting sequence in the doc ?)

Thanks, cheers
   -- denis


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to