On Tue, Jul 22, 2008 at 3:51 PM, Jonathan Hayward http://JonathansCorner.com
> I would like to shrink the graph height to a third or a fourth of its
> present value, and possibly cut the padding. How can I control that?

You can create an axes for plotting into with whatever dimensions you
want, by manually spcifying

  axes([left, bottom, width, height])

where each are in relative 0..1 coordinates.  Eg, for a smaller height
with more padding all around

  axes([0.2, 0.2, 0.6, 0.4])

JDH

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to