Hello.
I have updated Radzen to the lastest version avaliable recently but they are not visible. I tried fixing the overlay, but still nothing is showing up. I consulted other topics here but I can’t seem to find a solution.
<RadzenColumn Size="4"> <RadzenCard class="rz-shadow-2"> <h3>@ISServices.GetTranslation("CSLAB_DASHBOARD", 4)</h3> <RadzenChart ColorScheme="ColorScheme.Pastel" style="width: 100%; height: 300px; overflow: visible;" Visible="@(getStatDataFormulaStatus != null && getStatDataFormulaStatus.Count() > 0)"> <ChildContent> <RadzenChartTooltipOptions Visible="true" /> <RadzenPieSeries Data=@getStatDataFormulaStatus CategoryProperty="CategoryKey" ValueProperty="Value" Title="Nr."> <TooltipTemplate Context="data"> <div><span>@data.CategoryKey</span><br />Nr. <span>@data.Value</span></div> </TooltipTemplate> </RadzenPieSeries> <RadzenLegend Position="LegendPosition.Bottom" /> </ChildContent> </RadzenChart> <RadzenCard Visible=@(getStatDataFormulaStatus == null || getStatDataFormulaStatus.Count() <= 0) style="margin: 32px auto; width: 80%"> <h3 style="margin: 32px 0">No data</h3> </RadzenCard> </RadzenCard> </RadzenColumn>
I also added some style to fix, but nothing is working.
.home-dashboard .rz-card,
.home-dashboard .rz-content,
.home-dashboard .rz-content-container {
overflow: visible;
}
.home-dashboard .rz-chart-tooltip {
z-index: 9999;
pointer-events: none;
}
What to do?