Dash datatable hide header

Hi,

Is there a way for datatable headers to be zero or set to height of 0?

Thanks
dtcb

Yes, there should be. You can do it with CSS. Inspect the DataTabel in your browser and find out the class of the header. In CSS adjust the height. You can basically do this with anything you want to adjust.

.dash-header{
height:0;
}

This should do it.