We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Header columns in a bound grid

How do I change the header alignment for a bound grid ? The grid is bound to a a collection and I'm autosizing the columns after the collection is loaded. However this places the column headers in the center of the column.

1 Reply

CB Clay Burch Syncfusion Team September 3, 2002 05:41 PM UTC

In the current version, there is no style that you staticly set to affect the hedaer alignment. But you can handle the PrepareViewStyleInfo event and set the alignment there. private void gridDataBoundGrid1_PrepareViewStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs e) { if(e.ColIndex > 0 && e.RowIndex == 0) e.Style.HorizontalAlignment = GridHorizontalAlignment.Left; }

Loader.
Live Chat Icon For mobile
Up arrow icon