diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-08-14 12:50:28 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-08-14 12:50:28 +0000 |
commit | 48155e33dd6901e3966d9b151d837bcbdc8e9968 (patch) | |
tree | 04fbae229bbf0a5bbea14d3e4da3f0bd976a4572 /src/graph.php | |
parent | 21f7809f953a75b9e6214d0549a7f1941e3df7b9 (diff) | |
download | zetacomponents-graph-48155e33dd6901e3966d9b151d837bcbdc8e9968.zip zetacomponents-graph-48155e33dd6901e3966d9b151d837bcbdc8e9968.tar.gz |
- Changed datsets to accept instances of ezcGraphDataSet only
- Added bar charts
- Globally increase acceptable difference noise for created images in tests
Diffstat (limited to 'src/graph.php')
-rw-r--r-- | src/graph.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/graph.php b/src/graph.php index fa4555a..0b9cff3 100644 --- a/src/graph.php +++ b/src/graph.php @@ -29,6 +29,10 @@ class ezcGraph const RIGHT = 8; const CENTER = 16; const MIDDLE = 32; + + const PIE = 1; + const LINE = 2; + const BAR = 3; } ?> |