summaryrefslogtreecommitdiff
path: root/t/linespoints_1.t
blob: 62a7e11a319ec62e4ddefb4339a804422650b44f (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
29
30
31
32
#!/usr/bin/perl -w

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

print "1..1\n";

$g = Chart::LinesPoints->new;
$g->add_dataset( 'foo', 'bar', 'junk', 'ding', 'bat' );
$g->add_dataset( 3,     4,     9,      3,      4 );
$g->add_dataset( 8,     4,     3,      4,      6 );
$g->add_dataset( 5,     7,     2,      7,      9 );

$g->set( 'title'     => 'Lines and Points Chart' );
$g->set( 'sub_title' => 'Change color for grid_lines' );

$g->set( 'colors' => { 'x_grid_lines' => [ 250, 0, 125 ] } );
$g->set( 'colors' => { 'y_grid_lines' => [ 250, 0, 125 ] } );

#$g->set ('colors' => {'y2_grid_lines' => [250, 0, 125]});
$g->set( 'grid_lines'      => 'true' );
$g->set( 'grey_background' => 'false' );
$g->set( 'legend'          => 'bottom' );

$g->png("$samples/linespoints_1.png");

print "ok 1\n";

exit(0);