Often when you get a plotAreaClick, a specific dataItem is highlighted with a tooltip showing.
When this happens, if you click on the plot area, but miss the actual data point, I would like to execute code like if seriesClick was triggered.
Example: in my tooltip I tell people to "Click to search", which opens a dialog with extra information about that data point. This works great in my seriesClick handler, since I can access the data point. If they miss the point, it triggers a plotAreaClick. They still see the tooltip for the item, but I can't open the search as I don't know which dataItem is current.
An alternative solution would be to expose whichever dataItem is currently responsible for the tooltip.