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
620
how set autosize in a column where the sum cell is more large
posted

Hi,

i have this prob, i want set autosize prop in a wingrid column (its easy), but if the sum cell is more large i cannot see all content.

I try to found an autosize prop for the sum/average cells, but i dont found it.

tks

Parents
No Data
Reply
  • 29105
    Offline posted

    Hello,

    Please try calling PerformAutoResize on the column and specifiy that you want "AllRowsInBand".

    This will take in account for the summary cell and all additional cells in within the column. 


    ultraGrid1.DisplayLayout.Bands[0].Columns["A"].PerformAutoResize(PerformAutoSizeType.AllRowsInBand);

     

    Let me know if you have any questions.

Children