in reply to GD::Graph - how to overrule the display labels of x and y axes?

GD::Graph has the options x_number_format and y_number_format that will create the tick label passed on whatever sub you want to give to it (so it doesn't even have to be a number).

--
brian d foy <bdfoy@cpan.org>
  • Comment on Re: GD::Graph - how to overrule the display labels of x and y axes?

Replies are listed 'Best First'.
Re^2: GD::Graph - how to overrule the display labels of x and y axes?
by vanstra (Acolyte) on Mar 10, 2005 at 07:59 UTC
    That's exactly what I'm looking for. I didn't know that the y_number_format (also x_number_format) also pass a label which doesn't have to be a number. Thanks.