diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-03-08 12:01:24 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-03-08 12:01:24 +0000 |
commit | b08ae56b53938333b051b91b0a1f912428864950 (patch) | |
tree | 68f089c05feab87cbaf0c3cfcd36407b3cce755f /src/datasets | |
parent | eff7a30681180181dc22b9500e6db45a7a916183 (diff) | |
download | zetacomponents-graph-b08ae56b53938333b051b91b0a1f912428864950.zip zetacomponents-graph-b08ae56b53938333b051b91b0a1f912428864950.tar.gz |
- Added feature #9511: Added helper functions to create image maps an link SVG
images in ezcGraphTools
Diffstat (limited to 'src/datasets')
-rw-r--r-- | src/datasets/base.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/datasets/base.php b/src/datasets/base.php index 7810c4d..277146e 100644 --- a/src/datasets/base.php +++ b/src/datasets/base.php @@ -21,6 +21,8 @@ * Status if datapoint element is hilighted * @property int $displayType * Display type of chart data + * @property string $url + * URL associated with datapoint * * @package Graph * @access private @@ -71,6 +73,7 @@ abstract class ezcGraphDataSet implements ArrayAccess, Iterator, Countable $this->properties['symbol'] = new ezcGraphDataSetIntProperty( $this ); $this->properties['highlight'] = new ezcGraphDataSetBooleanProperty( $this ); $this->properties['displayType'] = new ezcGraphDataSetIntProperty( $this ); + $this->properties['url'] = new ezcGraphDataSetStringProperty( $this ); $this->properties['highlight']->default = false; } @@ -94,6 +97,7 @@ abstract class ezcGraphDataSet implements ArrayAccess, Iterator, Countable case 'hilight': $propertyName = 'highlight'; case 'label': + case 'url': case 'color': case 'symbol': case 'highlight': |