Ignore:
Timestamp:
2007/09/06 19:13:49 (17 years ago)
Author:
nanasess
Message:

未定義変数の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/graph/SC_GraphPie.php

    r15599 r15635  
    2929    // データを360°値に変換する 
    3030    function getCircleData($array) { 
     31        $total = ""; 
     32        $new_total = ""; 
    3133        if(!is_array($array)) { 
    3234            return; 
     
    188190            $center = $start + ($arrRad[$i] / 2); 
    189191            $end = $start + $arrRad[$i]; 
    190             list($sx, $sy) = lfGetArcPos($this->cx, $this->cy, ($this->cw / 1.5), ($this->ch / 1.5), $center); 
    191             list($ex, $ey) = lfGetArcPos($this->cx, $this->cy, ($this->cw * 1.5), ($this->ch * 1.5), $center); 
     192            list($sx, $sy) = $this->lfGetArcPos($this->cx, $this->cy, ($this->cw / 1.5), ($this->ch / 1.5), $center); 
     193            list($ex, $ey) = $this->lfGetArcPos($this->cx, $this->cy, ($this->cw * 1.5), ($this->ch * 1.5), $center); 
    192194            // 指示線の描画 
    193195            imageline($this->image, $sx, $sy, $ex + 2, $ey - PIE_LABEL_UP, $this->flame_color); 
Note: See TracChangeset for help on using the changeset viewer.