diff options
author | Tobias Schlitt <toby@php.net> | 2007-06-21 15:10:42 +0000 |
---|---|---|
committer | Tobias Schlitt <toby@php.net> | 2007-06-21 15:10:42 +0000 |
commit | 2de1a7c9599abc34f09480cf7480683e67542b35 (patch) | |
tree | 98e551cc66889f95519386a53aa85a94da3b6429 /src/charts | |
parent | be4bf56454e879f962ddd4605b0ee0755e1cf598 (diff) | |
download | zetacomponents-graph-2de1a7c9599abc34f09480cf7480683e67542b35.zip zetacomponents-graph-2de1a7c9599abc34f09480cf7480683e67542b35.tar.gz |
- Doc fixes.
Diffstat (limited to 'src/charts')
-rw-r--r-- | src/charts/radar.php | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/charts/radar.php b/src/charts/radar.php index 0ae2c6b..5c660df 100644 --- a/src/charts/radar.php +++ b/src/charts/radar.php @@ -8,8 +8,9 @@ * @license http://ez.no/licenses/new_bsd New BSD License */ /** - * Class for line charts. Can make use of an unlimited amount of datasets and - * will display them as lines by default. + * Class for radar charts. + * Can make use of an unlimited amount of datasets and will display them as + * lines by default. * Rotation axis: * - Labeled axis * - Centered axis label renderer @@ -18,7 +19,7 @@ * - radar axis label renderer * * <code> - * // Create a new line chart + * // Create a new radar chart * $chart = new ezcGraphRadarChart(); * * // Add data to line chart @@ -108,15 +109,15 @@ class ezcGraphRadarChart extends ezcGraphChart } /** - * Options write access + * Property write access * * @throws ezcBasePropertyNotFoundException * If Option could not be found * @throws ezcBaseValueException * If value is out of range - * @param mixed $propertyName Option name - * @param mixed $propertyValue Option value; - * @return mixed + * @param string $propertyName Option name + * @param mixed $propertyValue Option value; + * @return void * @ignore */ public function __set( $propertyName, $propertyValue ) |