]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Graph.php
Se agrega la posibilidad de setear los márgenes del gráfico en el área de dibujo.
[mecon/meconlib.git] / lib / MECON / Graph.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Creado: Tue Nov 26 12:45:31 2003
22 Autor:  Manuel Nazar Anchorena <manazar@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id: Graph.php 428 2003-11-18 14:30:30Z mmarre $
25 -----------------------------------------------------------------------------*/
26
27 require_once 'MECON/Graph/external/jpgraph/src/jpgraph.php';
28
29 /**
30  * Liberia base para el manejo de graficos.  
31  */
32 class MECON_Graph {
33
34
35     /**
36      * Tipo del grafico (xy, torta, gantt)
37      * @var int $ancho
38      * @access private
39      */
40     var $_tipo;
41     
42
43     /**
44      * Ancho del grafico.
45      * @var int $ancho
46      * @access private
47      */
48     var $_ancho;
49     
50     /**
51      * Alto del grafico.
52      * @var int $alto
53      * @access private
54      */
55     var $_alto;
56
57      /**
58      * El grafico propiamente dicho.
59      * @var Graph $grafico
60      * @access private
61      */
62     var $_grafico;
63
64     /**
65      * Booleano que define si se muestran o no los valores
66      * @var bool $verValores
67      * @access private
68      */
69     var $_verValores;
70
71     /**
72      * Class constructor.
73      *
74      * @param string $tipo Tipo de grafico(xy,torta,torta3D,gantt)
75      * @param int $ancho Ancho del grafico
76      * @param int $alto Alto del grafico
77      * @param string $titulo Titulo del grafico.
78      * @param array $attrib_gral Contiene opciones generales para el gráfico.
79      *
80      * Opciones generales para gráficos XY:
81      * - XTitulo (Título del Eje X)
82      * - YTitulo (Título del Eje Y)
83      * - XEtiquetas (Array de Referencias del eje X)
84      * - XEtiquetasRotar (Rota las etiquetas del eje X en 90 grados)
85      * - margenes (array asociativo con alguna/s de las siguientes claves:
86      *              - L (margen izquierdo)
87      *              - R (margen derecho)
88      *              - T (margen superior)
89      *              - B (margen inferior))
90      *
91      * @return void
92      * @access public
93      */
94     function MECON_graph($tipo, $ancho=300, $alto=200,$titulo,$attrib_gral=NULL)
95     {    
96         $this->_tipo=$tipo;
97         $this->_ancho= $ancho;
98         $this->_alto= $alto;
99         
100         if (isset($attrib_gral['verValores']))
101             $this->_verValores= $attrib_gral['verValores'];
102         
103         if($this->_tipo=="xy")
104         {
105             $this->_grafico= new Graph($ancho,$alto,"auto");
106             $this->_grafico->SetScale("textlin");
107
108             if (isset($attrib_gral['Xtitulo']))
109                 $this->_grafico->xaxis->title->Set($attrib_gral['Xtitulo']);
110         
111             if (isset($attrib_gral['Ytitulo']))
112                 $this->_grafico->yaxis->title->Set($attrib_gral['Ytitulo']);
113         
114             if (isset($attrib_gral['XEtiquetas']))
115                 $this->_grafico->xaxis->SetTickLabels($attrib_gral['XEtiquetas']);
116
117                 if (isset($attrib_gral['XEtiquetasRotar']))
118                         $this->_grafico->xaxis->label_angle = 90;
119         }
120
121         if(($this->_tipo=="torta")||($this->_tipo=="torta3D"))
122         {
123             require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie.php';
124             require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie3d.php';
125             
126             $this->_grafico= new PieGraph($ancho,$alto);
127             
128         }
129       
130         //Atributos en comun
131         
132         if (isset($titulo))
133             $this->_grafico->title-> Set($titulo);
134         if (isset($attrib_gral['subTitulo']))
135             $this->_grafico->subtitle->Set($attrib_gral['subTitulo']);
136         if (isset($attrib_gral['verSombra']) and $attrib_gral['verSombra']==true)
137             $this->_grafico->SetShadow();
138
139         if (isset($attrib_gral['margenes'])){
140                 if (isset($attrib_gral['margenes']['L']))
141                         $this->_grafico->img->left_margin = $attrib_gral['margenes']['L'];
142                 
143                 if (isset($attrib_gral['margenes']['R']))
144                         $this->_grafico->img->right_margin = $attrib_gral['margenes']['R'];
145                 
146                 if (isset($attrib_gral['margenes']['T']))
147                         $this->_grafico->img->top_margin = $attrib_gral['margenes']['T'];
148                 
149                 if (isset($attrib_gral['margenes']['B']))
150                         $this->_grafico->img->bottom_margin = $attrib_gral['margenes']['B'];
151             }
152
153     }
154
155
156     /**
157      * Agrega Secuencia de datos.
158      *
159      * @param array $tipo Tipo de grafico para la secuencia
160      * @param array $secuencia Datos del arreglo
161      * @param array $atributos Atributos especiales para la secuencia
162      *
163      * Tipos de secuencias para gráficos xy:
164      * - lineas
165      * - barras
166      * - puntos
167      *
168      * Atributos:
169      * - color
170      * - colorRelleno (solamente barras y puntos)
171      * - leyenda
172      * - impulso ("si") (solamente para puntos)
173      * - tipoMarca (de 1 a 17) (solamente para puntos)
174      * - etiquetas (array) (para gráficos de torta muestra las etiquetas
175      *                          en lugar de los porcentajes)
176      * - explotar (para torta y torta3D) (valor que indica la separación de
177      *                                  de las porciones de la torta) 
178      * - posLeyenda (array con dos coordenadas para la posición de la leyenda)
179      * - formatoValores (string con el formato que se quiere dar a los valores (sprintf))
180      *
181      * @return plot
182      * @access public
183      */
184     function agregarSecuencia($tipo,$secuencia,$atributos=NULL)
185     {
186         if($this->_tipo=="xy")
187         {
188             $valido=false;
189         
190             if ($tipo=="lineas")
191             {
192                 $valido=true;
193                 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_line.php';
194                 $plot= new LinePlot($secuencia);
195
196                 if (isset($atributos['colorRelleno']))
197                     $plot->SetFillColor($atributos['colorRelleno']);
198             }
199            
200         
201             if ($tipo=="barras")
202             {
203                 $valido=true;
204                 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_bar.php';
205                 $plot= new BarPlot($secuencia);
206
207                 if (isset($atributos['colorRelleno']))
208                     $plot->SetFillColor($atributos['colorRelleno']);
209             }
210        
211        
212             if ($tipo=="puntos")
213             {
214                 $valido=true;
215                 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_scatter.php';
216                 $plot= new ScatterPlot($secuencia);
217
218                 if (isset($atributos['tipoMarca']))
219                             $plot->mark->SetType($atributos['tipoMarca']);
220             
221                 if (isset($atributos['impulso']))
222                 {
223                     if ($atributos['impulso']=="si")
224                         $plot->SetImpuls();
225                 }
226             }
227             
228             //Si hubo error
229             if ($valido==true)
230             {
231         
232                 // Seteo opciones generales
233                 if (isset($atributos['formatoValores']))
234                         $plot->value->format = $atributos['formatoValores'];
235
236                 if ($this->_verValores)
237                     $plot->value->Show();
238     
239                 if (isset($atributos['color']))
240                     $plot->SetColor($atributos['color']);
241
242                 if (isset($atributos['leyenda']))
243                 {
244                     $plot->SetLegend($atributos['leyenda']);
245                     //$this->_grafico->legend->SetLayout(LEGEND_HOR);
246                     $this->_grafico->legend->Pos(0.02,0.01);
247                 }
248
249             }else
250             { 
251                 die ("Error: Tipo de grafico $tipo no valido (aun)");
252             }
253         }//del if tipo xy
254
255         
256         if(($this->_tipo=="torta")||($this->_tipo=="torta3D"))
257         {
258             if($this->_tipo=="torta")
259                 $plot= new PiePlot($secuencia);
260             
261             if($this->_tipo=="torta3D")
262                 $plot= new PiePlot3D($secuencia);
263
264                 // Esto lo agrego porque si no, no redondea a 100%
265                 $plot->labeltype = 2;
266
267             if ($this->_verValores)
268                 $plot->value->Show();
269         
270             if (isset($atributos['leyendas']))
271                 $plot->SetLegends($atributos['leyendas']);
272
273             if (isset($atributos['etiquetas']))
274                 $plot->SetLabels($atributos['etiquetas']);
275
276             if (isset($atributos['centro']))
277             {
278                 $x=$atributos['centro'][0];
279                 $y=$atributos['centro'][1];
280                 $plot->SetCenter($x,$y);
281             }
282
283             if (isset($atributos['explotar']))
284                         $plot->ExplodeAll($atributos['explotar']);
285                 
286         }// del if torta
287
288         $this->_grafico->Add($plot);
289
290         if (isset($atributos['posLeyenda']))
291         {
292                 $this->_grafico->legend->xpos = $atributos['posLeyenda'][0];
293                 $this->_grafico->legend->ypos = $atributos['posLeyenda'][1];
294             }
295
296         return $plot;    
297     
298     }
299   
300     /**
301      * Acumula las secuencias para generar un gráfico acumulativo de barras
302      * 
303      * Ejemplo de Uso:
304      * @code
305      *      require_once 'MECON/Graph.php';
306      *      
307      *      $v1 = array(12,8,19,3,10,5);
308      *      $v2 = array(1,28,9,13,1,5);
309      *
310      *      $graph =& new MECON_Graph ("xy", 300, 300, 'PRUEBA');
311      *
312      *      $b1plot = $graph->agregarSecuencia("barras", $v1);
313      *      $b2plot = $graph->agregarSecuencia("barras", $v2);
314      *
315      *      $graph->acumular(array($b1plot, $b2plot));
316      *      $graph->generar();
317      *   
318      * @endcode
319      *
320      * @param array $secuencias Secuencias de barras a acumular
321      *
322      * @return void
323      * @access public
324      */
325      function acumular ($secuencias)
326      {
327             $rgb = new RGB();
328             $colores = array_keys ($rgb->rgb_table);
329         
330             // Esto pinta cada secuencia de un color diferente
331             for ($i=0; $i< count($secuencias); $i++)
332                 $secuencias[$i]->SetFillColor ($colores[$i]);
333             
334         $accplot = new AccBarPlot($secuencias);
335         $this->_grafico->Add($accplot);
336      }
337   
338     /**
339      * Genera el gráfico y lo dibuja.
340      *
341      * @return void
342      * @access public
343      */
344     function generar()
345     {
346         $this->_grafico->Stroke();
347     }
348
349     /**
350      * Convierte los valores numéricos de entrada en porcentajes
351      *
352      * Ejemplo de uso:
353      * @code
354      *      require_once 'MECON/Graph.php';
355      * 
356      *      $valores = array (4, 6, 23, 14, 30);
357      *      $nuevos = MECON_Graph::porcentajes($valores);
358      *
359      *      // se obtiene (5, 8, 30, 18, 39) (%)
360      *
361      * @endcode
362      *
363      * @param array $valores Array de valores numéricos
364      *
365      * @return array 
366      * @access public
367      * @static
368      */
369      function porcentajes ($valores)
370      {
371         require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie.php';
372
373         $plot = new PiePlot ($valores);
374         
375         $porciento = $plot->AdjPercentage ($valores);
376         
377         return $porciento;
378      }
379 }