Improved/optimized CDR engine reports (and patient reminders) and added a
[openemr.git] / library / openflashchart / php-ofc-library / ofc_area_base.php
bloba6e811fd554ce0095d5f4a5cccaaf46387f2368e
1 <?php
3 /**
4 * inherits from line
5 */
6 class area extends line
8 function area()
10 $this->type = "area";
13 /**
14 * the fill colour
16 function set_fill_colour( $colour )
18 $this->fill = $colour;
21 /**
22 * sugar: see set_fill_colour
24 function fill_colour( $colour )
26 $this->set_fill_colour( $colour );
27 return $this;
30 function set_fill_alpha( $alpha )
32 $tmp = "fill-alpha";
33 $this->$tmp = $alpha;
36 function set_loop()
38 $this->loop = true;