setStrokeColor() public method

Set the stroke color
public setStrokeColor ( Pop\Color\Space\ColorInterface $color ) : Graph
$color Pop\Color\Space\ColorInterface
return Graph
Example #1
0
 public function testSetStrokeColor()
 {
     $g = new Graph($this->imageOptions);
     $g->setStrokeColor(new Rgb(128, 128, 128));
     $this->assertEquals(new Rgb(128, 128, 128), $g->getStrokeColor());
 }