| Chart-Clicker documentation | Contained in the Chart-Clicker distribution. |
Chart::Clicker::Container - Base class that extends Graphics::Primitive::Container
Chart::Clicker::Container is a subclass of Graphics::Primitive::Container.
Set/Get this component's clicker object.
Creates a new Chart::Clicker::Container
Cory G Watson <gphat@cpan.org>
perl(1)
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__