Ignore:
Timestamp:
2013/05/02 18:11:36 (13 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/graph/SC_Graph_Bar.php

    r22567 r22796  
    2323 
    2424// 棒グラフ生成クラス 
    25 class SC_Graph_Bar extends SC_Graph_Line_Ex 
    26 { 
     25class SC_Graph_Bar extends SC_Graph_Line_Ex{ 
    2726    // コンストラクタ 
    2827    function __construct( 
     
    3332 
    3433    // グラフの描画 
    35     function drawGraph() 
    36     { 
     34    function drawGraph() { 
    3735        $this->drawYLine(); 
    3836        $this->drawXLine(true); 
     
    5351 
    5452    // 棒グラフの描画 
    55     function drawBar($line_no) 
    56     { 
     53    function drawBar($line_no) { 
    5754        $arrPointList = $this->arrPointList[$line_no]; 
    5855        // データ数を数える 
     
    8380 
    8481    // ラベルを描画する 
    85     function drawLabel($line_no) 
    86     { 
     82    function drawLabel($line_no) { 
    8783        $arrData = $this->arrDataList[$line_no]; 
    8884        $arrPointList = $this->arrPointList[$line_no]; 
Note: See TracChangeset for help on using the changeset viewer.