diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-05-31 10:09:24 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-05-31 10:09:24 +0000 |
commit | be71d4bacef6f010a54df59356f97727a932de43 (patch) | |
tree | 66506017c342c9d745346619f8ddcadff3e72b4c /src/graph.php | |
parent | 4a2d7f6335135e7fe09ae71e6d9bc6dbd7100281 (diff) | |
download | zetacomponents-graph-be71d4bacef6f010a54df59356f97727a932de43.zip zetacomponents-graph-be71d4bacef6f010a54df59356f97727a932de43.tar.gz |
- Added test for axis rendering
- Implemented axis rendering
- Missing lables
Diffstat (limited to 'src/graph.php')
-rw-r--r-- | src/graph.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graph.php b/src/graph.php index 812431d..12bb946 100644 --- a/src/graph.php +++ b/src/graph.php @@ -22,9 +22,9 @@ class ezcGraph const TOP = 1; const BOTTOM = 2; - const LEFT = 3; - const RIGHT = 4; - const CENTER = 5; + const LEFT = 4; + const RIGHT = 8; + const CENTER = 16; static protected $chartTypes = array( 'pie' => 'ezcGraphPieChart', |