|
|
|
ถาม Error JpGraph ครับ ใน Ubuntu รันออกมากลับ Error ครับผมตอนแรกเป็น Error 25008 |
|
|
|
|
|
|
|
จากกระทู้ที่แล้วๆมาครับ ผมติดตั้ง apache+php5+gd+adodb+jpgraph ใน ubuntu รันออกมากลับ Error ครับผมตอนแรกเป็น Error 25008 พอแก้ค่าตัวแปลแล้วกลับ ERROR 21528 ครับ ไม่ทราบว่าเกิดเพราะอะไรครับ
Code (PHP)
<?php
include ("jpgraph/jpgraph.php");
// เปลี่ยนเป็นเรียกใช้ jpgraph_line.php แทน
include ("jpgraph/jpgraph_line.php");
$datax = array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
$datay1 = array(231,121,355,122,213,38);
$datay2 = array(521,312,423,349,325,220);
// Setup the graph
$graph = new Graph(350,200);
$graph->SetMargin(30,20,40,20);
$graph->SetScale("linlin");
// Hide the frame around the graph
$graph->SetFrame(false);
$graph->SetBox(1);
// เราอาจจะ กำหนดสีพื้นหลังเป็นแบบ Gradient ได้
// $graph->SetBackgroundGradient('blue','navy:0.5',GRAD_HOR,BGRAD_PLOT);
$graph->tabtitle->Set('Statistic' );
$graph->tabtitle->SetFont(FF_COURIER,FS_BOLD,10);
// Enable X and Y Grid
$graph->xgrid->Show();
$graph->xgrid->SetColor('[email protected]');
$graph->xgrid->SetLineStyle('dashed');
$graph->ygrid->SetColor('[email protected]');
$graph->ygrid->SetLineStyle('dashed');
$graph->xaxis->SetTickLabels($datax);
$graph->xaxis->SetFont(FF_COURIER,FS_NORMAL,8);
$graph->yaxis->SetFont(FF_COURIER,FS_NORMAL,8);
// กำหนดรูปแบบให้กับ legend (คือคำอธิบายแต่ละเส้นว่าคืออะไร)
$graph->legend->SetColor('navy');
// กำหนดสีพื้นหลังให้กับ legend
$graph->legend->SetFillColor('#FCFCCC');
// กำหนดขนาดเส้นขอบ
$graph->legend->SetLineWeight(1);
$graph->legend->SetFont(FF_COURIER,FS_NORMAL,8);
// กำหนดว่าต้องการเงาหรือไม่
$graph->legend->SetShadow('[email protected]',3);
// กำหนดตำแหน่งให้มัน
$graph->legend->SetAbsPos(15,120,'right','bottom');
// สร้างอ็อบเจ็คกราฟเส้น โดยเอาข้อมูลจากอะเรย์ $datay1
$p1 = new LinePlot($datay1);
$p1->SetColor("red");
$p1->SetFillColor("[email protected]");
$p1->SetWeight(1);
// เลือกชนิด mark แต่ละจุดของกราฟเส้น
$p1->mark->SetType(MARK_IMG_DIAMOND,6,0.4);
// กำหนดว่าเส้นนี้แทนความหมายของ Male
$p1->SetLegend('Male');
$graph->Add($p1);
// Add a vertical line at the end scale position '7'
$l1 = new LinePlot(VERTICAL,6);
$graph->Add($l1);
// Output the graph
$graph->Stroke();
?>
Tag : PHP
|
|
|
|
|
|
Date :
2011-05-07 12:58:33 |
By :
xchesster |
View :
1037 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ทราบว่า error 25008 แก้ยังไงครับ
ผมเขียนแบบ class แล้วเรียกค่า ในพารามิเตอรเป็นตัวแปรที่กำหนดค่า เเต่พอเปลี่ยนเป็นตัวเลข ก็ยังขึ้น error
รูปแบบ code ครับ
class graph_stat{
$width = 300;
$height = 200 ;
public function create graph (){
$graph = new Graph ($this->width,$this->height);
......
.......
}
}
|
|
|
|
|
Date :
2011-10-11 11:43:40 |
By :
Adel |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|