Extra Vertical and Horizontal scroll bar is appearing on Infragistics grid
Hello Priyanka,
As far as I understand you, you have tried Mike`s suggestion and it is not works for you. Can you please let me know if the grid is into a container like Panel component? Are you abele to scroll UltraGrid Rows with both vertical scrollbars? Have you tried to isolate this in a separate sample?
I am waiting for your response.
I am checking about the progress of this issue.
Please let us know if you need any further assistance.
Thank you for using Infragistics Components!
You have probably inadvertently added a ColScrollRegion or RowScrollRegion. Just drag the splitter all the way to the top or left to remove it.
You can also remove it in code:
this.ultraGrid1.DisplayLayout.RowScrollRegions.Clear();
this.ultraGrid1.DisplayLayout.ColScrollRegions.Clear();
You can turn off the ability to add scroll regions by setting:
this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;