V2.1 - how to hide the datagrid header

Is there a way to control the datagrid header?
At least to hide it?

KR
Roland

Hi,

DataGrid header can be hidden using styles, e.g.:

<dataGrid id="usersDataGrid"
          ...
          classNames="no-header">

Styles implementation:

vaadin-grid.no-header::part(header-cell) {
    display: none;
}

Could you please be more specific what do you mean by control?

Regards,
Gleb