The easiest solution is just to show the cursor legens of the graph and set the cursor to snap to point or lock to plot...the cursor legen will then display both the x and y value of the plot at the cursor position...
However sometimes it's necessary to extract that info for other purposes or the cursor legens is just too big, ugly or gives too many options to be displayed...then you need to use the cursor properties of the graph:
Use Active cursor to set or read out what is the active cursor...then read out the position of the cursor using the Cursor.Position property, or alternatively read out the x position using the cursor index and then find the y (and x if that is not an index but a time e.g.) by looking up that index in the array displayed on the graph..
.
If you have several cursors make a loop where you set the active cursor, read out its position, then set the active cursor to the next cursor...etc.
Mads