<?php
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_line.php');
$ydata = array(11, 3, 8, 12, 5, 1, 9, 13, 5, 7);
$ydata2 = array(1, 19, 15, 7, 22, 14, 5, 9, 21, 13 );
$width=350;
$height=250;
$graph = new Graph($width,$height);
$graph->SetScale('intlin');
$graph->SetShadow();
$graph->SetMargin(40,20,20,40);
$graph->title->Set('Calls per operator (June,July)');
$graph->subtitle->Set('(March 12, 2008)');
$graph->xaxis->title->Set('Operator');
$graph->yaxis->title->Set('# of calls');
$graph->yaxis->title->SetFont( FF_FONT1 , FS_BOLD );
$graph->xaxis->title->SetFont( FF_FONT1 , FS_BOLD );
$lineplot=new LinePlot($ydata);
$lineplot->SetWeight( 2 );
$graph->Add($lineplot);
$lineplot2=new LinePlot($ydata2);
$lineplot2->SetWeight( 2 );
$graph->Add($lineplot2);
$graph->Stroke();
?> |