diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-05-23 16:18:27 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-05-23 16:18:27 +0000 |
commit | a5476184b65f07f983d9f676d74550bcfe1925d6 (patch) | |
tree | 26986aca1e727fee06a1fe375ee4312669fc6f22 /src/graph.php | |
parent | fd76465a079bf1a8b4b85e6f80431fcae81919f9 (diff) | |
download | zetacomponents-graph-a5476184b65f07f983d9f676d74550bcfe1925d6.zip zetacomponents-graph-a5476184b65f07f983d9f676d74550bcfe1925d6.tar.gz |
- Implemented tests for line chart legend rendering
- Implemented legend rendering
Diffstat (limited to 'src/graph.php')
-rw-r--r-- | src/graph.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graph.php b/src/graph.php index 6f64078..0037e68 100644 --- a/src/graph.php +++ b/src/graph.php @@ -15,12 +15,14 @@ class ezcGraph { + const NO_SYMBOL = 0; const DIAMOND = 1; const TOP = 1; const BOTTOM = 2; const LEFT = 3; const RIGHT = 4; + const CENTER = 5; static protected $chartTypes = array( 'pie' => 'ezcGraphPieChart', |