forked from halo-battle/game
Version 1.12
This commit is contained in:
parent
2a066a7498
commit
de31cd3e9a
1373 changed files with 156282 additions and 45238 deletions
|
|
@ -1,46 +0,0 @@
|
|||
<?php
|
||||
include ("../jpgraph.php");
|
||||
include ("../jpgraph_line.php");
|
||||
include ("../jpgraph_bar.php");
|
||||
|
||||
$l1datay = array(11,9,2,4,3,13,17);
|
||||
$l2datay = array(23,12,5,19,17,10,15);
|
||||
$datax=array("Jan","Feb","Mar","Apr","May");
|
||||
|
||||
// Create the graph.
|
||||
$graph = new Graph(400,200,"auto");
|
||||
$graph->SetScale("textlin");
|
||||
|
||||
$graph->img->SetMargin(40,130,20,40);
|
||||
$graph->SetShadow();
|
||||
|
||||
// Create the linear error plot
|
||||
$l1plot=new LinePlot($l1datay);
|
||||
$l1plot->SetColor("red");
|
||||
$l1plot->SetWeight(2);
|
||||
$l1plot->SetLegend("Prediction");
|
||||
|
||||
// Create the bar plot
|
||||
$bplot = new BarPlot($l2datay);
|
||||
$bplot->SetFillColor("orange");
|
||||
$bplot->SetLegend("Result");
|
||||
|
||||
// Add the plots to t'he graph
|
||||
$graph->Add($l1plot);
|
||||
$graph->Add($bplot);
|
||||
|
||||
|
||||
$graph->title->Set("Adding a line plot to a bar graph v1");
|
||||
$graph->xaxis->title->Set("X-title");
|
||||
$graph->yaxis->title->Set("Y-title");
|
||||
|
||||
$graph->title->SetFont(FF_FONT1,FS_BOLD);
|
||||
$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
|
||||
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
|
||||
|
||||
//$graph->xaxis->SetTickLabels($datax);
|
||||
//$graph->xaxis->SetTextTickInterval(2);
|
||||
|
||||
// Display the graph
|
||||
$graph->Stroke();
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue