diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-10-02 12:20:00 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-10-02 12:20:00 +0000 |
commit | c8736933fdb887cf82d99b859c7feb803e2fd3c3 (patch) | |
tree | 64ed088bfe22bf9d3b0bdc9e96e3492e37ca0b4a /growthplot | |
parent | ed38631c6bd2f020d7dfd05be36d1dc4383ac643 (diff) | |
download | fetchmail-c8736933fdb887cf82d99b859c7feb803e2fd3c3.tar.gz fetchmail-c8736933fdb887cf82d99b859c7feb803e2fd3c3.tar.bz2 fetchmail-c8736933fdb887cf82d99b859c7feb803e2fd3c3.zip |
No more bend in the legend arrows.
svn path=/trunk/; revision=2631
Diffstat (limited to 'growthplot')
-rwxr-xr-x | growthplot | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -37,15 +37,12 @@ EOF echo "count = count + 1" echo "lastday = $lastday - 5" echo "lasttotal = $lasttotal" + echo "endy = breakheight + 50 + count * 50" echo set arrow \ - from lastday, breakheight \ + from lastday, endy \ to lastday, lasttotal+50 \ head - echo "endx = lastday + 50 + count * 25" - echo "endy = breakheight + 50 + count * 50" - echo "set arrow \ - from lastday, breakheight to endx, endy nohead" - echo "set label '$legend' at endx+10, endy" + echo "set label '$legend' at lastday-10, endy+15" else lastday=$days lasttotal=$total |