Skip to content

Commit

Permalink
Shared tooltips do not work in some cases.
Browse files Browse the repository at this point in the history
  • Loading branch information
akorchev committed Sep 1, 2024
1 parent d4dfc9b commit 6394241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Radzen.Blazor/CartesianSeries.cs
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ public virtual RenderFragment RenderSharedTooltipItem(object category)
{
return builder =>
{
var item = Items.FirstOrDefault(i => PropertyAccess.GetValue(i, CategoryProperty) == category);
var item = Items.FirstOrDefault(i => object.Equals(PropertyAccess.GetValue(i, CategoryProperty), category));
if (item != null)
{
Expand Down

0 comments on commit 6394241

Please sign in to comment.