pbhle
pbhle

Reputation: 2936

How to fire click event in moxie highcharts

I want to show popup on a point when user mouse over on point in series in highcharts. I got clientx value 0 when I move the cursor on a point but when I click on a point I get correct client x and client y values. I am unable to find the solution for this. I there any way to do this? or I need to fire click event when I hover over a point to get correct client x and client y coordinates. I am using gwt .

Thanks

Upvotes: 0

Views: 106

Answers (1)

Nishith Kant Chaturvedi
Nishith Kant Chaturvedi

Reputation: 4769

Write your function in

  point: {
                events: {
                    mouseOver: function () {}
                    }
                    }

refer fiddle here

Upvotes: 0

Related Questions