LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

X axis on on a stripchart

hello,
 
I would like to plot in real time the position Y versus X of a point on a stripchart ... Do you think that this is possible ? Because I haven't found how to do this ? I know there is graphXY but I don't manage having real time with it ....
 
thanks in advance
 
estelle
0 Kudos
Message 1 of 5
(3,730 Views)

Call PlotStripChartPoint() for ploting a single point on a strip chart control.  Is that what you are looking for?

If you are trying to do this on a graph control you can use PlotPoint() and PlotLine()

Message Edited by mvr on 08-02-2006 02:42 PM

0 Kudos
Message 2 of 5
(3,726 Views)

In fact I would like to plot continously the Y position of a point in fonction the X position of the same point ....in fact plotting the coordinates of the point to see  its evolution ....

 

estelle

0 Kudos
Message 3 of 5
(3,722 Views)

Those should be the right function calls then.

PlotStripChartPoint() will work on a strip chart control.  You would use this if the x axis interval is constant.

If the X axis interval is changing you can use a graph control  amd PlotPoint().  If you want to connect the points with a line use PlotLine().

0 Kudos
Message 4 of 5
(3,704 Views)

Thanks for your help

 

estelle

 

0 Kudos
Message 5 of 5
(3,695 Views)