top = $top; if( isset( $bottom ) ) $this->bottom = $bottom; } function set_colour( $colour ) { $this->colour = $colour; } function set_tooltip( $tip ) { $this->tip = $tip; } } class bar extends bar_base { function __construct() { $this->type = "bar"; parent::__construct(); } }