diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-25 18:00:20 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-25 18:00:20 +0000 |
commit | 7e797bd734ed669f4b7d514935d5f694a4008d8d (patch) | |
tree | 79bee758ac16e6ee0604f9142a40499d855f9e19 /growthplot | |
parent | 11e644f58b1fd80b1955734a4a7a36883154f5c0 (diff) | |
download | fetchmail-7e797bd734ed669f4b7d514935d5f694a4008d8d.tar.gz fetchmail-7e797bd734ed669f4b7d514935d5f694a4008d8d.tar.bz2 fetchmail-7e797bd734ed669f4b7d514935d5f694a4008d8d.zip |
Hardwired label length.
svn path=/trunk/; revision=3147
Diffstat (limited to 'growthplot')
-rwxr-xr-x | growthplot | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -43,7 +43,8 @@ EOF echo "set label '$legend' at $lastday-10, $endy+15" else arrowhead=$((lasttotal-5)) - echo "set label '$legend' at $lastday-475, $endy-15" + lablen=475 + echo "set label '$legend' at $lastday-$lablen, $endy-15" fi echo set arrow \ from $lastday, $endy \ |