Chart::Clicker::Decoration - Shiny baubles!


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

Index


Code Index:

NAME

Top

Chart::Clicker::Decoration - Shiny baubles!

DESCRIPTION

Top

Chart::Clicker::Decoration is a straight subclass of Graphics::Primitive::Canvas.

SYNOPSIS

Top

METHODS

Top

new

Creates a new Chart::Clicker::Decoration

AUTHOR

Top

Cory G Watson <gphat@cpan.org>

SEE ALSO

Top

perl(1)

LICENSE

Top

You can redistribute and/or modify this code under the same terms as Perl itself.


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

package Chart::Clicker::Decoration;
use Moose;

extends 'Graphics::Primitive::Canvas';

has 'clicker' => ( is => 'rw', isa => 'Chart::Clicker' );

__PACKAGE__->meta->make_immutable;

no Moose;

1;
__END__