Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

chart::clicker::renderer::polararea(3pm) [debian 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)

Check Out this Related Man Page

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

NAME
Chart::Clicker::Renderer::StackedArea - Stacked Area renderer VERSION
version 2.83 SYNOPSIS
my $ar = Chart::Clicker::Renderer::StackedArea->new({ fade => 1, brush => Graphics::Primitive::Brush->new({ width => 2 }) }); DESCRIPTION
Chart::Clicker::Renderer::StackedArea renders a dataset as line-like polygons stacked atop one another. NOTES
Note that series with varying keys (e.g. Series 1 has keys 1, 2, 3 but Series 2 only has 1 and 3) will cause you some problems. Since the keys don't match up, neither will the accumulation of area. This may be addressed in the future. ATTRIBUTES
brush Set/Get the brush that informs the line surrounding the area renders individual segments. fade Set/Get the fade flag, which turns on or off a gradient in the area renderer. opacity Set the alpha value for the renderer, which makes things more or less opaque. 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::StackedArea(3pm)
Man Page

7 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

Google charts now has a wizard

Here is a link to google charts, but wizard driven, which makes for much easier prototyping: Chart Wizard - Google Chart Tools / Image Charts (aka Chart API) - Google Code It is still in Beta, so near-future changes are likely. It gives the opportunity to experiment with your data and the way... (0 Replies)
Discussion started by: figaro
0 Replies

2. Shell Programming and Scripting

Automatic generate 3D pie Graph

Hello all, I need the scripts automatic generate 3D pie Graph. What I have now is as below: Run at terminal by $ CMD R BATCH graph.R # 3D Exploded Pie Chart library(plotrix) slices <- c(20, 15, 4, 15, 8) lbls <- c("Media", "Document", "DB", "Others", "Available") pct <-... (5 Replies)
Discussion started by: sheikh76
5 Replies

3. 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

4. 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

5. 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

6. 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

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