@@ -15,9 +15,9 @@ |
||
15 | 15 | private $iy1; |
16 | 16 | private $iy2; |
17 | 17 | private $iPathType = 2; |
18 | - private $iPathExtend = 15; |
|
18 | + private $iPathExtend = 15; |
|
19 | 19 | private $iColor = 'black'; |
20 | - private $iWeight = 1; |
|
20 | + private $iWeight = 1; |
|
21 | 21 | private $iArrowSize = ARROW_S2; |
22 | 22 | private $iArrowType = ARROWT_SOLID; |
23 | 23 |
@@ -13,9 +13,9 @@ |
||
13 | 13 | public $iProgress = -1; |
14 | 14 | public $iPattern = GANTT_SOLID; |
15 | 15 | public $iColor = "black"; |
16 | - public $iFillColor = 'black'; |
|
16 | + public $iFillColor = 'black'; |
|
17 | 17 | public $iDensity = 98; |
18 | - public $iHeight = 0.65; |
|
18 | + public $iHeight = 0.65; |
|
19 | 19 | |
20 | 20 | public function Set($aProg) |
21 | 21 | { |
@@ -13,8 +13,8 @@ |
||
13 | 13 | private $ia = 0; |
14 | 14 | private $icalculated = false; |
15 | 15 | public $iDet = 0; |
16 | - public $iCorr = 0; |
|
17 | - public $iStdErr = 0; |
|
16 | + public $iCorr = 0; |
|
17 | + public $iStdErr = 0; |
|
18 | 18 | |
19 | 19 | public function __construct($aDataX, $aDataY) |
20 | 20 | { |
@@ -19,6 +19,10 @@ |
||
19 | 19 | } |
20 | 20 | |
21 | 21 | // Stroke the axis. |
22 | + |
|
23 | + /** |
|
24 | + * @param LinearScale $aOtherAxisScale |
|
25 | + */ |
|
22 | 26 | public function Stroke($aOtherAxisScale, $aStrokeLabels = true) |
23 | 27 | { |
24 | 28 | if ($this->hide) { |
@@ -25,6 +25,9 @@ |
||
25 | 25 | return true; |
26 | 26 | } |
27 | 27 | |
28 | + /** |
|
29 | + * @param integer $aType |
|
30 | + */ |
|
28 | 31 | public function SetLabelLogType($aType) |
29 | 32 | { |
30 | 33 | $this->label_logtype = $aType; |
@@ -73,6 +73,9 @@ |
||
73 | 73 | $this->pieaa = $aFlg; |
74 | 74 | } |
75 | 75 | |
76 | + /** |
|
77 | + * @param integer[] $c |
|
78 | + */ |
|
76 | 79 | public function SetColor($c) |
77 | 80 | { |
78 | 81 | $this->SetMarginColor($c); |
@@ -18,6 +18,9 @@ |
||
18 | 18 | $this->SetMarginColor('white'); |
19 | 19 | } |
20 | 20 | |
21 | + /** |
|
22 | + * @param integer $aDense |
|
23 | + */ |
|
21 | 24 | public function SetDensity($aDense) |
22 | 25 | { |
23 | 26 | $this->SetTickDensity(TICKD_NORMAL, $aDense); |
@@ -6,6 +6,10 @@ |
||
6 | 6 | private $graph; |
7 | 7 | public $clockwise = false; |
8 | 8 | |
9 | + /** |
|
10 | + * @param integer $aMax |
|
11 | + * @param PolarGraph $graph |
|
12 | + */ |
|
9 | 13 | public function __construct($aMax, $graph, $aClockwise = false) |
10 | 14 | { |
11 | 15 | parent::__construct(0, $aMax, 'x'); |
@@ -6,6 +6,11 @@ discard block |
||
6 | 6 | private $graph; |
7 | 7 | public $clockwise = false; |
8 | 8 | |
9 | + /** |
|
10 | + * @param integer $aMax |
|
11 | + * @param PolarGraph $graph |
|
12 | + * @param boolean $aClockwise |
|
13 | + */ |
|
9 | 14 | public function __construct($aMax, $graph, $aClockwise) |
10 | 15 | { |
11 | 16 | parent::__construct(0, $aMax, 'x'); |
@@ -18,6 +23,9 @@ discard block |
||
18 | 23 | $this->clockwise = $aFlg; |
19 | 24 | } |
20 | 25 | |
26 | + /** |
|
27 | + * @param integer $v |
|
28 | + */ |
|
21 | 29 | public function _Translate($v) |
22 | 30 | { |
23 | 31 | return parent::Translate($v); |