TMSFNCGrid formatting Floating Column

Hi,

I'm using a TMSFNCGrid component to display data.

I use it connecting with a TWebDataSource and a TTMSFNCGridDataBaseAdapter...

I get data and display in the grid with no problem, but in my data collection i have different types of data like: Date, Float, String, Integer, etc.

Form example, i have one column with data of Float type...

Then, in this columns i have numbers woth different long of decimal part. For example:

1000
1000.12
2000.123
10
10.12

Then in the grid i align to right and it see like this:

____1000
__1000.12
_2000.123
______10
____10.12

How can i apply a format with this columns and i can see like this ?

1000.000
1000.120
2000.123
__10.000
__10.120

Thanks