Welcome, Guest. Please login or register.
Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Paul

Pages: [1]
1
Discussion | Обсуждение / Re: Вопросы новичка
« on: September 08, 2024, 12:09:48 pm »
How to split data into columns vertically?
Have datasource with 5-10 items and want to split it to 2 columns verticaly:
1 4
2 5
3 6

But receive
1
2
3
4
5
6

columnFillDirection = Vertical

If I select VerticalUniform that recieve just:
4
5
6



2
Discussion | Обсуждение / Border thickness based on variable
« on: August 09, 2021, 09:27:27 pm »
Is it possible to change textitem border according variable value?
For example like:
if(dataset.border == 1)
{
  border-top = 1;
}
else
{
  border-top = 0;
}

Pages: [1]