Sunil, this is a wonderful library. Thank you for all of your work on it!
Is it possible to change the mouse cursor to the ‘pointer’ when on a data point to indicate that the point is clickable? Currently the cursor stays as the default.
I tried the following code to handle the mouseover event, but the cursor only seems to be changed when the cursor leaves the data point, not when it is on it.
mouseover: function(e){ document.body.style.cursor = ‘wait’; }
Thanks for your help!