function OFC_Charts_Bar_Sketch($colour, $outline_colour, $fun_factor)
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_sketch';
     $this->set_colour($colour);
     $this->set_outline_colour($outline_colour);
     $this->offset = $fun_factor;
 }
 function OFC_Charts_Bar_Filled($colour = null, $outline_colour = null)
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_filled';
     if (isset($colour)) {
         $this->set_colour($colour);
     }
     if (isset($outline_colour)) {
         $this->set_outline_colour($outline_colour);
     }
 }
 function OFC_Charts_Bar_3d()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_3d';
 }
예제 #4
0
파일: Candle.php 프로젝트: rodrigorm/OFC
 function OFC_Charts_Bar_Candle()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'candle';
 }
예제 #5
0
 function OFC_Charts_Bar_Glass()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_glass';
 }
 function OFC_Charts_Bar_Stack()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_stack';
 }
예제 #7
0
파일: Plastic.php 프로젝트: rodrigorm/OFC
 function OFC_Charts_Bar_Plastic()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_plastic';
 }
예제 #8
0
파일: Fade.php 프로젝트: rodrigorm/OFC
 function OFC_Charts_Bar_Fade()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_fade';
 }
예제 #9
0
파일: Dome.php 프로젝트: rodrigorm/OFC
 function OFC_Charts_Bar_Dome()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_dome';
 }
예제 #10
0
파일: Round.php 프로젝트: rodrigorm/OFC
 function OFC_Charts_Bar_Round()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_round';
 }
예제 #11
0
파일: Cylinder.php 프로젝트: rodrigorm/OFC
 function OFC_Charts_Bar_Cylinder()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_cylinder';
 }