Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

Chart::Clicker::Decoration::OverAxis(3pm)		User Contributed Perl Documentation		 Chart::Clicker::Decoration::OverAxis(3pm)

NAME
Chart::Clicker::Decoration::OverAxis - An axis drawn over data VERSION
version 2.83 DESCRIPTION
An axis that is meant to be drawn "over" a chart. You can find an example of an OverAxis at http://gphat.github.com/chart-clicker/static/images/examples/overaxis.png <http://gphat.github.com/chart- clicker/static/images/examples/overaxis.png>. ATTRIBUTES
axis_height Set/Get the height of the OverAxis that will be drawn. background_color Set/Get the background color for this OverAxis. border_color Set/Get the border color for this OverAxis. border_width Set/Get the width of the border for this OverAxis context Set/Get the context that this OverAxis should use. font The font to use for the OverAxis. layout_manager The layout manager to use for this overaxis. Defaults to a Layout::Manager::Compass. text_color Set/Get the color of the text labels dawn for the ticks. 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::Decoration::OverAxis(3pm)

Check Out this Related 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)
Man Page

7 More Discussions You Might Find Interesting

1. Programming

Flow Chart

Any One help how to draw the flow chart for C programe ? If any usefull link's. (1 Reply)
Discussion started by: sabari
1 Replies

2. Shell Programming and Scripting

comparing variables to date as string

I have a file $ cat myfile A 02/16/2012 B 02/19/2012 C 02/20/2012 D 02/17/2012 E 02/16/2012 My simple script > cat myscript.sh mydate="02/16/2012" awk ' ($2~/$mydate/) {print $1}' < myfile but I got no output! and when I try $2~/'$mydate'/ I got: The error context is (2 Replies)
Discussion started by: Sara_84
2 Replies

3. Shell Programming and Scripting

Shell script - precent value

Hello, I have example data like below: 39 ,2012/01,0 22 ,2012/02,0 2 ,2012/02,1 23 ,2012/03,0 3 ,2012/03,1 16 ,2012/04,0 2 ,2012/04,1 8 ,2012/05,0 2 ,2012/05,1 It is possible (awk, sed, bash) to calculate output like below (second value... (6 Replies)
Discussion started by: haczyk
6 Replies

4. Shell Programming and Scripting

print non empty column/field value

I have below file 25-09-2012 24-09-2012 19-09-2012 31-07-2012 30-04-2012 30-03-2012 ASIAEXFVNV N/A CEU 4 DMIRSOA N/A CAS 2 2 2 DMIRSOA N/A MIDMT 2 NFIAL22 N/A HVNY 11 11 11 NFIAL22 N/A NYAL3 11 11 11 NFIAL22 N/A NYCN 11 11 11 ... (4 Replies)
Discussion started by: manas_ranjan
4 Replies

5. Shell Programming and Scripting

Sum up the column values group by using some field

12-11-2012,PNL,158406 12-11-2012,RISK,4564 12-11-2012,VAR_1D,310101 12-11-2012,VAR_10D,310101 12-11-2012,CB,866 12-11-2012,STR_VAR_1D,298494 12-11-2012,STR_VAR_10D,309623 09-11-2012,PNL,1024106 09-11-2012,RISK,4565 09-11-2012,VAR_1D,317211 09-11-2012,VAR_10D,317211 09-11-2012,CB,985... (7 Replies)
Discussion started by: manas_ranjan
7 Replies

6. Shell Programming and Scripting

Generate tabular data based on a column value from an existing data file

Hi, I have a data file with : 01/28/2012,1,1,98995 01/28/2012,1,2,7195 01/29/2012,1,1,98995 01/29/2012,1,2,7195 01/30/2012,1,1,98896 01/30/2012,1,2,7083 01/31/2012,1,1,98896 01/31/2012,1,2,7083 02/01/2012,1,1,98896 02/01/2012,1,2,7083 02/02/2012,1,1,98899 02/02/2012,1,2,7083 I... (1 Reply)
Discussion started by: himanish
1 Replies

7. Shell Programming and Scripting

Check

echo "2012-12-26--14.8224 2012-12-27--14.2898 2012-12-28--14.9180 2012-12-29--13.3637 2012-12-30--13.7091" the set of numbers i provided above is separated by spaces. how do i count how many sets there are? i tried: echo "2012-12-26--14.8224 2012-12-27--14.2898 2012-12-28--14.9180... (5 Replies)
Discussion started by: SkySmart
5 Replies