Hacked By AnonymousFox

Current Path : C:/AppServ/www/mfu/webengine/system-01/jpgraph/
Upload File :
Current File : C:/AppServ/www/mfu/webengine/system-01/jpgraph/graph_line1.php

<?
#####################################################################

if(strlen($value)>0) {
	$datay=explode(",",$value);
	$datax=explode(",",$label);
} else {
	$datax=array("");
	$datay=array(0);
}
if(strlen($valueformat)==0) {
	$valueformat="d";
}

#####################################################################

include ("jpgraph.php");
include ("jpgraph_line.php");

// Setup the graph
$graph = new Graph(400,200,"auto");	
$graph->img->SetMargin(35,15,30,30);
$graph->SetMarginColor('white');
$graph->SetScale("textlin");
$graph->xgrid->Show();
$graph->xaxis->SetTickLabels($datax);
$graph->yaxis->HideZeroLabel();
$graph->ygrid->SetFill(true,'#F0F0F0@0.5','#FEFEFE@0.5');

// Create the first line
$p1 = new LinePlot($datay);
$p1->SetColor("navy");
$p1->SetWeight(2);
$p1->mark->SetType(MARK_FILLEDCIRCLE);
$graph->Add($p1);

// Output line
$graph->Stroke();
?>

Hacked By AnonymousFox1.0, Coded By AnonymousFox