PMG 7.0-7 Custom Dashboard - 10 Top Receivers

Dear community,
is it a way to customize the values on the dashboard ?
currently you can only customize the timerange (by clicking on the gear symbol on top of the dashboard)
the number of receivers is not provided and defaults to 5
the code is in:
https://git.proxmox.com/?p=pmg-gui....a8ddeb97a4a7966578bbe33fdca41fc5e94ab;hb=HEAD

You can create an enhancement request over at https://bugzilla.proxmox.com - if enough users would like to see this change we will take this into account while prioritizing our todo list.

I hope this helps!
 
Code:
receivers: {
 276                 storeid: 'dash-receivers',
 277                 interval: 10000,
 278                 type: 'update',
 279                 autoStart: true,
 280                 autoDestroy: true,
 281                 proxy: {
 282                     type: 'proxmox',
 283                     url: '/api2/json/statistics/recentreceivers',
 284                     extraParams: {
 285                         hours: '{hours}',
 286                     },
 287                 },
 288                 fields: [
 289                     { type: 'integer', name: 'count' },
 290                     { type: 'string', name: 'receiver' },
 291                 ],
 292             },

So I need to investigate
Code:
url: '/api2/json/statistics/recentreceivers',
if I want to change the hard coded feature ?