There is no one to one relationship between axis label and series data points. You can have a label with no associated data points or you can have many of them. Each label has
From and
To properties which can be used to calculate position of the label along the axis. You can then try searching for the data point(s) with same position. Something like this:
(From + To) / 2 == point.Xvalue
or if you do not specify X values:
(From + To) / 2 == series.Points.IndexOf(point)
Alex.
http://blogs.msdn.com/alexgor