Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Cannot Change RowHeader Height (Read 3119 times)
jlj30
Full Member
***
Offline


I love YaBB 1G - SP1!

Posts: 183
Joined: Sep 4th, 2011
Cannot Change RowHeader Height
Apr 11th, 2014 at 12:58am
Print Post  
Hi,

I'm surprised I didn't notice this sooner, but it seems that changing the height of a particular swim lane by changing the rowheader height property has no effect.

Code (C++)
Select All
grid.RowHeaders.Add(new Header("Inter/Intra Process"));
		Header swim1Header = grid.FindRow("Inter/Intra Process");
		swim1Header.RotateTitle = true;
		swim1Header.TitleFormat.Alignment = StringAlignment.Center;
		swim1Header.TitleFormat.LineAlignment = StringAlignment.Center;
		swim1Header.TitleFont = new Font("Arial", 12, System.Drawing.FontStyle.Bold);
		swim1Header.TitleColor = System.Drawing.ColorTranslator.FromHtml("#0000FF");
		swim1Header.Style.BackgroundBrush = new MindFusion.Drawing.SolidBrush(Color.LightYellow);
		swim1Header.Height = 150; // Was 30
		swim1Header.Width = 20; 



Is it possible that the SwimlaneLayout is automatically sizing the lanes?

If so, how do I go about setting the height of individual swim lanes?

Thanks in advance.

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


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Cannot Change RowHeader Height
Reply #1 - Apr 11th, 2014 at 6:25am
Print Post  
Hi,

Set SwimlaneLayout.KeepLaneSizes = true;

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
jlj30
Full Member
***
Offline


I love YaBB 1G - SP1!

Posts: 183
Joined: Sep 4th, 2011
Re: Cannot Change RowHeader Height
Reply #2 - Apr 11th, 2014 at 12:27pm
Print Post  
Hi,

That did it.
Thanks

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