你好,
这个实现起来是很简单的,只要在MsChart的MouseMove事件中添加如下代码:
private void chart1_MouseMove(object sender, MouseEventArgs e)
{
this.label1.Text = e.X.ToString() + "--" + e.Y.ToString();
}
Caillen
MSDN Community Support | Feedback to us
Develop and promote your apps in Windows Store
Please remember to mark the replies as answers if they help and unmark them if they provide no help.