Page 1 of 1

TMapSeries axis labels

Posted: Tue Oct 11, 2022 3:50 am
by 16594053
I have a TMapSeries and the axis labels are being displayed as dates. For example, an X coordinate like 548000 is ending up like 11/01/3355. How can I get it to just display "548,000"?

Re: TMapSeries axis labels

Posted: Mon Oct 17, 2022 9:13 am
by yeray
Hello,

You may accidentally have set your series x values to be datetime. You can change it as follows:

Code: Select all

Series1.XValues.DateTime:=False;