11-19-2009 04:29 PM
I am trying to plot two graphs on a one chart. I am merging the arrays and outputing the merged signal to a waveform chart. However I run into the problem that the start time is 1903 (Chart 3)! I would prerfer for it to display the same as chart 1 and 2 or at the very least have the the x axis be 0 time when the acquisition/graphing begins. How can I do that?
Solved! Go to Solution.
11-19-2009 08:57 PM
What you are doing does not make much sense. First, you have a for loop set to iterate once. Eliminate that and you will be passing a 1D array to each chart. Second, no reason at all for the conversion to dynamic data. It's the dynamic data that expects to have timestamp information and that is the cause of the '1903' date (default date).
Take the two 1D arrays and wire them to a Build Array function. This will create a 2D array. On the chart, right click and unselect 'Transpose Array'.
p.s. Turning on context help will show you the correct data types to wire to a chart. Also, don't post such large
images.
11-20-2009 10:34 AM