Hi,
the same data bound to Label, one without FormattedString and the Other with FormattedString respectively
when updating the Data in code behind, the Label with FormattedString not updating, is this intended ?
data update
data not updating when it changed programmatically (in code behind)

update the data in code behind
XAML
//...
<Label>
<Label.FormattedText>
<FormattedString>
<Span Text="MyData : " TextColor="Blue"/>
<Span Text="{Binding Data}"/>
</FormattedString>
</Label.FormattedText>
</Label>
<Label Text={Binding Data}/>
//...
default binding mode for Span.Text is OneTime. use {Binding Data, Mode=OneWay}
if that doesn't fix it, please reopen
Most helpful comment
default binding mode for Span.Text is
OneTime. use{Binding Data, Mode=OneWay}if that doesn't fix it, please reopen