Hi,
I am using RadRichTextBox and filling it with XAML Data Provider. For text construction I am using "Segoe UI" font of size 12. When I am two lines separated by Enviornement.NewLine it looks like the line spacing is more than 1. I tried to decrease the line spacing by LineSpacingType as Exact and LineSpacing to 0.75. Due to this text appearance changed and not readable. Following is the example.
Paragraph title = new Paragraph();
title.LineSpacingType = LineSpacingType.Exact;
title.LineSpacing = 0.75;
I used SetupDocument method of XamlDataProvider to decrease the spacing. But no luck.
e.Document.LineSpacing =1;
Note: I am using latest version of WPF Controls of Telerik.
Please Help.