Changeset 23605 for branches/version-2_13-dev/data/class/graph
- Timestamp:
- 2014/08/27 18:45:58 (12 years ago)
- Location:
- branches/version-2_13-dev/data/class/graph
- Files:
-
- 4 edited
-
SC_Graph_Bar.php (modified) (2 diffs)
-
SC_Graph_Base.php (modified) (4 diffs)
-
SC_Graph_Line.php (modified) (4 diffs)
-
SC_Graph_Pie.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/graph/SC_Graph_Bar.php
r23546 r23605 53 53 54 54 // 棒グラフの描画 55 56 /** 57 * @param integer $line_no 58 */ 55 59 public function drawBar($line_no) 56 60 { … … 83 87 84 88 // ラベルを描画する 89 90 /** 91 * @param integer $line_no 92 */ 85 93 public function drawLabel($line_no) 86 94 { -
branches/version-2_13-dev/data/class/graph/SC_Graph_Base.php
r23546 r23605 273 273 274 274 // テキストを出力する 275 276 /** 277 * @param integer $color 278 */ 275 279 public function setText($font_size, $left, $top, $text, $color = NULL, $angle = 0, $labelbg = false) 276 280 { … … 306 310 307 311 // タイトルを出力する 312 313 /** 314 * @param string $text 315 */ 308 316 public function drawTitle($text, $font_size = TITLE_FONT_SIZE) 309 317 { … … 378 386 379 387 // カラーラベル背景の描画 388 389 /** 390 * @param double $left 391 * @param double $right 392 * @param integer $bottom 393 */ 380 394 public function drawClabelBG($left, $top, $right, $bottom) 381 395 { … … 442 456 * @param integer $cx 中心点X座標 443 457 * @param integer $cy 中心点Y座標 444 * @param integer $r 半径445 458 * @param integer $e 角度 446 * @return array円の中心点と直径から弧の終端座標の配列459 * @return double[] 円の中心点と直径から弧の終端座標の配列 447 460 */ 448 461 public function lfGetArcPos($cx, $cy, $cw, $ch, $e) -
branches/version-2_13-dev/data/class/graph/SC_Graph_Line.php
r23546 r23605 56 56 57 57 // X軸ラベルの角度セット 58 59 /** 60 * @param integer $Angle 61 */ 58 62 public function setXLabelAngle($Angle) 59 63 { … … 238 242 239 243 // ラインを描画する 244 245 /** 246 * @param integer $line_no 247 */ 240 248 public function drawLine($line_no) 241 249 { … … 255 263 256 264 // マークを描画する 265 266 /** 267 * @param integer $line_no 268 */ 257 269 public function drawMark($line_no) 258 270 { … … 267 279 268 280 // ラベルを描画する 281 282 /** 283 * @param integer $line_no 284 */ 269 285 public function drawLabel($line_no) 270 286 { -
branches/version-2_13-dev/data/class/graph/SC_Graph_Pie.php
r23546 r23605 77 77 78 78 // 円の位置設定を行う 79 80 /** 81 * @param double $cx 82 * @param double $cy 83 */ 79 84 public function setPosition($cx, $cy) 80 85 {
Note: See TracChangeset
for help on using the changeset viewer.
