| Google-Chart documentation | Contained in the Google-Chart distribution. |
Google::Chart::Fill - Base Fill Role
package NewFillType;
use Moose;
with 'Google::Chart::Fill';
no Moose;
sub parameter_value { ... }
| Google-Chart documentation | Contained in the Google-Chart distribution. |
# $Id$ package Google::Chart::Fill; use Moose::Role; use constant parameter_name => 'chf'; with 'Google::Chart::QueryComponent::Simple'; no Moose; 1; __END__