File: hbars_3.t

package info (click to toggle)
libchart-perl 2.4.1-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,804 kB
  • ctags: 370
  • sloc: perl: 9,120; makefile: 532
file content (29 lines) | stat: -rwxr-xr-x 609 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/perl -w

use Chart::HorizontalBars;

print "1..1\n";

$g = Chart::HorizontalBars->new(500,400);
$g->add_dataset ('Foo', 'bar', 'junk', 'ding', 'bat');
$g->add_dataset (-4, -3, -4, -5, -2);
$g->add_dataset (-2, -10, -3, -8, -3);

%hash = (
         'y_axes' => 'right',
	 'title' => 'Horizontal Bars Demo',
	 'x_grid_lines' => 'true',
	 'x_label' => 'x-axis',
	 'y_label' => 'y-axis',
  	 'x_ticks' => 'staggered',
         'include_zero' => 'true',
         'spaced_bars' => 'false',
	 );

$g->set (%hash);

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

print "ok 1\n";

exit (0);