I'm working on a project where I need to add text to a column with a fixed height and width. So far, I've successfully implemented a fixed width, but I'm struggling with setting a fixed height for the column.
Below is the code I've been using:
{
columns:
[
{
width: 200,
height: 300, //this line is causing issues
text: someText
}
],
absolutePosition:
{
x: 150,
y: 75
}
},
Any tips on how to achieve this goal?