|
From: <HBB...@t-...> - 2007-07-14 14:34:26
|
Gerald Cox wrote:
> set terminal png transparent xffffff x000000 x404040 x0000ff xa52a2a
> x00ffff x006400 x9400d3 xcd5d5c
> set size 1.5, 0.75
These lines are what causes this effect:
> For some reason only half of the xtic labels are appearing.
... wherein "half the labels" are those within the usual size 1.0 of the
terminal output. You're observing one of the inadvertant side effects
of enlarging an image file output by gnuplot using 'set size' instead of
the 'size' option of 'set terminal'. Replace the above by
set terminal png size 960,360 \
transparent xffffff x000000 x404040 x0000ff xa52a2a \
x00ffff x006400 x9400d3 xcd5d5c
set size 1.0, 1.0
and it'll work again.
|