Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Layer graph layout (reliability block diagram)? (Read 3223 times)
himpact
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 11
Joined: Dec 9th, 2011
Layer graph layout (reliability block diagram)?
Dec 10th, 2011 at 1:19am
Print Post  
Hi,

I would like to know if there is away to do auto layout that give a layer graph layout like a reliability block diagram?

It is alot like the hierachy type layout but:
1) The in port is always on the left of shape
2) The outport is always on the right of shape
3) The link are cascading

any help is very much appreciated.

  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Layer graph layout (reliability block diagram)
Reply #1 - Dec 10th, 2011 at 7:41am
Print Post  
Hi,

Set node.AnchorPattern = AnchorPattern.LeftInRightOut when nodes are created, and use the following LayeredLayout settings:

Code
Select All
ll.Anchoring = Anchoring.Reassign; // or Keep
ll.Orientation = MindFusion.Diagramming.Layout.Orientation.Horizontal;
ll.StraightenLongLinks = true;
ll.LinkType = LayeredLayoutLinkType.Cascading; 



I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
himpact
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 11
Joined: Dec 9th, 2011
Re: Layer graph layout (reliability block diagram)
Reply #2 - Dec 11th, 2011 at 8:58am
Print Post  
Oh this helps alot. This is getting closer to what I was looking for.

Thanks!
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint