in reply to GD::Graph skip_undef not working properly

I think you are sending the string "undef" and not an undefined value. Try a
@datapointsarray = map {$_ eq "undef" ? undef : $_ } @datapointsarray;
on the array that holds your datapoints.

--

flounder

Replies are listed 'Best First'.
Re: Re: GD::Graph skip_undef not working properly
by kryberg (Pilgrim) on Oct 02, 2003 at 20:34 UTC
    It worked! That made my day!