Enum TooltipPlacement
Defines the placement options for tooltips on the Slider component.
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum TooltipPlacement
Remarks
The TooltipPlacement enum controls where tooltips are positioned relative to the slider handle. The placement is relative to the slider's orientation and affects the tooltip's visibility and user experience.
Examples
<SfSlider TValue="int" Value="50">
<SliderTooltip IsVisible="true" Placement="TooltipPlacement.Before" ShowOn="TooltipShowOn.Hover">
</SliderTooltip>
</SfSlider>
Fields
| Name | Description |
|---|---|
| After | Positions the tooltip after the slider handle. |
| Before | Positions the tooltip before the slider handle. |