diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-09-05 08:24:42 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-09-05 08:24:42 +0000 |
commit | 59192857ba65c14388bbe5b1633a4f1ac346e9d1 (patch) | |
tree | 46248b526996a538badd3fd8db82244e4c6efc4e /src/datasets | |
parent | 0619fc50ccb698c85f7f7d4367e01dde406b8f9a (diff) | |
download | zetacomponents-graph-59192857ba65c14388bbe5b1633a4f1ac346e9d1.zip zetacomponents-graph-59192857ba65c14388bbe5b1633a4f1ac346e9d1.tar.gz |
- Implemented feature #11247: Custom highlight values in line and bar charts.
Thanks to Elger Thiele for the basic patch.
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 37337f5..d3c205d 100644 --- a/src/datasets/base.php +++ b/src/datasets/base.php @@ -76,6 +76,7 @@ abstract class ezcGraphDataSet implements ArrayAccess, Iterator, Countable $this->properties['color'] = new ezcGraphDataSetColorProperty( $this ); $this->properties['symbol'] = new ezcGraphDataSetIntProperty( $this ); $this->properties['highlight'] = new ezcGraphDataSetBooleanProperty( $this ); + $this->properties['highlightValue'] = new ezcGraphDataSetStringProperty( $this ); $this->properties['displayType'] = new ezcGraphDataSetIntProperty( $this ); $this->properties['url'] = new ezcGraphDataSetStringProperty( $this ); @@ -108,6 +109,7 @@ abstract class ezcGraphDataSet implements ArrayAccess, Iterator, Countable case 'color': case 'symbol': case 'highlight': + case 'highlightValue': case 'displayType': case 'xAxis': case 'yAxis': |