SVGgraphs 
What's New
2004! SVG is back on track in Mozilla. Some local documentation is available.
Svg Graphs
This project is intended to build a robust graphing toolkit in Mozilla SVG and XBL. It is also intended to provide Mozilla SVG implementation specific documentation and sample code. It is distributed under the standard Mozilla tri-license.Implementation in XBL provides a set of graphing tags, like so:
A sunburst chart.
Implementation
<graph type="bar" orient="horizontal"><bar value="200">
<bar value="400">
<bar value="300">
<graph>
In the sunburst graph, slices in a pie chart can have subslices:
<slice value="200" title="Passing Go">
<slice value="50" title="Not going to Jail"/>
<slice value="150" title="Not going bankrupt"/>
</slice>
Development Status
Bar Graph (50%) Pie Chart (50%) Line Graph (0%) Sunburst Graph (50%,example at GVU, a related example at the gallery for data visualization)
While the title attribute works in SVG, the project has a major to-do of legending, gridding, and scaling in the bar chart example.