/usr/share/perl5/Chart/Clicker/Axis.pm is in libchart-clicker-perl 2.90-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 | package Chart::Clicker::Axis;
$Chart::Clicker::Axis::VERSION = '2.90';
use Moose;
use Moose::Util;
extends 'Chart::Clicker::Container';
with 'Chart::Clicker::Positioned';
# ABSTRACT: An X or Y Axis
use Class::Load;
use Chart::Clicker::Data::Range;
use English qw(-no_match_vars);
use Graphics::Color::RGB;
use Graphics::Primitive::Font;
use Layout::Manager::Absolute;
use Math::Trig ':pi';
has 'tick_label_angle' => (
is => 'rw',
isa => 'Num'
);
has 'tick_division_type' => ( is => 'rw', isa => 'Str', default => 'Exact' );
# The above tick division type is loaded on the first call to divvy()
has '_tick_division_type_loaded' => ( is => 'ro', isa => 'Bool', lazy_build => 1 );
has 'baseline' => (
is => 'rw',
isa => 'Num',
);
has 'brush' => (
is => 'rw',
isa => 'Graphics::Primitive::Brush',
default => sub {
Graphics::Primitive::Brush->new(
color => Graphics::Color::RGB->new(
red => 1, green => 0, blue => 1, alpha => 1
),
width => 1
)
}
);
has '+color' => (
default => sub {
Graphics::Color::RGB->new({
red => 0, green => 0, blue => 0, alpha => 1
})
}
);
has 'format' => ( is => 'rw', isa => 'Str|CodeRef', default => '%s' );
has 'fudge_amount' => ( is => 'rw', isa => 'Num', default => 0 );
has 'hidden' => ( is => 'rw', isa => 'Bool', default => 0 );
has 'label' => ( is => 'rw', isa => 'Str' );
has 'label_color' => (
is => 'rw',
isa => 'Graphics::Color',
default => sub {
Graphics::Color::RGB->new({
red => 0, green => 0, blue => 0, alpha => 1
})
}
);
has 'label_font' => (
is => 'rw',
isa => 'Graphics::Primitive::Font',
default => sub { Graphics::Primitive::Font->new }
);
has '+layout_manager' => ( default => sub { Layout::Manager::Absolute->new });
has '+orientation' => (
required => 1
);
has '+position' => (
required => 1
);
has 'range' => (
is => 'rw',
isa => 'Chart::Clicker::Data::Range',
default => sub { Chart::Clicker::Data::Range->new }
);
has 'show_ticks' => ( is => 'rw', isa => 'Bool', default => 1 );
has 'staggered' => ( is => 'rw', isa => 'Bool', default => 0 );
has 'skip_range' => (
is => 'rw',
isa => 'Chart::Clicker::Data::Range',
predicate => 'has_skip_range'
);
has 'tick_font' => (
is => 'rw',
isa => 'Graphics::Primitive::Font',
default => sub { Graphics::Primitive::Font->new }
);
has 'tick_label_color' => (
is => 'rw',
isa => 'Graphics::Color',
default => sub {
Graphics::Color::RGB->new({
red => 0, green => 0, blue => 0, alpha => 1
})
}
);
has 'tick_labels' => (
is => 'rw',
isa => 'ArrayRef',
);
has 'tick_values' => (
traits => [ 'Array' ],
is => 'rw',
isa => 'ArrayRef',
default => sub { [] },
handles => {
'add_to_tick_values' => 'push',
'clear_tick_values' => 'clear',
'tick_value_count' => 'count'
}
);
has 'ticks' => ( is => 'rw', isa => 'Int', default => 6 );
sub BUILD {
my ($self) = @_;
$self->padding(3);
}
sub _build__tick_division_type_loaded {
my $self = shift;
# User modules are prefixed with a +.
my $divisionTypeModule;
my $extensionOf = 'Chart::Clicker::Axis::DivisionType';
if ( $self->tick_division_type =~ m/^\+(.*)$/xmisg ) {
$divisionTypeModule = $1;
}
else {
$divisionTypeModule = sprintf( '%s::%s', $extensionOf, $self->tick_division_type );
}
# Try to load the DivisionType module. An error is thrown when the class is
# not available or cannot be loaded
Class::Load::load_class($divisionTypeModule);
# Apply the newly loaded role to this class.
Moose::Util::apply_all_roles( $self => $divisionTypeModule );
if ( not $self->does($extensionOf) ) {
die("Module $divisionTypeModule does not extend $extensionOf");
}
return 1;
}
override('prepare', sub {
my ($self, $driver) = @_;
$self->clear_components;
# The BUILD method above establishes a 5px padding at instantiation time.
# That saves us setting it elsewhere, but if 'hidden' feature is used,
# then we have to unset the padding. hidden (as explained below) is
# basically a hack as far as G:P is concerned to render an empty Axis.
# We want it to render because we need it prepared for other elements
# of the chart to work.
if($self->hidden) {
$self->padding(0);
# Hide the border too, jic
$self->border->width(0);
}
super;
if($self->range->span == 0) {
die('This axis has a span of 0, that\'s fatal!');
}
if(defined($self->baseline)) {
if($self->range->lower > $self->baseline) {
$self->range->lower($self->baseline);
}
} else {
$self->baseline($self->range->lower);
}
if($self->fudge_amount) {
my $span = $self->range->span;
my $lower = $self->range->lower;
$self->range->lower($lower - abs($span * $self->fudge_amount));
my $upper = $self->range->upper;
$self->range->upper($upper + ($span * $self->fudge_amount));
}
if($self->show_ticks && !scalar(@{ $self->tick_values })) {
$self->tick_values($self->divvy);
}
# Return now without setting a min height or width and allow
# Layout::Manager to to set it for us, this is how we 'hide'
return if $self->hidden;
my $tfont = $self->tick_font;
my $bheight = 0;
my $bwidth = 0;
# Determine all this once... much faster.
my $i = 0;
foreach my $val (@{ $self->tick_values }) {
if($self->has_skip_range && $self->skip_range->contains($val)) {
# If the label falls in inside the skip range, it's not to be
# used at all.
next;
}
my $label = $val;
if(defined($self->tick_labels)) {
if (defined $self->tick_labels->[$i]) {
$label = $self->tick_labels->[$i];
}
else {
$label = "";
}
} else {
$label = $self->format_value($val);
}
my $tlabel = Graphics::Primitive::TextBox->new(
text => $label,
font => $tfont,
color => $self->tick_label_color,
);
if($self->tick_label_angle) {
$tlabel->angle($self->tick_label_angle);
}
my $lay = $driver->get_textbox_layout($tlabel);
$tlabel->prepare($driver);
$tlabel->width($lay->width);
$tlabel->height($lay->height);
$bwidth = $tlabel->width if($tlabel->width > $bwidth);
$bheight = $tlabel->height if($tlabel->height > $bheight);
$self->add_component($tlabel);
$i++;
}
my $big = $bheight;
if($self->is_vertical) {
$big = $bwidth;
}
my $label_width = 0;
my $label_height = 0;
if ($self->label) {
my $label = Graphics::Primitive::TextBox->new(
# angle => $angle,
color => $self->label_color,
name => 'label',
font => $self->label_font,
text => $self->label,
width => $self->height,
horizontal_align => 'center'
);
$label->name('label');
$label->border->color(Graphics::Color::RGB->new(r => 0, g => 0, b => 0));
if($self->is_vertical) {
if ($self->is_left) {
$label->angle(-&pip2);
} else {
$label->angle(&pip2)
}
}
$label->prepare($driver);
$label->width($label->minimum_width);
$label->height($label->minimum_height);
$label_width = $label->width;
$label_height = $label->height;
$self->add_component($label);
}
if($self->is_vertical) {
my $new_min_width = $self->outside_width + $big + $label_width;
$self->minimum_width($new_min_width) if $new_min_width > $self->minimum_width;
my $new_min_height = $self->outside_height + $big;
$self->minimum_height($new_min_height) if $new_min_height > $self->minimum_height;
} else {
my $new_min_height = $self->outside_height + $big + $label_height;
my $new_min_width = $self->outside_width + $big;
$self->minimum_height($new_min_height) if $new_min_height > $self->minimum_height;
$self->minimum_width($new_min_width) if $new_min_width > $self->minimum_width;
if($self->staggered) {
$self->minimum_height($self->minimum_height * 2);
}
}
return 1;
});
sub mark {
my ($self, $span, $value) = @_;
return undef if not defined $value;
if($self->has_skip_range) {
# We must completely ignore values that fall inside the skip range,
# so we return an undef.
return undef if $self->skip_range->contains($value);
if($value > $self->skip_range->upper) {
# If the value was outside the range, but above it then we must
# be sure and substract the range we are skipping so that the
# value will still fall on the chart.
$value = $value - $self->skip_range->span;
}
}
# 'caching' this here speeds things up. Calling after changing the
# range would result in a messed up chart anyway...
if(!defined($self->{LOWER})) {
$self->{LOWER} = $self->range->lower;
if($self->has_skip_range) {
# If we have a skip range then the RSPAN is less the skip range's
# span.
$self->{RSPAN} = $self->range->span - $self->skip_range->span;
} else {
$self->{RSPAN} = $self->range->span;
}
}
return ($span / $self->{RSPAN}) * ($value - $self->{LOWER} || 0);
}
override('finalize', sub {
my ($self) = @_;
if($self->hidden) {
# Call the callback, just in case it matters.
super;
return;
}
my $x = 0;
my $y = 0;
my $width = $self->width;
my $height = $self->height;
my $ibb = $self->inside_bounding_box;
my $iox = $ibb->origin->x;
my $ioy = $ibb->origin->y;
my $iwidth = $ibb->width;
my $iheight = $ibb->height;
if($self->is_left) {
$x += $width;
} elsif($self->is_right) {
# nuffin
} elsif($self->is_top) {
$y += $height;
} else {
# nuffin
}
my $lower = $self->range->lower;
my $upper = $self->range->upper;
my @values = @{ $self->tick_values };
if($self->is_vertical) {
my $comp_count = 0;
for(0..$#values) {
my $val = $values[$_];
my $mark = $self->mark($height, $val);
next unless defined($mark);
my $iy = $height - $mark;
my $label = $self->get_component($comp_count);
# Adjust text on the Y axis to fit when it is
# too close to the edges
my $standardYOrigin = $iy - ($label->height / 2);
#my $lowerYOrigin = $iy - $label->height;
my $lowerYOrigin = $ioy + $iheight - $label->height;
my $upperYOrigin = $ioy;
if($standardYOrigin >= $lowerYOrigin) {
# The first label (being at the bottom) needs to be
# skooched up a bit to fit.
$label->origin->y($lowerYOrigin);
} elsif($standardYOrigin <= $upperYOrigin) {
# The last label (being at the top) can be positioned
# exactly at the mark.
$label->origin->y($upperYOrigin);
} else {
$label->origin->y($standardYOrigin);
}
if($self->is_left) {
$label->origin->x($iox + $iwidth - $label->width);
} else {
$label->origin->x($iox);
}
# Keep track of how many components we've actually grabbed, since
# we could be skipping any that are in a skip range.
$comp_count++;
}
# Draw the label
# FIXME Not working, rotated text labels...
if($self->label) {
my $label = $self->get_component($self->find_component('label'));
if($self->is_left) {
$label->origin->x($iox);
$label->origin->y(($height - $label->height) / 2);
} else {
$label->origin->x($iox + $iwidth - $label->width);
$label->origin->y(($height - $label->height) / 2);
}
}
} else {
# Draw a tick for each value.
my $comp_count = 0;
for(0..$#values) {
my $val = $values[$_];
my $ix = $self->mark($width, $val);
next unless defined($ix);
my $label = $self->get_component($comp_count);
my $bump = 0;
if($self->staggered) {
if($_ % 2) {
$bump = $iheight / 2;
}
}
# Adjust the X-origin value to ensure it is within the graph
# and does not get snipped when too close to the edge.
my $standardXOrigin = $ix - ($label->width / 1.8);
my $lowerXOrigin = $iox;
my $upperXOrigin = $iox + $iwidth - $label->width;
if($standardXOrigin <= $lowerXOrigin) {
$label->origin->x($lowerXOrigin);
} elsif($standardXOrigin >= $upperXOrigin) {
$label->origin->x($upperXOrigin);
} else {
$label->origin->x($standardXOrigin);
}
if($self->is_top) {
$label->origin->y($ioy + $iheight - $label->height - $bump);
} else {
$label->origin->y($ioy + $bump);
}
# Keep track of how many components we've actually grabbed, since
# we could be skipping any that are in a skip range.
$comp_count++;
}
# Draw the label
if($self->label) {
my $label = $self->get_component($self->find_component('label'));
my $ext = $self->{'label_extents_cache'};
if ($self->is_bottom) {
$label->origin->x(($width - $label->width) / 2);
$label->origin->y($height - $label->height
- ($self->padding->bottom + $self->margins->bottom
+ $self->border->top->width
)
);
} else {
$label->origin->x(($width - $label->width) / 2);
}
}
}
super;
});
sub format_value {
my $self = shift;
my $value = shift;
my $format = $self->format;
if($format) {
if(ref($format) eq 'CODE') {
return &$format($value);
} else {
return sprintf($format, $value);
}
}
}
sub divvy {
my $self = shift;
# Loads the divvy module once and only once
# which implements _real_divvy()
$self->_tick_division_type_loaded;
return $self->_real_divvy();
}
__PACKAGE__->meta->make_immutable;
no Moose;
1;
__END__
=pod
=head1 NAME
Chart::Clicker::Axis - An X or Y Axis
=head1 VERSION
version 2.90
=head1 SYNOPSIS
use Chart::Clicker::Axis;
use Graphics::Primitive::Font;
use Graphics::Primitive::Brush;
my $axis = Chart::Clicker::Axis->new({
label_font => Graphics::Primitive::Font->new,
orientation => 'vertical',
position => 'left',
brush => Graphics::Primitive::Brush->new,
visible => 1,
});
=head1 DESCRIPTION
Chart::Clicker::Axis represents the plot of the chart.
=head1 ATTRIBUTES
=head2 height
The height of the axis.
=head2 width
This axis' width.
=head2 tick_label_angle
The angle (in radians) to rotate the tick's labels.
=head2 tick_division_type
Selects the algorithm for dividing the graph axis into labelled ticks.
The currently included algorithms are:
L<Chart::Clicker::Data::DivisionType::Exact/Exact>,
L<Chart::Clicker::Data::DivisionType::LinearRounded/LinearRounded>.
You may write your own by providing a Moose Role which includes Role
L<Chart::Clicker::Data::DivisionType> and prefixing the module name
with + when setting tick_division_type.
Chart::Clicker::Axis->new(tick_division_type => '+MyApp::TickDivision');
This value should only be set once per axis.
=head2 baseline
The 'baseline' value of this axis. This is used by some renderers to change
the way a value is marked. The Bar render, for instance, considers values
below the base to be 'negative'.
=head2 brush
The brush for this axis. Expects a L<Graphics::Primitve::Brush>.
=head2 color
The color of the axis' border. Expects a L<Graphics::Color::RGB> object.
Defaults to black.
=head2 format
The format to use for the axis values.
If the format is a string then format is applied to each value 'tick' via
sprintf. See sprintf perldoc for details! This is useful for situations
where the values end up with repeating decimals.
If the format is a coderef then that coderef will be executed and the value
passed to it as an argument.
my $nf = Number::Format->new;
$default->domain_axis->format(sub { return $nf->format_number(shift); });
=head2 fudge_amount
The amount to 'fudge' the span of this axis. You should supply a
percentage (in decimal form) and the axis will grow at both ends by the
supplied amount. This is useful when you want a bit of padding above and
below the dataset.
As an example, a fugdge_amount of .10 on an axis with a span of 10 to 50
would add 5 to the top and bottom of the axis.
=head2 hidden
This axis' hidden flag. If this is true then the Axis will not be drawn.
=head2 label
The label of the axis.
=head2 label_color
The color of the Axis' labels. Expects a L<Graphics::Color::RGB> object.
=head2 label_font
The font used for the axis' label. Expects a L<Graphics::Primitive::Font> object.
=head2 layout_manager
Set/Get the Layout Manager. Defaults to L<Layout::Manager::Absolute>.
=head2 orientation
The orientation of this axis. See L<Graphics::Primitive::Oriented>.
=head2 position
The position of the axis on the chart.
=head2 range
The Range for this axis. Expects a L<Chart::Clicker::Data::Range> object.
You may use this to explicitly set an upper and lower bound for the chart:
$axis->range->max(1000);
$axis->range->min(1);
=head2 show_ticks
If this is value is false then 'ticks' and their labels will not drawn for
this axis.
=head2 staggered
If true, causes horizontally labeled axes to 'stagger' the labels so that half
are at the top of the box and the other half are at the bottom. This makes
long, overlapping labels less likely to overlap. It only does something
useful with B<horizontal> labels.
=head2 skip_range
Allows you to specify a range of values that will be skipped completely on
this axis. This is often used to trim a large, unremarkable section of data.
If, for example, 50% of your values fall below 10 and 50% fall above 100 it
is useless to bother charting the 10 to 100 range. Skipping it with this
attribute will make for a much more useful chart, albeit somewhat visually
skewed.
$axis->skip_range(Chart::Clicker::Data::Range->new(lower => 10, upper => 100));
Note that B<any> data points, including ticks, that fall inside the range
specified will be completely ignored.
=head2 tick_font
The font used for the axis' ticks. Expects a L<Graphics::Primitive::Font> object.
=head2 tick_label_color
The color of the tick labels. Expects a L<Graphics::Color::RGB> object.
=head2 tick_labels
The arrayref of labels to show for ticks on this Axis. This arrayref is
consulted for every tick, in order. So placing a string at the zeroeth index
will result in it being displayed on the zeroeth tick, etc, etc.
=head2 tick_values
The arrayref of values show as ticks on this Axis.
=head2 ticks
The number of 'ticks' to show. Setting this will divide the range on this
axis by the specified value to establish tick values. This will have no
effect if you specify tick_values.
=head1 METHODS
=head2 add_to_tick_values
Add a value to the list of tick values.
=head2 clear_tick_values
Clear all tick values.
=head2 tick_value_count
Get a count of tick values.
=head2 mark
Given a span and a value, returns it's pixel position on this Axis.
=head2 format_value
Given a value, returns it formatted using this Axis' formatter.
=head2 divvy
Retrieves the divisions or ticks for the axis.
=head1 AUTHOR
Cory G Watson <gphat@cpan.org>
=head1 COPYRIGHT AND LICENSE
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.
=cut
|