Inizializzazione
This commit is contained in:
24
jpgraph-3.5.0b1/src/Examples/pieex2.php
Normal file
24
jpgraph-3.5.0b1/src/Examples/pieex2.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php // content="text/plain; charset=utf-8"
|
||||
require_once ('jpgraph/jpgraph.php');
|
||||
require_once ('jpgraph/jpgraph_pie.php');
|
||||
|
||||
// Some data
|
||||
$data = array(40,21,17,14,23);
|
||||
|
||||
// Create the Pie Graph.
|
||||
$graph = new PieGraph(300,200);
|
||||
$graph->SetShadow();
|
||||
|
||||
// Set A title for the plot
|
||||
$graph->title->Set("Example 2 Pie plot");
|
||||
$graph->title->SetFont(FF_FONT1,FS_BOLD);
|
||||
|
||||
// Create
|
||||
$p1 = new PiePlot($data);
|
||||
$p1->SetLegends(array("Jan","Feb","Mar","Apr","May","Jun","Jul"));
|
||||
$graph->Add($p1);
|
||||
$graph->Stroke();
|
||||
|
||||
?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user