<?php
require '/usr/share/jpgraph/jpgraph.php';
require '/usr/share/jpgraph/jpgraph_line.php';
require '/usr/share/jpgraph/jpgraph_bar.php';
$ydata = array(11,3,8,7,5,1,9,13,5,7,15);
$xdata = array(1,2,3,4,5,6,7,8,9,10,11);
#
#
#$graph->clearTheme();
$graph = new Graph(350,250);
$graph->SetScale('intlin');
#
$graph->img->SetMargin(40,20,20,40);
$graph->title->Set("Werner");
$graph->xaxis->title->Set("id");
$graph->yaxis->title->Set("hallo");
$graph->yaxis->SetColor("blue");
#
$lineplot=new LinePlot($xdata,$ydata);
$lineplot->SetStepStyle();
$lineplot->SetColor( "blue" );
$lineplot->SetWeight(0);
#
$graph->Add($lineplot);
#
$graph->xaxis->SetPos("min");
#
$graph->Stroke();
###### Plot Ende
#
#
#
$erg->free();
$db->close();
#
?>