|
NAMEChart::Clicker::Data::Series::Size - Chart data with additional attributes for Size charts VERSIONversion 2.90 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
});
DESCRIPTIONChart::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. ATTRIBUTESsizesSet/Get the sizes for this series. max_sizeGets the largest value from this Series' "sizes". min_sizeGets the smallest value from this Series' "sizes". METHODSadd_to_sizesAdds a size to this series. get_sizeGet a size by it's index. size_countGets the count of sizes in this series. AUTHORCory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSEThis 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.
|