Código PHP:
Ver original
require_once ('src/jpgraph.php'); require_once ('src/jpgraph_bar.php'); require_once ('src/jpgraph_line.php'); ); // 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(); 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