I'm sorry this feature to show grandSummary at the top instead of bottom is not supported.
With jQuery ( non - standard workaround to alter pqgrid view ), summary view can be moved above the header with the below code snippet, but it doesn't match your requirement.
complete: function(){
var $grid = this.widget();
$grid.find(".pq-grid-summary").detach().appendTo($grid.find(".pq-grid-top"));
//$(".pq-grid-summary").detach().insertAfter(".pq-header-outer");
},