gpt4 book ai didi

c# - 在 C# 中 ZedGraph 中的图形数据上光标时显示 x、y 和曲线名称

转载 作者:行者123 更新时间:2023-11-30 14:02:30 26 4
gpt4 key购买 nike

我尝试显示 X、Y 和当光标出现在图表上时在图表上绘制的曲线的名称。我用过

 zedGraphControl1.IsShowPointValues = true;

但这还不够。我还需要曲线名称。当光标在图形中的曲线上时,信息应显示如下:

12/27/2010 12:09 AM, 49.94, ACTIVE_MW

这可能吗?

最佳答案

这是可能的。您可以将事件处理程序添加到 PointValueEvent 事件,当您将鼠标悬停在某个点上时该事件将被触发。

类似于:

this.zedGraphControl1.PointValueEvent += new ZedGraph.ZedGraphControl.PointValueHandler(this.zedGraphControl1_PointValueEvent);

private string zedGraphControl1_PointValueEvent(ZedGraph.ZedGraphControl sender, ZedGraph.GraphPane pane, ZedGraph.CurveItem curve, int iPt)
{
return curve.Label.Text + " - " + curve.Points[iPt].ToString();
}

关于c# - 在 C# 中 ZedGraph 中的图形数据上光标时显示 x、y 和曲线名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5831759/

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