diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-09-20 15:12:20 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-09-20 15:12:20 +0000 |
commit | 9d8baefbdf52a83adfb2efed5ebe4bd7b7f765a7 (patch) | |
tree | a5b7b9bdd5be0ffcbf3456fdb0c6c681d3de2c14 /src/data_container | |
parent | 3fe622918bd1c3e2694ecb2c7d244b9c33eb5693 (diff) | |
download | zetacomponents-graph-9d8baefbdf52a83adfb2efed5ebe4bd7b7f765a7.zip zetacomponents-graph-9d8baefbdf52a83adfb2efed5ebe4bd7b7f765a7.tar.gz |
- Added and improved documentation
Diffstat (limited to 'src/data_container')
-rw-r--r-- | src/data_container/base.php | 5 | ||||
-rw-r--r-- | src/data_container/single.php | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/data_container/base.php b/src/data_container/base.php index 38bc86c..84c6379 100644 --- a/src/data_container/base.php +++ b/src/data_container/base.php @@ -1,6 +1,6 @@ <?php /** - * File containing the abstract ezcGraphChart class + * File containing the abstract ezcGraphChartDataContainer class * * @package Graph * @version //autogentag// @@ -8,7 +8,8 @@ * @license http://ez.no/licenses/new_bsd New BSD License */ /** - * Class containing the container for the charts datasets + * Container class for datasets used by the chart classes. Implements usefull + * interfaces for convenient access to the datasets. * * @package Graph */ diff --git a/src/data_container/single.php b/src/data_container/single.php index 5167511..4c1e95a 100644 --- a/src/data_container/single.php +++ b/src/data_container/single.php @@ -1,6 +1,6 @@ <?php /** - * File containing the abstract ezcGraphChart class + * File containing the abstract ezcGraphChartSingleDataContainer class * * @package Graph * @version //autogentag// @@ -8,7 +8,8 @@ * @license http://ez.no/licenses/new_bsd New BSD License */ /** - * Class containing the container for the charts datasets + * Container class for datasets, which ensures, that only one dataset is used. + * Needed for pie charts which can only display one dataset. * * @package Graph */ |