I am using a grid for my project, and the final data row is cut off by the aggregate sum row. Is there anyway to prevent this? The only workaround I have found is to zoom out on the browser window, but this is not ideal. I have set the scrollmode to ‘logical’ in the hopes that this may solve the issue, but the scroll bar still does not allow to scroll down any further after this change.

$("#jqxgrid").jqxGrid({
theme: 'energyblue',
width: '100%',
height: '90%',
scrollmode: 'logical',
source: dataAdapter,
autoshowfiltericon: true,
columnsresize: true,
showfilterrow: true,
filterable: true,
enabletooltips: true,
showstatusbar: true,
showaggregates: true,
columns: Columns,
showtoolbar: false
});