Add missing POD to WebGUI::Image and child classes, and fix any POD typos that affect coverage.
This commit is contained in:
parent
cc1110a48d
commit
5458d1a679
4 changed files with 30 additions and 7 deletions
|
|
@ -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 {
|
sub addSlice {
|
||||||
my (%slice, $leftMost, $rightMost, $center, $overallStartCorner, $overallEndCorner,
|
my (%slice, $leftMost, $rightMost, $center, $overallStartCorner, $overallEndCorner,
|
||||||
$fillColor, $strokeColor, $sideColor);
|
$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
|
=head3 slice
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -492,7 +492,7 @@ sub setChartOffset {
|
||||||
|
|
||||||
#-------------------------------------------------------------------
|
#-------------------------------------------------------------------
|
||||||
|
|
||||||
=head2 setChartHeight ( width )
|
=head2 setChartWidth ( width )
|
||||||
|
|
||||||
Sets the width of the chart to the specified value.
|
Sets the width of the chart to the specified value.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
Draws the bars in side by side mode. Meaning that per datsetindex the bars
|
||||||
representing a single dataset are grouped.
|
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
|
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.
|
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.
|
Processes the dataset. Used by drawGraph.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -160,7 +160,7 @@ sub getFirstAnchorLocation {
|
||||||
|
|
||||||
#-------------------------------------------------------------------
|
#-------------------------------------------------------------------
|
||||||
|
|
||||||
=head2 processDataset
|
=head2 processDataSet
|
||||||
|
|
||||||
Processes the dataset. Used by drawGraph.
|
Processes the dataset. Used by drawGraph.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue