I’m experiencing a problem with resizing components when the screen loads. Sometimes, my component expands correctly to the flex container’s dimensions, but other times it remains shrunk. Interestingly, if I resize the window even by just 1 pixel, the layout corrects itself immediately.
I suspect this might be caused by a rendering race condition. Does anyone know a reliable fix or workaround for this issue?
You may try use redundant width for the graph

1 Like
I tried, but without success. I noticed that this issue started after wrapping it in a FlexContainer.
I don´t know what is it about, you may try unwrap it or wrap it in other type of conaitner as column container
1 Like
Is it in a popup? Popups definitely have some resizing issues
1 Like
It wasn’t a popup screen. I had encountered a similar issue with popups before — as I recall, we discussed it, and it’s a reported bug. I managed to work around that problem by using an embedded view. Since it loads in a cascading manner, the embedded view loads with an already established width, and everything displays correctly. Thanks for your interest in the topic.
Solved by using an embedded view
3 Likes