Hi Sorin,
Thanks for contacting Syncfusion support.
We checked your reported issue with Blazor Tooltip position in latest version(19.3.0.43). To overcome this scenario, we suggest you to set WindowCollision property as true for Tooltip.
This property is used to set the collision target element as page viewport (window) or Tooltip element, when using the target. If this property is enabled, the Tooltip will perform the collision calculation between the target elements and viewport(window) instead of Tooltip element.
Refer to the following code.
<SfTooltip ID="Tooltip" Target="#btn" Content="@content" Position="Position.TopCenter" WindowCollision="true">
<SfButton ID="btn" Content="Show Tooltip"></SfButton>
</SfTooltip>
@code
{
string content = "Lets go green & Save Earth !!";
} |
We have attached a sample for your reference in the following link.
Please get back to us if you need further assistance.
Regards,
Keerthana R.