Hi, I have a quick question, how can I add more than one value for column_id within a if statement. For example, I like to style column 2, 6, and 7’s width; instead of writing 3 separate ifs with only the difference being the column_id, is it possible to do it within one if? Such as:
style_cell_conditional=[
{
'if': {'column_id': '2', '6', '7'},
'width': '60px'
}
],