If a min/max field is a floating point number (versus an integer), display as a floating point numbers from min to max.
Bonus points for using the precision of the min/max values (i.e., the number of digits after the decimal point) to determine the precision of the format. For example, if min is 0.0 an max is 10.0, display numnbers rounded to one decimal digit. If min is 0 an max is 10.000, display numnbers rounded to three decimal digits. Use the max precision if either min ir max. That said, precision of 1 decimal polint might be good enough.
In general, it would be nice to allow more formatting without using explicit formatters.