Exemplo n.º 1
0
 /**
  * Returns the graph's canvas. Penultimately it should call Canvas() from the GraPHP object
  * @see Image_Graph
  * @return resource A GD image representing the graph's canvas 
  * @access private
  */
 function _canvas()
 {
     if ($this->_parent) {
         return $this->_parent->_canvas();
     } else {
         return false;
     }
 }