multipie.php
Back to Chart Graphics
setPieSize(90, 80, 60);
# Set the border color of the sectors to white (ffffff)
$c->setLineColor(0xffffff);
# Set the background color of the sector label to pale yellow (ffffc0) with a black border
# (000000)
$c->setLabelStyle()->setBackground(0xffffc0, 0x000000);
# Set the label to be slightly inside the perimeter of the circle
$c->setLabelLayout(CircleLayout, -10);
# Set the title, data and colors according to which pie to draw
if ($chartIndex == 0) {
$c->addTitle("Alpha Division", "Arial Bold", 8);
$c->setData($data0, $labels);
$colors0 = array(0xff3333, 0xff9999, 0xffcccc);
$c->setColors2(DataColor, $colors0);
} else if ($chartIndex == 1) {
$c->addTitle("Beta Division", "Arial Bold", 8);
$c->setData($data1, $labels);
$colors1 = array(0x33ff33, 0x99ff99, 0xccffcc);
$c->setColors2(DataColor, $colors1);
} else {
$c->addTitle("Gamma Division", "Arial Bold", 8);
$c->setData($data2, $labels);
$colors2 = array(0x3333ff, 0x9999ff, 0xccccff);
$c->setColors2(DataColor, $colors2);
}
# Output the chart
$viewer->setChart($c, SVG);
# Include tool tip for the chart
$viewer->setImageMap($c->getHTMLImageMap("", "", "title='{label}: US\${value}M ({percent}%)'"));
}
# This example includes 3 charts
$viewers = array();
for ($i = 0; $i < 3; ++$i) {
$viewers[$i] = new WebChartViewer("chart$i");
createChart($viewers[$i], $i);
}
?>
Multi-Pie Chart
Multi-Pie Chart
renderHTML(), " ";
}
?>