summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2006-12-07 15:04:57 +0000
committerKore Nordmann <github@kore-nordmann.de>2006-12-07 15:04:57 +0000
commit0172f018702d2a4c59c1569b5cf9fae5ba601f7b (patch)
tree353e904ae165782a02212bbd2d4dc52af97230e5 /src
parent56b2051319c9fda9b4e78e6d3ccd3bfe22326b16 (diff)
downloadzetacomponents-graph-0172f018702d2a4c59c1569b5cf9fae5ba601f7b.zip
zetacomponents-graph-0172f018702d2a4c59c1569b5cf9fae5ba601f7b.tar.gz
- Marked important classes
Diffstat (limited to 'src')
-rw-r--r--src/axis/date.php1
-rw-r--r--src/axis/labeled.php1
-rw-r--r--src/axis/logarithmic.php3
-rw-r--r--src/axis/numeric.php1
-rw-r--r--src/charts/bar.php1
-rw-r--r--src/charts/line.php1
-rw-r--r--src/charts/pie.php1
-rw-r--r--src/datasets/array.php1
-rw-r--r--src/datasets/average.php1
-rw-r--r--src/driver/flash.php2
-rw-r--r--src/driver/gd.php1
-rw-r--r--src/driver/svg.php2
-rw-r--r--src/element/background.php1
-rw-r--r--src/element/legend.php1
-rw-r--r--src/element/text.php1
-rw-r--r--src/interfaces/palette.php1
-rw-r--r--src/renderer/2d.php1
-rw-r--r--src/renderer/3d.php1
-rw-r--r--src/renderer/axis_label_boxed.php1
-rw-r--r--src/renderer/axis_label_centered.php1
-rw-r--r--src/renderer/axis_label_exact.php1
21 files changed, 22 insertions, 3 deletions
diff --git a/src/axis/date.php b/src/axis/date.php
index d308317..2c86e62 100644
--- a/src/axis/date.php
+++ b/src/axis/date.php
@@ -27,6 +27,7 @@
* Like http://php.net/date
*
* @package Graph
+ * @mainclass
*/
class ezcGraphChartElementDateAxis extends ezcGraphChartElementAxis
{
diff --git a/src/axis/labeled.php b/src/axis/labeled.php
index bbfd102..5fe5c1f 100644
--- a/src/axis/labeled.php
+++ b/src/axis/labeled.php
@@ -12,6 +12,7 @@
* strings and used in the given order.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphChartElementLabeledAxis extends ezcGraphChartElementAxis
{
diff --git a/src/axis/logarithmic.php b/src/axis/logarithmic.php
index 8977c0b..3e5dc17 100644
--- a/src/axis/logarithmic.php
+++ b/src/axis/logarithmic.php
@@ -1,6 +1,6 @@
<?php
/**
- * File containing the abstract ezcGraphChartElementLogarithmicalAxis class
+ * File containing the ezcGraphChartElementLogarithmicalAxis class
*
* @package Graph
* @version //autogentag//
@@ -31,6 +31,7 @@
* Maximum value to display on this axis.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphChartElementLogarithmicalAxis extends ezcGraphChartElementAxis
{
diff --git a/src/axis/numeric.php b/src/axis/numeric.php
index bb62ff1..70fc801 100644
--- a/src/axis/numeric.php
+++ b/src/axis/numeric.php
@@ -25,6 +25,7 @@
* Maximum value to display on this axis.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphChartElementNumericAxis extends ezcGraphChartElementAxis
{
diff --git a/src/charts/bar.php b/src/charts/bar.php
index dc183d1..df0bf55 100644
--- a/src/charts/bar.php
+++ b/src/charts/bar.php
@@ -37,6 +37,7 @@
* </code>
*
* @package Graph
+ * @mainclass
*/
class ezcGraphBarChart extends ezcGraphLineChart
{
diff --git a/src/charts/line.php b/src/charts/line.php
index 3cdd444..f33910e 100644
--- a/src/charts/line.php
+++ b/src/charts/line.php
@@ -37,6 +37,7 @@
* </code>
*
* @package Graph
+ * @mainclass
*/
class ezcGraphLineChart extends ezcGraphChart
{
diff --git a/src/charts/pie.php b/src/charts/pie.php
index eb7539c..371f8dc 100644
--- a/src/charts/pie.php
+++ b/src/charts/pie.php
@@ -31,6 +31,7 @@
* </code>
*
* @package Graph
+ * @mainclass
*/
class ezcGraphPieChart extends ezcGraphChart
{
diff --git a/src/datasets/array.php b/src/datasets/array.php
index 50a794d..8eaf921 100644
--- a/src/datasets/array.php
+++ b/src/datasets/array.php
@@ -11,6 +11,7 @@
* Dataset class which receives arrays and use them as a base for datasets.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphArrayDataSet extends ezcGraphDataSet
{
diff --git a/src/datasets/average.php b/src/datasets/average.php
index 0f4e4f1..0436ca0 100644
--- a/src/datasets/average.php
+++ b/src/datasets/average.php
@@ -17,6 +17,7 @@
* Resolution used to draw line in graph
*
* @package Graph
+ * @mainclass
*/
class ezcGraphDataSetAveragePolynom extends ezcGraphDataSet
{
diff --git a/src/driver/flash.php b/src/driver/flash.php
index 6e11d68..89400cb 100644
--- a/src/driver/flash.php
+++ b/src/driver/flash.php
@@ -11,8 +11,8 @@
* Driver to create Flash4 (SWF) files as graph output.
*
* @package Graph
+ * @mainclass
*/
-
class ezcGraphFlashDriver extends ezcGraphDriver
{
/**
diff --git a/src/driver/gd.php b/src/driver/gd.php
index 0ef190d..d094bfd 100644
--- a/src/driver/gd.php
+++ b/src/driver/gd.php
@@ -17,6 +17,7 @@
* fonts.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphGdDriver extends ezcGraphDriver
{
diff --git a/src/driver/svg.php b/src/driver/svg.php
index 151fd34..9511777 100644
--- a/src/driver/svg.php
+++ b/src/driver/svg.php
@@ -11,8 +11,8 @@
* Extension of the basic Driver package to utilize the SVGlib.
*
* @package Graph
+ * @mainclass
*/
-
class ezcGraphSvgDriver extends ezcGraphDriver
{
diff --git a/src/element/background.php b/src/element/background.php
index e6b3885..a33fa9a 100644
--- a/src/element/background.php
+++ b/src/element/background.php
@@ -35,6 +35,7 @@
* Defines how the background image gets repeated
*
* @package Graph
+ * @mainclass
*/
class ezcGraphChartElementBackground extends ezcGraphChartElement
{
diff --git a/src/element/legend.php b/src/element/legend.php
index 95e9cae..278d468 100644
--- a/src/element/legend.php
+++ b/src/element/legend.php
@@ -25,6 +25,7 @@
* Space between labels elements in pixel.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphChartElementLegend extends ezcGraphChartElement
{
diff --git a/src/element/text.php b/src/element/text.php
index 66b0b19..b8fb61c 100644
--- a/src/element/text.php
+++ b/src/element/text.php
@@ -14,6 +14,7 @@
* Maximum percent of bounding used to display the text.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphChartElementText extends ezcGraphChartElement
{
diff --git a/src/interfaces/palette.php b/src/interfaces/palette.php
index fdd0681..c9cb248 100644
--- a/src/interfaces/palette.php
+++ b/src/interfaces/palette.php
@@ -11,6 +11,7 @@
* Abstract class to contain pallet definitions
*
* @package Graph
+ * @mainclass
*/
abstract class ezcGraphPalette
{
diff --git a/src/renderer/2d.php b/src/renderer/2d.php
index f2c7b61..c55c630 100644
--- a/src/renderer/2d.php
+++ b/src/renderer/2d.php
@@ -12,6 +12,7 @@
* Class to transform chart primitives into image primitives
*
* @package Graph
+ * @mainclass
*/
class ezcGraphRenderer2d extends ezcGraphRenderer
{
diff --git a/src/renderer/3d.php b/src/renderer/3d.php
index b9d7c06..7b978ba 100644
--- a/src/renderer/3d.php
+++ b/src/renderer/3d.php
@@ -12,6 +12,7 @@
* Class to transform chart primitives into image primitives
*
* @package Graph
+ * @mainclass
*/
class ezcGraphRenderer3d extends ezcGraphRenderer
{
diff --git a/src/renderer/axis_label_boxed.php b/src/renderer/axis_label_boxed.php
index 7fd8493..5357a47 100644
--- a/src/renderer/axis_label_boxed.php
+++ b/src/renderer/axis_label_boxed.php
@@ -13,6 +13,7 @@
* bar charts.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphAxisBoxedLabelRenderer extends ezcGraphAxisLabelRenderer
{
diff --git a/src/renderer/axis_label_centered.php b/src/renderer/axis_label_centered.php
index 1808e4e..968a582 100644
--- a/src/renderer/axis_label_centered.php
+++ b/src/renderer/axis_label_centered.php
@@ -17,6 +17,7 @@
* label.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphAxisCenteredLabelRenderer extends ezcGraphAxisLabelRenderer
{
diff --git a/src/renderer/axis_label_exact.php b/src/renderer/axis_label_exact.php
index e70c7b9..bb023ba 100644
--- a/src/renderer/axis_label_exact.php
+++ b/src/renderer/axis_label_exact.php
@@ -17,6 +17,7 @@
* the axis.
*
* @package Graph
+ * @mainclass
*/
class ezcGraphAxisExactLabelRenderer extends ezcGraphAxisLabelRenderer
{
OpenPOWER on IntegriCloud