Adding the first part of the graphing POD and changed the drawLabel function to have a saner api

This commit is contained in:
Martin Kamerbeek 2006-05-02 14:48:42 +00:00
parent c7e5d5ee24
commit a4254f51b4
6 changed files with 916 additions and 46 deletions

View file

@ -466,14 +466,13 @@ sub drawLabel {
my $maxWidth = $anchorX;
$maxWidth = $self->getImageWidth - $anchorX if ($slice->{avgAngle} > 1.5 * pi || $slice->{avgAngle} < 0.5 * pi);
$self->SUPER::drawLabel(
text => $self->wrapLabelToWidth($text, $maxWidth),
$self->SUPER::drawLabel($self->wrapLabelToWidth($text, $maxWidth), (
alignHorizontal => $horizontalAlign,
align => $align,
alignVertical => $verticalAlign,
x => $anchorX,
y => $endPointY,
);
));
}
#-------------------------------------------------------------------

View file

@ -9,6 +9,13 @@ use POSIX;
our @ISA = qw(WebGUI::Image::Graph);
#-------------------------------------------------------------------
=head1 configurationForm
The configuration form part for this object. See WebGUI::Image::Graph for
documentation.
=cut
sub configurationForm {
my ($configForms, $f);
my $self = shift;
@ -75,6 +82,12 @@ sub configurationForm {
}
#-------------------------------------------------------------------
=head1 draw
Draws the graph.
=cut
sub draw {
my $self = shift;
@ -92,6 +105,12 @@ sub draw {
}
#-------------------------------------------------------------------
=head1 drawAxis
Draws the axis.
=cut
sub drawAxis {
my $self = shift;
@ -107,6 +126,12 @@ sub drawAxis {
}
#-------------------------------------------------------------------
=head1 drawLabels
Draws the labels.
=cut
sub drawLabels {
my $self = shift;
my $location = shift;
@ -116,14 +141,13 @@ sub drawLabels {
# Draw x-axis labels
foreach (@{$self->getLabel}) {
my $text = $self->wrapLabelToWidth($_, $self->getAnchorSpacing->{x});
$self->drawLabel(
text => $text,
$self->drawLabel($text, (
alignHorizontal => 'center',
alignVertical => 'top',
align => 'Center',
x => $anchorPoint{x},
y => $anchorPoint{y},
);
));
$anchorPoint{x} += $self->getAnchorSpacing->{x}; #$groupWidth + $self->getGroupSpacing;
$anchorPoint{y} += $self->getAnchorSpacing->{y};
@ -134,18 +158,23 @@ sub drawLabels {
$anchorPoint{y} = $self->getChartOffset->{y} + $self->getChartHeight;
# for (1 .. $self->getYRange / $self->getYGranularity) {
foreach (@{$self->getYLabels}) {
$self->drawLabel(
text => $_,
$self->drawLabel($_, (
alignHorizontal => 'right',
alignVertical => 'center',
x => $anchorPoint{x}, #$self->getChartOffset->{x} - $self->getLabelOffset,
y => $anchorPoint{y}, #$self->getChartOffset->{y} + $self->getChartHeight - $self->getPixelsPerUnit * $_*$self->getYGranularity,
);
));
$anchorPoint{y} -= $self->getPixelsPerUnit * $self->getYGranularity
}
}
#-------------------------------------------------------------------
=head drawRulers
Draws the rulers.
=cut
sub drawRulers {
my $self = shift;
@ -164,6 +193,13 @@ sub drawRulers {
}
#-------------------------------------------------------------------
=head1 formNamespace
Extends the form namespace for this object. See WebGUI::Image::Graph for
documentation.
=cut
sub formNamespace {
my $self = shift;
@ -171,6 +207,12 @@ sub formNamespace {
}
#-------------------------------------------------------------------
=head1 getAxisColor
Returns the color triplet for the axis. Defaults to '#222222'.
=cut
sub getAxisColor {
my $self = shift;
@ -178,13 +220,26 @@ sub getAxisColor {
}
#-------------------------------------------------------------------
=head1 getChartHeight
Returns the height of the chart. Defaults to 200.
=cut
sub getChartHeight {
my $self = shift;
return $self->{_properties}->{chartHeight};
return $self->{_properties}->{chartHeight} || 200;
}
#-------------------------------------------------------------------
=head1 getChartOffset
Returns the coordinates of the top-left corner of the chart. he coordinates are
contained in a hasref with keys 'x' and 'y'.
=cut
sub getChartOffset {
my $self = shift;
@ -192,13 +247,25 @@ sub getChartOffset {
}
#-------------------------------------------------------------------
=head1 getChartWidth
Returns the width of the chart. Defaults to 200.
=cut
sub getChartWidth {
my $self = shift;
return $self->{_properties}->{chartWidth};
return $self->{_properties}->{chartWidth} || 200;
}
#-------------------------------------------------------------------
=head1 getConfiguration
Returns a configuration hashref. See WebGUI::Image::Graph for documentation.
=cut
sub getConfiguration {
my $self = shift;
@ -216,6 +283,13 @@ sub getConfiguration {
}
#-------------------------------------------------------------------
=head1 getDrawMode
Returns the drawmode. Currently supported are 'stacked' and 'sideBySide'.
Defaults to 'sideBySide'.
=cut
sub getDrawMode {
my $self = shift;
@ -223,6 +297,13 @@ sub getDrawMode {
}
#-------------------------------------------------------------------
=head1 getPixelsPerUnit
Returns the number of pixels that correspond with one unit of the dataset
values.
=cut
sub getPixelsPerUnit {
my $self = shift;
@ -230,6 +311,12 @@ sub getPixelsPerUnit {
}
#-------------------------------------------------------------------
=head1 getRulerColor
Returns the color triplet of the rulers in the graph. Defaults to '#777777'.
=cut
sub getRulerColor {
my $self = shift;
@ -237,13 +324,27 @@ sub getRulerColor {
}
#-------------------------------------------------------------------
=head1 getYGranularity
Returns the granularity of the labels and rulers in the Y direction. Defaults to
10. This is value is in terms of the values in the dataset and has no direct
relation to pixels.
=cut
sub getYGranularity {
my $self = shift;
return $self->{_properties}->{yGranularity} || 50;
return $self->{_properties}->{yGranularity} || 10;
}
#-------------------------------------------------------------------
=head1 getYLabels
Returns an arrayref containing the labels for the Y axis.
=cut
sub getYLabels {
my $self = shift;
@ -256,6 +357,13 @@ sub getYLabels {
}
#-------------------------------------------------------------------
=head1 getYRange
Returns the maxmimal value of the range that contains a whole number of times
the y granularity and is bigger than the maximum value in the dataset.
=cut
sub getYRange {
my $self = shift;
@ -263,6 +371,17 @@ sub getYRange {
}
#-------------------------------------------------------------------
=head1 setAxisColor ( color )
Sets the color of the axis to the supplied value.
=head2 color
The triplet of the color you want to set the axis to. Must have the following
form: #ffffff.
=cut
sub setAxisColor {
my $self = shift;
my $color = shift;
@ -271,6 +390,16 @@ sub setAxisColor {
}
#-------------------------------------------------------------------
=head1 setChartHeight ( height )
Sets the height of the chart to the specified value.
=head2 height
The desired height in pixels.
=cut
sub setChartHeight {
my $self = shift;
my $height = shift;
@ -279,6 +408,17 @@ sub setChartHeight {
}
#-------------------------------------------------------------------
=head1 setChartOffset ( location )
Sets the location of the top-left corner of the graph within the image.
=head2 location
A hashref containing the desired location. Use the 'x' and 'y' as keys for the x
and y coordinate respectively.
=cut
sub setChartOffset {
my $self = shift;
my $point = shift;
@ -287,6 +427,16 @@ sub setChartOffset {
}
#-------------------------------------------------------------------
=head1 setChartHeight ( width )
Sets the width of the chart to the specified value.
=head2 width
The desired width in pixels.
=cut
sub setChartWidth {
my $self = shift;
my $width = shift;
@ -295,6 +445,17 @@ sub setChartWidth {
}
#-------------------------------------------------------------------
=head1 setConfiguration ( config )
Applies the settings in the given configuration hash. See WebGUI::Image::Graph
for more information.
=head2 config
A configuration hash.
=cut
sub setConfiguration {
my $self = shift;
my $config = shift;
@ -315,6 +476,18 @@ sub setConfiguration {
}
#-------------------------------------------------------------------
=head1 setDrawMode ( mode )
Set the way the datasets are drawn. Currently supported are 'stacked' and
'sideBySide' which correspond to respectivly cumulative drawing and normal
processing.
=head2 mode
The desired mode. Can be 'sideBySide' or 'stacked'.
=cut
sub setDrawMode {
my $self = shift;
my $mode = shift;
@ -327,6 +500,17 @@ sub setDrawMode {
}
#-------------------------------------------------------------------
=head1 setRulerColor ( color )
Set the color of the rulers.
=head2 color
The triplet of the desired ruler color. Must be in the following format:
'#ffffff'.
=cut
sub setRulerColor {
my $self = shift;
my $color = shift;
@ -335,6 +519,16 @@ sub setRulerColor {
}
#-------------------------------------------------------------------
=head1 setShowAxis ( boolean )
Set whether or not to draw the axis.
=head2 boolean
If set to false the axis won't be drawn.
=cut
sub setShowAxis {
my $self = shift;
my $yesNo = shift;
@ -343,6 +537,16 @@ sub setShowAxis {
}
#-------------------------------------------------------------------
=head1 setShowLabels ( boolean )
Set whether or not to draw the labels.
=head2 boolean
If set to false the labels won't be drawn.
=cut
sub setShowLabels {
my $self = shift;
my $yesNo = shift;
@ -351,6 +555,16 @@ sub setShowLabels {
}
#-------------------------------------------------------------------
=head1 setShowRulers ( boolean )
Set whether or not to draw the rulers.
=head2 boolean
If set to false the rulers won't be drawn.
=cut
sub setShowRulers {
my $self = shift;
my $yesNo = shift;
@ -359,6 +573,16 @@ sub setShowRulers {
}
#-------------------------------------------------------------------
=head1 setYGranularity ( value )
Sets the y granularity. See getYGranularity for explanation of this concept.
=head2 value
The granularity in dataset units, not pixels.
=cut
sub setYGranularity {
my $self = shift;
my $granularity = shift;
@ -367,6 +591,12 @@ sub setYGranularity {
}
#-------------------------------------------------------------------
=head1 showAxis
Returns a boolean indicating whether to draw the axis.
=cut
sub showAxis {
my $self = shift;
@ -375,6 +605,12 @@ sub showAxis {
}
#-------------------------------------------------------------------
=head1 showLabels
Returns a boolean indicating whether to draw the labels.
=cut
sub showLabels {
my $self = shift;
@ -383,6 +619,12 @@ sub showLabels {
}
#-------------------------------------------------------------------
=head1 showRulers
Returns a boolean indicating whether to draw the rulers.
=cut
sub showRulers {
my $self = shift;

View file

@ -9,6 +9,13 @@ use Data::Dumper;
our @ISA = qw(WebGUI::Image::Graph::XYGraph);
#-------------------------------------------------------------------
=head1 configurationForm
Creates the configuration form for this plugin. See WebGUI::Image::Graph for
more information.
=cut
sub configurationForm {
my $self = shift;
@ -34,6 +41,26 @@ my $f = WebGUI::HTMLForm->new($self->session);
}
#-------------------------------------------------------------------
=head1 drawBar ( bar, location, barWidth )
Draws a bar defined by bar and with width barWidth at location.
=head2 bar
A hashref defining the bar. Must contain keys 'height', 'strokeColor' and
'fillColor'.
=head2 location
A hashref containing the location of the bottom-left corner of the bar. Keys 'x'
and 'y' must specify the x- and y-coordinates respectively.
=head2 barWidth
The width of the bar in pixels.
=cut
sub drawBar {
my $self = shift;
my $bar = shift;
@ -55,6 +82,12 @@ sub drawBar {
}
#-------------------------------------------------------------------
=head1 drawGraph
Draws all the bars.
=cut
sub drawGraph {
my ($currentBar, %location);
my $self = shift;
@ -82,6 +115,26 @@ sub drawGraph {
}
#-------------------------------------------------------------------
=head1 drawSideBySide ( bars, location, barWidth )
Draws the bars in side by side mode. Meaning that per datsetindex the bars
representing a single dataset are grouped.
=head2 bars
An arrayref containing all the bar description hashrefs as described in drawBar.
=head2 location
Hashref containing the initial coordinates of the lower-left corner of the
chart. Pass coords in keys 'x' and 'y'.
=head2 barWidth
The width of each bar in pixels.
=cut
sub drawSideBySideBar {
my $self = shift;
my $bars = shift;
@ -97,6 +150,28 @@ sub drawSideBySideBar {
}
#-------------------------------------------------------------------
=head1 drawStacked ( bars, location, barWidth )
Draws the bars in side by side mode. Meaning that per datset-index the bars
representing a single dataset are stacked on top of each other.
=head2 bars
An arrayref containing all the bar description hashrefs as described in drawBar.
=head2 location
Hashref containing the initial coordinates of the lower-left corner of the
chart. Pass coords in keys 'x' and 'y'.
=head2 barWidth
The width of each bar in pixels.
=cut
sub drawStackedBar {
my $self = shift;
my $bars = shift;
@ -112,6 +187,13 @@ sub drawStackedBar {
}
#-------------------------------------------------------------------
=head1 formNamespace
Returns the form namespace of this plugin. See WegBUI::Image::Graph for
more elaborate information.
=cut
sub formNamespace {
my $self = shift;
@ -119,6 +201,13 @@ sub formNamespace {
}
#-------------------------------------------------------------------
=head1 getAnchorSpacing
Returns the distance in pixels between two anchors on the x axis that define teh
placement of bars and labels.
=cut
sub getAnchorSpacing {
my $self = shift;
@ -133,6 +222,12 @@ sub getAnchorSpacing {
}
#-------------------------------------------------------------------
=head1 getBarSpacing
Returns the width of the gap between two bars within a group in pixels.
=cut
sub getBarSpacing {
my $self = shift;
@ -140,6 +235,13 @@ sub getBarSpacing {
}
#-------------------------------------------------------------------
=head1 getConfiguration
Returns the configuration hashref for this plugin. Refer to WebGUI::IMage::Graph
for a more detailed description.
=cut
sub getConfiguration {
my $self = shift;
@ -152,6 +254,12 @@ sub getConfiguration {
}
#-------------------------------------------------------------------
=head1 getGroupSpacing
Returns the width of the gap between two groups of bars in pixels.
=cut
sub getGroupSpacing {
my $self = shift;
@ -159,6 +267,13 @@ sub getGroupSpacing {
}
#-------------------------------------------------------------------
=head1 getFirstAnchorLocation
Returns a hashref containing the location of the leftmost x-axis anchor.
Location coordinates are encoded in keys 'x' and 'y'.
=cut
sub getFirstAnchorLocation {
my $self = shift;
@ -169,6 +284,12 @@ sub getFirstAnchorLocation {
}
#-------------------------------------------------------------------
=head1 processDataset
Processes the dataset. Used by drawGraph.
=cut
sub processDataSet {
my ($barProperties);
my $self = shift;
@ -192,6 +313,16 @@ sub processDataSet {
}
#-------------------------------------------------------------------
=head1 setBarSpacing ( gap )
Sets the distance between two bars in a group in pixels.
=head2 gap
The distance in pixels.
=cut
sub setBarSpacing {
my $self = shift;
my $gap = shift;
@ -200,6 +331,17 @@ sub setBarSpacing {
}
#-------------------------------------------------------------------
=head1 setConfiguration ( config )
Applies the given configuration hash to this plugin. See WebGUI::Image::Graph
for more info.
=head2 config
The configuration hash.
=cut
sub setConfiguration {
my $self = shift;
my $config = shift;
@ -213,6 +355,16 @@ sub setConfiguration {
}
#-------------------------------------------------------------------
=head1 setGroupSpacing ( gap )
Sets the distance between two groups of bars in pixels.
=head2 gap
The distance in pixels.
=cut
sub setGroupSpacing {
my $self = shift;
my $gap = shift;

View file

@ -9,6 +9,12 @@ use Data::Dumper;
our @ISA = qw(WebGUI::Image::Graph::XYGraph);
#-------------------------------------------------------------------
=head1 drawGraph
Draws all the lines.
=cut
sub drawGraph {
my ($currentBar, %location);
my $self = shift;
@ -27,6 +33,28 @@ sub drawGraph {
}
#-------------------------------------------------------------------
=head1 drawLine ( line, location, interval )
Draws a bar defined by bar and with width barWidth at location.
=head2 line
A hashref defining the line. Must contain keys 'strokeColor' and
'dataset', the latter one being an arrayref containing all points of the line.
=head2 location
A hashref containing the location of the bottom-left corner of the line's
origin. Keys 'x' and 'y' must specify the x- and y-coordinates respectively.
=head2 interval
The distance between x-axis anchors in pixels.
=cut
sub drawLine {
my $self = shift;
my $line = shift;
@ -54,6 +82,13 @@ sub drawLine {
}
#-------------------------------------------------------------------
=head1 formNamespace
Returns the form namespace of this plugin. See WegBUI::Image::Graph for
more elaborate information.
=cut
sub formNamespace {
my $self = shift;
@ -61,6 +96,13 @@ sub formNamespace {
}
#-------------------------------------------------------------------
=head1 getAnchorSpacing
Returns the distance in pixels between two anchors on the x axis that define teh
placement of bars and labels.
=cut
sub getAnchorSpacing {
my $self = shift;
@ -75,6 +117,13 @@ sub getAnchorSpacing {
}
#-------------------------------------------------------------------
=head1 getFirstAnchorLocation
Returns a hashref containing the location of the leftmost x-axis anchor.
Location coordinates are encoded in keys 'x' and 'y'.
=cut
sub getFirstAnchorLocation {
my $self = shift;
@ -84,15 +133,17 @@ sub getFirstAnchorLocation {
}
}
# palette nog laten werken!
#-------------------------------------------------------------------
=head1 processDataset
Processes the dataset. Used by drawGraph.
=cut
sub processDataSet {
my ($barProperties);
my $self = shift;
# my $maxElements = List::Util::max(map {scalar @$_} @{$self->{_datasets}});
# my $numberOfDatasets = scalar @{$self->{_datasets}};
my $palette = $self->getPalette;
foreach (@{$self->{_datasets}}) {
push (@{$self->{_lines}}, {