Hi there,
I'm using v28.2.5 of the controls and I'm having trouble styling the tooltip of the SfSlider. Specifically, although I CAN set the TextColor, StrokeThickness and Padding properties, I CANNOT seem to set the Stroke or Fill properties – everything stays in MAUI purple, making styling virtually impossible.
Am I doing something wrong? Here's a XAML snippet which demonstrates the issue.
<sliders:SfSlider.Tooltip>
<sliders:SliderTooltip
Fill="HotPink"
ShowAlways="True"
TextColor="White"
StrokeThickness="2"
Stroke="BlanchedAlmond"
Padding="10,8" />
</sliders:SfSlider.Tooltip>
Thanks in advance for your assistance.