$value ) {
$topten += $value;
$count ++;
if ( $count > 9 ) {
break;
}
$topten_browser_name[] = "'" . $key . "'";
$topten_browser_value[] = $value;
$topten_browser_color[] = wp_statistics_generate_rgba_color( $count, '0.4' );
}
if ( $topten_browser_name and $topten_browser_value ) {
$topten_browser_name[] = "'" . __( 'Other', 'wp-statistics' ) . "'";
$topten_browser_value[] = ( $total - $topten );
$topten_browser_color[] = wp_statistics_generate_rgba_color( 10, '0.4' );
}
?>