Added JPGraph v3.5.0b1
This commit is contained in:
47
includes/jpgraph/src/Examples/bargradex4.php
Normal file
47
includes/jpgraph/src/Examples/bargradex4.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php // content="text/plain; charset=utf-8"
|
||||
// Example for use of JpGraph,
|
||||
// ljp, 01/03/01 19:44
|
||||
require_once ('jpgraph/jpgraph.php');
|
||||
require_once ('jpgraph/jpgraph_bar.php');
|
||||
|
||||
// We need some data
|
||||
$datay=array(0.3031,0.3044,0.3049,0.3040,0.3024,0.3047);
|
||||
|
||||
// Setup the graph.
|
||||
$graph = new Graph(400,200);
|
||||
$graph->img->SetMargin(60,30,30,40);
|
||||
$graph->SetScale("textlin");
|
||||
$graph->SetMarginColor("teal");
|
||||
$graph->SetShadow();
|
||||
|
||||
// Set up the title for the graph
|
||||
$graph->title->Set("Bargraph with small variations");
|
||||
$graph->title->SetColor("white");
|
||||
$graph->title->SetFont(FF_VERDANA,FS_BOLD,12);
|
||||
|
||||
// Setup color for axis and labels
|
||||
$graph->xaxis->SetColor("black","white");
|
||||
$graph->yaxis->SetColor("black","white");
|
||||
|
||||
// Setup font for axis
|
||||
$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
|
||||
$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
|
||||
|
||||
// Setup X-axis title (color & font)
|
||||
$graph->xaxis->title->Set("X-axis");
|
||||
$graph->xaxis->title->SetColor("white");
|
||||
$graph->xaxis->title->SetFont(FF_VERDANA,FS_BOLD,10);
|
||||
|
||||
// Create the bar pot
|
||||
$bplot = new BarPlot($datay);
|
||||
$bplot->SetWidth(0.6);
|
||||
|
||||
// Setup color for gradient fill style
|
||||
$tcol=array(100,100,255);
|
||||
$fcol=array(255,100,100);
|
||||
$bplot->SetFillGradient($fcol,$tcol,GRAD_HOR);
|
||||
$graph->Add($bplot);
|
||||
|
||||
// Finally send the graph to the browser
|
||||
$graph->Stroke();
|
||||
?>
|
Reference in New Issue
Block a user