From bbeed972891bce8a56afd13124a4bd7c31d31e5a Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Wed, 15 Nov 2006 11:01:13 +0000 Subject: [PATCH] ebl fix GD::Graph3d git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3626 91ce42f0-d328-0410-95d8-f526ca767f89 --- gui/bweb/cgi/bgraph.pl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gui/bweb/cgi/bgraph.pl b/gui/bweb/cgi/bgraph.pl index ba5bd36872..3a967f7b8a 100755 --- a/gui/bweb/cgi/bgraph.pl +++ b/gui/bweb/cgi/bgraph.pl @@ -103,9 +103,10 @@ sub get_graph use GD::Graph::linespoints; $graph = GD::Graph::linespoints->new ( $arg->{width}, $arg->{height} ); - } elsif ($gtype eq 'bars3d') { - use GD::Graph::bars3d; - $graph = GD::Graph::bars3d->new ( $arg->{width}, $arg->{height} ); +# this doesnt works at this time +# } elsif ($gtype eq 'bars3d') { +# use GD::Graph::bars3d; +# $graph = GD::Graph::bars3d->new ( $arg->{width}, $arg->{height} ); } else { return undef; @@ -337,7 +338,7 @@ $limitq my @arg; # arg for plotting if (!$per_t) { # much better aspect - $gtype = 'lines'; + #$gtype = 'lines'; } else { push @arg, ("x_number_format" => undef, "x_min_value" => 0, -- 2.39.5