Page Index Toggle Pages: 1 [2] 3  Send TopicPrint
Very Hot Topic (More than 25 Replies) Layered Layout direction (Read 28729 times)
choohj70
Junior Member
**
Offline


I love YaBB 1G - SP1!

Posts: 77
Joined: Sep 23rd, 2008
Re: Layered Layout direction
Reply #15 - May 13th, 2009 at 5:40pm
Print Post  
Thank you but what/where is the PM page?
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Layered Layout direction
Reply #16 - May 13th, 2009 at 5:45pm
Print Post  
At the top of the forum page you should see a "you have X meesages" link. Click on it to open the private messages page.
  
Back to top
 
IP Logged
 
bkernan
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 37
Joined: May 28th, 2009
Re: Layered Layout direction
Reply #17 - May 28th, 2009 at 3:02pm
Print Post  
Is this new property available for download yet?
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Layered Layout direction
Reply #18 - May 28th, 2009 at 3:12pm
Print Post  
It is available only in the server side assemblies. We are implementing it in the Silverlight and Java frontends in the next few days.

Stoyan
  
Back to top
 
IP Logged
 
choohj70
Junior Member
**
Offline


I love YaBB 1G - SP1!

Posts: 77
Joined: Sep 23rd, 2008
Re: Layered Layout direction
Reply #19 - Jun 2nd, 2009 at 5:45pm
Print Post  
I am just checking but was this included in 3.0.1?

Thank you.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Layered Layout direction
Reply #20 - Jun 2nd, 2009 at 6:48pm
Print Post  
Only the server LayeredLayout class has it in 3.0.1. We'll port it to Java in a few days.
  
Back to top
 
IP Logged
 
choohj70
Junior Member
**
Offline


I love YaBB 1G - SP1!

Posts: 77
Joined: Sep 23rd, 2008
Re: Layered Layout direction
Reply #21 - Jun 2nd, 2009 at 6:51pm
Print Post  
Thank you. Couple of things that I noticed that were missing in Java version was

1. IgnoreNodeSize
2. EnforceLinkFlow
3. Use of Polyline and Bezier as line type for LayeredLayout.

Do you know if these would be part of this release?

Thank you,
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Layered Layout direction
Reply #22 - Jun 3rd, 2009 at 6:20am
Print Post  
Yes, we'll port to Java all recent new features of the .NET LayeredLayout class.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Layered Layout direction
Reply #23 - Jun 11th, 2009 at 2:36pm
Print Post  
Please check the applet version from the PM page. It implements the IgnoreNodeSize and EnforceLinkFlow properties of the applet's LayeredLayout class.

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
choohj70
Junior Member
**
Offline


I love YaBB 1G - SP1!

Posts: 77
Joined: Sep 23rd, 2008
Re: Layered Layout direction
Reply #24 - Jun 11th, 2009 at 10:45pm
Print Post  
Stoyan,

Thank you for the update. These two settings seem to be working.

Can you please let me know how I can specify polyline with three segment (horizontally at origin, diagonally in the middle and horizontally at destination) as the line type for layered layout for the applet version?

Thank you.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Layered Layout direction
Reply #25 - Jun 12th, 2009 at 6:05am
Print Post  
I'm not sure... Is there a setting to specify that in the .NET class, or you need a completely new property?
  
Back to top
 
IP Logged
 
choohj70
Junior Member
**
Offline


I love YaBB 1G - SP1!

Posts: 77
Joined: Sep 23rd, 2008
Re: Layered Layout direction
Reply #26 - Jun 12th, 2009 at 2:36pm
Print Post  
I believe these settings exist in .NET but I cannot find it in Applet

1. diagram.RoutingOptions.StartOrientation = MindFusion.Diagramming.Orientation.Horizontal
2. diagram.RoutingOptions.EndOrientation = MindFusion.Diagramming.Orientation.Horizontal
3. llayout.MultipleGraphsPlacement = MultipleGraphsPlacement.Vertical

This one exist but it doesn't allow the line type of "Polyline". It has only straight and cascading.

1. llayout.LinkType = LayeredLayoutLinkType.Polyline

Can these already be done in the Applet mode?
Thank you for your support.


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


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Layered Layout direction
Reply #27 - Jun 15th, 2009 at 7:30am
Print Post  
Setting 1&2 in applet mode should look like diagram.getRoutingOptions().setStartOrientation(...). You can pass the following values:

/**
* JDiagram should select a proper orientation.
*/
public static final int Auto = 0;

/**
* Specifies horizontal orientation.
*/
public static final int Horizontal = 1;

/**
* Specifies vertical orientation.
*/
public static final int Vertical = 2;

We'll try to port the other two properties to Java later this week.

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
choohj70
Junior Member
**
Offline


I love YaBB 1G - SP1!

Posts: 77
Joined: Sep 23rd, 2008
Re: Layered Layout direction
Reply #28 - Jun 29th, 2009 at 4:51pm
Print Post  
Stoyan,

I was wondering if you had a chance to port the other two properties.

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


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Layered Layout direction
Reply #29 - Jun 30th, 2009 at 3:21pm
Print Post  
Yes, you can find the updated version on the PM page.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1 [2] 3 
Send TopicPrint