Hi,
I'm having problems showing the graph on my Dashboard. The figures comes out, but the bar don't.
I'm running SugarCRM 6.0.0 (Build 3905). I have checked and applied fix from Bug Number: 38622 but still it's not showing.
Code:
function formatNumber($number, $decimals= null, $decimal_point= null, $thousands_sep= null){
//BUG
/****
global $locale;
if(is_null($decimals)) {
$decimals = $locale->getPrecision();
}
$seps = get_number_seperators();
$thousands_sep = $seps[0];
$decimal_point = $seps[1];
****/
//BUG
return number_format($number, $decimals, $decimal_point, $thousands_sep);
}
Anyone have any idea how to fix this? Thank you.