I have the following property declaration in my xaml
<syncfusion:SfChart.SecondaryAxis>
<syncfusion:NumericalAxis Header="Crucible Angle(In Degrees)"
PlotOffset="20" ShowGridLines="True"
ShowTrackBallInfo="True"
Interval="5"
Minimum="0"
Maximum="95"
LabelFormat="0°"
LabelExtent="25"/>
</syncfusion:SfChart.SecondaryAxis>
and in the designer everything is good, the LabelFormat is displaying the degree symbol in the designer.
However it won't build, I get this error
MC3000: 'Invalid character in the given encoding. Line 53, position 61.' XML is not valid.
Line 53, position 61 is the ° symbol in the
LabelFormat="0°" from the xaml above.
How can I do this and avoid the error?