Jump to content
Software FX Community

Getting Data points of X and y axis on click event


ramkumar7179

Recommended Posts

Use the MouseClick event. The argument contains the Series and Point index of the point that was clicked. You can use these indexes to retrieve the X and Y as well as any other attributes for that point. For example:

double x = chart.Data.X[e.Series,e.Point];

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...