diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-09-04 14:59:40 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-09-04 14:59:40 +0000 |
commit | 5d8fa97d077d7d4f385e3a23863c4369851253b2 (patch) | |
tree | b7db0c767eff082ba0695c28258c05d560056dc0 /src/axis/date.php | |
parent | c5c6b9c18a7b0ea73af9c6baa17542178138ce40 (diff) | |
download | zetacomponents-graph-5d8fa97d077d7d4f385e3a23863c4369851253b2.zip zetacomponents-graph-5d8fa97d077d7d4f385e3a23863c4369851253b2.tar.gz |
- Implemented features #10322, #10565: Support for multiple x, y axis,
vertical and horizontal lines in line and bar charts.
Diffstat (limited to 'src/axis/date.php')
-rw-r--r-- | src/axis/date.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/axis/date.php b/src/axis/date.php index 96e8b58..a94c871 100644 --- a/src/axis/date.php +++ b/src/axis/date.php @@ -138,6 +138,7 @@ class ezcGraphChartElementDateAxis extends ezcGraphChartElementAxis break; case 'interval': $this->properties['interval'] = (int) $propertyValue; + $this->properties['initialized'] = true; break; case 'dateFormat': $this->properties['dateFormat'] = (string) $propertyValue; @@ -195,6 +196,8 @@ class ezcGraphChartElementDateAxis extends ezcGraphChartElementAxis $this->maxValue = $value; } } + + $this->properties['initialized'] = true; } /** |