setStrokeWidth() public method

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