Datagrid footer

Is there any way to display only the datagrid footer? I want to hide the detail rows and show only the column footers.

This can be done by hiding the tbody (table body) element with CSS. Assign a class to your data grid (via custom attribute).

Then add this to the styles.css file of your app:

.my-grid tbody {
  display: none;
}