]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se agrega el atributo formatoValores para parametrizar la forma en que se ven los...
authorMyrna Degano <mdegan@mecon.gov.ar>
Fri, 16 Jan 2004 21:37:12 +0000 (21:37 +0000)
committerMyrna Degano <mdegan@mecon.gov.ar>
Fri, 16 Jan 2004 21:37:12 +0000 (21:37 +0000)
lib/MECON/Graph.php

index 14edce77f1ac5fb058d1fb04ee9f2114ba6ca9f2..9f877aa50519bdbee043b8ba73546a62f9a9f940 100644 (file)
@@ -148,6 +148,7 @@ class MECON_Graph {
      * - explotar (para torta y torta3D) (valor que indica la separación de
      *                                 de las porciones de la torta) 
      * - posLeyenda (array con dos coordenadas para la posición de la leyenda)
      * - explotar (para torta y torta3D) (valor que indica la separación de
      *                                 de las porciones de la torta) 
      * - posLeyenda (array con dos coordenadas para la posición de la leyenda)
+     * - formatoValores (string con el formato que se quiere dar a los valores (sprintf))
      *
      * @return void
      * @access public
      *
      * @return void
      * @access public
@@ -163,6 +164,10 @@ class MECON_Graph {
                 $valido=true;
                 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_line.php';
                 $plot= new LinePlot($secuencia);
                 $valido=true;
                 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_line.php';
                 $plot= new LinePlot($secuencia);
+
+               if (isset($atributos['formatoValores']))
+                   $plot->value->format = $atributos['formatoValores'];
+
                 if ($this->_verValores)
                     $plot->value->Show();
 
                 if ($this->_verValores)
                     $plot->value->Show();
 
@@ -179,6 +184,10 @@ class MECON_Graph {
                 $valido=true;
                 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_bar.php';
                 $plot= new BarPlot($secuencia);
                 $valido=true;
                 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_bar.php';
                 $plot= new BarPlot($secuencia);
+
+               if (isset($atributos['formatoValores']))
+                   $plot->value->format = $atributos['formatoValores'];
+
                 if ($this->_verValores)
                     $plot->value->Show();
 
                 if ($this->_verValores)
                     $plot->value->Show();
 
@@ -194,9 +203,13 @@ class MECON_Graph {
                 $valido=true;
                 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_scatter.php';
                 $plot= new ScatterPlot($secuencia);
                 $valido=true;
                 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_scatter.php';
                 $plot= new ScatterPlot($secuencia);
+
+               if (isset($atributos['formatoValores']))
+                   $plot->value->format = $atributos['formatoValores'];
+
                 if ($this->_verValores)
                     $plot->value->Show();
                 if ($this->_verValores)
                     $plot->value->Show();
-    
+
                 if (isset($atributos['colorRelleno'])){
                    $plot->mark->SetFillColor($atributos['colorRelleno']);
                }    
                 if (isset($atributos['colorRelleno'])){
                    $plot->mark->SetFillColor($atributos['colorRelleno']);
                }