本文实例讲述了PHP使用Jpgraph绘制3D饼状图的方法。分享给大家供大家参考。具体实现方法如下:
rush:PHP;">
SetShadow();
$graph->title->Set("年度收支表");
$graph->title->SetFont(FF_SimsUN,FS_BOLD);
$pieplot = new PiePlot3D($data); //创建PiePlot3D对象
$pieplot->SetCenter(0.4); //设置饼图中心的位置
$pieplot->SetLegends($gDateLocale->GetShortMonth()); //设置图例
$graph->Add($pieplot);
$graph->stroke();
?>
运行效果图如下:
希望本文所述对大家的PHP程序设计有所帮助。