tags:

views:

122

answers:

2

My project actually use XML files to define flow of the application.

I like to convert this XML a image that represent the flow, to use it in the documentation.

There is any c# library that help with the graphical part of a UML generation? There is any XML standard format to generate UML flows that can be converted to IMG?

I need something like this
LampFlowChart

A: 

Are you looking for something like this?

http://www.xmlmodeling.com/

Adam
Cool tool, but I think the OP is talking about creating data flow diagrams.
dss539
Ya, It sounded like they either wanted to generate UML from existing XML based representations of their system, or generate DFDs. I went with the first. :)
Adam
I'm trying to generate something like thishttp://en.wikipedia.org/wiki/File:LampFlowchart.svg
Carlos Garces
A: 

I use GraphViz to model things like this. No, there's no particular .Net component to do it but you can fairly trivially generate the simple textual version of Graphviz and then run the command-line to generate the diagram and render it to your choice of png, svg etc.

You can see an example in my answer to this question.

Andy Dent
Thanks, I'll try http://quickgraph.codeplex.com/
Carlos Garces