Radzen Stack component wrap option is not working

I am trying to use the Stack component as it comes closest to a CSS Flex solution, I'd like to wrap a number of wide items in a Z order instead for an N order (left to right instead of top to bottom first). When you create elements that would extend outside of the component and select "Wrap", I'd expect them to break onto a new line. Instead it keeps making the elements smaller or worse, places them outside of the component.

In fact the whole Wrap option does not seem to have any effect on the component.

I use Wrap: wrap and the following edits to the 4 items (larger width):

      <RadzenCard class="p-1 rz-background-color-info rz-color-on-info rz-text-align-center" style="height: 40px; width: 400px;">
          A
      </RadzenCard>

Hi @arne,

The following option works as expected:

<RadzenStack Wrap="FlexWrap.Wrap">

You are right that the component in the demo is not properly set up and does not take into account the Wrap option. The demo will be updated shortly.

Ah thanks for the reply, thought I was missing something or was lacking a decent flex solution.