From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

Chart::OFC2::Labels - OFC2 labels object

SYNOPSIS

'x_axis' => Chart::OFC2::XAxis->new(
labels => {
labels => [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun' ]
}
),
'x_axis' => Chart::OFC2::XAxis->new(
labels => {
labels => [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun' ],
colour => '#555555',
rotate => 45
}
),

DESCRIPTION

PROPERTIES

has 'labels' => ( is => 'rw', isa => 'ArrayRef', );
has 'colour' => ( is => 'rw', isa => 'Str', alias => 'color' );
has 'rotate' => ( is => 'rw', isa => 'Num', );

METHODS

new()

Object constructor.

TO_JSON()

Returns HashRef that is possible to give to encode_json() function.

color()

Same as colour().

AUTHOR

Jozef Kutej