Hi,
I am intensively using gnuplot for my graphics, ans I am sooooo happy
with it...
Now here is something annoying for me:
I sometime want the "key" to be in the graphic, at bottom left.
However, on some examples (like the one included) the dimensions of the
key+labels aren't computed correctly resulting in a big empty space left
on the left of the key.
I have tested using the actual CVS version of gnuplot, and the problem
is still there.
Thanks,
Eric
my file:
#police_default="Times-Roman,18"
police_default=""
set terminal postscript eps enhanced police_default color
set output "test.eps"
set grid
set grid mxtics;
set grid mytics;
set logscale x;
set xrange [0.05:60]
set key left bottom inside spacing 1.1
set title "It seems there is a bug with the computation of the key
dimension, leaving an empty space at left of it"
plot sin(x) title '<- this empty space is larger as the text get
longer', cos(x) title 'this is cos(x^2)'
quit
|