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
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.
tks for answer, i just try it but the sum cells not are included in this check, i can see all datas, but the grandsum rows data are not included. I cannot see all info but only a part with "..."
Perfect, works!!!!
tks a lot, i lose a lot of days trying to solve it.
Are you by any chance using the group-by box? You can try calling PerformAutoSize from DisplayLayout instead; perhaps the wrong column is being auto-sized. I also attached a sample. Could you please modify it so that I can investigate the behavior you're seeing?