Limit static graphs decimal numbers to show in visual console with data precision for reports - #1634
This commit is contained in:
parent
67d5280b33
commit
ef4c669523
|
@ -1608,7 +1608,7 @@ function visual_map_print_item($mode = "read", $layoutData,
|
||||||
if (!modules_is_boolean($layoutData['id_agente_modulo'])) {
|
if (!modules_is_boolean($layoutData['id_agente_modulo'])) {
|
||||||
$img_style_title .=
|
$img_style_title .=
|
||||||
" <br>" . __("Last value: ")
|
" <br>" . __("Last value: ")
|
||||||
. $value;
|
. remove_right_zeros(number_format($value, $config['graph_precision']));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue