I have a scenario where I have several datapoints all at the same timestamp on a scatter plot. The Y value could be different but if it is not then I have 2 points at the exact same point. Is it possible to have the marker tool tip display both values?
As an expansion of the above question, what if multipole points are very close together as if you are looking at a 24 hour span and two points were 30 seconds apart. They would pretty much be rendered on top of each other. Can we still display both values in the tooltip?
Mike,
You might find this useful: https://es.infragistics.com/community/forums/f/ultimate-ui-for-wpf/49255/overlapping-points
It displays the colliding points in a popup when you click on a point. But you could probably adapt it to work with mouse over also. You just might need to be careful of performance in that case and throttle your mouse events a bit. It was done for the WPF version, so let me know if you have any trouble getting it up and running.
Hope this helps!
-Graham
Yep, that helped quite a bit. I ended up using the hit test function but adding the returned elements to the popup I already have in place for the hovereditems you previously helped me with.
Thanks!