RadzenSeriesValueLine tooltip

Radzen: 5.2.5 working
Radzen: 5.5.5 not working

The RadzenSeriesValueLine onhover tooltip is not working anymore. It worked with the following code. I used also the TooltipTemplate within the RadzenColumnSeries tag, it also not working. Any suggestions how to fix?

Can you reproduce the problem in our online demos?

There was a change in 5.5.x which refactored the chart tooltips to use RadzenTooltip. This requires the proper registration of all services in program startup.

1 Like

RadzenTooltip /> in the mainlayout was the dealbreaker. I have replaced it with <RadzenComponents @rendermode="InteractiveServer"/>. and now it works. Thnx

Looking for the solution for the disappearing chart tooltip.
Followed the proper registration instructions.

Added builder.Services.AddRadzenComponents(); to Program.cs, but when I try to add <RadzenComponents @rendermode="InteractiveServer"/> to Mainlayout.razor it says:
error CS0103: The name 'InteractiveServer' does not exist in the current context

Missing something else ? These are the first lines in Mainlayout.razor:

This means that your app does not support render modes (probably using an older Blazor version). Use it without it. Also remove RadzenDialog, RadzenNotfication and RadzenContextMenu - they are all rendered by RadzenComponents.

If I remove the RadzenDialog, RadzenTooltip, RadzenNotfication and RadzenContextMenu from Mainlayout.razor, they disappear from the app, dialogs not opening, regular tooltips not showing, etc. Chart tooltips are not showing either way.

Should I upgrade the Radzen version ? I think I have 6.2.4

<PackageReference Include="Radzen.Blazor" Version="6.2.4" />

Hi @PMart,

I suggest checking the getting started instructions for your target .NET and Blazor version.

1 Like