Padding DataTable Numeric values with zeroes

Anyone have any tips for how to pad DataTable “numeric” types with zeroes? I have some floating point values and I’m using format=Format(precision=5) but then I’d like to make sure the displayed numbers remain aligned, so need to pad the right hand side with zeroes. There seems to be a padding keyword to the Format class, but I can’t seem to make it do anything useful.

You can convert to string. I’ve had this trailing 0 issue as well and that is how I solved it.