use CGI ':standard'; use GD::Graph::bars; # Both the arrays should same number of entries. my @data = (["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], [23, 5, 2, 20, 11, 33, 7, 31, 77, 18, 65, 52]); my $mygraph = GD::Graph::bars->new(500, 300); $mygraph->set( x_label => 'Time taken (Hrs) for compilation', y_label => 'Environments', title => 'Production taken in the Week of $file', ) or warn $mygraph->error; my $myimage = $mygraph->plot(\@data) or die $mygraph->error; open FH, "> graph.png"; binmode FH; print FH $mygraph->plot(\@data)->png; close FH; print "Content-type: image/png\n\n"; print "raja\n"; print $myimage->png;