
Jan
Code: Select all
if ($rightDisplay == 1) {
if ($sum > 0) {
$num = (int)$value->hits; // WP withnumber of downloads
$per = (int)$value->hits / (int)$sum * 100;
$per = round((float)$per,2);
if ($display_per == 1){
$chlArray[] = $value->title .'('.$per.'%)';
} else {
$chlArray[] = $value->title . '('.$num.')'; // WP added number
}
$chdArray[] = $per;
$chcoArray[]= $colors[$i];
} else {
$chlArray[] = $value->title;
$chdArray[] = 0;//$per;
$chcoArray[]= $colors[$i];
}
if ($i == 23) {
$i = 0;
}
$i++;
}