Chart::OFC2::Line - OFC2 Line chart


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

Index


NAME

Top

Chart::OFC2::Line - OFC2 Line chart

SYNOPSIS

Top

    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();

DESCRIPTION

Top

	extends 'Chart::OFC2::BarLineBase';

PROPERTIES

Top

    has '+type_name' => (default => 'line');
    has 'width'      => (is => 'rw', isa => 'Int',);

Chart::OFC2::Line::Dot

Top

Dotted line chart

	extends 'Chart::OFC2::Line';

PROPERTIES

Top

	has '+type_name' => (default => 'line_dot');
    has 'dot-size'   => (is => 'rw', isa => 'Int',);

Chart::OFC2::Line::Hollow

Top

Hollow line chart

	extends 'Chart::OFC2::Line::Dot';

PROPERTIES

Top

	has '+type_name' => (default => 'line_hollow');

Chart::OFC2::Area::Hollow

Top

Hollow line chart

	extends 'Chart::OFC2::Line::Dot';

PROPERTIES

Top

	has '+type_name' => (default => 'area_hollow');


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