diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-06-12 14:40:06 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-06-12 14:40:06 +0000 |
commit | b33909275f604b119c59972779a47a4288e0f5ec (patch) | |
tree | 756bf13bee3a4ed395bc1885391341533d991f65 /src/element | |
parent | 99117b7f9eb39a6d77eededce51a4d0aa895cc5b (diff) | |
download | zetacomponents-graph-b33909275f604b119c59972779a47a4288e0f5ec.zip zetacomponents-graph-b33909275f604b119c59972779a47a4288e0f5ec.tar.gz |
- More documentation fixes
Diffstat (limited to 'src/element')
-rw-r--r-- | src/element/axis.php | 2 | ||||
-rw-r--r-- | src/element/background.php | 9 | ||||
-rw-r--r-- | src/element/legend.php | 11 |
3 files changed, 20 insertions, 2 deletions
diff --git a/src/element/axis.php b/src/element/axis.php index f5eba04..30af47a 100644 --- a/src/element/axis.php +++ b/src/element/axis.php @@ -328,7 +328,7 @@ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement /** * Add data for this axis * - * @param mixed $value Value which will be displayed on this axis + * @param array $values * @return void */ abstract public function addData( array $values ); diff --git a/src/element/background.php b/src/element/background.php index 0aef4ba..77c5264 100644 --- a/src/element/background.php +++ b/src/element/background.php @@ -126,6 +126,15 @@ class ezcGraphChartElementBackground extends ezcGraphChartElement } } + /** + * __get + * + * @param mixed $propertyName + * @throws ezcBasePropertyNotFoundException + * If a the value for the property options is not an instance of + * @return mixed + * @ignore + */ public function __get( $propertyName ) { switch ( $propertyName ) diff --git a/src/element/legend.php b/src/element/legend.php index cab5ec9..4558feb 100644 --- a/src/element/legend.php +++ b/src/element/legend.php @@ -144,6 +144,15 @@ class ezcGraphChartElementLegend extends ezcGraphChartElement } } + /** + * __get + * + * @param mixed $propertyName + * @throws ezcBasePropertyNotFoundException + * If a the value for the property options is not an instance of + * @return mixed + * @ignore + */ public function __get( $propertyName ) { switch ( $propertyName ) @@ -158,7 +167,7 @@ class ezcGraphChartElementLegend extends ezcGraphChartElement /** * Generate legend from several datasets with on entry per dataset * - * @param array $datasets + * @param ezcGraphChartDataContainer $datasets * @return void */ public function generateFromDataSets( ezcGraphChartDataContainer $datasets ) |