]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se modifica el método acumular para que las secuencias se pinten automáticamente...
authorMyrna Degano <mdegan@mecon.gov.ar>
Wed, 28 Jan 2004 18:43:56 +0000 (18:43 +0000)
committerMyrna Degano <mdegan@mecon.gov.ar>
Wed, 28 Jan 2004 18:43:56 +0000 (18:43 +0000)
lib/MECON/Graph.php

index 64627e768385f70d6fd58687ad747c9ddf2a50be..36185acfbdbf517d14115f514e7f800431b5df13 100644 (file)
@@ -280,12 +280,9 @@ class MECON_Graph {
      *      $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();
@@ -299,6 +296,13 @@ class MECON_Graph {
      */
      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);
      }