Hallo Leute,
habe schon im Internet zahlreiche Informationen über jpgraph gefunden, allerdings keine Antwort zu meiner Frage:
Hab ein einfaches Block Diagramm
http://service-portal.ipmedien-online.net/temp/test.php
Meine Frage:
Gibt es eventuell die Möglichkeit, die Zahlen der eingegeben Werte, über die Balken zu setzen?
Meine Datei lautet wie folgt:
Eventuell kann mir da jemand weiter helfen
lg korgal2k4
habe schon im Internet zahlreiche Informationen über jpgraph gefunden, allerdings keine Antwort zu meiner Frage:
Hab ein einfaches Block Diagramm
http://service-portal.ipmedien-online.net/temp/test.php
Meine Frage:
Gibt es eventuell die Möglichkeit, die Zahlen der eingegeben Werte, über die Balken zu setzen?
Meine Datei lautet wie folgt:
PHP:
<?php // content="text/plain; charset=utf-8"
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_bar.php');
$datay = array(50,20,35,24,54,35,5,17);
// Create the graph. These two calls are always required
$graph = new Graph(850,420);
$graph->SetScale("textint",0,$aYMax=80);
//$theme_class="DefaultTheme";
//$graph->SetTheme(new $theme_class());
// set major and minor tick positions manually
$graph->yaxis->SetTickPositions(array(0,10,20,30,40,50,60,70,80), array(15,25,35,45,55,65,75));
$graph->SetBox(false);
//$graph->ygrid->SetColor('gray');
$graph->ygrid->SetFill(false);
$graph->xaxis->SetTickLabels(array('o2o','Blue 100','Blue 250','o2 On','VVLs','Prepaid','My Handy','Packs'));
$graph->yaxis->HideLine(false);
$graph->yaxis->HideTicks(false,false);
// Create the bar plots
$bplot = new BarPlot($datay);
$bplot->value->Show();
$bplot->value->SetFormat('%d');
$bplot->value->SetFont(FF_FONT1,FS_BOLD);
// ...and add it to the graPH
$graph->Add($bplot);
$bplot->SetColor("#0061b3");
$bplot->SetFillGradient("#0061b3","#0061b3",GRAD_LEFT_REFLECTION);
$bplot->SetWidth(75);
$graph->title->Set("Statistik");
// Display the graph
$graph->Stroke();
?>
Eventuell kann mir da jemand weiter helfen
lg korgal2k4