summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2009-11-09 08:45:44 +0000
committerKore Nordmann <github@kore-nordmann.de>2009-11-09 08:45:44 +0000
commitbcfc64c698767262167547ae040b4edd2df54122 (patch)
tree8ef305ce899d54ec87c9882a5415374659e3906d
parentd214cd40c7b59248a7491d05faaea066541c4a74 (diff)
downloadzetacomponents-graph-bcfc64c698767262167547ae040b4edd2df54122.zip
zetacomponents-graph-bcfc64c698767262167547ae040b4edd2df54122.tar.gz
- Link gleam instead of base symbol to make it easier clickable
-rw-r--r--src/interfaces/renderer.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/renderer.php b/src/interfaces/renderer.php
index 3262dcf..bdd69b7 100644
--- a/src/interfaces/renderer.php
+++ b/src/interfaces/renderer.php
@@ -507,7 +507,7 @@ abstract class ezcGraphRenderer
// Draw optional gleam
if ( $this->options->legendSymbolGleam !== false )
{
- $this->driver->drawPolygon(
+ $return = $this->driver->drawPolygon(
array(
$topLeft = new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * $this->options->legendSymbolGleamSize,
@@ -575,7 +575,7 @@ abstract class ezcGraphRenderer
// Draw optional gleam
if ( $this->options->legendSymbolGleam !== false )
{
- $this->driver->drawPolygon(
+ $return = $this->driver->drawPolygon(
array(
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) / 2,
@@ -625,7 +625,7 @@ abstract class ezcGraphRenderer
// Draw optional gleam
if ( $this->options->legendSymbolGleam !== false )
{
- $this->driver->drawCircle(
+ $return = $this->driver->drawCircle(
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) / 2,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) / 2
OpenPOWER on IntegriCloud