How to show ToolTips in RadzenGrid?

To whom it may concern,
I can't show the tooltip in the RadzenGrid.
However it can work well in the example of your website.
Could you help me?

  1. The below example can work well.
    Free Blazor Components | 60+ controls by Radzen

My code can't show the tooltip.
show error

@page "/counter"

@using Radzen
@using Radzen.Blazor

<RadzenGrid
  Data="@RowBindings"
  TItem="RowBinding"
  ColumnWidth="100px">

<Columns>
<RadzenGridColumn TItem="RowBinding" Property="" Title="1" />
<RadzenGridColumn TItem="RowBinding" Property="" Title="2" />
<RadzenGridColumn TItem="RowBinding" Property="aa" Title="aa" />
</Columns>
</RadzenGrid>

@code {

public class RowBinding
{
public string aa { get; set; }
}

private List<RowBinding> RowBindings = new List<RowBinding>()
{
new RowBinding(){ aa = "Hello123456789123456789123456789123456789"}
};
}

Best regards,
Brian

That demo is using the newer (and recommended) RadzenDataGrid. You seem to be using the older RadzenGrid. Try updating your code.

Good day, how to show tooltip in another component not using @ref
Many component in code generation, elementref not using.
Best regards.