Is there any option to turn off the display chip on the table header, or at least configurable?
You could target the CSS and set display none on those chips.
getMuiTheme = () => createMuiTheme({
overrides: {
MUIDataTableFilterList: {
chip: {
display: 'none'
}
}
}
})
...
return (
<MuiThemeProvider theme={this.getMuiTheme()}>
<MUIDataTable title={"ACME Employee list"} data={data} columns={columns} options={options} />
</MuiThemeProvider>
);
Thank you greg
Most helpful comment
You could target the CSS and set display none on those chips.