1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3 Ministerio de EconomÃa
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 grafico.
83 function MECON_graph($tipo, $ancho=300, $alto=200,$titulo,$attrib_gral=NULL)
86 $this->_ancho= $ancho;
89 if (isset($attrib_gral['verValores']))
90 $this->_verValores= $attrib_gral['verValores'];
92 if($this->_tipo=="xy")
94 $this->_grafico= new Graph($ancho,$alto,"auto");
95 $this->_grafico->SetScale("textlin");
97 if (isset($attrib_gral['Xtitulo']))
98 $this->_grafico->xaxis->title->Set($attrib_gral['Xtitulo']);
100 if (isset($attrib_gral['Ytitulo']))
101 $this->_grafico->yaxis->title->Set($attrib_gral['Ytitulo']);
103 if (isset($attrib_gral['XEtiquetas']))
104 $this->_grafico->xaxis->SetTickLabels($attrib_gral['XEtiquetas']);
107 if(($this->_tipo=="torta")||($this->_tipo=="torta3D"))
109 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie.php';
110 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie3d.php';
112 $this->_grafico= new PieGraph($ancho,$alto);
119 $this->_grafico->title-> Set($titulo);
120 if (isset($attrib_gral['subTitulo']))
121 $this->_grafico->subtitle->Set($attrib_gral['subTitulo']);
122 if ($attrib_gral['verSombra']==true)
124 $this->_grafico->SetShadow();
130 * Agrega Secuencia de datos.
132 * @param array $tipo Tipo de grafico para la secuencia
133 * @param array $secuencia Datos del arreglo
134 * @param array $atributos Atributos especiales para la secuencia
139 function agregarSecuencia($tipo,$secuencia,$atributos=NULL)
141 if($this->_tipo=="xy")
148 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_line.php';
149 $plot= new LinePlot($secuencia);
150 if ($this->_verValores)
151 $plot->value->Show();
153 if (isset($atributos['colorRelleno']))
155 $plot->SetFillColor($atributos['colorRelleno']);
164 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_bar.php';
165 $plot= new BarPlot($secuencia);
166 if ($this->_verValores)
167 $plot->value->Show();
174 require_once 'MECON/Graph/external/jpgraph/src/jpgraph_scatter.php';
175 $plot= new ScatterPlot($secuencia);
176 if ($this->_verValores)
177 $plot->value->Show();
179 if (isset($atributos['impulso']))
181 if ($atributos['impulso']=="si")
186 // Seteo opciones generales
187 if (isset($atributos['color']))
189 $plot->SetColor($atributos['color']);
191 if (isset($atributos['leyenda']))
193 $plot->SetLegend($atributos['leyenda']);
194 //$this->_grafico->legend->SetLayout(LEGEND_HOR);
195 //$this->_grafico->legend->Pos(0.05,0.5,"bottom","center");
202 die ("Error: Tipo de grafico $tipo no valido (aun)");
207 if(($this->_tipo=="torta")||($this->_tipo=="torta3D"))
209 if($this->_tipo=="torta")
210 $plot= new PiePlot($secuencia);
212 if($this->_tipo=="torta3D")
213 $plot= new PiePlot3D($secuencia);
215 if ($this->_verValores)
216 $plot->value->Show();
219 if (isset($atributos['leyendas']))
221 $plot->SetLegends($atributos['leyendas']);
224 if (isset($atributos['centro']))
226 $x=$atributos['centro'][0];
227 $y=$atributos['centro'][1];
228 $plot->SetCenter($x,$y);
233 $this->_grafico->Add($plot);
240 * Genera el grafico y lo dibuja.
247 $this->_grafico->Stroke();