Trying to add a logo to my GD::GRaph files
using
$graph->set(logo => 'image.gif');
#$graph->set(logo_resize => 0.5);
$graph->set(logo_position => 'LL');
response is "Problems reading image.gif at ...."
any ideas what the problem might be?
assuming integer and decimal values
if I use sprintF to limit the number of decimals
my integers are displayed as decimals (2.00, e.g)
any way to limit sprintF's use and exclude integers?
Been trying to figure this out and have had no luck with other forums.
here's the code:
use GD::Graph::linespoints;
my $data_file = "ChartdataMYBUG.txt";
open DATA, "$data_file" or die "can't open $data_file $!";
undef $/;
$_ = <DATA>;
close DATA;
$/ = "\n";
my @data = ([1,2,3]...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.