Hola a todos, estoy haciendo un gráfico con la librería jpgraph, con la ultima versión free liberada 3.5. Lo que yo quiero es cambiar de color a la linea y a las barras que aparecen en el gráfico ya que la misma librería los asigna automáticamente, acá el código:
Código PHP:
Ver originalrequire_once ('src/jpgraph.php');
require_once ('src/jpgraph_bar.php');
require_once ('src/jpgraph_line.php');
$theme = isset($_GET['theme']) ?
$_GET['theme'] : null;
0 => array (0 => 79, 1 => -25, 2 => -7, 3 => 85, 4 => -26, 5 => -32, ), 1 => array (0 => 76, 1 => 51, 2 => 86, 3 => 12, 4 => -7, 5 => 94, ), 2 => array (0 => 49, 1 => 38, 2 => 7, 3 => -40, 4 => 9, 5 => -7, ), 3 => array (0 => 69, 1 => 96, 2 => 49, 3 => 7, 4 => 92, 5 => -38, ), 4 => array (0 => 68, 1 => 16, 2 => 82, 3 => -49, 4 => 50, 5 => 7, ), 5 => array (0 => -37, 1 => 28, 2 => 32, 3 => 6, 4 => 13, 5 => 57, ), 6 => array (0 => 24, 1 => -11, 2 => 7, 3 => 10, 4 => 51, 5 => 51, ), 7 => array (0 => 3, 1 => -1, 2 => -12, 3 => 61, 4 => 10, 5 => 47, ), 8 => array (0 => -47, 1 => -21, 2 => 43, 3 => 53, 4 => 36, 5 => 34, ), );
// Create the graph. These two calls are always required
$graph = new Graph(400,300);
$graph->SetScale("textlin");
if ($theme) {$graph->SetTheme(new $theme());}
$theme_class = new SoftyTheme;
$graph->SetTheme($theme_class);
// Create the bar plots
for ($i = 0; $i < 4; $i++) {
$plot[$i] = new BarPlot($data[$i]);
$plot[$i]->SetLegend('Barra '.($i+1));
}
//$acc1 = new AccBarPlot(array($plot[0], $plot[1]));
//$acc1->value->Show();
$gbplot = new GroupBarPlot
(array($plot[2], $plot[1] ));
for ($i = 4; $i < 8; $i++) {
$plot[$i] = new LinePlot($data[$i]);
$plot[$i]->SetLegend('Linea '.$i);
$plot[$i]->value->Show();
}
$graph->Add($gbplot);
$graph->Add($plot[4]);
$title = "Titulo Grafico";
$graph->title->Set($title);
$graph->xaxis->title->Set("X-Lado");
$graph->yaxis->title->Set("Y-Lado");
// Display the graph
$graph->Stroke("c.jpg");
El código te genera una imagen y te crea en la raíz el archivo .jpg.
Solo quiero cambiar el color de la barra y la linea. Y si se puede la linea mas gruesa. Como lo hago, gracias de antemano.
Saludos