natebailey has asked for the wisdom of the Perl Monks concerning the following question:
I end up with *one* point on each bar chart grouping, rather than a point per bar. It doesn't look like GD::Graph is flexible enough to do this, so I started looking in to how to hack the image that GD::Graph is creating directly, so that I can draw my own arc() with GD.my $gd = $graph->plot( [ \@labels, @bar_series, \@bar_points ], );
However, I can't see how to do this, ie. I'm not sure how to "intrude" into GD::Graph's instance of GD to make a call to arc().
Any advice would be appreciated - either about how to do this properly with GD::Graph, or how to hack GD::Graph's GD to do it with GD.
thanks!
Nathan
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Customising GD::Graph output
by zentara (Cardinal) on Aug 07, 2011 at 16:35 UTC | |
Re: Customising GD::Graph output
by natebailey (Acolyte) on Aug 07, 2011 at 14:04 UTC | |
by natebailey (Acolyte) on Aug 07, 2011 at 14:12 UTC |