| Chart-Clicker documentation | Contained in the Chart-Clicker distribution. |
Chart::Clicker::Component - Base class that extends Graphics::Primitive::Component
Chart::Clicker::Component is a subclass of Graphics::Primitive::Component.
Set/Get this component's clicker object.
Creates a new Chart::Clicker::Component
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::Component; use Moose; extends 'Graphics::Primitive::Component'; with 'Graphics::Primitive::Oriented'; has 'clicker' => ( is => 'rw', isa => 'Chart::Clicker' ); __PACKAGE__->meta->make_immutable; no Moose; 1; __END__