* $v2 = array(1,28,9,13,1,5);
*
* $graph =& new MECON_Graph ("xy", 300, 300, 'PRUEBA');
- *
- * $attribs1 = array('colorRelleno'=>'green');
- * $attribs2 = array('colorRelleno'=>'orange');
*
- * $b1plot = $graph->agregarSecuencia("barras", $v1, $attribs1);
- * $b2plot = $graph->agregarSecuencia("barras", $v2, $attribs2);
+ * $b1plot = $graph->agregarSecuencia("barras", $v1);
+ * $b2plot = $graph->agregarSecuencia("barras", $v2);
*
* $graph->acumular(array($b1plot, $b2plot));
* $graph->generar();
*/
function acumular ($secuencias)
{
+ $rgb = new RGB();
+ $colores = array_keys ($rgb->rgb_table);
+
+ // Esto pinta cada secuencia de un color diferente
+ for ($i=0; $i< count($secuencias); $i++)
+ $secuencias[$i]->SetFillColor ($colores[$i]);
+
$accplot = new AccBarPlot($secuencias);
$this->_grafico->Add($accplot);
}