gpt4 book ai didi

zedgraph - 知道何时单击特定数据点?

转载 作者:行者123 更新时间:2023-12-03 01:24:24 26 4
gpt4 key购买 nike

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

最佳答案

您可以向表单添加鼠标单击事件,并调用 Find Nearest Object() 并传入该鼠标点,您将得到最近的对象。也许是这样的:

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();
}
}

关于zedgraph - 知道何时单击特定数据点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6767132/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com