ASP.NET 中的简单可视化/绘图
我想根据我在此应用程序中处理的一些数据在我的 asp.net 网站中生成简单的绘图(我想表示神经网络的结构)。我了解现有的 System.Drawing 命名空间,但我很好奇是否有更适合 asp.net 的解决方案。
如果这种可视化可以是交互式的(例如,将鼠标悬停在某些元素上会显示额外的信息),那就太好了,但目前这不是必需的。
想法或提示?
I want to generate simple drawings in my asp.net website based on some data I deal with in this application (I want to represent structure of Neural Networks). I know about existing System.Drawing namespace but Im curious if there are solutions more appropriate for asp.net.
It would be great if such visualization could be interactive (e.g. mouseover on some element displays extra infromation) but this is not necessay at the momment.
And idea or hints?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Silverlight 可能是生成客户端可视化的好方法,您可以重用您已有的大部分托管代码知识,并且有几个示例和控件可以提供帮助。
仅在服务器端使用 System.Drawing 的解决方案无法让您拥有客户端交互性(如果您使用地图或结合使用 ajax,则可能可以),但此时使用 Rich Framework 可能更有意义,除非您是 javascript 专家。
Silverlight is probably a good way to generate client-side visualizations, you can reuse most of the managed code knowledge you already have and there are several samples and controls that can help.
No solution using just System.Drawing on the server-side will allow you to have client-side interactivity (potentially if you use maps, or ajax in conjunction you could), but at that point it might make more sense to use a Rich Framework, that is unless you are an expert in javascript.