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/options | |
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/options')
-rw-r--r-- | src/options/line_chart.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/options/line_chart.php b/src/options/line_chart.php index 91466ac..f5f41f9 100644 --- a/src/options/line_chart.php +++ b/src/options/line_chart.php @@ -41,8 +41,6 @@ * @property bool $highlightLines * If true, it adds lines to highlight the values position on the * axis. - * @property ezcGraphAxisContainer $additionalAxis - * Contains additional axis besides the basic axis. * * @version //autogentag// * @package Graph @@ -65,7 +63,6 @@ class ezcGraphLineChartOptions extends ezcGraphChartOptions $this->properties['highlightFontCloned'] = false; $this->properties['highlightSize'] = 14; $this->properties['highlightLines'] = false; - $this->properties['additionalAxis'] = new ezcGraphAxisContainer(); parent::__construct( $options ); } @@ -138,14 +135,6 @@ class ezcGraphLineChartOptions extends ezcGraphChartOptions $this->properties['highlightLines'] = $propertyValue; break; - case 'additionalAxis': - if ( ! $propertyValue instanceof ezcGraphAxisContainer ) - { - throw new ezcBaseValueException( $propertyName, $propertyValue, 'ezcGraphAxisContainer' ); - } - - $this->properties['additionalAxis'] = $propertyValue; - break; default: return parent::__set( $propertyName, $propertyValue ); } |