rakheek has asked for the wisdom of the Perl Monks concerning the following question:
my $mygraph = GD::Graph::lines->new(); $mygraph->set( x_label => 'Log_Date', y_label => 'Open P1-P2 Bugs', title => 'DEIMOS Data', ); #my @data = (['Fall 01', 'Spr 01', 'Fall 02', 'Spr 02' ], # [80, 90, 85, 75], # [76, 55, 75, 95], # [66, 58, 92, 83]); #print $cgi->end_table; #print 'Content-Type: image/png\n\n'; my @data = (\@log_date, \@deimos_open_bugs); my $myimage = $mygraph->plot(\@data) or die $mygraph->error;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: perl GD png graph works on IE but does not work on Mozilla
by Khen1950fx (Canon) on Mar 13, 2010 at 01:09 UTC | |
|
Re: perl GD png graph works on IE but does not work on Mozilla
by Anonymous Monk on Mar 13, 2010 at 01:09 UTC | |
by rakheek (Sexton) on Mar 15, 2010 at 17:47 UTC |