| Google-Chart documentation | Contained in the Google-Chart distribution. |
Google::Chart::Type::XY - Google::Chart XY Line Type
In charts of this type, each drawn line is defined by a pair of data sets, one of X coordinates and one for Y coordinates. See the API documentation at
http://code.google.com/apis/chart/types.html#line_charts
for details.
| Google-Chart documentation | Contained in the Google-Chart distribution. |
# $Id$ package Google::Chart::Type::XY; use Moose; use constant parameter_value => 'lxy'; with 'Google::Chart::Type::Simple'; no Moose; 1; __END__