图像无法显示,不知道为什么
为什么呀,为什么呀
为什么呀,为什么呀
2015-08-31
//XY坐标图
require_once('./src/jpgraph.php');
require_once('./src/jpgraph_line.php');
//1创建画布
$graph = new Graph(600,400);
//设置
$aAxisType ='textint';
$graph->SetScale($aAxisType);
//3设置统计图的标题
$graph->title->Set('this is a test');
$data = array(1=>20,2=>30,3=>40,4=>50,5=>12,6=>38,7=>55,8=>100,9=>120,10=>30,11=>54);
//4得到LinePlot对象
$linePlot = new LinePlot($data);
//5设置图例
$linePlot->SetLegend('tuli');
//6将统计图添加画布上
$graph->Add($linePlot);
$graph->Stroke();
举报