1-) C# Devexpress Athena - bestfit yapma
1-) bestfit yapma -> autowidth -> false -> yaptıktan sonra -> her satır eklemenin altına yapıştır
gridView3.OptionsView.AllowHtmlDrawHeaders = true;
gridView3.Appearance.HeaderPanel.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
gridView3.BestFitColumns();
gridView3.MoveLast();
1-) C# Devexpress Athena - bestfit yapma olmazsa aşağıdaki gibi yap...
gridView_durum.MoveFirst();
gridView_durum.MoveLast();
private void gridView_durum_FocusedRowChanged(object sender, FocusedRowChangedEventArgs e)
{
gridView_durum.BestFitColumns();
}