Hi Mohammed,
With the input you provided, we would like to inform you that your requirement has been successfully achieved using the LabelCreated event to customize the label text. The code snippet and image are provided below.
<slider:SfSlider ShowLabels="True" Minimum="0" Maximum="10" Value="5" ShowTicks="True" LabelCreated="SfSlider_LabelCreated"/> |
private void SfSlider_LabelCreated(object sender, SliderLabelCreatedEventArgs e) { if (sender is SfSlider minSlider) { if (minSlider.Minimum.ToString() == e.Text) { e.Text = "Very Slow"; } if (minSlider.Maximum.ToString() == e.Text) { e.Text = "Very Fast"; } } } |

We hope this solution aligns with your needs. If you have any more questions or require further assistance, please feel free to ask.
Regards,
Nitheeshkumar.