Is there any ways around to find the index position of a curve, based on the current xPosition,
let's say I have a curve Item - MyCurve, which has 20k points and when the mouse moves I could get the mouse location & then I could get the x & y positions by simply using the following function.
double xPos=0, yPos=0;
this.zedGraphControl1.GraphPane.ReverseTransform(MouseLoc, out xPos, out yPos);
but I want to find the data points from the curve item, any suggestions...?
Thanks in advance....:)
Bear in mind that the following is only an approximation, it should be accurate especially when you the mouse gets closer to the point, but as you are looking at the mouse position you may not be directly on a point on your curve. It also assumes that your
CurveItem Curve
has points, and that they are evenly distributed.OR you can use the following function:
But keep in mind that that will look for the nearest curve and the index of the nearest point within that curve.
If you are not concerned with using the positions programmatically, but only want to see the positions displayed in your graph, you can set
zedGraphControl1.IsShowPointValues
totrue
: