1
I’m generating some graphics using Modern UI Metro Chart, but in one of the graphs the number would need to be shown with mile separator.
Researching I found this discussion: Add Thousand separator and tried to make the change but unsuccessfully.
I tried the change below:
<Style x:Key="NumberStyle" TargetType="TextBlock" >
<Setter Property="TextAlignment" Value="Center" />
<Setter Property="FontWeight" Value="Bold" />
<Setter Property="Margin" Value="2 0 2 0" />
<Setter Property="Opacity" Value="0.75" />
<Setter Property="Text" Value="{Binding StringFormat=N}" />
</Style>