Selecting specific values on a Chart

For directly clicking on a DataPoint you can do a HitTest. But for tiny points or for a selection of a range this will not work well. The necessary functions are hidden in the Axes methods. This solution uses a regular rubber-band rectangle to select the points caught: Point mdown = Point.Empty; List<DataPoint> selectedPoints = … Read more