Hide Tree Grid Header in Blazor TreeGrid Component

17 Dec 20221 minute to read

The Tree Grid header can be hidden by applying the below styles to Tree Grid component.

<style>
    .e-treegrid .e-gridheader .e-columnheader {
        display: none;
    }
</style>

NOTE

If you want to hide the header for particular Tree Grid, then apply the above styles to that Tree Grid using the ID (#TreeGrid.e-treegrid .e-gridheader .e-columnheader) property value.

Hiding Header in Blazor TreeGrid