diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-05-15 12:39:44 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-05-15 12:39:44 +0000 |
commit | 69a2e3dae3d8f15eae5b33011e096242e37b8e4d (patch) | |
tree | a4c07309f95fa27423a8855eec475cd5b61a4213 /src/graph.php | |
parent | 5abe8477993ac549c30690f7b94073becd39f485 (diff) | |
download | zetacomponents-graph-69a2e3dae3d8f15eae5b33011e096242e37b8e4d.zip zetacomponents-graph-69a2e3dae3d8f15eae5b33011e096242e37b8e4d.tar.gz |
- Implementation for legend tests
Diffstat (limited to 'src/graph.php')
-rw-r--r-- | src/graph.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/graph.php b/src/graph.php index 72ad50b..6f64078 100644 --- a/src/graph.php +++ b/src/graph.php @@ -17,6 +17,11 @@ class ezcGraph const DIAMOND = 1; + const TOP = 1; + const BOTTOM = 2; + const LEFT = 3; + const RIGHT = 4; + static protected $chartTypes = array( 'pie' => 'ezcGraphPieChart', 'line' => 'ezcGraphLineChart', |