setBarWidth() 공개 메소드

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