File: lines.t

package info (click to toggle)
libchart-perl 2.2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 15,356 kB
  • ctags: 140
  • sloc: perl: 6,573; makefile: 40
file content (26 lines) | stat: -rw-r--r-- 506 bytes parent folder | download
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
use Chart::Lines;

print "1..1\n";

$g = Chart::Lines->new;
$g->add_dataset ('foo', 'bar', 'whee', 'ding','bat');
$g->add_dataset (3.2, 4.1, 9.8, 10, 11);
$g->add_dataset (8, 5.3, 3, 4, 5.1);
$g->add_dataset (5, 7, 2.3, 10, 12);




%hash =( 'title' => 'Lines Chart',
	 'legend_example_size' => 10,
	 'grid_lines' => 'true',
	'grey_background' => 'false',
	 'colors' => { 'text' => [255,0,0],
	 		'grid_lines' => [240,0,0]}
	);
$g->set ( %hash); 
$g->png ("samples/lines.png");
print "ok 1\n";

exit (0);