本文整理汇总了PHP中PiePlot3d::SetHeight方法的典型用法代码示例。如果您正苦于以下问题:PHP PiePlot3d::SetHeight方法的具体用法?PHP PiePlot3d::SetHeight怎么用?PHP PiePlot3d::SetHeight使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PiePlot3d
的用法示例。
在下文中一共展示了PiePlot3d::SetHeight方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: PieGraph
require_once "{$jpgraph}/jpgraph_pie3d.php";
// Setup graph
$graph = new PieGraph(400, 400, "auto");
$graph->SetAntiAliasing();
$graph->SetMarginColor('#fafafa');
//$graph->SetShadow();
// Setup graph title
if ($type == "event") {
//$graph->title->Set(gettext("EVENTS RECEIVED"));
} elseif ($type == "alarm") {
//$graph->title->Set(gettext("ALARMS RECEIVED"));
}
$graph->title->SetFont(FF_FONT1, FS_BOLD);
// Create pie plot
$p1 = new PiePlot3d($data);
$p1->SetHeight(12);
$p1->SetSize(0.3);
if (count($labels) > 1) {
$p1->SetCenter(0.5, 0.25);
} else {
$p1->SetCenter(0.57, 0.25);
}
$p1->SetLegends($legend);
$p1->SetLabels($labels);
$p1->SetLabelPos(1);
$graph->legend->SetPos(0.5, 0.95, 'center', 'bottom');
$graph->legend->SetShadow('#fafafa', 0);
$graph->legend->SetFrameWeight(0);
$graph->legend->SetFillColor('#fafafa');
$graph->SetFrame(false);
$p1->SetSliceColors($colors);
示例2: array
// Some data
$data = array(20, 27, 45, 75, 90);
// Create the Pie Graph.
$graph = new PieGraph(350, 200);
$graph->SetShadow();
// Set A title for the plot
$graph->title->Set("Example 2 3D Pie plot");
$graph->title->SetFont(FF_VERDANA, FS_BOLD, 18);
$graph->title->SetColor("darkblue");
$graph->legend->Pos(0.1, 0.2);
// Create 3D pie plot
$p1 = new PiePlot3d($data);
$p1->SetTheme("sand");
$p1->SetCenter(0.4);
$p1->SetSize(0.4);
$p1->SetHeight(5);
// Adjust projection angle
$p1->SetAngle(45);
// You can explode several slices by specifying the explode
// distance for some slices in an array
$p1->Explode(array(0, 40, 0, 30));
// As a shortcut you can easily explode one numbered slice with
// $p1->ExplodeSlice(3);
$p1->value->SetFont(FF_ARIAL, FS_NORMAL, 10);
$p1->SetLegends(array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct"));
$graph->Add($p1);
$graph->Stroke();
?>
示例3: generarReportePastel
public function generarReportePastel()
{
$this->load->model('nivel_model');
$alumPorNivel = $this->nivel_model->alumnosPorNivel();
require_once APPPATH . "libraries/jpgraph/jpgraph.php";
require_once APPPATH . "libraries/jpgraph/jpgraph_pie.php";
require_once APPPATH . "libraries/jpgraph/jpgraph_pie3d.php";
// Pasando el nombre de los niveles a un arreglo llamado dato
$i = 0;
foreach ($alumPorNivel->result() as $a) {
$dato[$i] = $a->nombre;
$cuenta[] = $a->total;
$exp[$i] = 5;
$i++;
}
// Creando el Grafico de Pastel
$graph = new PieGraph(550, 400);
$graph->SetShadow();
// Estableciendo el titulo
$graph->title->Set("Porcentaje de Alumnos por Nivel");
$graph->title->SetFont(FF_VERDANA, FS_BOLD, 18);
$graph->title->SetColor("darkblue");
$graph->legend->Pos(0.3, 0.06);
// Crear 3D pie plot
$p1 = new PiePlot3d($cuenta);
$p1->SetTheme("sand");
$p1->SetCenter(0.5);
$p1->SetSize(0.5);
$p1->SetHeight(20);
#Ancho del pastel
// Angulo de inclinación
$p1->SetAngle(45);
// Distancia entre las partes del pastel
$p1->Explode($exp);
$p1->value->SetFont(FF_ARIAL, FS_NORMAL, 10);
$p1->SetLegends($dato);
$graph->Add($p1);
$gdImgHandler = $graph->Stroke(_IMG_HANDLER);
// Guardando imagen como archivo por default es .png
$fileName = "assets/img/reportes/reporte.jpg";
$graph->img->Stream($fileName);
redirect(base_url('Alumnos/verReportePastel'));
}