如何在ZedGraph上找到索引位置

时间:2012-08-02 14:12:48

标签: c# graph zedgraph discretization

是否有任何方法可以根据当前的xPosition找到曲线的索引位置

假设我有一个曲线项目 - MyCurve,它有20k点,当鼠标移动时我可以得到鼠标位置&然后我就可以得到x&只需使用以下功能即可定位。

double xPos=0, yPos=0;

this.zedGraphControl1.GraphPane.ReverseTransform(MouseLoc, out xPos, out yPos);

但我想从曲线项找到数据点,任何建议......?

enter image description here 在此先感谢.... :)

2 个答案:

答案 0 :(得分:3)

请记住,以下只是一个近似值,它应该是准确的,尤其是当鼠标靠近该点时,但是当您查看鼠标位置时,您可能不会直接在曲线上的某个点上。它还假设您的CurveItem Curve有点,它们均匀分布。

double startPos = Curve.Points[0].X
double xStep = Curve.Points[Curve.NPts - 1].X / Curve.NPts;
int xIndex = (int)(xPos / xStep + startPos);
// Make sure it is in bounds
xIndex = xIndex < 0 ? 0 : xIndex > Curve.NPts - 1 ? Curve.NPts - 1 : xIndex;

或者您可以使用以下功能:

CurveItem n_curve;
int index;
zedGraphControl1.GraphPane.FindNearestPoint(mousePt, out n_curve, out index);

但请记住,这将寻找最近的曲线该曲线内最近点的索引。

答案 1 :(得分:1)

如果您不关心以编程方式使用这些位置,但只想查看图表中显示的位置,则可以将zedGraphControl1.IsShowPointValues设置为true

Display point values in graph