The problem is: how? what properties should be modified in object inspector?
First, is you do not already, you have to use recent svn version.
Using it, you can look at components/tachart/demo/axis folder for a sample project.
You should use "ListChartSource1.DataPoints.Add", the items seem seperated by a pipe symbol.
Well, I really should write some documentation sometime...
Anyway,
DataPoints property is mainly intended to allow design-time editing of
list source data.
If you are adding data at run-time, it is more efficient and convenient to
use
TListChartSource.Add method:
ListChartSource1.Add(i, i, clTAChart, formatdatetime('yyyymmdd',dateaxis));
Also, if you have many data points and want to generate them on-the-fly instead of
storing inside of the source, you can use
TUserDefinedChartSource.