Hi all!I have these two lines of codes in my program:
float time = (float)DateTime.Now.Second;
xyGraphControl1.AddPoint(time,power);
The result of the codes is that the timer starts at the same second as the clock in my computer.
How am I going to force the timer to always and only start at 0 second?
Thank you very much!