Google::Chart::Fill - Base Fill Role


Google-Chart documentation Contained in the Google-Chart distribution.

Index


Code Index:

NAME

Top

Google::Chart::Fill - Base Fill Role

SYNOPSIS

Top

  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__