setBarWidth() public method

Set the bar width
public setBarWidth ( integer $width ) : Graph
$width integer
return Graph
Example #1
0
 public function testSetBarWidth()
 {
     $g = new Graph($this->imageOptions);
     $g->setBarWidth(5);
     $this->assertEquals(5, $g->getBarWidth());
 }