ok te entiendo me funciono pero al tratar de enviar los parametros como los tomo? no me funciona :/
mira estoy probando esto con meses que es un ejemplo de jpgraph
Código PHP:
Ver original<?php // content="text/plain; charset=utf-8"
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_bar.php');
// Some data
$datay1=array(140,110,50,60); $datay2=array(35,90,190,190); $datay3=array(20,60,70,140);
// Create the basic graph
$graph = new Graph(600,250,'auto');
$graph->SetScale("textlin");
$graph->img->SetMargin(40,130,37,40); //izquierdo, derecho, top, down
// Adjust the position of the legend box
$graph->legend->Pos(0.02,0.15); //izquierdo, top
// Adjust the color for theshadow of the legend
// Get localised version of the month names
$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
// Set a nice summer (in Stockholm) image
//$graph->SetBackgroundImage('stship.jpg',BGIMG_COPY);
// Set axis titles and fonts
$graph->xaxis->title->Set('Año 2010');
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->title->SetColor('#006633'); //color del año en cuestion
$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->SetColor('#FF0000'); //color de barras de mes o año abajo
$graph->yaxis->SetFont(FF_FONT1,FS_BOLD);
$graph->yaxis->SetColor('#0000FF'); //color de barras de numeros.
//$graph->ygrid->Show(false);
$graph->ygrid->SetColor('#CCCCCC');
// Setup graph title
$graph->title->Set('Probando un gráfico de barras CECS');
// Some extra margin (from the top)
$graph->title->SetMargin(8);
$graph->title->SetFont(FF_ARIAL,FS_NORMAL,13);
//Create the three var series we will combine
$bplot1 = new BarPlot($datay1);
$bplot2 = new BarPlot($datay2);
$bplot3 = new BarPlot($datay3);
//Setup the colors with 40% transparency (alpha channel)
$bplot1->SetFillColor('orange');
$bplot2->SetFillColor('brown');
$bplot3->SetFillColor('darkgreen');
//Setup legends
$bplot1->SetLegend('Etiqueta 1');
$bplot2->SetLegend('Etiqueta 2');
$bplot3->SetLegend('Etiqueta 3');
//Setup each bar with a shadow of 50% transparency
$gbarplot = new GroupBarPlot
(array($bplot1,$bplot2,$bplot3)); $gbarplot->SetWidth(0.6);
$graph->Add($gbarplot);
$graph->Stroke();
?>
hasta el momento estoy tratando de entender algunas cosas, pero no me quedan claros
1.- puse el script en otra pagina como me dijiste...
<img src="script.php" alt="grafico" />
y ya me funciona pero al hacer
<img src="index.php?parametros1=<?php echo "140,110,50,60";?>" alt="grafico" />
y en el script al poner
no me funciona estoy mal obvio :/
lo otro me esta tomando datos no se de donde para generar el eje X y el Y
me pone datos como enero febrero etc. donde los puedo poner yo?
sorry por las molestias, saludos