Chart::OFC2::Title - OFC2 title object


Chart-OFC2 documentation  | view source Contained in the Chart-OFC2 distribution.

Index


NAME

Top

Chart::OFC2::Title - OFC2 title object

SYNOPSIS

Top

    use Chart::OFC2;
    use Chart::OFC2::Title;

    $chart = Chart::OFC2->new(
        'title'  => 'Bar chart test',
    );

    $chart = Chart::OFC2->new(
        'title'  => Chart::OFC2::Title->new(
            'text'  => 'Bar chart test',
            'style' => '{font-size:20px; font-family:Verdana; text-align:center;}',
        ),
    );

DESCRIPTION

Top

PROPERTIES

Top

    has 'text'  => (is => 'rw', isa => 'Str', );
    has 'style' => (is => 'rw', isa => 'Str', );

METHODS

Top

new()

Object constructor.

TO_JSON()

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

AUTHOR

Top

Jozef Kutej


Chart-OFC2 documentation  | view source Contained in the Chart-OFC2 distribution.