Hello,
I have some code modeled after the NI demo: Plotting:2010. This is where you plot multiple traces using a graph control with only one native plot in the plots collection. I want to have a history capacity of 10,000 for each of the plots. I find if I change the history capacity of the (only) plot to 10000, only the first trace ends up with that histoy capacity. All the other traces only show 1000 points of history. What can I do to make all the traces have the longer history capacity?
Here is my sample code:
Dim NAData(3,0)
NAData(0,0) = Testvalue0
NAData(1,0) = Testvalue1
NAData(2,0) = Testvalue2
NAData(3,0) = Testvalue3
sampleWaveformGraph.PlotYAppendMultiple(NAData)
If I set the X axis to 10000 only the trace for Testvalue0 is shown past 1000 samples.
Thanks,
Bartj