IS there a way to not show the comma in values?
i.e. 1000 instead of 1,000
You can change the 'Culture' of the NumericEditor.
For example:
<ig:XamNumericEditor x:Name="MyEditor" Culture="bg" />
The result in this case (if you set value: 1000) will be -> 1 000.
Hope this helps.
But then decimals are replaced with commas.
There has got to be another way?