I can not varify what version it is because I do not know how
After performing svn update the last line in the update dialog contains the revision number.
The important point is to make sure you are using trunk and not fixes branch.
here I can say I surely do not understand. How can a date being represented as a string be converted to double in order to get addxy to work without using strtodatetime which is what you are saying is at fault.
What I am saying is that to learn how to control format
of the parsed date you need to read documentation on StrToDateTime
(or StrToDate which seems sufficient in your case).
Setting "datetimeintervalchartsource1.DateTimeFormat" does not have any
influence on StrToDate.
As for month names, they are indeed not supported by StrToDate --
so your options are to either parse such dates yourself or ask
FPC developers to improve StrToDate.
also if i'm plotting dates and I have a point for 1/1/2012 then the next point isn't until 3/1/2010 the axis fills in the DateTimeIntervalChartSource1 with dates for 1/2/2013 when I need it to not display that date.
If you only want to hide the axis mark, you can do this
from OnGetMarkText event handler.
If, however, you want to create truly non-linear timeline, then it is more complex.
Basically, you can either abandon DateTimeIntervalChartSource and format
axis marks yourself, or implement custom axis transformation which
"compresses" weekend intervals to near-zero width.