| Server IP : 104.21.80.248 / Your IP : 172.71.28.155 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/www/myschool/triamudom/check/webadmin/S_Graph/jpgraph/Examples/ |
Upload File : |
<?php
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_windrose.php');
// Data can be specified using both ordinal index of the axis
// as well as the direction label
$data = array(
'10' => array(1,1,2.5,4),
'32.0' => array(3,4,1,4),
'120.5' => array(2,3,4,4,3,2,1),
'223.2' => array(2,4,1,2,2),
'285.7' => array(2,2,1,2,4,2,1,1)
);
// Specify text for direction labels
$labels = array( '120.5' => "Plant\n#1275",
'285.7' => "Reference\n#13 Ver:2");
// Range colors to be used
$rangeColors = array('khaki','yellow','orange','orange:0.7','brown','darkred','black');
// First create a new windrose graph with a title
$graph = new WindroseGraph(400,450);
// Setup titles
$graph->title->Set('Windrose example 6');
$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
$graph->title->SetColor('navy');
$graph->subtitle->Set('(Free type plot)');
$graph->subtitle->SetFont(FF_VERDANA,FS_ITALIC,10);
$graph->subtitle->SetColor('navy');
// Create the windrose plot.
$wp = new WindrosePlot($data);
// Setup a free plot
$wp->SetType(WINDROSE_TYPEFREE);
// Setup labels
$wp->SetLabels($labels);
$wp->SetLabelPosition(LBLPOSITION_CENTER);
$wp->SetLabelMargin(30);
// Setup the colors for the ranges
$wp->SetRangeColors($rangeColors);
// Adjust the font and font color for scale labels
$wp->scale->SetFont(FF_ARIAL,FS_NORMAL,9);
// Set the diameter and position for plot
$wp->SetSize(230);
$wp->SetZCircleSize(30);
// Adjust the font and font color for compass directions
$wp->SetFont(FF_ARIAL,FS_NORMAL,10);
$wp->SetFontColor('darkgreen');
// Adjust grid colors
$wp->SetGridColor('[email protected]','blue');
// Add (m/s) text to legend
$wp->legend->SetText('(m/s)');
// Display legend values with no decimals
$wp->legend->SetFormat('%d');
// Add plot to graph and send back to the client
$graph->Add($wp);
$graph->Stroke();
?>