Reputation: 59
I'm trying to get a point on a chart that the user pressed. From what I see and researched, the Click and MouseClick events only give you information about the mouse position in pixels on the window. is there a way to get information about the point pressed?
Upvotes: 1
Views: 2412
Reputation: 59
using Chart.HitTest
you get an HitTestResult
type object that holds information about the location pressed. Then you can do whatever you want with it.
Upvotes: 2