Height of container fit to page height in Ignition Perspective

Hello!

Is it posible to fit the height of a container to the height of the avaliable space in the page with props?

Use a flex container and set position.grow : 1.

Flex grow

1 Like

Note that if you have two flex containers you can set a proportional grow.

FlexContainer_0 with position.grow : 1' FlexContainer_1 with position.grow : 2.5'

Both containers will grow but FlexContainer_1 will grow at 2.5 times the rate of FlexContainer_0.

2 Likes

Ok, thanks! I prefer the column container for position control but I will try this one also when needed. Cheers