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 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
|
#==========================================================================
# Copyright (c) 1995-2000 Martien Verbruggen
#--------------------------------------------------------------------------
#
# Name:
# GD::Graph.pm
#
# Description:
# Module to create graphs from a data set drawing on a GD::Image
# object
#
# Package of a number of graph types:
# GD::Graph::bars
# GD::Graph::lines
# GD::Graph::points
# GD::Graph::linespoints
# GD::Graph::area
# GD::Graph::pie
# GD::Graph::mixed
#
# $Id: Graph.pm,v 1.34 2000/10/07 05:52:41 mgjv Exp $
#
#==========================================================================
#
# GD::Graph
#
# Parent class containing data all graphs have in common.
#
package GD::Graph;
$GD::Graph::prog_version = '$Revision: 1.34 $' =~ /\s([\d.]+)/;
$GD::Graph::VERSION = '1.33';
use strict;
use GD;
use GD::Text::Align;
use GD::Graph::Data;
use GD::Graph::Error;
use Carp;
@GD::Graph::ISA = qw(GD::Graph::Error);
# Some tools and utils
use GD::Graph::colour qw(:colours);
my %GDsize = (
'x' => 400,
'y' => 300
);
my %Defaults = (
# Set the top, bottom, left and right margin for the chart. These
# margins will be left empty.
t_margin => 0,
b_margin => 0,
l_margin => 0,
r_margin => 0,
# Set the factor with which to resize the logo in the chart (need to
# automatically compute something nice for this, really), set the
# default logo file name, and set the logo position (UR, BR, UL, BL)
logo => undef,
logo_resize => 1.0,
logo_position => 'LR',
# Do we want a transparent background?
transparent => 1,
# Do we want interlacing?
interlaced => 1,
# Set the background colour, the default foreground colour (used
# for axes etc), the textcolour, the colour for labels, the colour
# for numbers on the axes, the colour for accents (extra lines, tick
# marks, etc..)
bgclr => 'white', # background colour
fgclr => 'dblue', # Axes and grid
boxclr => undef, # Fill colour for box axes, default: not used
accentclr => 'gray', # bar, area and pie outlines.
labelclr => 'dblue', # labels on axes
axislabelclr => 'dblue', # values on axes
legendclr => 'dblue', # Text for the legend
textclr => 'dblue', # All text, apart from the following 2
valuesclr => 'dblue', # values printed above the points
# data set colours
dclrs => [ qw(lred lgreen lblue lyellow lpurple cyan lorange)],
# number of pixels to use as text spacing
text_space => 8,
# These have undefined values, but are here so that the set method
# knows about them:
title => undef,
);
sub _has_default {
my $self = shift;
my $attr = shift || return;
exists $Defaults{$attr}
}
#
# PUBLIC methods, documented in pod.
#
sub new # ( width, height ) optional;
{
my $type = shift;
my $self = {};
bless $self, $type;
if (@_)
{
# If there are any parameters, they should be the size
return $self->set_error(
"Usage: GD::Graph::<type>::new(width, height)") unless @_ >= 2;
$self->{width} = shift;
$self->{height} = shift;
}
else
{
# There were obviously no parameters, so use defaults
$self->{width} = $GDsize{'x'};
$self->{height} = $GDsize{'y'};
}
# Initialise all relevant parameters to defaults
# These are defined in the subclasses. See there.
$self->initialise() or return;
return $self;
}
sub get
{
my $self = shift;
my @wanted = map $self->{$_}, @_;
wantarray ? @wanted : $wanted[0];
}
sub set
{
my $self = shift;
my %args = @_;
my $w = 0;
foreach (keys %args)
{
# Enforce read-only attributes.
/^width$/ || /^height$/ and do
{
$self->_set_warning("Read-only attribute '$_' not set");
$w++;
next;
};
$self->{$_} = $args{$_}, next if $self->_has_default($_);
$w++;
$self->_set_warning("No attribute '$_'");
}
return $w ? undef : "No problems";
}
# Generic routine to instantiate GD::Text::Align objects for text
# attributes
sub _set_font
{
my $self = shift;
my $name = shift;
if (! exists $self->{$name})
{
$self->{$name} = GD::Text::Align->new($self->{graph},
valign => 'top',
halign => 'center',
) or return $self->_set_error("Couldn't set font");
}
$self->{$name}->set_font(@_);
}
sub set_title_font # (fontname, size)
{
my $self = shift;
$self->_set_font('gdta_title', @_);
}
sub set_text_clr # (colour name)
{
my $self = shift;
my $clr = shift;
$self->set(
textclr => $clr,
labelclr => $clr,
axislabelclr => $clr,
valuesclr => $clr,
);
}
sub plot
{
# ABSTRACT
my $self = shift;
$self->die_abstract("sub plot missing,");
}
# Set defaults that apply to all graph/chart types.
# This is called by the default initialise methods
# from the objects further down the tree.
sub initialise
{
my $self = shift;
foreach (keys %Defaults)
{
$self->set($_ => $Defaults{$_});
}
$self->open_graph() or return;
$self->set_title_font(GD::Font->Large) or return;
}
# Check the integrity of the submitted data
#
# Checks are done to assure that every input array
# has the same number of data points, it sets the variables
# that store the number of sets and the number of points
# per set, and kills the process if there are no datapoints
# in the sets, or if there are no data sets.
sub check_data # \@data
{
my $self = shift;
my $data = shift;
$self->{_data} = GD::Graph::Data->new($data)
or return $self->_set_error(GD::Graph::Data->error);
$self->{_data}->make_strict;
$self->{_data}->num_sets > 0 && $self->{_data}->num_points > 0
or return $self->_set_error('No data sets or points');
if ($self->{show_values})
{
# If this isn't a GD::Graph::Data compatible structure, then
# we'll just use the data structure.
#
# XXX We should probably check a few more things here, e.g.
# similarity between _data and show_values.
#
my $ref = ref($self->{show_values});
if (! $ref || ($ref ne 'GD::Graph::Data' && $ref ne 'ARRAY'))
{
$self->{show_values} = $self->{_data}
}
elsif ($ref eq 'ARRAY')
{
$self->{show_values} =
GD::Graph::Data->new($self->{show_values})
or return $self->_set_error(GD::Graph::Data->error);
}
}
return $self;
}
# Open the graph output canvas by creating a new GD object.
sub open_graph
{
my $self = shift;
return $self->{graph} if exists $self->{graph};
$self->{graph} = GD::Image->new($self->{width}, $self->{height});
}
# Initialise the graph output canvas, setting colours (and getting back
# index numbers for them) setting the graph to transparent, and
# interlaced, putting a logo (if defined) on there.
sub init_graph
{
my $self = shift;
$self->{bgci} = $self->set_clr(_rgb($self->{bgclr}));
$self->{fgci} = $self->set_clr(_rgb($self->{fgclr}));
$self->{tci} = $self->set_clr(_rgb($self->{textclr}));
$self->{lci} = $self->set_clr(_rgb($self->{labelclr}));
$self->{alci} = $self->set_clr(_rgb($self->{axislabelclr}));
$self->{acci} = $self->set_clr(_rgb($self->{accentclr}));
$self->{valuesci} = $self->set_clr(_rgb($self->{valuesclr}));
$self->{legendci} = $self->set_clr(_rgb($self->{legendclr}));
$self->{boxci} = $self->set_clr(_rgb($self->{boxclr}))
if $self->{boxclr};
$self->{graph}->transparent($self->{bgci}) if $self->{transparent};
$self->{graph}->interlaced($self->{interlaced});
# XXX yuck. This doesn't belong here.. or does it?
$self->put_logo();
return $self;
}
sub _read_logo_file
{
my $self = shift;
my $gdimport = 'newFrom' . ucfirst($self->export_format);
my $glogo;
local (*LOGO);
open(LOGO, $self->{logo}) or return;
binmode(LOGO);
unless ( $glogo = GD::Image->$gdimport(\*LOGO) )
{
carp "Problems reading $self->{logo}";
return;
}
return $glogo;
}
# read in the logo, and paste it on the graph canvas
sub put_logo
{
my $self = shift;
return unless defined $self->{logo};
my $glogo = $self->_read_logo_file() or return;
my ($x, $y);
my $r = $self->{logo_resize};
my $r_margin = (defined $self->{r_margin_abs}) ?
$self->{r_margin_abs} : $self->{r_margin};
my $b_margin = (defined $self->{b_margin_abs}) ?
$self->{b_margin_abs} : $self->{b_margin};
my ($w, $h) = $glogo->getBounds;
LOGO: for ($self->{logo_position}) {
/UL/i and do {
$x = $self->{l_margin};
$y = $self->{t_margin};
last LOGO;
};
/UR/i and do {
$x = $self->{width} - $r_margin - $w * $r;
$y = $self->{t_margin};
last LOGO;
};
/LL/i and do {
$x = $self->{l_margin};
$y = $self->{height} - $b_margin - $h * $r;
last LOGO;
};
# default "LR"
$x = $self->{width} - $r_margin - $r * $w;
$y = $self->{height} - $b_margin - $r * $h;
last LOGO;
}
$self->{graph}->copyResized($glogo,
$x, $y, 0, 0, $r * $w, $r * $h, $w, $h);
}
# Set a colour to work with on the canvas, by rgb value.
# Return the colour index in the palette
sub set_clr # GD::Image, r, g, b
{
my $self = shift;
return unless @_;
my $i;
# Check if this colour already exists on the canvas
if (($i = $self->{graph}->colorExact(@_)) < 0)
{
# if not, allocate a new one, and return its index
$i = $self->{graph}->colorAllocate(@_);
# XXX if this fails, we should use colorClosest.
# All of this could potentially be done by using colorResolve
# The problem is that colorResolve doesn't return an error
# condition (-1) if it can't allocate a color. Instead it always
# returns 0.
}
return $i;
}
# Set a colour, disregarding wether or not it already exists. This may
# be necessary where one wants the same colour to have a different
# index, as in pie slices of the same color as the edge.
# Note that this could be cleaned up after needed, but we won't do that.
sub set_clr_uniq # GD::Image, r, g, b
{
my $self = shift;
return unless @_;
$self->{graph}->colorAllocate(@_);
}
# Return an array of rgb values for a colour number
sub pick_data_clr # number
{
my $self = shift;
_rgb($self->{dclrs}[$_[0] % @{$self->{dclrs}} - 1]);
}
# contrib "Bremford, Mike" <mike.bremford@gs.com>
sub pick_border_clr # number
{
my $self = shift;
ref $self->{borderclrs} ?
_rgb($self->{borderclrs}[$_[0] % @{$self->{borderclrs}} - 1]) :
_rgb($self->{accentclr});
}
sub gd
{
my $self = shift;
return $self->{graph};
}
sub export_format
{
my $proto = shift;
my @f = grep { GD::Image->can($_) } qw(gif png jpeg xbm xpm gd gd2);
wantarray ? @f : $f[0];
}
# The following method is undocumented, and will not be supported as
# part of the interface. There isn't really much reason to do so.
sub import_format
{
my $proto = shift;
# For now, exclude xpm, as it's buggy
my @f = grep { GD::Image->can("newFrom\u$_") } qw(gif png jpeg xbm gd gd2);
wantarray ? @f : $f[0];
}
sub can_do_ttf
{
my $proto = shift;
return GD::Text->can_do_ttf;
}
# DEBUGGING
# data_dump obsolete now, use Data::Dumper
sub die_abstract
{
my $self = shift;
my $msg = shift;
# ABSTRACT
confess
"Subclass (" .
ref($self) .
") not implemented correctly: " .
(defined($msg) ? $msg : "unknown error");
}
"Just another true value";
__END__
=head1 NAME
GD::Graph - Graph Plotting Module for Perl 5
=head1 SYNOPSIS
use GD::Graph::moduleName;
=head1 DESCRIPTION
B<GD::Graph> is a I<perl5> module to create charts using the GD module.
The following classes for graphs with axes are defined:
=over 4
=item C<GD::Graph::lines>
Create a line chart.
=item C<GD::Graph::bars>
Create a bar chart.
=item C<GD::Graph::points>
Create an chart, displaying the data as points.
=item C<GD::Graph::linespoints>
Combination of lines and points.
=item C<GD::Graph::area>
Create a graph, representing the data as areas under a line.
=item C<GD::Graph::mixed>
Create a mixed type graph, any combination of the above. At the moment
this is fairly limited. Some of the options that can be used with some
of the individual graph types won't work very well. Multiple bar
graphs in a mixed graph won't display very nicely.
=back
Additional types:
=over 4
=item C<GD::Graph::pie>
Create a pie chart.
=back
=head1 EXAMPLES
See the samples directory in the distribution, and read the Makefile
there.
=head1 USAGE
Fill an array of arrays with the x values and the values of the data
sets. Make sure that every array is the same size, otherwise
I<GD::Graph> will complain and refuse to compile the graph.
@data = (
["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"],
[ 1, 2, 5, 6, 3, 1.5, 1, 3, 4],
[ sort { $a <=> $b } (1, 2, 5, 6, 3, 1.5, 1, 3, 4) ]
);
If you don't have a value for a point in a certain dataset, you can
use B<undef>, and the point will be skipped.
Create a new I<GD::Graph> object by calling the I<new> method on the
graph type you want to create (I<chart> is I<bars>, I<lines>, I<points>,
I<linespoints>, I<mixed> or I<pie>).
$graph = GD::Graph::chart->new(400, 300);
Set the graph options.
$graph->set(
x_label => 'X Label',
y_label => 'Y label',
title => 'Some simple graph',
y_max_value => 8,
y_tick_number => 8,
y_label_skip => 2
);
and plot the graph.
my $gd = $my_graph->plot(\@data);
Then do whatever your current version of GD allows you to do to save the
file. For versions of GD older than 1.19, you'd do something like:
open(IMG, '>file.gif') or die $!;
binmode IMG;
print IMG $gd->gif;
close IMG;
and for newer versions (1.20 and up) you'd write
open(IMG, '>file.png') or die $!;
binmode IMG;
print IMG $gd->png;
or
open(IMG, '>file.gd2') or die $!;
binmode IMG;
print IMG $gd->gd2;
Then there's also of course the possibility of using a shorter
version (for each of the export functions that GD supports):
print IMG $my_graph->plot(\@data)->gif;
print IMG $my_graph->plot(\@data)->png;
print IMG $my_graph->plot(\@data)->gd;
print IMG $my_graph->plot(\@data)->gd2;
If you want to write something that doesn't require your code to 'know'
whether to use gif or png, you could do something like:
if ($gd->can('png')) { # blabla }
or you can use the convenience method C<export_format>:
my $format = $my_graph->export_format;
open(IMG, ">file.$format") or die $!;
binmode IMG;
print IMG $my_graph->plot(\@data)->$format();
close IMG;
or for CGI scripts:
use CGI qw(:standard);
#...
my $format = $my_graph->export_format;
print header("image/$format");
binmode STDOUT;
print $my_graph->plot(\@data)->$format();
(the parentheses after $format are necessary, to help the compiler
decide that you mean a method name there)
=head1 METHODS
=head2 Methods for all graphs
=over 4
=item GD::Graph::chart-E<gt>new([width,height])
Create a new object $graph with optional width and heigth.
Default width = 400, default height = 300. I<chart> is either
I<bars>, I<lines>, I<points>, I<linespoints>, I<area>, I<mixed> or
I<pie>.
=item $graph-E<gt>set_text_clr(I<colour name>)
Set the colour of the text. This will set the colour of the titles,
labels, and axis labels to I<colour name>. Also see the options
I<textclr>, I<labelclr> and I<axislabelclr>.
=item $graph-E<gt>set_title_font(font specification)
Set the font that will be used for the title of the chart.
See L<"FONTS">.
=item $graph-E<gt>plot(I<\@data>)
Plot the chart, and return the GD::Image object.
=item $graph-E<gt>set(attrib1 =E<gt> value1, attrib2 =E<gt> value2 ...)
Set chart options. See OPTIONS section.
=item $graph-E<gt>get(attrib1, attrib2)
Returns a list of the values of the attributes. In scalar context
returns the value of the first attribute only.
=item $graph-E<gt>gd()
Get the GD::Image object that is going to be used to draw on. You can do
this either before or after calling the plot method, to do your own
drawing.
Note that if you draw on the GD::Image object before calling the plot
method that you are responsible for making sure that the background
colour is correct and for setting transparency.
=item $graph-E<gt>export_format()
Query the export format of the GD library in use. In scalar context, it
returns 'gif', 'png' or undefined, which is sufficient for most people's
use. In a list context, it returns a list of all the formats that are
supported by the current version of GD. It can be called as a class or
object method
=item $graph-E<gt>can_do_ttf()
Returns true if the current GD library supports TrueType fonts, False
otherwise. Can also be called as a class method or static method.
=back
=head2 Methods for Pie charts
=over 4
=item $graph-E<gt>set_label_font(font specification)
=item $graph-E<gt>set_value_font(font specification)
Set the font that will be used for the label of the pie or the
values on the pie.
See L<"FONTS">.
=back
=head2 Methods for charts with axes.
=over 4
=item $graph-E<gt>set_x_label_font(font specification)
=item $graph-E<gt>set_y_label_font(font specification)
=item $graph-E<gt>set_x_axis_font(font specification)
=item $graph-E<gt>set_y_axis_font(font specification)
=item $graph-E<gt>set_values_font(font specification)
Set the font for the x and y axis label, the x and y axis
value labels, and for the values printed above the data points.
See L<"FONTS">.
=item $graph-E<gt>get_hotspot($dataset, $point)
B<Experimental>:
Return a coordinate specification for a point in a dataset. Returns a
list. If the point is not specified, returns a list of array references
for all points in the dataset. If the dataset is also not specified,
returns a list of array references for each data set.
See L<"HOTSPOTS">.
=back
=head1 OPTIONS
=head2 Options for all graphs
=over 4
=item width, height
The width and height of the canvas in pixels
Default: 400 x 300.
B<NB> At the moment, these are read-only options. If you want to set
the size of a graph, you will have to do that with the I<new> method.
=item t_margin, b_margin, l_margin, r_margin
Top, bottom, left and right margin of the canvas. These margins will be
left blank.
Default: 0 for all.
=item logo
Name of a logo file. Generally, this should be the same format as your
version of GD exports images in. At the moment there is no support for
reading gd format files or xpm files.
Default: no logo.
=item logo_resize, logo_position
Factor to resize the logo by, and the position on the canvas of the
logo. Possible values for logo_position are 'LL', 'LR', 'UL', and
'UR'. (lower and upper left and right).
Default: 'LR'.
=item transparent
If set to a true value, the produced image will have the background
colour marked as transparent (see also option I<bgclr>). Default: 1.
=item interlaced
If set to a true value, the produced image will be interlaced.
Default: 1.
=back
=head2 Colours
=over 4
=item bgclr, fgclr, boxclr, accentclr, shadowclr
Drawing colours used for the chart: background, foreground (axes and
grid), axis box fill colour, accents (bar, area and pie outlines), and
shadow (currently only for bars).
All colours should have a valid value as described in L<"COLOURS">,
except boxclr, which can be undefined, in which case the box will not be
filled.
=item shadow_depth
Depth of a shadow, positive for right/down shadow, negative for left/up
shadow, 0 for no shadow (default).
Also see the C<shadowclr> and C<bar_spacing> options.
=item labelclr, axislabelclr, legendclr, valuesclr, textclr
Text Colours used for the chart: label (labels for the axes or pie),
axis label (misnomer: values printed along the axes, or on a pie slice),
legend text, shown values text, and all other text.
All colours should have a valid value as described in L<"COLOURS">.
=item dclrs (short for datacolours)
This controls the colours for the bars, lines, markers, or pie slices.
This should be a reference to an array of colour names as defined in
L<GD::Graph::colour> (S<C<perldoc GD::Graph::colour>> for the names available).
$graph->set( dclrs => [ qw(green pink blue cyan) ] );
The first (fifth, ninth) data set will be green, the next pink, etc.
A colour can be C<undef>, in which case the data set will not be drawn.
This can be useful for cumulative bar sets where you want certain data
series (often the first one) not to show up, which can be used to
emulate error bars (see examples 1-7 and 6-3 in the distribution).
Default: [ qw(lred lgreen lblue lyellow lpurple cyan lorange) ]
=item borderclrs
This controls the colours of the borders of the bars data sets. Like
dclrs, it is a reference to an array of colour names as defined in
L<GD::Graph::colour>.
Setting a border colour to C<undef> means the border will not be drawn.
=item cycle_clrs
If set to a true value, bars will not have a colour from C<dclrs> per
dataset, but per point. The colour sequence will be identical for each
dataset. Note that this may have a weird effect if you are drawing more
than one data set. If this is set to a value larger than 1 the border
colour of the bars will cycle through the colours in C<borderclrs>.
=item accent_treshold
Not really a colour, but it does control a visual aspect: Accents on
bars are only drawn when the width of a bar is larger than this number
of pixels. Accents inside areas are only drawn when the horizontal
distance between points is larger than this number.
Default 4
=back
=head2 Options for graphs with axes.
options for I<bars>, I<lines>, I<points>, I<linespoints>, I<mixed> and
I<area> charts.
=over 4
=item long_ticks, tick_length
If I<long_ticks> is a true value, ticks will be drawn the same length
as the axes. Otherwise ticks will be drawn with length
I<tick_length>. if I<tick_length> is negative, the ticks will be drawn
outside the axes. Default: long_ticks = 0, tick_length = 4.
These attributes can also be set for x and y axes separately with
x_long_ticks, y_long_ticks, x_tick_length and y_tick_length.
=item x_ticks
If I<x_ticks> is a true value, ticks will be drawm for the x axis.
These ticks are subject to the values of I<long_ticks> and
I<tick_length>. Default: 1.
=item y_tick_number
Number of ticks to print for the Y axis. Use this, together with
I<y_label_skip> to control the look of ticks on the y axis.
Default: 5.
=item y_number_format
This can be either a string, or a reference to a subroutine. If it is
a string, it will be taken to be the first argument to an sprintf,
with the value as the second argument:
$label = sprintf( $s->{y_number_format, $value );
If it is a code reference, it will be executed with the value as the
argument:
$label = &{$s->{y_number_format}}($value);
This can be useful, for example, if you want to reformat your values
in currency, with the - sign in the right spot. Something like:
sub y_format
{
my $value = shift;
my $ret;
if ($value >= 0)
{
$ret = sprintf("\$%d", $value * $refit);
}
else
{
$ret = sprintf("-\$%d", abs($value) * $refit);
}
return $ret;
}
$my_graph->set( 'y_number_format' => \&y_format );
(Yes, I know this can be much shorter and more concise)
Default: undef.
=item x_label_skip, y_label_skip
Print every I<x_label_skip>th number under the tick on the x axis, and
every I<y_label_skip>th number next to the tick on the y axis.
Default: 1 for both.
=item x_tick_offset
When x_label_skip is used, this will skip the first x_tick_offset values
in the labels before starting to print. Let me give an example. If you
have a series of X labels like
qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec)
and you set x_label_skip to 3, you will see ticks on the X axis for Jan,
Apr, Jul, Oct and Dec. This is not always what is wanted. If you set
x_tick_offset to 1, you get Feb, May, Aug, Nov and Dec, and if you set
it to 2, you get Mar, Jun Sep and Dec, and this last one definitely
looks better. A combination of 6 and 5 also works nice for months.
Note that the value for x_tick_offset is periodical. This means that it
will have the same effect for each nteger n in x_tick_offset + n *
x_label_skip.
=item x_all_ticks
Force a print of all the x ticks, even if x_label_skip is set to a value
Default: 0.
=item x_label_position
Controls the position of the X axis label (title). The value for this
should be between 0 and 1, where 0 means aligned to the left, 1 means
aligned to the right, and 1/2 means centered.
Default: 3/4
=item y_label_position
Controls the position of both Y axis labels (titles). The value for
this should be between 0 and 1, where 0 means aligned to the bottom, 1
means aligned to the top, and 1/2 means centered.
Default: 1/2
=item x_labels_vertical
If set to a true value, the X axis labels will be printed vertically.
This can be handy in case these labels get very long.
Default: 0.
=item x_plot_values, y_plot_values
If set to a true value, the values of the ticks on the x or y axes
will be plotted next to the tick. Also see I<x_label_skip,
y_label_skip>. Default: 1 for both.
=item box_axis
Draw the axes as a box, if true.
Default: 1.
=item two_axes
Use two separate axes for the first and second data set. The first
data set will be set against the left axis, the second against the
right axis. If this is set to a true value, trying to use anything
else than 2 datasets will generate an error. Default: 0.
=item zero_axis
If set to a true value, the axis for y values of 0 will always be
drawn. This might be useful in case your graph contains negative
values, but you want it to be clear where the zero value is. (see also
I<zero_axis_only> and I<box_axes>).
Default: 0.
=item zero_axis_only
If set to a true value, the zero axis will be drawn (see
I<zero_axis>), and no axis at the bottom of the graph will be drawn.
The labels for X values will be placed on the zero exis.
Default: 0.
=item y_max_value, y_min_value
Maximum and minimum value displayed on the y axis. If two_axes is a
true value, then y1_min_value, y1_max_value (for the left axis),
and y2_min_value, y2_max_value (for the right axis) take precedence
over these.
The range (y_min_value..y_max_value) has to include all the values of
the data points, or I<GD::Graph> will die with a message.
For bar and area graphs, the range (y_min_value..y_max_value) has to
include 0. If it doesn't, the values will be adapted before attempting
to draw the graph.
Default: Computed from data sets.
=item axis_space
This space will be left blank between the axes and the tick value text.
Default: 4.
=item text_space
This space will be left open between text elements and the graph (text
elements are title and axis labels.
Default: 8.
=item cumulate
If this attribute is set to a true value, the data sets will be
cumulated. This means that they will be stacked on top of each other. A
side effect of this is that C<overwrite> will be set to a true value.
Notes: This only works for bar and area charts at the moment.
If you have negative values in your data sets, setting this option might
produce odd results. Of course, the graph itself would be quite
meaningless.
=item overwrite
If set to 0, bars of different data sets will be drawn next to each
other. If set to 1, they will be drawn in front of each other.
Default: 0.
Note: Setting overwrite to 2 to produce cumulative sets is deprecated,
and may disappear in future versions of GD::Graph.
Instead see the C<cumulate> attribute.
=item correct_width
If this is set to a true value and C<x_tick_number> is false, then the
width of the graph will be recalculated to make sure that each data
point is exactly an integer number of pixels wide. You probably never
want to fiddle with this.
When this value is true, you will need to make sure that the number of
data points is smaller than the number of pixels in the plotting area of
the chart. If you get errors saying that your horizontal size if too
small, you may need to manually switch this off, or consider using
something else than a bar type for your chart.
Default: 1 for bar, calculated at runtime for mixed charts, 0 for others.
=back
=head2 Plotting data point values with the data point
Sometimes you will want to plot the value of a data point or bar above
the data point for clarity. GD::Graph allows you to control this in a
generic manner, or even down to the single point.
=over 4
=item show_values
Set this to 1 to display the value of each data point above the point or
bar itself. No effort is being made to ensure that there is enough space
for the text.
Set this to a GD::Graph::Data object, or an array reference of the same
shape, with the same dimensions as your data object that you pass in to
the plot method. The reason for this option is that it allows you to
make a copy of your data set, and selectively set points to C<undef> to
disable plotting of them.
my $data = GD::Graph::Data->new(
[ [ 'A', 'B', 'C' ], [ 1, 2, 3 ], [ 11, 12, 13 ] ]);
my $values = $data->copy;
$values->set_y(1, 1, undef);
$values->set_y(2, 0, undef);
$graph->set(show_values => $values);
$graph->plot($data);
Default: 0.
=item values_vertical
If set to a true value, the values will be printed vertically, instead
of horizontally. This can be handy if the values are long numbers.
Default: 0.
=item values_space
Space to insert between the data point and the value to print.
Default: 4.
=item values_format
How to format the values for display. See y_number_format for more
information.
Default: undef.
=back
=head2 Options for graphs with a numerical X axis
First of all: GD::Graph does B<not> support numerical x axis the way it
should. Data for X axes should be equally spaced. That understood:
There is some support to make the printing of graphs with numerical X
axis values a bit better, thanks to Scott Prahl. If the option
C<x_tick_number> is set to a defined value, GD::Graph will attempt to
treat the X data as numerical.
Extra options are:
=over 4
=item x_tick_number
If set to I<'auto'>, GD::Graph will attempt to format the X axis in a
nice way, based on the actual X values. If set to a number, that's the
number of ticks you will get. If set to undef, GD::Graph will treat X
data as labels.
Default: undef.
=item x_min_value, x_max_value
The minimum and maximum value to use for the X axis.
Default: computed.
=item x_number_format
See y_number_format
=item x_label_skip
See y_label_skip
=back
=head2 Options for graphs with bars
=over 4
=item bar_width
The width of a bar in pixels. Also see C<bar_spacing>. Use C<bar_width>
If you want to have fixed-width bars, no matter how wide the chart gets.
Default: as wide as possible, within the constraints of the chart size
and C<bar_spacing> setting.
=item bar_spacing
Number of pixels to leave open between bars. This works well in most
cases, but on some platforms, a value of 1 will be rounded off to 0.
Use C<bar_spacing> to get a fixed amount of space between bars, with
variable bar widths, depending on the width of the chart. Note that if
C<bar_width> is also set, this setting will be ignored, and
automatically calculated. Default: 0
=back
=head2 Options for graphs with lines
=over 4
=item line_types
Which line types to use for I<lines> and I<linespoints> graphs. This
should be a reference to an array of numbers:
$graph->set( line_types => [3, 2, 4] );
Available line types are 1: solid, 2: dashed, 3: dotted, 4:
dot-dashed.
Default: [1] (always use solid)
=item line_type_scale
Controls the length of the dashes in the line types. default: 6.
=item line_width
The width of the line used in I<lines> and I<linespoints> graphs, in pixels.
Default: 1.
=item skip_undef
For all other axes graph types, the default behaviour is (by their
nature) to not draw a point when the Y value is C<undef>. For line
charts the point gets skipped as well, but the line is drawn between the
points n-1 to n+1 directly. If C<skip_undef> has a true value, there
will be a gap in the chart where a Y value is undefined.
Note that a line will not be drawn unless there are I<at least two>
consecutive data points exist that have a defined value. The following
data set will only plot a very short line towards the end if
C<skip_undef> is set:
@data = (
[ qw( Jan Feb Mar Apr May Jun Jul Aug Sep Oct ) ],
[ 1, undef, 2, undef, 3, undef, 4, undef, 5, 6 ]
);
This option is useful when you have a consecutive gap in your data, or
with linespoints charts. If you have data where you have intermittent
gaps, be careful when you use this.
Default value: 0
=back
=head2 Options for graphs with points
=over 4
=item markers
This controls the order of markers in I<points> and I<linespoints>
graphs. This should be a reference to an array of numbers:
$graph->set( markers => [3, 5, 6] );
Available markers are: 1: filled square, 2: open square, 3: horizontal
cross, 4: diagonal cross, 5: filled diamond, 6: open diamond, 7:
filled circle, 8: open circle.
Default: [1,2,3,4,5,6,7,8]
=item marker_size
The size of the markers used in I<points> and I<linespoints> graphs,
in pixels. Default: 4.
=back
=head2 Options for mixed graphs
=over 4
=item types
A reference to an array with graph types, in the same order as the
data sets. Possible values are:
$graph->set( types => [qw(lines bars points area linespoints)] );
$graph->set( types => ['lines', undef, undef, 'bars'] );
values that are undefined or unknown will be set to C<default_type>.
Default: all set to C<default_type>
=item default_type
The type of graph to draw for data sets that either have no type set,
or that have an unknown type set.
Default: lines
=back
=head2 Graph legends (axestype graphs only)
At the moment legend support is minimal.
B<Methods>
=over 4
=item $graph-E<gt>set_legend(I<@legend_keys>);
Sets the keys for the legend. The elements of @legend_keys correspond
to the data sets as provided to I<plot()>.
If a key is I<undef> or an empty string, the legend entry will be skipped.
=item $graph-E<gt>set_legend_font(I<font name>);
Sets the font for the legend text (see L<"FONTS">).
Default: GD::gdTinyFont.
=back
B<Options>
=over 4
=item legend_placement
Where to put the legend. This should be a two letter key of the form:
'B[LCR]|R[TCB]'. The first letter indicates the placement (I<B>ottom or
I<R>ight), and the second letter the alignment (I<L>eft,
I<R>ight, I<C>enter, I<T>op, or I<B>ottom).
Default: 'BC'
If the legend is placed at the bottom, some calculations will be made
to ensure that there is some 'intelligent' wrapping going on. if the
legend is placed at the right, all entries will be placed below each
other.
=item legend_spacing
The number of pixels to place around a legend item, and between a
legend 'marker' and the text.
Default: 4
=item legend_marker_width, legend_marker_height
The width and height of a legend 'marker' in pixels.
Defaults: 12, 8
=item lg_cols
If you, for some reason, need to force the legend at the bottom to
have a specific number of columns, you can use this.
Default: computed
=back
=head2 Options for pie graphs
=over 4
=item 3d
If set to a true value, the pie chart will be drawn with a 3d look.
Default: 1.
=item pie_height
The thickness of the pie when I<3d> is true.
Default: 0.1 x height.
=item start_angle
The angle at which the first data slice will be displayed, with 0 degrees
being "6 o'clock".
Default: 0.
=item suppress_angle
If a pie slice is smaller than this angle (in degrees), a label will not
be drawn on it. Default: 0.
=item label
Print this label below the pie. Default: undef.
=back
=head1 COLOURS
All references to colours in the options for this module have been
shortened to clr. The main reason for this was that I didn't want to
support two spellings for the same word ('colour' and 'color')
Wherever a colour is required, a colour name should be used from the
package L<GD::Graph::colour>. S<C<perldoc GD::Graph::colour>> should give
you the documentation for that module, containing all valid colour
names. I will probably change this to read the systems rgb.txt file if
it is available.
=head1 FONTS
Depending on your version of GD, this accepts both GD builtin fonts or
the name of a TrueType font file. In the case of a TrueType font, you
must specify the font size. See L<GD::Text> for more details and other
things, since all font handling in GD::Graph is delegated to there.
Examples:
$my_graph->set_title_font('/fonts/arial.ttf', 18);
$my_graph->set_legend_font(gdTinyFont);
$my_graph->set_legend_font(
['verdana', 'arial', gdMediumBoldFont], 12)
(The above discussion is based on GD::Text 0.65. Older versions have
more restrictive behaviour).
=head1 HOTSPOTS
I<Note that this is an experimental feature, and its interface may, and
likely will, change in the future>
GD::Graph keeps an internal set of coordinates for each data point. This
specification is very similar to the HTML image map specification, and
in fact exists mainly for that purpose. You can get at these hotspots
with the C<get_hotspot> method. This method accepts two optional
arguments, the number of the dataset you're interested in, and the
number of the point in that dataset you're interested in. When called
with two arguments, the method returns a list of one of the following
forms:
'rect', x1, y1, x2, y2
'poly', x1, y1, x2, y2, x3, y3, ....
'line', xs, ys, xe, ye, width
The parameters for C<rect> are the coordinates of the corners of the
rectangle, the parameters for C<poly> are the coordinates of the
vertices of the polygon, and the parameters for the C<line> are the
coordinates for the start and end point, and the line width. It should
be possible to almost directly translate these lists into HTML image map
specifications.
If the second argument to C<get_hotspot> is omitted, a list of
references to arrays will be returned. This list represents all the
points in the dataset specified, and each array referred to is of the
form outlined above.
['rect', x1, y1, x2, y2 ], ['rect', x1, y1, x2, y2], ...
if both arguments to C<get_hotspot> are omitted, the list that comes
back will contain references to arrays for each data set, which in
turn contain references to arrays for each point.
[
['rect', x1, y1, x2, y2 ], ['rect', x1, y1, x2, y2], ...
],
[
['line', xs, ys, xe, ye, w], ['line', xs, ys, xe, ye, w], ...
],...
=head1 NOTES
As with all Modules for Perl: Please stick to using the interface. If
you try to fiddle too much with knowledge of the internals of this
module, you could get burned. I may change them at any time.
=head1 BUGS
GD::Graph objects cannot be reused. To create a new plot, you have to
create a new GD::Graph object.
=head1 AUTHOR
Martien Verbruggen E<lt>mgjv@tradingpost.com.auE<gt>
=head2 Copyright
GIFgraph: Copyright (c) 1995-1999 Martien Verbruggen.
Chart::PNGgraph: Copyright (c) 1999 Steve Bonds.
GD::Graph: Copyright (c) 1999 Martien Verbruggen.
All rights reserved. This package is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
=head2 Acknowledgements
Thanks to Steve Bonds for releasing Chart::PNGgraph, and keeping the
code alive when GD reached version 1.20, and I didn't have time to do
something about it.
Thanks to the following people for contributing code, or sending me
fixes:
Dave Belcher,
Steve Bonds,
Mike Bremford,
Damon Brodie,
Gary Deschaines
brian d foy,
Edwin Hildebrand,
Ari Jolma,
Tim Meadowcroft,
Honza Pazdziora,
Scott Prahl,
Vegard Vesterheim,
Jeremy Wadsack.
And some people whose real name I don't know, and whose email address
I'd rather not publicise without their consent.
=cut
=head1 SEE ALSO
L<GD::Graph::FAQ>,
L<GD::Graph::Data>,
L<GD::Graph::Error>,
L<GD::Graph::colour>
|