diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-08-08 06:55:13 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-08-08 06:55:13 +0000 |
commit | edc4c9c5ac909b4863c32d39ae73a98ec12726b4 (patch) | |
tree | afc59bac840295417cc6fd9cccb383504c09f761 /src/driver | |
parent | 8c2284477cd6a99d0bfa2174e1ae96d12739d497 (diff) | |
download | zetacomponents-graph-edc4c9c5ac909b4863c32d39ae73a98ec12726b4.zip zetacomponents-graph-edc4c9c5ac909b4863c32d39ae73a98ec12726b4.tar.gz |
- Fixed bug #11235: In interactive 3d bar charts circle and bullet bars are not
linked.
# Numeric part of IDs in SVG files changed because one element missed an ID
# Also ensured mimetype 'application/octet-stream' for all SVG test files
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/svg.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/driver/svg.php b/src/driver/svg.php index 805ff90..edc0062 100644 --- a/src/driver/svg.php +++ b/src/driver/svg.php @@ -1034,6 +1034,7 @@ class ezcGraphSvgDriver extends ezcGraphDriver 'style', $this->getStyle( $gradient, $filled ) ); + $arc->setAttribute( 'id', $id = ( $this->options->idPrefix . 'CircularArc_' . ++$this->elementID ) ); $this->elements->appendChild( $arc ); } |