root/lang/perl/Google-Chart/tags/Google-Chart-0.02/lib/Google/Chart/Type/ScatterPlot.pm @ 9720

Revision 9720, 0.8 kB (checked in by hanekomu, 5 years ago)

r6002@nbgr: marcel | 2008-04-18 14:43:47 +0200
initial commit

Line 
1package Google::Chart::Type::ScatterPlot;
2
3use strict;
4use warnings;
5
6
7our $VERSION = '0.02';
8
9
10use base qw(Google::Chart::Type);
11
12
13use constant as_string => 'cht=s';
14
15
161;
17
18
19__END__
20
21{% USE p = PodGenerated %}
22
23=head1 NAME
24
25{% p.package %} - Draw a chart with Google Chart
26
27=head1 SYNOPSIS
28
29    {% p.package %}->new;
30
31=head1 WARNING
32
33This is a very early alpha release. It is more a proof of concept, but for
34very simple cases it already works. Documentation and more complete support of
35the Google Chart API will follow shortly. For now, the code more or less is
36the documentation. Patches welcome.
37
38=head1 DESCRIPTION
39
40This set of classes uses the Google Chart API - see
41L<http://code.google.com/apis/chart/> - to draw charts.
42
43{% p.write_inheritance %}
44
45{% PROCESS standard_pod %}
46
47=cut
48
Note: See TracBrowser for help on using the browser.