File Coverage

lib/Google/Chart/Type/XY.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             # $Id$
2              
3             package Google::Chart::Type::XY;
4 1     1   6 use Moose;
  1         2  
  1         10  
5 1     1   8098 use constant parameter_value => 'lxy';
  1         4  
  1         104  
6              
7             with 'Google::Chart::Type::Simple';
8              
9 1     1   7 no Moose;
  1         2  
  1         7  
10              
11             1;
12              
13             __END__
14              
15             =head1 NAME
16              
17             Google::Chart::Type::XY - Google::Chart XY Line Type
18              
19             In charts of this type, each drawn line is defined by a pair of
20             data sets, one of X coordinates and one for Y coordinates. See
21             the API documentation at
22              
23             http://code.google.com/apis/chart/types.html#line_charts
24              
25             for details.
26              
27             =cut