summaryrefslogtreecommitdiffstats
path: root/src/structs
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2006-05-19 15:26:29 +0000
committerKore Nordmann <github@kore-nordmann.de>2006-05-19 15:26:29 +0000
commit8231d5da5ceadd3f04cc52d526a838da09e034c2 (patch)
tree3fd0318d204889da496aa7265192318786ea0c70 /src/structs
parent559f33a133a5b7d3f19afcd618fbc2e8e9ec3ade (diff)
downloadzetacomponents-graph-8231d5da5ceadd3f04cc52d526a838da09e034c2.zip
zetacomponents-graph-8231d5da5ceadd3f04cc52d526a838da09e034c2.tar.gz
- Refactored rendering methods
- Refactored chart title to be a chartelement
Diffstat (limited to 'src/structs')
-rw-r--r--src/structs/boundings.php37
-rw-r--r--src/structs/coordinate.php2
2 files changed, 37 insertions, 2 deletions
diff --git a/src/structs/boundings.php b/src/structs/boundings.php
new file mode 100644
index 0000000..003c72e
--- /dev/null
+++ b/src/structs/boundings.php
@@ -0,0 +1,37 @@
+<?php
+
+class ezcGraphBoundings
+{
+ public $x0 = 0;
+
+ public $y0 = 0;
+
+ public $x1 = false;
+
+ public $y1 = false;
+
+ /**
+ * Empty constructor
+ */
+ public function __construct()
+ {
+ }
+
+ /**
+ * Throws a BasePropertyNotFound exception.
+ */
+ public function __set( $name, $value )
+ {
+ throw new ezcBasePropertyNotFoundException( $name );
+ }
+
+ /**
+ * Throws a BasePropertyNotFound exception.
+ */
+ public function __get( $name )
+ {
+ throw new ezcBasePropertyNotFoundException( $name );
+ }
+}
+
+?>
diff --git a/src/structs/coordinate.php b/src/structs/coordinate.php
index 11193a1..10ec1c3 100644
--- a/src/structs/coordinate.php
+++ b/src/structs/coordinate.php
@@ -30,6 +30,4 @@ class ezcGraphCoordinate
}
}
-?
-
?>
OpenPOWER on IntegriCloud