|
From: Petr M. <mi...@ph...> - 2010-03-25 21:07:13
|
> | If you really have no labels or other plot decorations outside > | of the plot borders, then you want: > | > | set term png size 340,210 > | set lmargin at screen 0 > | set rmargin at screen 1 > | set bmargin at screen 0 > | set tmargin at screen 1 > | > | If for some reason you want to work with some white space around it, > | and then later crop to final size: > | > | set term png size 374,231 # NB: 10% bigger than the final size > | set lmargin at screen 0.05 > | set rmargin at screen 0.95 > | set bmargin at screen 0.05 > | set tmargin at screen 0.95 > | > I remember trying to use the 'margin' settings, but without success. > > however I'll try again now. -- YES it is now working!!! > The first block is what I was needing. > > Perhaps this should be in the FAQ :-) Can you please propose the appropriate text to add? The source code of FAQ is here: http://gnuplot.cvs.sourceforge.net/viewvc/gnuplot/faq/ You can also consider adding an example into the "help margin". --- PM |