diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-08-10 09:24:49 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-08-10 09:24:49 +0000 |
commit | 679c5d855f5640e2888537bd3cab623503b6c0e0 (patch) | |
tree | a37cb7702f066223fc6fb2eedcce154e138a589f /src/charts | |
parent | 9ffa22267933bdaa8d490d36ae5a78c722e23527 (diff) | |
download | zetacomponents-graph-679c5d855f5640e2888537bd3cab623503b6c0e0.zip zetacomponents-graph-679c5d855f5640e2888537bd3cab623503b6c0e0.tar.gz |
- Enhanced documentation
- Added examples to most of the classes
- Fixed class descriptions
- Refence options classes which may be used to configure the current chart.
Diffstat (limited to 'src/charts')
-rw-r--r-- | src/charts/bar.php | 4 | ||||
-rw-r--r-- | src/charts/line.php | 4 | ||||
-rw-r--r-- | src/charts/pie.php | 4 | ||||
-rw-r--r-- | src/charts/radar.php | 4 |
4 files changed, 16 insertions, 0 deletions
diff --git a/src/charts/bar.php b/src/charts/bar.php index 7c030ce..1a13d1c 100644 --- a/src/charts/bar.php +++ b/src/charts/bar.php @@ -52,6 +52,10 @@ * $chart->legend->position = ezcGraph::RIGHT; * </code> * + * The chart itself also offers several options to configure the appearance. As + * bar charts extend line charts the the extended configure options are + * available in ezcGraphLineChartOptions extending the ezcGraphChartOptions. + * * @version //autogentag// * @package Graph * @mainclass diff --git a/src/charts/line.php b/src/charts/line.php index 3813107..7d10245 100644 --- a/src/charts/line.php +++ b/src/charts/line.php @@ -52,6 +52,10 @@ * $chart->legend->position = ezcGraph::RIGHT; * </code> * + * The chart itself also offers several options to configure the appearance. + * The extended configure options are available in ezcGraphLineChartOptions + * extending the ezcGraphChartOptions. + * * @version //autogentag// * @package Graph * @mainclass diff --git a/src/charts/pie.php b/src/charts/pie.php index d5dfac8..d2b105f 100644 --- a/src/charts/pie.php +++ b/src/charts/pie.php @@ -43,6 +43,10 @@ * $chart->legend->position = ezcGraph::RIGHT; * </code> * + * The chart itself also offers several options to configure the appearance. + * The extended configure options are available in ezcGraphPieChartOptions + * extending the ezcGraphChartOptions. + * * @version //autogentag// * @package Graph * @mainclass diff --git a/src/charts/radar.php b/src/charts/radar.php index 1759a50..29cb484 100644 --- a/src/charts/radar.php +++ b/src/charts/radar.php @@ -49,6 +49,10 @@ * The type of the axis may be changed and all elements can be configured by * accessing them as properties of the chart: * + * The chart itself also offers several options to configure the appearance. + * The extended configure options are available in ezcGraphRadarChartOptions + * extending the ezcGraphChartOptions. + * * <code> * $chart->legend->position = ezcGraph::RIGHT; * </code> |