How can I make widget components render on top of UMG Widgets

Hello.
I’ve got a major problem with UI ZOrder and I can’t seem to find a solution (if there is any).

I add a User widget to the viewport in Game Mode’s BeginPlay.

MyUserWidget = CreateWidget<UUserWidget>(PlayerController, .....);
MyUserWidget ->AddToViewport(-200);

Then I spawn a few actors with WidgetComponent that are set to Screen.
No matter what I’ve tried I cannot make the widget component appear on top of MyUserWidget.
I’ve been checking online posts for the past few hours but I haven’t been able to find a solution.
Is it possible to make the widget component appear on top of UMG widget ?

Thank you for your time.
P