diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-25 08:31:16 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-25 08:31:16 +0000 |
commit | 5a984be7f8301d317fa61120dd57427c9189296b (patch) | |
tree | a7db1baa0cd96af570677a16c7cccbaf2c5181f1 | |
parent | a52d10424f7c97791840f5178cc18abedacc674c (diff) | |
download | fetchmail-5a984be7f8301d317fa61120dd57427c9189296b.tar.gz fetchmail-5a984be7f8301d317fa61120dd57427c9189296b.tar.bz2 fetchmail-5a984be7f8301d317fa61120dd57427c9189296b.zip |
Ready to translate out of sell.
svn path=/trunk/; revision=3143
-rwxr-xr-x | growthplot | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -38,11 +38,14 @@ EOF echo "lastday = $lastday - 5" echo "lasttotal = $lasttotal" echo "endy = breakheight + 50 + count * 50" + echo "if (endy > lasttotal) arrowhead = lasttotal+50" + echo "if (endy <= lasttotal) arrowhead = lasttotal-5" echo set arrow \ from lastday, endy \ - to lastday, lasttotal+50 \ + to lastday, arrowhead \ head - echo "set label '$legend' at lastday-10, endy+15" + echo "if (endy > lasttotal) set label '$legend' at lastday-10, endy+15" + echo "if (endy <= lasttotal) set label '$legend' at lastday-500, endy-15" else lastday=$days lasttotal=$total @@ -75,3 +78,10 @@ gnuplot /tmp/growthimage$$ >growth.png rm -f /tmp/growth* # growthplot ends here + + + + + + + |