I am working on building a website which queries a sql server database and gets tables which contain information about node connections. As in, column 1 has children columns2 and 3 etc...
I am writing this using MVC framework and ASP.NET and C#. I wanted to know how I can go about converting the queried data to graphs, which can then be sent to the user as a Visio readable(.vdx) file. The graphs should only contain bubbles and connections.
I have dug up and found this link: http://blogs.msdn.com/saveenr/archive/2009/09/30/creating-a-visio-vdx-file-without-using-visio.aspx
which programs visio without using the software at all. But, its still not clear how i'd draw graphs using this. There has to be a library(like graphviz) for generating the connections between nodes, right?
Thanks :)