in reply to GD & GD::Graph
Okay, here is the sub that is causing the problem.
Off the top of my head, I'd say that you are pointing to a non-existant data set or point.sub get_hotspot { my $self = shift; my $ds = shift; # Which data set my $np = shift; # Which data point? if (defined $np && defined $ds) { return @{$self->{_hotspots}->[$ds]->[$np]}; } elsif (defined $ds) { return @{$self->{_hotspots}->[$ds]}; } else { return @{$self->{_hotspots}}; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: GD & GD::Graph
by Anonymous Monk on Nov 07, 2002 at 08:08 UTC | |
by Anonymous Monk on Nov 07, 2002 at 08:27 UTC | |
by Anonymous Monk on Nov 07, 2002 at 12:56 UTC |