4

我有一个条形图,我想让用户右键单击一个特定的条,选择一些只会影响该条的操作(实际上添加一个或任何内容)。使用 ZedGraph 可以实现这种类型的事情吗?

4

1 回答 1

8

您可以将鼠标单击事件添加到窗体并调用 FindNearestObject() 传递该鼠标点,您将返回最近的对象。可能是这样的:

private void zedGraphControl2_MouseClick(object sender, MouseEventArgs e)
{
    object nearestObject;
    int index;
    this.zedGraphControl2.GraphPane.FindNearestObject(new PointF(e.X, e.Y), this.CreateGraphics(), out nearestObject, out index);
    if (nearestObject != null && nearestObject.GetType() == typeof(BarItem))
    {
        BarItem barItem = (BarItem)nearestObject;
        barItem[index].Y += 1;
        zedGraphControl2.Invalidate();
    }
} 
于 2011-07-21T13:16:30.053 回答