Hierarchy report

edited 6:14AM in FastReport .NET
Hi,
I can decide which columns should move to right and which stay fixed?

Thanks

Comments

  • edited 6:14AM
    Hello,

    The whole band with all its objects is moved to the right, you cannot change this behavior.
  • edited 6:14AM
    You may use script code to fix the object at its position. Use band's AfterLayout event to do this:
        private void Data1_AfterLayout(object sender, EventArgs e)
        {
          Text2.Left -= Data1.Left;
        }
    
  • edited 6:14AM
    Wonderful >
  • edited 6:14AM
    I will add the Anchor support in the next build, so you will able to do what you need without using a script.

Leave a Comment