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

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


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

Jozef Kutej