diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-05-29 07:24:28 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-05-29 07:24:28 +0000 |
commit | cc7669f009a394d3ac90f8aef489438fbccd3e9c (patch) | |
tree | abc00ae7ed5d54f8cc7436bb199d19a44d03b79b | |
parent | 40967187c4276d08ade3efc26ded4a46d5085199 (diff) | |
download | zetacomponents-graph-cc7669f009a394d3ac90f8aef489438fbccd3e9c.zip zetacomponents-graph-cc7669f009a394d3ac90f8aef489438fbccd3e9c.tar.gz |
- Fixed issue #10852: Fixed radar chart documentation
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/charts/radar.php | 11 |
2 files changed, 6 insertions, 6 deletions
@@ -19,6 +19,7 @@ renderer - Fixed issue #10846: Division by zero in polygon size reducement algorithm for edges with an angle equals 0 degree. +- Fixed issue #10852: Fixed radar chart documentation 1.1beta1 - Monday 07 May 2007 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/src/charts/radar.php b/src/charts/radar.php index 139cba4..c5e7064 100644 --- a/src/charts/radar.php +++ b/src/charts/radar.php @@ -6,17 +6,16 @@ * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License - * @access private */ /** * Class for line charts. Can make use of an unlimited amount of datasets and * will display them as lines by default. - * X axis: + * Rotation axis: * - Labeled axis * - Centered axis label renderer - * Y axis: + * Axis: * - Numeric axis - * - Exact axis label renderer + * - radar axis label renderer * * <code> * // Create a new line chart @@ -34,7 +33,7 @@ * ); * * // Render chart with default 2d renderer and default SVG driver - * $chart->render( 500, 200, 'line_chart.svg' ); + * $chart->render( 500, 200, 'radar_chart.svg' ); * </code> * * Each chart consists of several chart elements which represents logical @@ -44,6 +43,7 @@ * - legend ( ezcGraphChartElementLegend ) * - background ( ezcGraphChartElementBackground ) * - axis ( ezcGraphChartElementNumericAxis ) + * - ratation axis ( ezcGraphChartElementLabeledAxis ) * * The type of the axis may be changed and all elements can be configured by * accessing them as properties of the chart: @@ -53,7 +53,6 @@ * </code> * * @package Graph - * @access private * @mainclass */ class ezcGraphRadarChart extends ezcGraphChart |