setFontSize() 공개 메소드

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