Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
Chart::Clicker::Positioned - Role for components that care about position. VERSION
version 2.83 SYNOPSIS
package My::Component; use Moose; extends 'Chart::Clicker::Drawing::Component'; with 'Chart::Clicker::Positioned'; 1; DESCRIPTION
Some components draw differently depending on which 'side' they are positioned. If an Axis is on the left, it will put the numbers left and the bar on the right. If positioned on the other side then those two piece are reversed. ATTRIBUTES
position The 'side' on which this component is positioned. METHODS
is_left Returns true if the component is positioned left. is_right Returns true if the component is positioned right. is_top Returns true if the component is positioned top. is_bottom Returns true if the component is positioned bottom. 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::Positioned(3pm)

Check Out this Related Man Page

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

NAME
Chart::Clicker::Renderer::Line - Line renderer VERSION
version 2.83 SYNOPSIS
my $lr = Chart::Clicker::Renderer::Line->new( brush => Graphics::Primitive::Brush->new({ #... }) ); DESCRIPTION
Chart::Clicker::Renderer::Line renders a dataset as lines. ATTRIBUTES
additive If true, the lines are drawn "stacked", each key accumulates based on those drawn below it. brush Set/Get a brush to be used for the lines. shape Set a shape object to draw at each of the data points. Adding a shape results in: shape_brush Set/Get the brush to be used on the shapes at each point. If no shape_brush is provided, then the shapes will be filled. The brush allows you to draw a "halo" around each shape. This sometimes help to separate the points from the lines and make them more distinct. METHODS
draw_point Called for each point encountered on the line. 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::Line(3pm)
Man Page

2 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. Web Development

Turning jQuery Code into Vue.js

The following is some code I am working on the replace our navbar (someday) with a Vue component. Vue.component("unix-navbar", { template: `<div class="neo-table-border vuenavbar"><div class="flex-item" style="margin-bottom:10px;padding-top:13px;"><a class="vuenavbarhome"... (19 Replies)
Discussion started by: Neo
19 Replies