diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2008-01-21 12:14:23 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2008-01-21 12:14:23 +0000 |
commit | ef2e2c55d1d937ff4dc84fd270214e340ca44d58 (patch) | |
tree | e51da726e14dad7de037ed119147201723d2a9be /src/datasets | |
parent | e21b5305beaf266541b443093560c81032600f57 (diff) | |
download | zetacomponents-graph-ef2e2c55d1d937ff4dc84fd270214e340ca44d58.zip zetacomponents-graph-ef2e2c55d1d937ff4dc84fd270214e340ca44d58.tar.gz |
- Implemented feature #11979: Line width configurable per data set.
Diffstat (limited to 'src/datasets')
-rw-r--r-- | src/datasets/base.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/datasets/base.php b/src/datasets/base.php index 60674ee..25c6eca 100644 --- a/src/datasets/base.php +++ b/src/datasets/base.php @@ -75,6 +75,7 @@ abstract class ezcGraphDataSet implements ArrayAccess, Iterator, Countable $this->properties['label'] = new ezcGraphDataSetStringProperty( $this ); $this->properties['color'] = new ezcGraphDataSetColorProperty( $this ); $this->properties['symbol'] = new ezcGraphDataSetIntProperty( $this ); + $this->properties['lineThickness'] = new ezcGraphDataSetIntProperty( $this ); $this->properties['highlight'] = new ezcGraphDataSetBooleanProperty( $this ); $this->properties['highlightValue'] = new ezcGraphDataSetStringProperty( $this ); $this->properties['displayType'] = new ezcGraphDataSetIntProperty( $this ); @@ -108,6 +109,7 @@ abstract class ezcGraphDataSet implements ArrayAccess, Iterator, Countable case 'url': case 'color': case 'symbol': + case 'lineThickness': case 'highlight': case 'highlightValue': case 'displayType': |