Draw() public method

Draws the pie graph
public Draw ( )
Exemplo n.º 1
0
 public function Draw()
 {
     // modify pad_bottom to make PieGraph do the hard work
     $pb = $this->pad_bottom;
     $this->pad_bottom += $this->depth;
     $this->Calc();
     $this->pad_bottom = $pb;
     return PieGraph::Draw();
 }
 protected function Draw()
 {
     // modify pad_bottom to make PieGraph do the hard work
     $pb = $this->pad_bottom;
     $space = $this->height - $this->pad_top - $this->pad_bottom;
     if ($space < $this->depth) {
         $this->depth = $space / 2;
     }
     $this->pad_bottom += $this->depth;
     $this->Calc();
     $this->pad_bottom = $pb;
     return PieGraph::Draw();
 }