Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
607 views
in Technique[技术] by (71.8m points)

svg - Graph XML to Visual Representation

I have an XML document and want a visual representation (eg. an SVG graphic). Eg.

<set>
   <A>
      <B>bla</B>
      foo
   </A>
   <A>blub</A>
</set>

Should render to something like:

enter image description here

or something similar like a dendrogram. I don't have any preferences regarding the technology. The easiest way will do.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As @Javier suggested in the comments, checkout Graphviz. Specifically:

  1. Write XSLT to map from your XML to DotML, an XML representation of the DOT graph description language. You can validate DotML against the DotML schema.
  2. Run generate-svg-graphics.bash, which uses generate-svg-graphics.xsl, to convert from DotML to SVG.

See also: Michael Kay's DotML ant build.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...