I use a Tchart to display Measurement Data (each Minute) from different sources using LineSeries.
All series using just one X-Axis displaying data over the time from times between 0:00 to 24:00.

I want to Export this Data to one Excel File.
I've done it using the:
TSeriesDataXLS.Create(Chart1,nil)...
method.
Now the problems:
1. Is it possible only to export the active series or some selected series?
I just found solutions for one or all series. But If I use all - it exports
also the inactive series...
2. the exported file contains allway pairs of X and Y. (X,Y,X,Y,...)
Is it possibe to export only one X (timebase) like X, y1, y2, y3...
3. I managed to export the legends Title using that example - but how do I do it for ONE x-Axis (if possible)?
4. How can I export the X-Axis Data as DateTime and not as real?
Thanks in advance
Jogi