Subject: | Piecharts do not display properly in some webbrowsers |
I believe that the SVG markup used to produce the wedges in the
piecharts is incorrect.
Although it displays fine in SVG editors like Inkscape 0.46, it cannot
be displayed properly in the webbrowsers I tried (Firefox 3.0.5,
Epiphany 2.24.1).
This post helped me "fix" the problem:
http://forums.mozillazine.org/viewtopic.php?f=9&t=407255
Paths that looks like:
<path class="dataPoint1" d="M388.333333333333 215 A170 170, 0,
0, 1, 375.709826666933 279.2856076118 L218.333333333333 215, Z"
transform="translate(0,15)" />
had to be changed to:
<path class="dataPoint1" d="M388.333333333333 215 A170 170, 0,
0, 1, 375.709826666933 279.2856076118 L218.333333333333 215 Z"
transform="translate(0,15)" />
Note that there is no comma anymore before the "Z" in the "d" attribute.