bye jquery 1.11.1 (#849)
[openemr.git] / library / openflashchart / php-ofc-library / ofc_area_base.php
blob43aa67f8cd1adb59c996eaab708ae5b168c20852
1 <?php
3 /**
4 * inherits from line
5 */
6 class area extends line
8 public function __construct()
10 $this->type = "area";
13 /**
14 * the fill colour
16 public function set_fill_colour( $colour )
18 $this->fill = $colour;
21 /**
22 * sugar: see set_fill_colour
24 public function fill_colour( $colour )
26 $this->set_fill_colour( $colour );
27 return $this;
30 public function set_fill_alpha( $alpha )
32 $tmp = "fill-alpha";
33 $this->$tmp = $alpha;
36 public function set_loop()
38 $this->loop = true;