setPadding() public method

Set the graph canvas padding
public setPadding ( integer $pad ) : Graph
$pad integer
return Graph
Example #1
0
 public function testSetPadding()
 {
     $g = new Graph($this->imageOptions);
     $g->setPadding(50);
     $this->assertEquals(50, $g->getPadding());
 }