Buenos días a todos los foreros!!!
Aqui de nuevo consultando!!
Estoy haciendo un sistema web en el cual me han pedido graficar unos resultados de acuerdo a una consulta en mysql a traves de php. Esta parte ya quedo. Ahora lo que necesito, bueno mas bien me piden que el diseño de la grafica (las barras) sean con degrado y de diferentes colores cada barra, pero no he podido hacerlo
!!!
La libreria que estoy utilizando es la JpGraph. A qui les muestro la parte del codigo donde genero mi grafica:
Código PHP:
<?php
// content="text/plain; charset=utf-8"
// Example for use of JpGraph,
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_bar.php');
//Para poner el simbolo del % (porciento) a los valores con dos decimales
function cbFmtPercentage($aVal) {
return sprintf("%.2f%%",$aVal); // Convert to string
}
$datay = array(21,31,41);
$datax = array('opc1','opc2','opc3');
$colores2 = array('navy:1.65','orchid:1.65','palegreen:1.65');
//$colores1 = array('navy:0.9','orchid:0.9','palegreen:0.9');
//$tipos = array('GRAD_LEFT_REFLECTION','GRAD_LEFT_REFLECTION','GRAD_LEFT_REFLECTION');
/*$colores = array('[email protected]','[email protected]','[email protected]');
*/
// Setup the graph.
$graph = new Graph(400,240);
$graph->img->SetMargin(60,20,35,75);
$graph->SetScale("textlin");
$graph->SetMarginColor("lightblue:1.1");
$graph->SetShadow();
// Set up the title for the graph
$graph->title->Set($departamento);
$graph->title->SetMargin(5);
$graph->title->SetFont(FF_VERDANA,FS_BOLD,10);
$graph->title->SetColor("darkred");
// Setup font for axis
$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
// Show 0 label on Y-axis (default is not to show)
$graph->yscale->ticks->SupressZeroLabel(false);
// Setup X-axis labels
$graph->xaxis->SetTickLabels($datax);
$graph->xaxis->SetLabelAngle(12);//El numero de tamaño de letra del eje X
// Create the bar pot
$bplot = new BarPlot($datay);
$bplot->SetWidth(0.3);//Modifica el ancho de las barras del grafico
/*----------------------------------COLORES DE LAS BARRAS-----------------------------------------------------------------*/
// Setup color for gradient fill style
//$bplot->SetFillGradient('navy:0.9','navy:1.85',GRAD_HOR);//AQUI PONGO LAS BARRAS CON DEGRADADO PERO DE UN SOLO COLOR
$bplot->SetFillColor($colores2);//AQUI PONGO LAS BARRAS DE DIFERENTES COLORES PERO SIN DEGRADADO
/*---------------------------------------------------------------------------------------------------*/
$bplot->value->SetFormatCallback("cbFmtPercentage");//Poner los valores de X con el simbolo del % (porciento)
$bplot->value->Show();
// Set color for the frame of each bar
$bplot->SetColor("white");//Pone el color al margen de las barras de las graficas
$graph->Add($bplot);
// Finally send the graph to the browser
$graph->Stroke();
?>
Mucho agradeceria me pudieran indicar como poder hacer esta modificacion!!!
De antemano mil gracias!!!!