(1)在程序中导入Jpgraph类库及饼图绘制功能。
require_once 'jpgraph/src/jpgraph.php'; //导入Jpgraph类库 require_once 'jpgraph/src/jpgraph_pie.php'; //导入Jpgraph类库的饼形图功能 require_once 'jpgraph/src/jpgraph_pie3d.php'; //导入Jpgraph类库的3D饼形图功能
(2)创建数值型数组作为统计数据
$data = array(89, 78, 99, 65, 92); //设置统计数据
(3)创建统计图对象,并对统计图的标题内容、字体进行设置。
$graph = new PieGraph(600, 300); $graph->SetShadow(); $graph->title->Set(iconv('utf-8', 'GB2312//IGNORE', '部门业绩比较表')); $graph->title->SetFont(FF_SIMSUN, FS_BOLD);
(4)创建3D饼图对象并输入统计图
$pieplot = new PiePlot3D($data); //创建3D饼图对象 $pieplot->SetCenter(0.5, 0.5); $department = array('ASP', 'JSP', 'PHP', '.NET', 'C++');//设置文字框对应的内容 $pieplot->SetLegends($department); $graph->legend->SetFont(FF_SIMSUN, FS_BOLD);//设置字体 $graph->legend->SetLayout(LEGEND_HOR); $graph->legend->Pos(0.5, 0.98, 'center', 'bottom');//图例文字框的位置 $graph->Add($pieplot);//将3D饼图添加到统计图对象中 $graph->Stroke();//输出图像
运行结果如下: