TTeeXMLSource Y-axis values

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
rvc
Newbie
Newbie
Posts: 12
Joined: Mon Nov 14, 2011 12:00 am

TTeeXMLSource Y-axis values

Post by rvc » Tue Dec 27, 2011 8:43 pm

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

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TTeeXMLSource Y-axis values

Post by Yeray » Wed Dec 28, 2011 10:06 am

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:=',';
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply