| Chart-OFC2 documentation | Contained in the Chart-OFC2 distribution. |
Chart::OFC2::Line - OFC2 Line chart
use Chart::OFC2;
use Chart::OFC2::Axis;
use Chart::OFC2::Line;
my $chart = Chart::OFC2->new(
'title' => 'Line chart test',
'x_axis' => Chart::OFC2::XAxis->new(
'labels' => [ 'Jan', 'Feb', 'Mar', 'Apr', 'May' ],
),
);
my $line = Chart::OFC2::Line->new();
$line->values([ 1..5 ]);
$chart->add_element($line);
print $chart->render_chart_data();
extends 'Chart::OFC2::BarLineBase';
has '+type_name' => (default => 'line');
has 'width' => (is => 'rw', isa => 'Int',);
Dotted line chart
extends 'Chart::OFC2::Line';
has '+type_name' => (default => 'line_dot');
has 'dot-size' => (is => 'rw', isa => 'Int',);
Hollow line chart
extends 'Chart::OFC2::Line::Dot';
has '+type_name' => (default => 'line_hollow');
Hollow line chart
extends 'Chart::OFC2::Line::Dot';
has '+type_name' => (default => 'area_hollow');
| Chart-OFC2 documentation | Contained in the Chart-OFC2 distribution. |
package Chart::OFC2::Line;
use Moose; use MooseX::StrictConstructor; our $VERSION = '0.07'; extends 'Chart::OFC2::BarLineBase';
has '+type_name' => (default => 'line'); has 'width' => (is => 'rw', isa => 'Int',); 1;
package Chart::OFC2::Line::Dot; use Moose; use MooseX::StrictConstructor; our $VERSION = '0.07'; extends 'Chart::OFC2::Line';
has '+type_name' => (default => 'line_dot'); has 'dot-size' => (is => 'rw', isa => 'Int',); 1;
package Chart::OFC2::Line::Hollow; use Moose; use MooseX::StrictConstructor; our $VERSION = '0.07'; extends 'Chart::OFC2::Line::Dot';
has '+type_name' => (default => 'line_hollow'); 1;
package Chart::OFC2::Area::Hollow; use Moose; use MooseX::StrictConstructor; our $VERSION = '0.07'; extends 'Chart::OFC2::Line::Dot';
has '+type_name' => (default => 'area_hollow'); has 'width' => (is => 'rw', isa => 'Int',); has 'halo-size' => (is => 'rw', isa => 'Int',); has 'fill-alpha' => (is => 'rw', isa => 'Num',); has 'fill' => (is => 'rw', isa => 'Str',); has 'text' => (is => 'rw', isa => 'Str',); 1;