AD
Administrator
Syncfusion Team
October 2, 2002 05:11 PM UTC
Here code that displays 2 decimal places. Make sure you also set the CellValueType for your cells.
this.gridControl1[1,1].CellValueType = typeof(double);
this.gridControl1[1,1].CellValue = 1.1d;
this.gridControl1[1,1].Format = "F2";