Hi,
In my project, I am using a trackball on a chart to display text during mouseover. What I need to be able to do is display a the result of a function where the inputs are the x and y coordinates of the nearest point to the mouse. For example, in a histogram, I would want to display the percentile in the mouse over, so if a user hovers over a point, I'd want the caption to display something like:
Percentile: 35%
I know this can be done from a custom tooltip triggered by the ChartRegionMouseHover event, which I have implemented, but I prefer the smoothness of the trackball. Is there any way to do this? I couldn't find an appropriate event to create a handler for.