I have a chart which is 700x550 pixels in size. The scale of the chart is set as follows: Min x = 70, Max x=190. Min y = 1200, Max y=5000. I am plotting single spheres (SeriesType.Point) on the chart in the form of a point series using the AddXY method call. Now the question: I am trying to iterate through the chart's point series in order to determine which spheres fall within the physical regions that are defined based on the actual chart size (700x550) and not the scale. While I am able to get the values used to plot the sphere I cannot seem to find a way to correlate the plot to the physical point. here is a small snippet of how I am retrieving the plots:
foreach (PointSeries pointseries in m_chart.Series)
{
double x = (double)pointseries .XValues[0];
double y = (double)pointseries .Values[0];
}
Is there a method that will correlate the scaled x,y values to the physical x,y ? I am open to any constructive suggestions.