/usr/share/perl5/Chart/Clicker/Renderer.pm is in libchart-clicker-perl 2.86-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | package Chart::Clicker::Renderer;
{
$Chart::Clicker::Renderer::VERSION = '2.86';
}
use Moose;
extends 'Graphics::Primitive::Canvas';
# ABSTRACT: Base class for renderers
has 'additive' => ( is => 'rw', isa => 'Bool', default => 0 );
has 'clicker' => ( is => 'rw', isa => 'Chart::Clicker' );
has 'context' => ( is => 'rw', isa => 'Str' );
override('prepare', sub {
my ($self) = @_;
return 1;
});
__PACKAGE__->meta->make_immutable;
no Moose;
1;
__END__
=pod
=head1 NAME
Chart::Clicker::Renderer - Base class for renderers
=head1 VERSION
version 2.86
=head1 SYNOPSIS
my $renderer = Chart::Clicker::Renderer::Foo->new;
=head1 DESCRIPTION
Chart::Clicker::Renderer represents the plot of the chart.
=head1 ATTRIBUTES
=head2 additive
Read-only value that informs Clicker that this renderer uses the combined ranges
of all the series it charts in total. Used for 'stacked' renderers like
StackedBar, StackedArea and Line (which will stack if told to). Note: If you
set a renderer to additive that B<isn't> additive, this will produce wonky
results.
=head2 context
The context to which this Renderer is attached.
=head1 AUTHOR
Cory G Watson <gphat@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Cold Hard Code, LLC.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|