How to horizontal rotation first column in dash datatable?

Hi all.
I would like to rotate the first column ,same as:


Please help me.
Thanks

Hello @phuonghao145,

You can do this through css:

Something like this:

.cell-table tr > td:first-of-type {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
}