|
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 | |
|---|
| 1 | package Google::Chart::Type::ScatterPlot; |
|---|
| 2 | |
|---|
| 3 | use strict; |
|---|
| 4 | use warnings; |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | our $VERSION = '0.02'; |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | use base qw(Google::Chart::Type); |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | use constant as_string => 'cht=s'; |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | 1; |
|---|
| 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 | |
|---|
| 33 | This is a very early alpha release. It is more a proof of concept, but for |
|---|
| 34 | very simple cases it already works. Documentation and more complete support of |
|---|
| 35 | the Google Chart API will follow shortly. For now, the code more or less is |
|---|
| 36 | the documentation. Patches welcome. |
|---|
| 37 | |
|---|
| 38 | =head1 DESCRIPTION |
|---|
| 39 | |
|---|
| 40 | This set of classes uses the Google Chart API - see |
|---|
| 41 | L<http://code.google.com/apis/chart/> - to draw charts. |
|---|
| 42 | |
|---|
| 43 | {% p.write_inheritance %} |
|---|
| 44 | |
|---|
| 45 | {% PROCESS standard_pod %} |
|---|
| 46 | |
|---|
| 47 | =cut |
|---|
| 48 | |
|---|