- 论坛徽章:
- 0
|
这是一段测试代码
<?php
define('JPGRAPH_ROOT','./src');
include(JPGRAPH_ROOT.'/jpgraph.php');
include(JPGRAPH_ROOT.'/jpgraph_line.php');
include(JPGRAPH_ROOT.'/jpgraph_bar.php');
// Some data
$ydata = array(11,3, 8,12,5 ,1,9, 13,5,7,10);
// Create the graph. These two calls are always required
$graph = new Graph(450,300);
$graph->img->SetMargin(40,110,20,40);
// Create the linear plot
$lineplot=new LinePlot($ydata);
$lineplot->SetColor("blue");
$dd='一百100';
$lineplot->SetLegend($dd);
// Add the plot to the graph
$graph->Add( $lineplot);
$graph->SetScale("textlin");
$graph->legend->SetFont(FF_SIMSUN,FS_BOLD);
$graph->legend->SetShadow('gray@0.4',1);
$graph->legend->SetFillColor('white');
$graph->legend->SetColor('black','gray');
$graph->legend->Pos(0.02,0.5,"right","center");
$graph->yaxis->HideZeroLabel();
$graph->ygrid->SetFill(true,'#FCFACC','#E1F8FC');
$graph->SetMarginColor('white');
$graph->SetFrame(true,'gray',1);
$graph->Stroke();
?> |
|
|