package Ari::Graph;
use GD::Graph::hbars;
use GD::Graph::bars;
my @data = (
);
my $graph = new GD::Graph::hbars(400,425);
$graph->set(x_labels_vertical =>0,
valign => '1',
x_label_skip =>2)
$graph->plot(\@data) or die "Graph Error";
The x_label_skip =>2 will get rid of the line label for carol and the horizontal graph line goes away. I'd like to keep the line label of carol and remove the horizontal line in the graph. Not the data line but the grid line.
Thanks,
Chuck Dial