GraphSharp BalloonTreeLayout将所有顶点固定在一个位置

时间:2014-08-28 10:49:44

标签: c# wpf xaml graph-sharp

我正在使用Graph#并需要使用BalloonTreeLayout,但结果是布局将所有顶点组合在一起。

我的代码是:

<Sample:MyGraphLayout x:Name="layout"
                      LayoutAlgorithmType="BalloonTree"
                      OverlapRemovalAlgorithmType="FSA"
                      Graph="{Binding}"
                      AsyncCompute="true"
                      ShowAllStates="false"
                      HighlightAlgorithmType="Simple">
</Sample:MyGraphLayout>

如何使用Graph#来制作此结果?Balloon Tree Layout in a commerical product

谢谢!

1 个答案:

答案 0 :(得分:-1)

我已经创建了一个虚拟图形示例项目,我可以为您分享。 实现了以下功能:双击顶点,按id查找顶点,顶点上的样本指示框,上下文菜单(删除顶点,递归函数 - 仅显示所有连接顶点),标记边缘。对不起我的英语不好 ;) enter image description here