simplepyramid.php
Back to Chart Graphics
setPyramidSize(180, 180, 150, 300);
# Set the pyramid data and labels
$c->setData($data, $labels);
# Add labels at the center of the pyramid layers using Arial Bold font. The labels will have two
# lines showing the layer name and percentage.
$c->setCenterLabel("{label}\n{percent}%", "Arial Bold");
# 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}M ({percent}%)'"));
?>
Simple Pyramid Chart
Simple Pyramid Chart
renderHTML(); ?>