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::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

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