我需要减小3D饼图的大小.i已将$ Radius = 100更改为pChart.class中的$ Radius = 50,但没有发生图的大小。我正在关注链接
http://pchart.sourceforge.net/documentation.php?topic=exemple11
答案 0 :(得分:0)
这应该做:
// Pie chart with radius of 100
$picture->drawPieGraph($DataSet->GetData(), $DataSet->GetDataDescription(), 150, 150, 100, PIE_PERCENTAGE);
// Pie chart with radius of 50
$picture->drawPieGraph($DataSet->GetData(), $DataSet->GetDataDescription(), 150, 150, 50, PIE_PERCENTAGE);
您可以发布代码的相关部分吗?