Profile menu is hidden behind the row in datagrid

Hello,
I have a grid on my page that uses a profile menu to create an action button. However, the menu is hidden behind the grid row. I tried the solution provided here, but unfortunately, it didn’t resolve the issue. Below is how I’m using it as a grid column. I also tested this with your online demos by adding the code in a web browser and running the example, but the menu still appears behind the grid row. Could you please help me resolve this?

<RadzenDataGridColumn Filterable="false" Sortable="false" Width="200px" TextAlign="TextAlign.Justify"
                                          Frozen="false">
                        <Template Context="payment">
                            <RadzenProfileMenu ShowIcon="false" >
                                <Template>
                                    <RadzenButton   ButtonStyle="ButtonStyle.Base" Variant="Variant.Text" Icon="more_vert"/>
                                </Template>
                                <ChildContent>
                                    <RadzenProfileMenuItem Text="Buttons" Path="buttons" Icon="account_circle"></RadzenProfileMenuItem>
                                    <RadzenProfileMenuItem Text="Menu" Path="menu" Icon="line_weight"></RadzenProfileMenuItem>
                                    <RadzenProfileMenuItem Text="FileInput" Path="fileinput" Icon="attach_file"></RadzenProfileMenuItem>
                                    <RadzenProfileMenuItem Text="Dialog" Path="dialog" Icon="perm_media"></RadzenProfileMenuItem>
                                    <RadzenProfileMenuItem Text="Notification" Path="notification" Icon="announcement"></RadzenProfileMenuItem>
                                </ChildContent>
                            </RadzenProfileMenu>
                        </Template>
                    </RadzenDataGridColumn>

We recommend using RadzenSplitButton in this case. The ProfileMenu is getting clipped by its parent table cells.