示例#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();
 }