Hierarchy report

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

Thanks

Comments

  • edited 8:54AM
    Hello,

    The whole band with all its objects is moved to the right, you cannot change this behavior.
  • edited 8:54AM
    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 8:54AM
    Wonderful >
  • edited 8:54AM
    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

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.