08-02-2006 01:32 PM
08-02-2006 02:36 PM - edited 08-02-2006 02:36 PM
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
08-02-2006 04:38 PM
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
08-03-2006 09:21 AM
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().
08-03-2006 12:19 PM
Thanks for your help
estelle