Bars just show all forums user has been participated in. If the amount seems to be big, it means you have a lot of forums, and basically, if you limit that chart, it won't be useful and objective anymore. So I suppose for you it would be better to remove it at all, put
define('NOT_SHOW_LATEST_REPLIES');
under bb_plugins.php or setup_options.php.
To limit the amount of bars, you need to modify bb_func_usernfo.php file, introducing new limiting variable in /* Activities */ block. For example you introduce:
$limitBars=5;
$currentLimit=0;
Then in the cycle which begins as
foreach($forums as $k=>$val){
...
...
$currentLimit++;
if($currentLimit>$limitBars) break;
}
you need to refer to that war. Example is shown above.