in reply to Problems With Chart Module
However, don't forget your audience! PNG support is not available in older browsers. Even newer ones tend not to support all of the features of PNG.use strict; use Chart::Lines; my $obj = Chart::Lines->new or die "Chart does not work\n"; $obj->set ( title => 'Graph Test'); my @data = ( [ 'foo', 'bar', 'junk' ], [ 30.2, 23.5, 92.1 ] ); # Should create a png file with graph $obj->png ("test.gif", \@data);
Cheers,
Ovid
Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (Ovid) Re: Problems With Chart Module
by dws (Chancellor) on Dec 08, 2000 at 07:38 UTC |