title->setfont(ff_simsun,fs_bold); $pieplot = new pieplot3d($data); //创建pieplot3d对象 $pieplot->setcenter(0.4" />
本文实例讲述了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程序设计有所帮助。
评论列表:
发布于 4天前回复该评论
发布于 4天前回复该评论
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论