Vertical display header text on Powertable

Hello,

How do I vertical display my header text on powertable in ignition perspective?

I tried to rotate my text and adjust my width to the width of text height and used strict width -> True.
However, it seemed like my text got clipped as the result of this. Any workaround for this?

Properties:

Powertable display:

Thanks,

Try this:
columns.0.header.style.writingMode : vertical-lr
columns.0.header.style.transform : rotate(180deg)

Strictwidth and width only take effect if you have set columns.0.field property to the column name in the datasource.

It works! I am missing that writingMode property...

I do need to specify each column name to manipulate each column and reorder.
But yeah, thanks for the response.

Good.
Don't forget to hit the solution link on my answer to mark your question as solved.