I am using a WaveformGraph as a scope chart where I have the xAxis major division format as a DateTime "hh:mm:ss".
I want to be able to extract the data and save it to a delimeted text file.
To do this I am using the WaveformGraph.GetXData() and WaveformGraph.GetYData() methods, both of which return a double[].
I am unsure how to convert this result back to a DateTime type as I can not implicity convert a double to a DateTime, and the DateTime constructor does not allow a double.