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