File: bars_3.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 (30 lines) | stat: -rwxr-xr-x 824 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
27
28
29
30
use Chart::Bars;
print "1..1\n";
$g = Chart::Bars->new(500,500);

$g->add_dataset ('Reds', 'Blacks', 'Greens', 'Yellows', 'Browns', 'Others');
$g->add_dataset (-2.4, 3.4, 1.9, 1.2, -1.1, -2.9);

%hash = (
 	 'title' => 'Selection 2002:\nWins and Losses in percent',
         'text_space' => 5,
         'y_grid_lines' => 'true',
         'grey_background' => 'false',
         'legend' => 'none',
         'min_val' => -4,
         'max_val' => 4,
         'min_y_ticks' => 10,
         'y_axes' => 'both',
         'spaced_bars' => 'false',
         'colors' => {'background' => [230,255,230],
                      'title' =>'plum',
                      'dataset0' => 'mauve',
                     },
         );
$g->set (%hash);

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

print "ok 1\n";

exit (0);