Make bar charts thicker

This commit is contained in:
Matthias Jentsch 2014-07-22 11:32:52 +02:00
parent 4b8bb99fa1
commit 0eaaaf2f29
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class BarGraph extends Styleable implements Drawable
$group = $doc->createElement('g');
$idx = 0;
foreach ($this->dataSet as $point) {
$rect = new Rect($point[0] - 1, $point[1], 2, 100 - $point[1]);
$rect = new Rect($point[0] - 2, $point[1], 4, 100 - $point[1]);
$rect->setFill($this->fill);
$rect->setStrokeWidth($this->strokeWidth);
$rect->setStrokeColor('black');