Data precision... (Fixed a simple value)

This commit is contained in:
Arturo Gonzalez 2016-10-18 16:48:57 +02:00
parent 3b7cad9654
commit a2f9b85970
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ function flot_custom_pie_chart ($flash_charts, $graph_values,
else if ($value['value'] > 1000)
$legendvalue = sprintf("%sK", number_format($value['value'] / 1000, $config['graph_precision']));
else
$legendvalue = $value['value'];
$legendvalue = number_format($value['value'], $config['graph_precision']);
}
else
$legendvalue = __('No data');