summaryrefslogtreecommitdiffstats
path: root/src/structs
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2006-05-09 13:20:31 +0000
committerKore Nordmann <github@kore-nordmann.de>2006-05-09 13:20:31 +0000
commit9cace6f3a5815b94bbbc0547087fd9640afd8cd5 (patch)
treea9be5a5982a8e5be90ecc524ed84f243ceb45e8f /src/structs
parent0f060a5d867310cb71a8fc82cd3bb982fb93fba6 (diff)
downloadzetacomponents-graph-9cace6f3a5815b94bbbc0547087fd9640afd8cd5.zip
zetacomponents-graph-9cace6f3a5815b94bbbc0547087fd9640afd8cd5.tar.gz
- Added more tests for ezcGraphChart
- Implemented setting renderer and driver - Started with setting of chart options (yet incomplete)
Diffstat (limited to 'src/structs')
-rw-r--r--src/structs/chart_config.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/structs/chart_config.php b/src/structs/chart_config.php
deleted file mode 100644
index 5ac6235..0000000
--- a/src/structs/chart_config.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-class ezcGraphChartOption
-{
- public $width = false;
-
- public $height = 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 );
- }
-}
-
-?
-
-?>
OpenPOWER on IntegriCloud