Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

chart::clicker::context(3pm) [debian man page]

Chart::Clicker::Context(3pm)				User Contributed Perl Documentation			      Chart::Clicker::Context(3pm)

NAME
Chart::Clicker::Context - A rendering context: Axes, Markers and a Renderer VERSION
version 2.83 SYNOPSIS
my $clicker = Chart::Clicker->new; my $context = Chart::Clicker::Context->new( name => 'Foo' ); $clicker->add_to_contexts('foo', $context); DESCRIPTION
Contexts represent the way a dataset should be charted. Multiple contexts allow a chart with multiple renderers and axes. See the CONTEXTS section in Chart::Clicker. renderer Set/get this context's renderer ATTRIBUTES
domain_axis Set/get this context's domain Axis. markers An arrayref of Chart::Clicker::Data::Markers for this context. name Set/get this context's name range_axis Set/get this context's range Axis. METHODS
add_marker Add a marker to this context. marker_count Get a count of markers in this context. share_axes_with ($other_context) Sets this context's axes to those of the supplied context. This is a convenience method for quickly sharing axes. It's simple doing: $self->range_axis($other_context->range_axis); $self->domain_axis($other_context->domain_axis); AUTHOR
Cory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 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. perl v5.14.2 2012-06-22 Chart::Clicker::Context(3pm)

Check Out this Related Man Page

Chart::Clicker::Renderer::PolarArea(3pm)		User Contributed Perl Documentation		  Chart::Clicker::Renderer::PolarArea(3pm)

NAME
Chart::Clicker::Renderer::PolarArea - Polar Area renderer VERSION
version 2.83 SYNOPSIS
my $par = Chart::Clicker::Renderer::PolarArea->new; # Optionally set the stroke $par->brush->width(2); # and color $par->border_color(Graphics::Color::RGB->new(red => 1, green => 1, blue => 1)); DESCRIPTION
Chart::Clicker::Renderer::PolarArea renders each series as a slice of a pie. The values of the series determine the radius of each slice, with larger values making the slices longer. The 360 degrees of pie is divided equally. ATTRIBUTES
border_color Set/Get the color to use for the border. brush Set/Get a brush to be used for the polar area's borders, which are around each slice. AUTHOR
Cory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 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. perl v5.14.2 2012-06-22 Chart::Clicker::Renderer::PolarArea(3pm)
Man Page

3 More Discussions You Might Find Interesting

1. Programming

Context Free Grammar

Hi Folks, I am trying to write a small compiler for syntax checking in C programs. I would like to attach a Context Free Grammar(CFC) to it. Does any one know as to how I should associate or map the Grammar with the C program???? A quick help would help me a lot...... Thanks, Nisha (4 Replies)
Discussion started by: Nisha
4 Replies

2. UNIX for Advanced & Expert Users

Context Switching

I know that this is a relative question but can someone give me an idea of what would be considered a high number of context switches? I am running vmstat and show a cs value of between 5000 and 6000 on a 4 processor system. How can I deduce if this number is high or not? Also, the timeslice... (2 Replies)
Discussion started by: keelba
2 Replies

3. UNIX for Advanced & Expert Users

Signal Handling and Context Switches

(2 Replies)
Discussion started by: XComp
2 Replies