summaryrefslogtreecommitdiff
path: root/t/pie_2.t
blob: d5d327734129fbfa90b32b8d951d70968fec05dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/perl -w

BEGIN { unshift @INC, 'lib', '../lib'}
use Chart::Pie;
use strict;
use File::Temp 0.19;
my $samples = File::Temp->newdir();
my $g;

print "1..1\n";

$g = Chart::Pie->new( 530, 330 );

$g->add_dataset( 'Harry', 'Sally', 'Eve', 'Mark', 'John', 'Susan', 'Alex', 'Tony', 'Kimberly', 'Theresa' );
$g->add_dataset( 12,      20,      12,    15,     8,      9,       22,     14,     8,          13 );

$g->set( 'title'               => 'Pie Demo' );
$g->set( 'label_values'        => 'none' );
$g->set( 'legend_label_values' => 'percent' );
$g->set( 'grey_background'     => 'false' );
$g->set( 'colors'              => { 'title' => 'red' } );
$g->set( 'legend_lines'        => 'true' );

$g->png("$samples/pie_2.png");
print "ok 1\n";

exit(0);