Hola, creo que era muy sencillo:
Using perl Syntax Highlighting
use strict;
use CGI ':standard';
use GD::Graph::bars;
open(LISTA,"lista.txt");
my @campos = ('Oct 2003','Nov 2003','Dec 2003','Ene 2004','Feb 2004');
my @valores = (<LISTA>);
my @graf = (\@campos, \@valores);
my $grafico = GD::Graph::bars->new(500, 300);
$grafico->set(
x_label => 'Mes',
y_label => 'Visitas Totales',
title => 'Visitas Mensuales de "Perl en Españ',
) or warn $grafico->error;
my $imagen = $grafico->plot(\@graf) or die $grafico->error;
print "Content-type: image/png\n\n";
print $imagen->png;
exit(1);
close(LISTA);
Coloreado en 0.001 segundos, usando
GeSHi 1.0.8.4
Lo siento y gracias a todos.