You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
961 B
31 lines
961 B
<?php
|
|
/*
|
|
Example13: A 2D exploded pie graph
|
|
*/
|
|
|
|
// Standard inclusions
|
|
include("src/pData.php");
|
|
include("src/pChart.php");
|
|
|
|
// Dataset definition
|
|
$DataSet = new pData;
|
|
$DataSet->AddPoint(array(10,2,3,5,3),"Serie1");
|
|
$DataSet->AddPoint(array("Jan","Feb","Mar","Apr","May"),"Serie2");
|
|
$DataSet->AddAllSeries();
|
|
$DataSet->SetAbsciseLabelSerie("Serie2");
|
|
|
|
// Initialise the graph
|
|
$Test = new pChart(300,200);
|
|
$Test->setFontProperties("Fonts/tahoma.ttf",8);
|
|
$Test->drawFilledRoundedRectangle(7,7,293,193,5,240,240,240);
|
|
$Test->drawRoundedRectangle(5,5,295,195,5,230,230,230);
|
|
|
|
// Draw the pie chart
|
|
$Test->AntialiasQuality = 0;
|
|
$Test->setShadowProperties(2,2,200,200,200);
|
|
$Test->drawFlatPieGraphWithShadow($DataSet->GetData(),$DataSet->GetDataDescription(),120,100,60,PIE_PERCENTAGE,8);
|
|
$Test->clearShadow();
|
|
|
|
$Test->drawPieLegend(230,15,$DataSet->GetData(),$DataSet->GetDataDescription(),250,250,250);
|
|
|
|
$Test->Render("example13.png");
|
|
|