Con datos fijos funciona correctamente, el problema es que no me muestra nada.
lo pongo nuevamente:
Así hago conexión a la base de datos.
Código PHP:
Ver original<?
@mysql_database("indicadores",$link);
if (!$link) {
}
echo 'Conexión Correcta';
?>
Ahora esa conexión la llamo al archivo php en el cual quiero generar la gráfica:
Y es en la cual en la que no sé si estoy haciendolo bien!
Código PHP:
Ver original<?php
include ("consulta2.php");//Este php es donde estoy llamando la conexión
include_once ("jpgraph.php");
include_once ("jpgraph_bar.php");
$query = mysql_query("SELECT nombre,producido FROM aa1");
{
$data[] = $row[0];
$can[] = $row[1];
}
// Create the graph.
// One minute timeout for the cached image
// INLINE_NO means don't stream it back to the browser.
$graph = new Graph(310,250,'auto');
$graph->SetScale("textlin");
$graph->img->SetMargin(60,30,20,40);
$graph->yaxis->SetTitleMargin(45);
$graph->yaxis->scale->SetGrace(30);
$graph->SetShadow();
// Turn the tickmarks
$graph->xaxis->SetTickSide(SIDE_DOWN);
$graph->yaxis->SetTickSide(SIDE_LEFT);
// Create a bar pot
$bplot = new BarPlot($can);
// Create targets for the image maps. One for each column
$targ=array("bar_clsmex1.php#1","bar_clsmex1.php#2","bar_clsmex1.php#3","bar_clsmex1.php#4","bar_clsmex1.php#5","bar_clsmex1.php#6"); $alts=array("val=%d","val=%d","val=%d","val=%d","val=%d","val=%d"); $bplot->SetCSIMTargets($targ,$alts);
$bplot->SetFillColor("orange");
// Use a shadow on the bar graphs (just use the default settings)
$bplot->SetShadow();
$bplot->value->SetFormat(" $ %2.1f",70);
$bplot->value->SetFont(FF_ARIAL,FS_NORMAL,9);
$bplot->value->SetColor("blue");
$bplot->value->Show();
$graph->Add($bplot);
$graph->title->Set("Línea AA1, 2, 9, E3");
$graph->xaxis->title->Set("Supervisor");
$graph->yaxis->title->Set("Objetivo");
$graph->title->SetFont(FF_FONT1,FS_BOLD);
$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
// Send back the HTML page which will call this script again
// to retrieve the image.
$graph->StrokeCSIM();
?>
Espero puedas ayudarme!