setFontSize() public méthode

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