1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
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)
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.
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 -----------------------------------------------------------------------------*/
27 require_once 'MECON/Graph/external/jpgraph/src/jpgraph.php';
30 * Liberia base para el manejo de graficos.
36 * Tipo del grafico (xy, torta, gantt)
58 * El grafico propiamente dicho.
65 * Booleano que define si se muestran o no los valores
66 * @var bool $verValores
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.
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)
89 function MECON_graph($tipo, $ancho=300, $alto=200,$titulo,$attrib_gral=NULL)
92 $this->_ancho= $ancho;
95 if (isset($attrib_gral['verValores']))
96 $this->_verValores= $attrib_gral['verValores'];
98 if($this->_tipo=="xy")
100 $this->_grafico= new Graph($ancho,$alto,"auto");
101 $this->_grafico->SetScale("textlin");
103 if (isset($attrib_gral['Xtitulo']))
104 $this->_grafico->xaxis->title->Set($attrib_gral['Xtitulo']);
106 if (isset($attrib_gral['Ytitulo']))
107 $this->_grafico->yaxis->title->Set($attrib_gral['Ytitulo']);
109 if (isset($attrib_gral['XEtiquetas']))
110 $this->_grafico->xaxis->SetTickLabels($attrib_gral['XEtiquetas']);
112 if (isset($attrib_gral['XEtiquetasRotar']))
113 $this->_grafico->xaxis->label_angle = 90;
116 if(($this->_tipo=="torta")||($this->_tipo=="torta3D"))
118 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie.php';
119 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie3d.php';
121 $this->_grafico= new PieGraph($ancho,$alto);
128 $this->_grafico->title-> Set($titulo);
129 if (isset($attrib_gral['subTitulo']))
130 $this->_grafico->subtitle->Set($attrib_gral['subTitulo']);
131 if (isset($attrib_gral['verSombra']) and $attrib_gral['verSombra']==true)
132 $this->_grafico->SetShadow();
138 * Agrega Secuencia de datos.
140 * @param array $tipo Tipo de grafico para la secuencia
141 * @param array $secuencia Datos del arreglo
142 * @param array $atributos Atributos especiales para la secuencia
144 * Tipos de secuencias para gráficos xy:
151 * - colorRelleno (solamente barras y puntos)
153 * - impulso ("si") (solamente para puntos)
154 * - tipoMarca (de 1 a 17) (solamente para puntos)
155 * - etiquetas (array) (para gráficos de torta muestra las etiquetas
156 * en lugar de los porcentajes)
157 * - explotar (para torta y torta3D) (valor que indica la separación de
158 * de las porciones de la torta)
159 * - posLeyenda (array con dos coordenadas para la posición de la leyenda)
160 * - formatoValores (string con el formato que se quiere dar a los valores (sprintf))
165 function agregarSecuencia($tipo,$secuencia,$atributos=NULL)
167 if($this->_tipo=="xy")
174 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_line.php';
175 $plot= new LinePlot($secuencia);
177 if (isset($atributos['colorRelleno']))
178 $plot->SetFillColor($atributos['colorRelleno']);
185 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_bar.php';
186 $plot= new BarPlot($secuencia);
188 if (isset($atributos['colorRelleno']))
189 $plot->SetFillColor($atributos['colorRelleno']);
196 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_scatter.php';
197 $plot= new ScatterPlot($secuencia);
199 if (isset($atributos['tipoMarca']))
200 $plot->mark->SetType($atributos['tipoMarca']);
202 if (isset($atributos['impulso']))
204 if ($atributos['impulso']=="si")
213 // Seteo opciones generales
214 if (isset($atributos['formatoValores']))
215 $plot->value->format = $atributos['formatoValores'];
217 if ($this->_verValores)
218 $plot->value->Show();
220 if (isset($atributos['color']))
221 $plot->SetColor($atributos['color']);
223 if (isset($atributos['leyenda']))
225 $plot->SetLegend($atributos['leyenda']);
226 //$this->_grafico->legend->SetLayout(LEGEND_HOR);
227 $this->_grafico->legend->Pos(0.02,0.01);
232 die ("Error: Tipo de grafico $tipo no valido (aun)");
237 if(($this->_tipo=="torta")||($this->_tipo=="torta3D"))
239 if($this->_tipo=="torta")
240 $plot= new PiePlot($secuencia);
242 if($this->_tipo=="torta3D")
243 $plot= new PiePlot3D($secuencia);
245 // Esto lo agrego porque si no, no redondea a 100%
246 $plot->labeltype = 2;
248 if ($this->_verValores)
249 $plot->value->Show();
251 if (isset($atributos['leyendas']))
252 $plot->SetLegends($atributos['leyendas']);
254 if (isset($atributos['etiquetas']))
255 $plot->SetLabels($atributos['etiquetas']);
257 if (isset($atributos['centro']))
259 $x=$atributos['centro'][0];
260 $y=$atributos['centro'][1];
261 $plot->SetCenter($x,$y);
264 if (isset($atributos['explotar']))
265 $plot->ExplodeAll($atributos['explotar']);
269 $this->_grafico->Add($plot);
271 if (isset($atributos['posLeyenda']))
273 $this->_grafico->legend->xpos = $atributos['posLeyenda'][0];
274 $this->_grafico->legend->ypos = $atributos['posLeyenda'][1];
282 * Acumula las secuencias para generar un gráfico acumulativo de barras
286 * require_once 'MECON/Graph.php';
288 * $v1 = array(12,8,19,3,10,5);
289 * $v2 = array(1,28,9,13,1,5);
291 * $graph =& new MECON_Graph ("xy", 300, 300, 'PRUEBA');
293 * $b1plot = $graph->agregarSecuencia("barras", $v1);
294 * $b2plot = $graph->agregarSecuencia("barras", $v2);
296 * $graph->acumular(array($b1plot, $b2plot));
301 * @param array $secuencias Secuencias de barras a acumular
306 function acumular ($secuencias)
309 $colores = array_keys ($rgb->rgb_table);
311 // Esto pinta cada secuencia de un color diferente
312 for ($i=0; $i< count($secuencias); $i++)
313 $secuencias[$i]->SetFillColor ($colores[$i]);
315 $accplot = new AccBarPlot($secuencias);
316 $this->_grafico->Add($accplot);
320 * Genera el gráfico y lo dibuja.
327 $this->_grafico->Stroke();
331 * Convierte los valores numéricos de entrada en porcentajes
335 * require_once 'MECON/Graph.php';
337 * $valores = array (4, 6, 23, 14, 30);
338 * $nuevos = MECON_Graph::porcentajes($valores);
340 * // se obtiene (5, 8, 30, 18, 39) (%)
344 * @param array $valores Array de valores numéricos
350 function porcentajes ($valores)
352 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie.php';
354 $plot = new PiePlot ($valores);
356 $porciento = $plot->AdjPercentage ($valores);