Thanks for the quick response.
No doesn't work:
InvalidOperationException: Object of type 'Radzen.Blazor.RadzenDialog' does not have a property matching the name '@rendermode'.
Added RadzenChartTooltip to the mainlayout and now it's working.
@inherits LayoutComponentBase
<RadzenTooltip />
<RadzenChartTooltip />
<PageTitle>SessyWeb</PageTitle>
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<main>
<div class="top-row px-4">
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
</div>
<article class="content px-4">
@Body
</article>
</main>
</div>