Is there a good C# library for drawing/visualizing graphs? I'm talking about node-path visualization instead of line graphs or the like. (preferably native, not wrappers for pstricks or anything like that) Thank you
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
I'm not aware of a native one, but I was involved in developing a product where someone built a wrapper around graphviz without much trouble. This worked by using the API to render out to a file and then displaying the file using the image viewer control.
If you can't find what you want in a native .Net library I have definitely seen people get good results by wrapping graphviz in this manner.
Some pointers:
Native:
There are plenty of diagram editing packages but I don't know how good they are at layout.
Try aiSee or have a look at this list.