Hello,
My XML contains values with point (.) as decimal separator. my PC uses colon (') as decilamseparator. this makes my PC think that value 22,000, which should be interpreted as 22, is interpreted as 22000. I tried setting Formatsettings.decimalseparator to point, which did not help.
What is the recommended way to make sure values are interpreted correctly?
Regards, Ronald
TTeeXMLSource Y-axis values
Re: TTeeXMLSource Y-axis values
Hi Ronald,
Try setting a different ThousandSeparator too. If 22,000 is taken as 22000 it's probably because the ThousandSeparator is ','. So you could try this:
Try setting a different ThousandSeparator too. If 22,000 is taken as 22000 it's probably because the ThousandSeparator is ','. So you could try this:
Code: Select all
ThousandSeparator:='.';
DecimalSeparator:=',';
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |