05-11-2016 01:38 PM
Check your property node. You have a typo. You are setting the cursor position for "Y", it should be: Cursor.PosX
05-11-2016 01:51 PM - edited 05-11-2016 01:51 PM
Also, if these are really x values, be aware that they don't align with the x-values of the data points, so it will lock to the closest point and not where you set the X.
If you want the cursor anywhere on the line, you need a free cursor and calculate the Y according to x, e.g. by linear interpolation of the data.
05-11-2016
01:53 PM
- last edited on
05-20-2024
07:14 PM
by
Content Cleaner
@jamiva wrote:
Check your property node. You have a typo. You are setting the cursor position for "Y", it should be: Cursor.PosX
Thanks !!!
But what is strange, according to the HELP (link below), the value -1 puts cursor on all curves, but it seems not be the case.
Plot with which the cursor is associated. If Plot is –1, the cursor snaps to all plots in the plot area. You can move the cursor to the nearest data point along any plot in the plot area.
05-11-2016 01:58 PM
@altenbach wrote:Also, if these are really x values, be aware that they don't align with the x-values of the data points, so it will lock to the closest point and not where you set the X.
If you want the cursor anywhere on the line, you need a free cursor and calculate the Y according to x, e.g. by linear interpolation of the data.
Stick to the closest X is not a problem for my app, actually such behavior is even better.
Not, I want both cursors to be locked to one of the curves (or both if this is possible)