用于关系可视化的 JavaScript 框架
可能的重复:
JavaScript 中的图形可视化代码?
我需要为节点及其关系创建动态可视化在 JavaScript 中。最好使用什么框架?这是我到目前为止简要回顾的内容:
- Flare - 它是 Flash,几乎没有更新过2年。
- JavaScript InfoVis Toolkit - 交互似乎有点慢,也许这是演示中故意的
- Protovis - 文档看起来很棒,但在 IE 中根本不起作用(我可以让它与某种 IE SVG 适配器一起使用吗? )
这些是在图形中显示节点并在 javascript 中与它们交互的最佳选择吗?
Possible Duplicate:
Graph visualization code in javascript?
I need to create a dynamic visualization for nodes and their relationships in Javascript. What's the best framework to use? This is what I've briefly reviewed so far:
- Flare - it's Flash and hasn't been updated in almost 2 years.
- JavaScript InfoVis Toolkit - interaction seems a little slow, maybe that's on purpose in the demos
- Protovis - documentation looks great, doesn't work in IE at all (can I get it to work with some kind of IE SVG adapter?)
Are these the best for displaying nodes in a graph and interacting with them in javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与我之前见过的框架相比,Infovis 看起来确实很棒,以下是我在寻找这样的框架时(很久以前)发现的一些:
Infovis seems really great compared to the framework I've seen before, here are some I've found when I was looking for such a framework (a long time ago):
InfoVis 可能是您最好的选择,为了 IE 兼容性,请寻找基于 Raphael 构建的解决方案。
编辑 这里有一些你可以基于谷歌:“拉斐尔力定向图”进行构建。
InfoVis is probably your best bet, for IE compatibility look for solutions built on Raphael.
edit Here's something you could build on, based on Google:"raphael force directed graph".