Hello, I have an Raw data table with column filters enabled, but a column that is of type ATTRIBUTE by default has a slicer as a column filter. Is it possible to make the container of this column filter wider?
Raw data table column filter width
emoya
#2
Yes, when you set the column filter you should also set some additional properties like this:
.set('columnFilters', [
{
field: 'your_column',
component: 'slicer' ,
props: {
width: 400,
}
},
{ field: 'other_field' },
...
])