I have a program with a two dimensional point chart of two series. Each point on the chart represents a member of a list composed of instances of a class which has several properties. I mapped two of the properties as X and Y coordinates for my chart.
if (stackerCrane.Missions[i].MissionErroneous == true)
{
graphs[SCNo - 1].chart1.Series["Unsuccessful"].Points.AddXY(
stackerCrane.Missions[i].XCoord,
stackerCrane.Missions[i].YCoord);
}
else
{
graphs[SCNo - 1].chart1.Series["Successful"].Points.AddXY(
stackerCrane.Missions[i].XCoord,
stackerCrane.Missions[i].YCoord);
}
If needed, I would like to be able to see the value of another property of the class by clicking or hovering the pointer on the points. Are there any ways that can help me with this issue? I would appreciate your help and opinion on this matter. Here is a view of the chart