1

我对 ZedGraph 有一些不同的要求。

当用户单击 ZedGraph 窗格时,我想在 ZedGraph 窗格上创建曲线。此外,我在该窗格上绘制了其他图表。但是我希望每当用户单击 zedGraph 区域时,我们都会获得用户单击的坐标,并且我在该单击的坐标上绘制一条直线。

我已将 MouseCLick 事件与 FindNearestObject 方法一起使用,如下所示:

private void zedGraph_RenderedTrack_MouseClick(object sender, EventArgs e)
    {
        MouseEventArgs xx = (MouseEventArgs)e;
        object nearestObject;
        int index;
        this.zedGraph_RenderedTrack.GraphPane.FindNearestObject(new PointF(xx.X, xx.Y), this.CreateGraphics(), out nearestObject, out index);
        if (nearestObject != null)
        {
            DrawALine(xx.X, Color.Red, true);
        }
    } 

但是使用这个,ZedGraph 搜索一些曲线并找到最近的点,然后绘制线条,但我希望在用户点击的地方绘制线条。有什么方法可以做到吗?

4

1 回答 1

6

您可以尝试以下代码,该代码将为鼠标单击事件绘制一条垂直线。

public Form1()
    {
        InitializeComponent();
    }        

    PointPairList userClickrList = new PointPairList();
    LineItem userClickCurve = new LineItem("userClickCurve");

    private void zedGraphControl1_MouseClick(object sender, MouseEventArgs e)
    {
        // Create an instance of Graph Pane
        GraphPane myPane = zedGraphControl1.GraphPane;

        // x & y variables to store the axis values
        double xVal;
        double yVal;

        // Clear the previous values if any
        userClickrList.Clear();

        myPane.Legend.IsVisible = false;

        // Use the current mouse locations to get the corresponding 
        // X & Y CO-Ordinates
        myPane.ReverseTransform(e.Location, out xVal, out yVal);

        // Create a list using the above x & y values
        userClickrList.Add(xVal, myPane.YAxis.Scale.Max);
        userClickrList.Add(xVal, myPane.YAxis.Scale.Min);

        // Add a curve
        userClickCurve = myPane.AddCurve(" ", userClickrList, Color.Red, SymbolType.None);

        zedGraphControl1.Refresh();
    }

在此处输入图像描述

您只需更改 userClickList 即可绘制水平线。

快乐编码.....:)

于 2012-09-14T15:07:30.870 回答