Workaround: explicitly set the font size of the spans in the heading paragraphs
foreach (Section section in this.radRichTextEditor1.Document.Sections)
{
foreach (Block block in section.Blocks)
{
Paragraph p = block as Paragraph;
if (p != null && p.StyleName == "Heading1")
{
foreach (var item in p.Inlines)
{
Span s = item as Span;
if (s!= null)
{
s.FontSize = p.FontSize;
}
}
}
}
}