NAME
WebService::Simple::Google::Chart - Get Google Chart URL and File
SYNOPSIS
use WebService::Simple::Google::Chart;
my $chart = WebService::Simple::Google::Chart->new;
my $data = { foo => 200, bar => 130, hoge => 70 };
my $url = $chart->get_url(
{
size => "250x100",
type => "p3",
data => $data,
}
);
print $url;
$chart->render_to_file("foo.png");
DESCRIPTION
METHOS
get_url
render_to_file
AUTHOR
Yusuke Wada <yusuke@kamawada.com>
COPYRIGHT
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.