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?