What options are available for the layout of directed or undirected graphs in .NET?

后端 未结 14 2223
伪装坚强ぢ
伪装坚强ぢ 2021-01-30 09:03

By graph here I mean something resembling these images:

14条回答
  •  萌比男神i
    2021-01-30 09:54

    When I did some work involving graphs last summer I found the best option that wasn't overly expensive was to manually do it in SVG, i.e. write out an SVG file from a bunch of strings, and render that out to an image using Inkscape.

    This is not a quick and easy solution, but it does allow for near-infinite customisation, so it might be nice if you have to organise the graphs or do spatial organisation based on connections etc.

提交回复
热议问题