예제 #1
0
 function OFC_Charts_Area_Hollow()
 {
     parent::OFC_Charts_Area();
     $this->type = 'area_hollow';
     $this->{'fill-alpha'} = 0.35;
     $this->values = array();
 }
    function OFC_Charts_Area_Line()
    {
        parent::OFC_Charts_Area();

        $this->type      = 'area_line';

        $this->{'fill-alpha'} = 0.35;

        $this->values    = array();
    }
예제 #3
0
파일: Hollow.php 프로젝트: rodrigorm/OFC
 function OFC_Charts_Area_Hollow()
 {
     parent::OFC_Charts_Area();
     $this->type = 'area_hollow';
     $this->values = array();
 }
예제 #4
0
파일: Line.php 프로젝트: rodrigorm/OFC
 function OFC_Charts_Area_Line()
 {
     parent::OFC_Charts_Area();
     $this->type = 'area_line';
     $this->values = array();
 }