Hi,
How can I set the label position of column to left without setting
band..RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
thanks
You really cannot. The RowLayoutLabelPosition only applies to the columns when in RowLayout mode. So you either have to use RowLayoutStyle.ColumnLayout, or RowLayoutStyle.GroupLayout. They are essentially the same for this purpose.
Another option might be to use CardView (set CardView on the band to True). This will place the labels on the left, but it also makes the rows display as cards in a horizontal view, as opposed to the normal rows stacked vertically.