hola a todos
estoy haciendo graficos estadisticos en php utilizando la libreria jpgraph.php
que me descarge pero .
la pregunta es como puedo hacer que la imagen este dividida y que pueda dar un click en cada parte que yo quiera y que me lleve a otra paguina .
se puede hacer eso ok
urgente ..
gracias ....
<?php
include ("../jpgraph.php");
include ("../jpgraph_bar.php");
$datay=array(10,10,10,10,10,10);
// Create the graph. These two calls are always required
$graph = new Graph(210,200,"auto");
$graph->img->SetMargin(40,10,10,10);
$graph->SetScale("textlin");
$graph->SetShadow();
// Create a bar pot
$bplot = new BarPlot($datay);
$bplot->SetFillColor("orange");
$graph->Add($bplot);
$graph->title->Set("Example 44");
$graph->xaxis->title->Set("X-title");
$graph->yaxis->title->Set("Y-title");
$graph->title->SetFont(FF_FONT1,FS_BOLD);
$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
// Display the graph
$graph->Stroke();
?>