GraphViz 和 ASP.NET
我想使用 GraphViz 生成图表并将其显示在 ASP.NET 网页上。
为此使用的最佳库是什么?
I woud like to generate graphs using GraphViz and display them on an ASP.NET webpage.
What is the best library to use for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那将是 QuickGraph。
QuickGraph 使图形建模变得非常容易,它有良好的文档并且非常容易将图形导出到 GraphViz。
That would be QuickGraph.
QuickGraph makes it very easy to model graphs, it has good documentation and it's dead easy to export the graph to GraphViz.
尝试以下较新的面向对象的 .NET 包装器: https://github.com/Rubjerg/Graphviz.NetWrapper
它不会生成点文件或任何东西,而是对底层 DLL 执行直接函数调用,使您几乎可以执行编写 C++ 代码时可以执行的任何操作。我自己用它在 ASP.NET 网页上呈现交互式图表。
Try the following newer object-oriented .NET wrapper: https://github.com/Rubjerg/Graphviz.NetWrapper
It doesn't generate dot files or anything, but performs direct function calls to the underlying DLL, allowing you to do virtually anything you could do when you would have been writing C++ code. I use it myself to render interactive graphs on an ASP.NET webpage.