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
36
cells allignment got disturb after applying header.fixed on grid
posted

Hi,

i have a grid in which i am showing the days as columns of the grid, like 60 days, but here i want to freeze the first 5 columns of the grid, and successfully did it by using the code :

grid.DisplayLayout.UseFixedHeaders = true;

 case "Name":
                    oColumn.Width = 120;
                    oColumn.Move(1);
                    oColumn.Header.Fixed = true;
                    break;

 

But the other cells alignment got disturb after that,

 

Any suggestion?