Chart::Clicker::Container - Base class that extends Graphics::Primitive::Container


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

Index


Code Index:

NAME

Top

Chart::Clicker::Container - Base class that extends Graphics::Primitive::Container

DESCRIPTION

Top

Chart::Clicker::Container is a subclass of Graphics::Primitive::Container.

SYNOPSIS

Top

ATTRIBUTES

Top

clicker

Set/Get this component's clicker object.

METHODS

Top

new

Creates a new Chart::Clicker::Container

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::Container;
use Moose;

extends 'Graphics::Primitive::Container';

with 'Graphics::Primitive::Oriented';

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

__PACKAGE__->meta->make_immutable;

no Moose;

1;
__END__