12-14-2013 02:36 AM
Hello,
I need some help about time on x-axis garaph, the time is fast than real time. i use simulation daq for test.
How to solve this problem? please help me.
Solved! Go to Solution.
12-14-2013 02:58 AM
Well, you are setting the x-axis multiplier to 1, meaning that the graph assumes the points are one second apart, while they are actually 1ms apart. Since the mutiplier never changes dirung the loop, you only need to set it once, outside the loop.
There are quite a few simplications possible in your VI.
12-14-2013 03:37 AM
Thanks for your advice, I modify VI but i don't understand which part that i will be take outside loop for solve this problems.
please advice me.
12-14-2013 10:10 AM
The x-scale.multiplier should probably be 0.001.
What do you actually want to show on the x-axis. It seems a bit funny to display one second worth of data with a full date format. Is that really what you want? Maybe you want to set the offset to 0 and use a plain numeric format for the x-axis?
12-14-2013 11:34 AM
Thanks, I can done.