GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Chart::Clicker::Data::Marker(3) User Contributed Perl Documentation Chart::Clicker::Data::Marker(3)

Chart::Clicker::Data::Marker - Highlight arbitrary value(s)

version 2.90

 use Chart::Clicker::Data::Marker;
 use Graphics::Color::RGB;
 use Graphics::Primitive::Brush;

 my $cc = Chart::Clicker->new;

 my $mark = Chart::Clicker::Data::Marker->new(
    color   => Graphics::Color::RGB->new,
    brush  => Graphics::Primitive::Brush->new,
    key     => 12,
    value   => 123,
    # Optionally
    key2    => 13,
    value   => 146
 );

 my $ctx = $cc->get_context('default');
 $ctx->add_marker($mark);
 
 $cc->write_output('foo.png');

Used to highlight a particular key, value or range of either.

Set/Get the brush for this Marker.

Set/Get the color for this marker.

Set/Get the inside color, which will be used if this range has two keys and two values.

Set/Get the key for this marker. This represents a point on the domain.

Set/Get the key2 for this marker. This represents a second point on the domain and is used to specify a range.

Set/Get the value for this marker. This represents a point on the range.

Set/Get the value2 for this marker. This represents a second point on the range and is used to specify a range.

Cory G Watson <gphat@cpan.org>

This software is copyright (c) 2016 by Cory G Watson.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2016-12-15 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.