I used to use VB6.0 extensively years ago. Back then I used the BitsPerSecond Chart Control. The event in question looked like this
Bgraph_HotHit(hitset As Integer, hitpoint As Integer)
'Bgraph' being the given chart control name in the application and 'HotHit' being the event the event I could intercept to pickup the data point references of 'hitset' and 'hitpoint'.
With this readily available event I used it to easily capture by click, references to a specific data point on the chart so that I could for example, re-plot all points on the chart with reference to that specific selected data point.
I have looked high and low everywhere for the equivalent in C# Chart Control in Visual Studio. I get the impression that there is no such event for the VS Chart control or at least nothing as straight forward as in the above to carryout such a task. Is this right or am I missing something here?