First, is there a way to plot single points on the XY graph instead of connecting them with a line?
Second, and this might be corrected by the first question, but when I start adding data to an XY graph a line connects the most recent point to the origin. What can I do to get rid of this?
To get rid of the lines just do what other answers say, but that way, you'll have a point in the origin (think it's 0,0) to avoid having this, be sure the array you wire is empty before adding your data, if not, and your array contains a 0,0 value on it, you should get rid of it. Hope this helps
Not a simple question to answer. You can create an empty array and start writing data to it, and Labview will simply extend as necessary. Here you don't need pre-initialisation. In some cases, for performance reasons, it is necessary to pre initialise the array and replace elements as needed. Chances are you're not in this situation, but if you were, then pre-initialising with the numeric constant "NaN" will not result in spurious zeroes on the plot, since "NaN" represents invalid data.
Adam_J wrote in message news:506500000005000000A72B0000-986697009000@quiq.com... > Thanks. I thought you had to initialize the array locations with a > value i.e. 0. You can just leave this empty?