3

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

 zedGraphControl1.IsShowPointValues = true;

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

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

可能吗?

4

1 回答 1

9

有可能的。您可以将事件处理程序添加到当您将鼠标悬停在某个点上时触发的 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();
}
于 2011-05-09T22:46:26.180 回答