Rotated Text

Hello,
Using the example https://snippet.webix.com/c16dmj3u as reference, is there a way to have the “buttons” on the left hand side (“One” and “Two”) present their labels rotated 90’ counter clockwise, so the text is in essence vertical, in the Pro edition? In a similar manner to the “rotated header/footer” referenced on https://docs.webix.com/datatable__headers_footers.html
Thanks for any pointers
-SrvrSide

Hello,

Yeap, datatable’s header/footer has such feature asrotate:true. Concerning the question about labels in menu which are rotated, so you can use css (writing-mode property)

Please check the example: https://snippet.webix.com/8ebodmb2

To define the height/width for list items please use type property

view:"list",
  ...
 type:{
       width:60,
       height:40
      },
...

Thank you very much Nastja, your suggestion was spot on. I ended up going with the following to have the text the other way around.
text-align: right; writing-mode: vertical-rl; transform: rotate(180deg);
Thanks again
-SrvrSide