Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Link Crossings as Arcs in SwimlaneLayout (Read 2985 times)
Tom
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 6
Joined: Apr 2nd, 2014
Link Crossings as Arcs in SwimlaneLayout
Apr 7th, 2014 at 5:30pm
Print Post  
I'm using a TabbedDiagramView with several pages. One of the pages uses a SwimlaneLayout. I can't figure out how to set link crossings so they show up as an arc. I've tried setting LinkCrossings for Diagram and DiagramPage but it seems to have no effect.

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


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link Crossings as Arcs in SwimlaneLayout
Reply #1 - Apr 7th, 2014 at 6:01pm
Print Post  
Does that page show diagram content loaded from a file? LinkCrossings is serialized with other diagram properties in files, so if you load an old one where it wasn't set to Arcs, you might be losing the value set from initialization code. You could reset LinkCrossings each time after loading a file if you treat it as per-application setting, or may be when applying the layout:

Code
Select All
swimlaneLayout.Arrange(thisPage);
thisPage.LinkCrossings = LinkCrossings.Arcs; 



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


I Love MindFusion!

Posts: 6
Joined: Apr 2nd, 2014
Re: Link Crossings as Arcs in SwimlaneLayout
Reply #2 - Apr 8th, 2014 at 1:02pm
Print Post  
Hi,
Unfortunately, this did not work. Any other ideas?

Thanks,

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


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link Crossings as Arcs in SwimlaneLayout
Reply #3 - Apr 8th, 2014 at 3:10pm
Print Post  
Hi,

Check if you haven't set the DrawCrossings property of individual links to false by some chance. If you have switched MeasureUnit to a smaller unit such as Document or Pixel, try setting larger CrossingRadius value.

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint