logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Attributes

brush
       Set/Get the brush for this Marker.

   color
       Set/Get the color for this marker.

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

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

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

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

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

Author

       Cory G Watson <gphat@cpan.org>

Description

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

Name

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

Synopsis

        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');

Version

       version 2.90

See Also