Graph visualisation in Silverlight

2020-06-18 05:54发布

I have a data structure that represents a directed graph and I'm looking for a good Silverlight visualisation to allow me to navigate from node to node, preferably with some nice animation.

Does anyone know of any good UI controls or frameworks for this kind of display? Even a sample from another field (maybe a social network?). My graphs don't have many nodes so performance won't be an issue.

I've seen the Prefuse library for Java (and Flash) which would be ideal. The "Degree of Interest" visualisation is the kind of thing I'm after, but I can't find anything in Silverlight.

Thanks for any tips.

6条回答
干净又极端
2楼-- · 2020-06-18 06:24

There's an open source option that's part of the Silverlight Bag-O-Tricks. Check it out and see a demo here (use the first demo link):

http://www.codeplex.com/BagOTricks

There's also a WPF version:

http://j832.com/bagotricks/

查看更多
\"骚年 ilove
3楼-- · 2020-06-18 06:29

Must admit I haven't tryed it out yet my self but quickgraph looks promissing

查看更多
甜甜的少女心
4楼-- · 2020-06-18 06:34

I made a graph library for Silverlight, that uses Dot as basis. Please check out: http://dot2silverlight.codeplex.com/

I am making some improvements to support more shapes and types of arrows.

daniela

查看更多
迷人小祖宗
6楼-- · 2020-06-18 06:44

QuickGraph does make it easy to construct a graph and output to Directed Graph Markup Language (DGML) which can be viewed in VS 2010. I just checked in changes to the project and I noticed that it has been designed to be built for inclusion into Silverlight. So perhaps you could use it in conjunction with a silverlight DGML viewer

查看更多
三岁会撩人
7楼-- · 2020-06-18 06:48

@Rune FS

QuickGraph has no visualisation capabilities, at least not for Silverlight. It just handles the graph data structures and algorithms.

查看更多
登录 后发表回答