multidepthpie.php
Back to Chart Graphics
setPieSize(180, 175, 100);
# Add a title box using 15pt Times Bold Italic font and blue (AAAAFF) as background color
$c->addTitle("Project Cost Breakdown", "Times New Roman Bold Italic", 15)->setBackground(0xaaaaff);
# Set the pie data and the pie labels
$c->setData($data, $labels);
# Draw the pie in 3D with variable 3D depths
$c->set3D2($depths);
# Set the start angle to 225 degrees may improve layout when the depths of the sector are sorted in
# descending order, because it ensures the tallest sector is at the back.
$c->setStartAngle(225);
# Output the chart
$viewer = new WebChartViewer("chart1");
$viewer->setChart($c, SVG);
# Include tool tip for the chart
$viewer->setImageMap($c->getHTMLImageMap("", "", "title='{label}: US\${value}K ({percent}%)'"));
?>
Multi-Depth Pie Chart
Multi-Depth Pie Chart
renderHTML(); ?>