setReverseFontColor() public method

Set the reverse font color
public setReverseFontColor ( Pop\Color\Space\ColorInterface $color ) : Graph
$color Pop\Color\Space\ColorInterface
return Graph
Example #1
0
 public function testSetReverseFontColor()
 {
     $g = new Graph($this->imageOptions);
     $g->setReverseFontColor(new Rgb(128, 128, 128));
     $this->assertEquals(new Rgb(128, 128, 128), $g->getReverseFontColor());
 }