- Timestamp:
- 2012/02/12 11:28:48 (14 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/graph/SC_Graph_Line.php
r21441 r21490 22 22 */ 23 23 24 $ownDir = realpath(dirname(__FILE__)) . '/';25 require_once $ownDir . 'SC_GraphBase.php';26 27 24 // 折れ線グラフ生成クラス 28 class SC_Graph Line extends SC_GraphBase{25 class SC_Graph_Line extends SC_Graph_Base{ 29 26 var $area_width; 30 27 var $area_height; … … 43 40 44 41 // コンストラクタ 45 function SC_Graph Line(42 function SC_Graph_Line( 46 43 $bgw = BG_WIDTH, $bgh = BG_HEIGHT, $left = LINE_LEFT, $top = LINE_TOP, 47 44 $area_width = LINE_AREA_WIDTH, $area_height = LINE_AREA_HEIGHT) { 48 parent::SC_Graph Base($bgw, $bgh, $left, $top);45 parent::SC_Graph_Base($bgw, $bgh, $left, $top); 49 46 $this->area_width = $area_width; 50 47 $this->area_height = $area_height;
Note: See TracChangeset
for help on using the changeset viewer.
