in reply to GD::GRAPH:linespoints problem
Update: here's a simple example that fails to show your bug:
use strict; use warnings; use GD::Graph::linespoints; for (1 .. 2) { my $g = GD::Graph::linespoints->new(100,100); $g->set( x_label => 'X Label', y_label => 'Y label', title => 'Some simple graph', y_max_value => 8, y_tick_number => 8, y_label_skip => 2 ) or die $g->error; open F,">plot$_.png" or die $!; binmode F; my $img = $g->plot( [[ 1, 2, 3, 4], [ 1 * $_, 2 * $_, 3 * $_, 4 * $_ ]] ) or die $g->error; print F $img->png; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: GD::GRAPH:linespoints problem
by Anonymous Monk on Mar 03, 2007 at 00:06 UTC | |
by Joost (Canon) on Mar 03, 2007 at 00:09 UTC | |
by Anonymous Monk on Mar 03, 2007 at 00:21 UTC | |
|
Re^2: GD::GRAPH:linespoints problem
by Anonymous Monk on Mar 03, 2007 at 01:27 UTC | |
by Joost (Canon) on Mar 03, 2007 at 02:12 UTC | |
by v_d_g (Initiate) on Mar 03, 2007 at 09:03 UTC | |
by quester (Vicar) on Mar 04, 2007 at 06:48 UTC |