Rkile
09-30-2022Cloud Apps
Text Box Orientation
Hello,
I am looking to change a Text Box's Orientation to show the text as vertical instead of Horizontal. Is this accomplishable via Blox?
Thanks,
Ryan
Hello,
I am looking to change a Text Box's Orientation to show the text as vertical instead of Horizontal. Is this accomplishable via Blox?
Thanks,
Ryan
That looks like what I am looking for! Thank you. Just add in the:
"style": {
"writing-mode": 'tb-rl"
}
code?
How would I got about utilizing this but instead of utilizing a panel just type in the text? Also looking to align in the center and middle of the widget.
Here is a sample script:
{
"style": "",
"script": "",
"title": "",
"showCarousel": true,
"body": [
{
"spacing": "medium",
"type": "Container",
"items": [
{
"spacing": "small",
"type": "TextBlock",
"text": "Sample text",
"color": "default",
"horizontalAlignment": "center",
"style": {
"transform": "rotate(-90deg)"
}
}
]
}
],
"actions": []
}
Result:
-Hari