setStrokeWidth() 공개 메소드

Set the stroke width
public setStrokeWidth ( integer $width = 1 ) : Graph
$width integer
리턴 Graph
예제 #1
0
 public function testSetStrokeWidth()
 {
     $g = new Graph($this->imageOptions);
     $g->setStrokeWidth(5);
     $this->assertEquals(5, $g->getStrokeWidth());
 }