<%INIT>
use GD::Graph::lines;

my $gd = GD::Graph::lines->new($Width,$Height);
$gd->set(transparent=>1,x_labels_vertical=>1,zero_axis=>1,show_values=>1);
my $img = $gd->plot([$Label,$Data]);
$r->content_type('image/png');
$m->clear_buffer;
$m->print($img->png);
</%INIT>
<%ARGS>
$Width
$Height
$Label
$Data
</%ARGS>
