Dear
I want to have a thousand separator for the NumericalAxis (so "5000" should become "5 000", "1234567" should become "1 234 567")
The example from your demo code "$####" is kind of working because it only adds a dolar sign before the number.
However, the default formats that do work on C# doesn't seem to have any impact on the axis labels:
Attempt 1
<chart:NumericalAxis.LabelStyle>
<chart:ChartAxisLabelStyle LabelFormat="0:n0" />
</chart:NumericalAxis.LabelStyle>
Attempt 2
<chart:NumericalAxis.LabelStyle>
<chart:ChartAxisLabelStyle LabelFormat="{0:n0}" />
</chart:NumericalAxis.LabelStyle>
Can you please provide me an example?
Kind regards