From 878f345099c9d0d90264383b08f75039ff5d32a0 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 4 Oct 2003 14:49:39 +0000 Subject: [PATCH] changed the gant-chart-lines to bars --- phpgwapi/inc/class.gdgraph.inc.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.gdgraph.inc.php b/phpgwapi/inc/class.gdgraph.inc.php index 931fc15125..0773bbacfb 100644 --- a/phpgwapi/inc/class.gdgraph.inc.php +++ b/phpgwapi/inc/class.gdgraph.inc.php @@ -269,7 +269,10 @@ $x2 = $largest * $linespace + $this->margin_left; } - $this->img->Line($x1,$y1,$x2,$y2); + for ($w = 0; $w < 7; $w++) + { + $this->img->Line(1+$x1,$y1+$w,$x2,$y2+$w); + } $color_index++; $i++; }