Chart::OFC2::BarLineBase - OFC2 Bar and Line chart base module


Chart-OFC2 documentation Contained in the Chart-OFC2 distribution.

Index


Code Index:

NAME

Top

Chart::OFC2::BarLineBase - OFC2 Bar and Line chart base module

SYNOPSIS

Top

	use Moose;
	extends 'Chart::OFC2::BarLineBase';

DESCRIPTION

Top

PROPERTIES

Top

	has 'colour'    => (is => 'rw', isa => 'Str', );
	has 'text'      => (is => 'rw', isa => 'Str', );
	has 'font_size' => (is => 'rw', isa => 'Int', );

AUTHOR

Top

Jozef Kutej


Chart-OFC2 documentation Contained in the Chart-OFC2 distribution.
package Chart::OFC2::BarLineBase;

use Moose;
use MooseX::StrictConstructor;
extends 'Chart::OFC2::Element';

our $VERSION = '0.07';

has 'colour'    => (is => 'rw', isa => 'Str', );
has 'text'      => (is => 'rw', isa => 'Str', );
has 'font_size' => (is => 'rw', isa => 'Int', );

1;


__END__