PHP Classes

File: test/sample-pie-graph.php

Recommend this page to a friend!
  Classes of Lucia Figueroa   Health Measures   test/sample-pie-graph.php   Download  
File: test/sample-pie-graph.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Health Measures
Record body measures and render graphs of changes
Author: By
Last change:
Date: 7 years ago
Size: 528 bytes
 

Contents

Class file image Download
<?php

error_reporting
(E_ALL);
ini_set('display_errors', 1);

require_once
__DIR__ . '/../vendor/autoload.php';
use
Amenadiel\JpGraph\Graph;
use
Amenadiel\JpGraph\Plot;

// Create the Pie Graph.
$graph = new Graph\PieGraph(350, 250);
$graph->title->Set("A Simple Pie Plot");
$graph->SetBox(true);

$data = array(40, 21, 17, 14, 23);
$p1 = new Plot\PiePlot($data);
$p1->ShowBorder();
$p1->SetColor('black');
$p1->SetSliceColors(array('#1E90FF', '#2E8B57', '#ADFF2F', '#DC143C', '#BA55D3'));

$graph->Add($p1);
$graph->Stroke();