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::Series::Size - Chart data with additional attributes for Size charts

Attributes

sizes
       Set/Get the sizes for this series.

   max_size
       Gets the largest value from this Series' "sizes".

   min_size
       Gets the smallest value from this Series' "sizes".

Author

       Cory G Watson <gphat@cpan.org>

Description

       Chart::Clicker::Data::Series::Size is an extension of the Series class that provides storage for a third
       variable called the size.  This is useful for the Bubble renderer.

Methods

add_to_sizes
       Adds a size to this series.

   get_size
       Get a size by it's index.

   size_count
       Gets the count of sizes in this series.

Name

       Chart::Clicker::Data::Series::Size - Chart data with additional attributes for Size charts

Synopsis

         use Chart::Clicker::Data::Series::Size;

         my @keys = ();
         my @values = ();
         my @sizes = ();

         my $series = Chart::Clicker::Data::Series::Size->new({
           keys    => \@keys,
           values  => \@values,
           sizes   => \@sizes
         });

Version

       version 2.90

See Also