Could someone please help with the following. I have a Telerik Reporting table in the groupHeader section of an exhibit. That being said I have a requirement where I need to hide one of the columns (depending on a Boolean test) and then resize the column next to it to the width of both columns to take up the space. ie: if Columns 1 & 2 width = .6 and If I hide column 2, increase the size of column 1 to 1.0R. I have added the following code to the New() method of the report but again I can only hide the column. For some reason the width (even after my line to resize it) stays at .06.
tblTest.ColumnGroups(2).Visible = False
tblTest.Body.Columns(1).Width = Telerik.Reporting.Drawing.Unit.Inch(1.0R)
If anyone could help with this issue I would be very appreciative.
Thank You in advance.