uso PHPLot para generar graficos...
hay alguna manera de aumentar el tamaño de los labels del eje 'X' e 'Y'???
saludos y gracias de antemano
Solucionado:
Código PHP:
function SetDefaultFonts()
{
// TTF:
if ($this->use_ttf) {
//$this->SetTTFPath(dirname($_SERVER['PHP_SELF']));
$this->SetTTFPath(getcwd());
$this->SetFont('generic', $this->default_ttfont, 8);
$this->SetFont('title', $this->default_ttfont, 14);
$this->SetFont('legend', $this->default_ttfont, 8);
$this->SetFont('x_label', $this->default_ttfont, 6);
$this->SetFont('y_label', $this->default_ttfont, 6);
$this->SetFont('x_title', $this->default_ttfont, 10);
$this->SetFont('y_title', $this->default_ttfont, 10);
}
// Fixed:
else {
$this->SetFont('generic', 2);
$this->SetFont('title', 5);
$this->SetFont('legend', 2);
$this->SetFont('x_label', 2);
$this->SetFont('y_label', 2);
$this->SetFont('x_title', 3);
$this->SetFont('y_title', 3);
}
return TRUE;
}