On Wed, Mar 10, 2004 at 03:01:50PM -0800, matt boex wrote:
> same error message.
Now I'm lost: what do you get if you change this line:
print IMG $my_graph->plot(\@data)->png;
to this:
my $img = $my_graph->plot(\@data) || die $my_graph->error();
print IMG $img->png();
//Ed