I was previously running v4.4 and all was working perfectly. I upgraded
to v4.6.1 on Fedora 19 and now the X scale text is truncated off the
bottom of the canvas.
See and example at: http://www.edcint.co.nz/tmp/test.png
Any ideas what is causing this now or how to fix it?
I'm graphing with the following:
set grid noxtics ytics
set nokey
set size 1,1
set terminal png transparent font DejaVuSansMono 8 size 448,196
set xtics rotate
set xdata time
set timefmt "%Y%m%d:%H%M%S"
set format x " %R"
set y2tics
set format y2
set format y
set xrange ["20140105:212400":"20140106:205400"]
# 7 day styles and older, temp, humid, pressure, rain
set style line 1 linewidth 1 linecolor rgbcolor "cyan"
set style line 2 linewidth 1 linecolor rgbcolor "brown"
set style line 3 linewidth 1 linecolor rgbcolor "green"
set style line 4 linewidth 1 linecolor rgbcolor "orange"
# max temp
set style line 9 linewidth 1 linecolor rgbcolor "red"
# 1 day styles , temp, humid, pressure, rain
set style line 5 linewidth 1 linecolor rgbcolor "blue"
set style line 6 linewidth 1 linecolor rgbcolor "orange"
set style line 7 linewidth 1 linecolor rgbcolor "sea-green"
set style line 8 linewidth 1 linecolor rgbcolor "plum"
# max temp
set style line 10 linewidth 1 linecolor rgbcolor "magenta"
plot "/tmp/test/Adelaide.data" using 1:2:(0.01) smooth acsplines ls 5
,"/tmp/test/Adelaide.data" using 1:6 with lines ls 10
|