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 (isset($atributos['colorRelleno']))
- {
- $plot->SetFillColor($atributos['colorRelleno']);
- }
-
}
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 (isset($atributos['colorRelleno']))
- {
- $plot->SetFillColor($atributos['colorRelleno']);
- }
-
}
if ($tipo=="puntos")
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 (isset($atributos['colorRelleno'])){
- $plot->mark->SetFillColor($atributos['colorRelleno']);
- }
-
- if (isset($atributos['tipoMarca'])){
- $plot->mark->SetType($atributos['tipoMarca']);
- }
+ if (isset($atributos['tipoMarca']))
+ $plot->mark->SetType($atributos['tipoMarca']);
if (isset($atributos['impulso']))
{
$plot->SetImpuls();
}
}
-
- // Seteo opciones generales
- if (isset($atributos['color']))
- {
- $plot->SetColor($atributos['color']);
- }
- if (isset($atributos['leyenda']))
+
+ //Si hubo error
+ if ($valido==true)
{
- $plot->SetLegend($atributos['leyenda']);
- //$this->_grafico->legend->SetLayout(LEGEND_HOR);
- $this->_grafico->legend->Pos(0.02,0.01);
- }
+
+ // Seteo opciones generales
+ if (isset($atributos['formatoValores']))
+ $plot->value->format = $atributos['formatoValores'];
+ if ($this->_verValores)
+ $plot->value->Show();
+
+ if (isset($atributos['colorRelleno']))
+ $plot->SetFillColor($atributos['colorRelleno']);
+
+ if (isset($atributos['color']))
+ $plot->SetColor($atributos['color']);
+ if (isset($atributos['leyenda']))
+ {
+ $plot->SetLegend($atributos['leyenda']);
+ //$this->_grafico->legend->SetLayout(LEGEND_HOR);
+ $this->_grafico->legend->Pos(0.02,0.01);
+ }
- //Si hubo error
- if ($valido==false)
+ }else
{
die ("Error: Tipo de grafico $tipo no valido (aun)");
}
if($this->_tipo=="torta3D")
$plot= new PiePlot3D($secuencia);
- // Esto lo agrego porque si no, no redondea a 100%
- $plot->labeltype = 2;
+ // Esto lo agrego porque si no, no redondea a 100%
+ $plot->labeltype = 2;
if ($this->_verValores)
$plot->value->Show();
$plot->SetCenter($x,$y);
}
- if (isset($atributos['explotar'])){
- $plot->ExplodeAll($atributos['explotar']);
- }
+ if (isset($atributos['explotar']))
+ {
+ $plot->ExplodeAll($atributos['explotar']);
+ }
- }
+ }// del if torta
$this->_grafico->Add($plot);
- if (isset($atributos['posLeyenda'])){
- $this->_grafico->legend->xpos = $atributos['posLeyenda'][0];
- $this->_grafico->legend->ypos = $atributos['posLeyenda'][1];
- }
+ if (isset($atributos['posLeyenda']))
+ {
+ $this->_grafico->legend->xpos = $atributos['posLeyenda'][0];
+ $this->_grafico->legend->ypos = $atributos['posLeyenda'][1];
+ }
}
/**