The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Imager::Graph::Line - a tool for drawing line charts on Imager images

SYNOPSIS

use Imager::Graph::Line;
use Imager::Font;

my $font = Imager::Font->new(file => '/path/to/font.ttf') || die "Error: $!";

my $graph = Imager::Graph::Line->new();
$graph->set_image_width(900);
$graph->set_image_height(600);
$graph->set_font($font);
$graph->use_automatic_axis();
$graph->show_legend();

my @data = (1, 2, 3, 5, 7, 11);
my @labels = qw(one two three five seven eleven);

$graph->add_data_series(\@data, 'Primes');
$graph->set_labels(\@labels);

my $img = $graph->draw() || die $graph->error;

$img->write(file => 'lines.png');