tags:

views:

198

answers:

1

Howdy,

Im building an application in ASP.NET MVC that has a workflow component.

Im looking for something/ideas for displaying the underlying workflow data as a flowchart.

Im NOT looking for a flowcharting tool, but something that displays data as a flowchart.

Does anyone have some experience with this that could offer their wisdom?

Cheers, Byron

+1  A: 

You may find Graphviz useful. You can generate a text description of a graph, and it will lay it out nicely for you.

Glomek