//wpdatatables/source/class.float.wpdatacolumn.php
if ($numberFormat == 1) {
$formattedValue = number_format(
(float)$content,
$decimalPlaces,
',',
'.'
);
} else {
$formattedValue = number_format(
(float)$content,
$decimalPlaces
);
}