I use the code below to change the display format of one column so the decimal only display two numbers after the dot, but it didn't work. I also use the design models to set the format property of one column, again, it didn't work. Is there any reason?
ultraGridZYYWSR.DisplayLayout.Bands[0].Columns["percent"].Format = "##0.###";
Hi there,
use the following:
ultraGridZYYWSR.DisplayLayout.Bands[0].Columns["percent"].Format ="#,#0.#0";
Hope that helped
Nassos
reyzidis said: ultraGridZYYWSR.DisplayLayout.Bands[0].Columns["percent"].Format ="#,#0.#0";
this seems didn't work too.