Hello,
I am using a grid with Groups and Columns. It's bound to a datasource, so the header and group header text is not known at design time. When the header text is wrapped, the column headers automatically adjust the height to show multiline text. The group headers are multiline but the height is not correctly adjusted. Is there a setting that allows the group headers to readjust their height to display multiline text. I have attached a screen clipping that shows the header heights.
Thanks for any suggestions.
Wendy
Hello,
I am just checking about the progress of this issue. Let me know If you need any further assistance on this issue?
Thank you for using Infragistics Components.
Setting the GroupHeaderLines programmatically works.
In the implementation, I listen to the SubObjectPropChanged event tracking column width and column hidden events. Likely it would also work to handle afterColPosChanged and afterGroupPosChanged events. Then in the event handler loop through all the groups to determine the required number of group header lines and use the calculated value to set the GroupHeaderLines property.
Thanks for the info.