summaryrefslogtreecommitdiffstats
path: root/src/driver/svg.php
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2007-06-12 14:40:06 +0000
committerKore Nordmann <github@kore-nordmann.de>2007-06-12 14:40:06 +0000
commitb33909275f604b119c59972779a47a4288e0f5ec (patch)
tree756bf13bee3a4ed395bc1885391341533d991f65 /src/driver/svg.php
parent99117b7f9eb39a6d77eededce51a4d0aa895cc5b (diff)
downloadzetacomponents-graph-b33909275f604b119c59972779a47a4288e0f5ec.zip
zetacomponents-graph-b33909275f604b119c59972779a47a4288e0f5ec.tar.gz
- More documentation fixes
Diffstat (limited to 'src/driver/svg.php')
-rw-r--r--src/driver/svg.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/driver/svg.php b/src/driver/svg.php
index 573097c..0160674 100644
--- a/src/driver/svg.php
+++ b/src/driver/svg.php
@@ -277,7 +277,7 @@ class ezcGraphSvgDriver extends ezcGraphDriver
* @param float $thickness Line thickness.
* @return string Formatstring
*/
- protected function getStyle( ezcGraphColor $color, $filled = true, $thickness = 1 )
+ protected function getStyle( ezcGraphColor $color, $filled = true, $thickness = 1. )
{
if ( $filled )
{
@@ -325,7 +325,7 @@ class ezcGraphSvgDriver extends ezcGraphDriver
* @param float $thickness Line thickness
* @return void
*/
- public function drawPolygon( array $points, ezcGraphColor $color, $filled = true, $thickness = 1 )
+ public function drawPolygon( array $points, ezcGraphColor $color, $filled = true, $thickness = 1. )
{
$this->createDocument();
@@ -379,7 +379,7 @@ class ezcGraphSvgDriver extends ezcGraphDriver
* @param float $thickness Line thickness
* @return void
*/
- public function drawLine( ezcGraphCoordinate $start, ezcGraphCoordinate $end, ezcGraphColor $color, $thickness = 1 )
+ public function drawLine( ezcGraphCoordinate $start, ezcGraphCoordinate $end, ezcGraphColor $color, $thickness = 1. )
{
$this->createDocument();
@@ -905,6 +905,7 @@ class ezcGraphSvgDriver extends ezcGraphDriver
* @param float $startAngle Starting angle of circle sector
* @param float $endAngle Ending angle of circle sector
* @param ezcGraphColor $color Color of Border
+ * @param bool $filled
* @return void
*/
public function drawCircularArc( ezcGraphCoordinate $center, $width, $height, $size, $startAngle, $endAngle, ezcGraphColor $color, $filled = true )
OpenPOWER on IntegriCloud