+
+ /**
+ * Acumula las secuencias para generar un gráfico acumulativo de barras
+ *
+ * Ejemplo de Uso:
+ * @code
+ * require_once 'MECON/Graph.php';
+ *
+ * $v1 = array(12,8,19,3,10,5);
+ * $v2 = array(1,28,9,13,1,5);
+ *
+ * $graph =& new MECON_Graph ("xy", 300, 300, 'PRUEBA');
+ *
+ * $b1plot = $graph->agregarSecuencia("barras", $v1);
+ * $b2plot = $graph->agregarSecuencia("barras", $v2);
+ *
+ * $graph->acumular(array($b1plot, $b2plot));
+ * $graph->generar();
+ *
+ * @endcode
+ *
+ * @param array $secuencias Secuencias de barras a acumular
+ *
+ * @return void
+ * @access public
+ */
+ 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);
+ }
+