Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stuck tooltips on ipad #1203

Closed
mbalonso opened this issue Aug 27, 2012 · 2 comments
Closed

Stuck tooltips on ipad #1203

mbalonso opened this issue Aug 27, 2012 · 2 comments

Comments

@mbalonso
Copy link

Tooltips seem to get stuck when viewing charts on an ipad. To reproduce this simply go to http://www.highcharts.com/demo/ and tap anywhere in the Monthly Average Temperature chart. The only way to make a tooltip go away is to click "View options" or refresh the page.

(source: taken from http://highslide.com/forum/viewtopic.php?f=9&t=20233)

@guiann
Copy link

guiann commented Apr 19, 2013

I've got the same issue whit a new version of highchart and using the new parameter "followTouchMove". Once shown the tooltip won't hide anymore.

@guiann
Copy link

guiann commented Apr 19, 2013

I've make a little temporary workaround which works fine in my case :

    $('#parentId').on({
        'touchend': function(evt){
            chart.tooltip.hide();
            chart.tooltip.hideCrosshairs();
        }
    });

where parentId is the id of the parent div, containing the chart.

it adds an event handling on touch end. It seem like 'hide' and 'hideCrosshairs' were not called at all on ipad so this solved my problem for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants