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';
 }
Beispiel #4
0
 function OFC_Charts_Bar_Candle()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'candle';
 }
 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';
 }
Beispiel #7
0
 function OFC_Charts_Bar_Plastic()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_plastic';
 }
Beispiel #8
0
 function OFC_Charts_Bar_Fade()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_fade';
 }
Beispiel #9
0
 function OFC_Charts_Bar_Dome()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_dome';
 }
Beispiel #10
0
 function OFC_Charts_Bar_Round()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_round';
 }
Beispiel #11
0
 function OFC_Charts_Bar_Cylinder()
 {
     parent::OFC_Charts_Bar();
     $this->type = 'bar_cylinder';
 }