Chart Series Rollover Popup

Hi,

When I roll my mouse over the chart series data points, I don't see the popup with the label / value. Do I need to do anything special to make those appear?

<RadzenChart Style="width: 100%; height: 80%;">
   <RadzenAreaSeries Data=@installedByDate ValueProperty="Count" CategoryProperty="Week" Title="Installed Parts" Smooth=true Stroke="var(--rz-primary)" Fill="var(--rz-primary-lighter)">
     <RadzenMarkers Visible="true" MarkerType=MarkerType.Circle />
   </RadzenAreaSeries>
   <RadzenValueAxis>
     <RadzenGridLines Visible="true" />
   </RadzenValueAxis>
   <RadzenCategoryAxis Padding="40" Formatter=@(value => ((DateTime)value).ToString("MMMM d")) />
   <RadzenLegend Visible="false" />
</RadzenChart>

What could be causing them to not appear?

Thanks.
Mike

Hello korchev -

You were correct - I needed to adjust my project Startup.cs to use:

services.AddRadzenComponents();

instead of:

services.AddScoped<TooltipService>();

Also my MainLayout page needed to use:

<RadzenComponents @rendermode=RenderMode.InteractiveAuto />

instead of:

<RadzenTooltip />

My project was created back in 2021, so I will need to "re-scaffold" it at some point. I have heard you have such "starter" projects.

Thanks,
Mike