I could not find a way to get vertical labels in a Roassal visualization. Is there a way? Or a general way to rotate elements?

I could not find a way to get vertical labels in a Roassal visualization. Is there a way? Or a general way to rotate elements?

Alexandre Bergel
On
Currently, Roassal does not support such a feature. However you can get something close to.
| view |
view := ROView new.
-15 to: 10 do: [ :i |
view add: ((ROLabel verticalText interlineSpace: i) elementOn: 'hello world').
].
ROHorizontalLineLayout on: view elements.
view open
In Roassal 1.422
Copyright © 2021 Jogjafile Inc.
The new version, Roassal2, does supports rotated labels. In the case of the example above, now you can do:
You will get:
Another example:
You will have:
I hope it helps :-)