pieex2.php
来自「eGroupWare is a multi-user, web-based gr」· PHP 代码 · 共 25 行
PHP
25 行
<?php
include ("../jpgraph.php");
include ("../jpgraph_pie.php");
// Some data
$data = array(40,21,17,14,23);
// Create the Pie Graph.
$graph = new PieGraph(300,200,"auto");
$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();
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?