Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Attached nodes are not appearing in proper position when swimlanelayout is enabled (Read 2039 times)
softsara
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 4
Joined: Apr 25th, 2012
Attached nodes are not appearing in proper position when swimlanelayout is enabled
Apr 25th, 2012 at 10:33am
Print Post  
Attached nodes are not appearing in proper position when swimlanelayout is enabled.

MasterNode.MasterGroup.MainItem.LayoutTraits.Add(MindFusion.Layout.SwimlaneLayou
tTraits.Lane, index);
foreach (DiagramNode attachednode in MasterNode.MasterGroup.AttachedNodes)
attachednode.LayoutTraits[MindFusion.Layout.SwimlaneLayoutTraits.Lane] = index;


int index = grid.RowHeaders.Add(new MindFusion.Diagramming.Wpf.Lanes.Header());
grid.RowHeaders[index].Width = 30;
grid.RowHeaders[index].Height = 60;
grid.RowHeaders[index].RotateTitle = true;

foreach (Swimlane swimlane in process.Swimlanes)
{
index = grid.RowHeaders.Add(new MindFusion.Diagramming.Wpf.Lanes.Header(swimlane.Name));
grid.RowHeaders[index].Width = 30;
grid.RowHeaders[index].Height = 60;
grid.RowHeaders[index].RotateTitle = true;
}

designerCanvas.EnableLanes = true;

SwimlaneLayout layout = new SwimlaneLayout();
layout.NodeDistance = 50;
layout.LaneDistance = 30;
layout.Arrange(designerCanvas);

Why?
  

swimlaneissue.png (Attachment deleted)
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Attached nodes are not appearing in proper position when swimlanelayout is enabled
Reply #1 - Apr 25th, 2012 at 10:40am
Print Post  
Try setting either attachedNode.IgnoreLayout or SwimlaneLayout.KeepGroupLayout.

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


I Love MindFusion!

Posts: 4
Joined: Apr 25th, 2012
Re: Attached nodes are not appearing in proper position when swimlanelayout is enabled
Reply #2 - Apr 26th, 2012 at 7:43am
Print Post  
Wow Smiley Excellent. Worked. Thanks Stoyan.
  

swimlaneissuesolved.png (Attachment deleted)
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint