<?php
include ("jpgraph/jpgraph.php");
include ("jpgraph/jpgraph_pie.php");
$graph = new PieGraph(250, 200, "auto");
$graph->SetFrame(true);
$data = array(45, 23, 18, 32);
$pieplot = new PiePlot($data);
$pieplot->SetLegends(array("2003", "2004", "2005", "2006"));
$pieplot->SetStartAngle(90);
$graph->Add($pieplot);
$graph->Stroke();
?>