Tooltip for Button in Blazor Button Component
26 Dec 20231 minute to read
Tooltip can be shown on Button hover and it can be achieved by title attribute.
@using Syncfusion.Blazor.Buttons
<SfButton Content="@Content" title="Primary Button" IsPrimary="true"></SfButton>
@code {
public string Content = "Button";
}