示例#1
0
 function SpiderAxis(&$img, &$aScale, $color = array(0, 0, 0))
 {
     parent::Axis($img, $aScale, $color);
     $this->len = $img->plotheight;
     $this->font_size = FONT1;
     $this->title = new FontProp();
     $this->color = array(0, 0, 0);
 }
示例#2
0
 function PolarAxis(&$img, &$aScale)
 {
     parent::Axis($img, $aScale);
 }
示例#3
0
 function RadarAxis(&$img, &$aScale, $color = array(0, 0, 0))
 {
     parent::Axis($img, $aScale, $color);
     $this->len = $img->plotheight;
     $this->title = new Text();
     $this->title->SetFont(FF_FONT1, FS_BOLD);
     $this->color = array(0, 0, 0);
 }