Hello community!!!
I have a RadLabel with HTML-like formatting text and TextWarp property to true.
My_radLabel.Text = "<html>This is a text <b>example</b> this is a text <b>example</b> this is a text <b>example</b> this is a text <b>example</b>.";
This is a text example this is a text example ←
this is a text example this is a text example.
↑
Else, if I remove the <b> tag where the text is warping it looks okay:
My_radLabel.Text = "<html>This is a text <b>example</b> this is a text example this is a text <b>example</b> this is a text <b>example</b>.";
This is a text example this is a text example ← this is a text example this is a text example.
↑
Any idea why is this happening?
Thank you for your time!!!