DataTable - Row Height

Thanks for this tip. Works like a charm. And if you want to distinguish between table
header and body you can even do that:

    css=[
        {"selector": ".dash-spreadsheet tr th", "rule": "height: 15px;"},  # set height of header
        {"selector": ".dash-spreadsheet tr td", "rule": "height: 75px;"},  # set height of body rows
    ]
2 Likes