<?php
require_once("../lib/phpchartdir.php");
# The percentage to display
$percentage = 65;
# The chart size
$size = 120;
$c = new PieChart($size, $size);
# Set the donut (x, y) center and the outer and inner radius
$c->setDonutSize($size / 2, $size / 2, $size / 2 - 2, $size / 2 - 12);
# Set the data to plot
$c->setData(array($percentage, 100 - $percentage));
# Set the colors for the donut
$c->setColors2(DataColor, array(0x888888, 0xeeeeee));
# Disable sector labels
$c->setLabelStyle("normal", 8, Transparent);
# Add the percentage text at the center
$c->addText($size / 2, $size / 2, $percentage . "%", "arial.ttf", $size / 5, 0x888888, Center);
# Output the chart
header("Content-type: image/png");
print($c->makeChart2(PNG));
?>
|