setFontSize() public method

Set the font size
public setFontSize ( integer $size ) : Graph
$size integer
return Graph
Example #1
0
 public function testSetFontSize()
 {
     $g = new Graph($this->imageOptions);
     $g->setFontSize(24);
     $this->assertEquals(24, $g->getFontSize());
 }