Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
550
Group header cut off after resizing width of columns underneath
posted

Hello,

after resizing the width of columns, which are added to a certain group, the header of the group gets cut off  :-(

The resizing is done programmatically with:
     columnsIdea.PerformAutoResize(PerformAutoSizeType.AllRowsInBand, true);
and works fine.

But now, the group header shrinks as well and the caption is cut off.

How can I avoid this behaviour?

Thanks for your help!

Parents
  • 469350
    Verified Answer
    Offline posted

    The group width is the sum of the widths of the columns in that group. So if you make the columns too small, the group will get smaller.

    The easiest thing to do would probably be to add up the widths of the columns in the group after you perform the resize on them. Then if the total is too small, add a little extra width to one column to make the group big enough. Or, maybe distribute the extra space amongst all of the columns.  

Reply Children