in reply to Customising GD::Graph output

And the answer is - use $graph->gd, ie:
my $real = $graph->gd; my $red = $real->colorAllocate(255,0,0); $real->arc(290,150,10,10,0,360,$red);
(of course, you're still welcome to tell me a smarter way :-)

Replies are listed 'Best First'.
Re^2: Customising GD::Graph output
by natebailey (Acolyte) on Aug 07, 2011 at 14:12 UTC
    (liked filledEllipse :-)