Page 1 of 1

TTeeXMLSource Y-axis values

Posted: Tue Dec 27, 2011 8:43 pm
by 16560757
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

Re: TTeeXMLSource Y-axis values

Posted: Wed Dec 28, 2011 10:06 am
by yeray
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:

Code: Select all

  ThousandSeparator:='.';
  DecimalSeparator:=',';