本文實例講述了php使用Jpgraph繪制3D餅狀圖的方法。分享給大家供大家參考。具體實現方法如下:
<?php
include ("src/jpgraph.php");
include ("src/jpgraph_pie.php");
include ("src/jpgraph_pie3d.php");
$data = array(19,23,34,38,45,67,71,78,85,87,90,96);
$graph = new PieGraph(400,300);
$graph->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程序設計有所幫助。