
Chart::OFC::AxisLabel - A label for an axis

my $label = Chart::OFC::AxisLabel->new( label => 'Some Text',
text_color => 'blue',
text_size => 15,
);

This class represents a label for a whole axis, as opposed to the labels for the ticks on that axis.

This class has a number of attributes which may be passed to the new() method.
The text for the label.
This attribute is required.
The default color of tick labels.
Defaults to "#000000" (black).
The size of tick labels for the axis, in pixels.
Defaults to 20.

This class does the Chart::OFC::Role::OFCDataLines role.

Copyright 2007-2008 Dave Rolsky, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.