Add missing POD to WebGUI::Image and child classes, and fix any POD typos that affect coverage.

This commit is contained in:
Colin Kuskie 2009-07-04 20:29:54 +00:00
parent cc1110a48d
commit 5458d1a679
4 changed files with 30 additions and 7 deletions

View file

@ -55,6 +55,29 @@ sub _mod2pi {
}
#-------------------------------------------------------------------
=head2 addSlice ( $properties )
Add 1 slice to the pie graph.
=head3 $properties
Properties that define the slice.
=head4 percentage
The percentage of the pie this slice should occupy.
=head4 label
A label for the slice.
=head4 color
The color to use to draw the slice.
=cut
sub addSlice {
my (%slice, $leftMost, $rightMost, $center, $overallStartCorner, $overallEndCorner,
$fillColor, $strokeColor, $sideColor);
@ -779,9 +802,9 @@ sub drawSide {
#-------------------------------------------------------------------
=head2 drawBottom ( slice )
=head2 drawTop ( slice )
Draws the bottom of the given pie slice.
Draws the top of the given pie slice.
=head3 slice

View file

@ -492,7 +492,7 @@ sub setChartOffset {
#-------------------------------------------------------------------
=head2 setChartHeight ( width )
=head2 setChartWidth ( width )
Sets the width of the chart to the specified value.

View file

@ -150,7 +150,7 @@ sub drawGraph {
#-------------------------------------------------------------------
=head2 drawSideBySide ( bars, location, barWidth )
=head2 drawSideBySideBar ( bars, location, barWidth )
Draws the bars in side by side mode. Meaning that per datsetindex the bars
representing a single dataset are grouped.
@ -186,7 +186,7 @@ sub drawSideBySideBar {
#-------------------------------------------------------------------
=head2 drawStacked ( bars, location, barWidth )
=head2 drawStackedBar ( 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.
@ -327,7 +327,7 @@ sub getFirstAnchorLocation {
#-------------------------------------------------------------------
=head2 processDataset
=head2 processDataSet
Processes the dataset. Used by drawGraph.

View file

@ -160,7 +160,7 @@ sub getFirstAnchorLocation {
#-------------------------------------------------------------------
=head2 processDataset
=head2 processDataSet
Processes the dataset. Used by drawGraph.