You can do this in a customization. Use the customization wizard to bind the the Load event of the dashboard:
private void MainController_Load(object sender, EventArgs args)
{
// Add Event Handler Code
EpiUltraGrid eug = (EpiUltraGrid)csm.GetNativeControlReference("YourEpiGuid");
eug.DisplayLayout.Override.SummaryDisplayArea = SummaryDisplayAreas.Top;
}
Get ‘YourEpiGuid’ from the property window of the grid in question.
You will need to add the following using statement:
using Infragistics.Win.UltraWinGrid;