Hi,

Following is my code I use GraphPoint[] dataPoints to store information regarding the data points for graph. In the tooltip of each data point I would like to display the information associated to the underlying object used to create the data point. How can I do it?

 foreach (GraphPoint graphPoint in dataPoints){mseries.PointData.Add(new PointF((float) (graphPoint.XValue.Value), (float) (graphPoint.YValue.Value)));

 

}

Thank you in advance.