in reply to How do I change font on GD graph title, x_label, y_label

Which module are you talking about? GD doesn't have a set_title_font() method.

Replies are listed 'Best First'.
Re^2: How do I change font on GD graph title, x_label, y_label
by rakheek (Sexton) on Mar 18, 2010 at 22:41 UTC
    Thank you all Monks. I am using GD::Graph::linespoints I tried $mygraph->set_title_font(GD::gdGiantFont); It does what I want for right now. Also, I don't think my fonts are in /fonts. I need to look for them. Thank u all for the wonderful support. Sometimes it can get lonely in the perl world of debugging. Regards, Rakhee
Re^2: How do I change font on GD graph title, x_label, y_label
by rakheek (Sexton) on Mar 18, 2010 at 23:46 UTC
    Hi Anonymous Monk, I am using GD::Graph::linespoints I am using following $mygraph->set_title_font(GD::gdGiantFont); $mygraph->set_x_label_font(GD::gdLargeFont); $mygraph->set_y_label_font(GD::gdLargeFont); It works and changes the font for title and labels for me. ~Rakhee