setBarWidth() public method

Set the bar width
public setBarWidth ( integer $width ) : Graph
$width integer
return Graph
コード例 #1
0
ファイル: GraphTest.php プロジェクト: nicksagona/PopPHP
 public function testSetBarWidth()
 {
     $g = new Graph($this->imageOptions);
     $g->setBarWidth(5);
     $this->assertEquals(5, $g->getBarWidth());
 }