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

tooltip is not hidding #1705

Open
wirelessmundi opened this issue Jun 28, 2016 · 20 comments
Open

tooltip is not hidding #1705

wirelessmundi opened this issue Jun 28, 2016 · 20 comments
Labels

Comments

@wirelessmundi
Copy link

wirelessmundi commented Jun 28, 2016

with master or 1.8.3 version tooltip os not hidding when the mouse leaves the graph area, so multiple tooltips are shown in the graph area.

tooltip-issue

before i had version 1.8.1 and its fine.

The code is quite basic:

d3.json(jsonurldata, function(error, data) {
    if (error) return console.warn(error);

    if (!data.timeformat) timeformat = '%x';
    else timeformat = data.timeformat;

    nv.addGraph(function() {
        var chart = nv.models.stackedAreaChart()
            .margin({'right': 50, 'bottom': 30})
            .xScale(d3.time.scale())
            .useInteractiveGuideline(true)
            .showControls(false)
            .clipEdge(true);

        if (color) chart.color(color);

        // x time scale
        chart.xAxis.scale(d3.time.scale());
        chart.xAxis.tickFormat(function(d) { 
            return d3.time.format(timeformat)(new Date(d)) 
        });
        chart.interactiveLayer.tooltip.headerFormatter(function (d) { return d; });
        chart.xAxis.ticks(5);
        chart.yAxis.tickFormat(d3.format(',.2f'));

        d3.select(container)
            .datum(data.series)
            .transition().duration(1200)
            .call(chart);

        nv.utils.windowResize(chart.update);
        return chart;
    });
});

Is there any new parameter that i should use instead?

EDIT: this issue is only present in firefox (tested with version 47.0) using linux. Not really sure what could be different..

Thanks.

@wirelessmundi
Copy link
Author

I tried the solution #1463, which solves the problem on scrool down, but for the mouse out event i have the same result, the tooltip get stuck in the graph..

d3.select(window).on("mouseout."+chart.id(), function() {
console.log("Mouse OUT");
chart.tooltip.hidden(true);
chart.interactiveLayer.tooltip.hidden(true);
});

@liquidpele
Copy link
Contributor

Latest version has some tooltip fixes, see if your issue still exists...

If it does, please make a jsfiddle demonstrating it (since I don't see the issue) using the latest nvd3 in master (you can link to latest using rawgit.com)

@wirelessmundi
Copy link
Author

wirelessmundi commented Jul 5, 2016

it work as expected with master.

Using version 1.8.4 i still have the same issue, but only when using firefox 47 with debian 8.

jsfiddle here: https://jsfiddle.net/69mtzt1w/8/ , to reproduce after loading for the first time, refresh the page and it should reproduce.

screenshot from 2016-07-05 10 17 59

@liquidpele
Copy link
Contributor

Wait, it works in master but not in 1.8.4?? That's odd, I thought I merged in all the tooltip stuff before I cut the 1.8.4. release...

@wirelessmundi
Copy link
Author

yeahp.. at the first time when the page load its ok, is only after hitting F5 multiple times that triggers the issue.

@cmbreki
Copy link

cmbreki commented Jul 29, 2016

Hello, i'm facing the exact same problem. I tried with the v.1.8.4 or the master version but the tooltip doesn't work properly on firefox.
Has there been any progress on the issue ?

I forgot to mention that I'm using FireFox with linux Mint 17.1

@mehranshakeri
Copy link
Contributor

mehranshakeri commented Aug 17, 2016

same problem. I wonder if it's nvd3 bug or FireFox issue in rendering the page. When you try to find DOM element, there is no element for those visible tooltips and they are not even a full tooltip. It looks like a rendering issue of browser!

Added: I tried to use (display: none/block) style instead of opacity, to hide/show tooltip. It improves it but still happens.

@mehranshakeri
Copy link
Contributor

Well, I guess in my case it was my graphic driver or OS problem. I have ubuntu 16.04 with Radeon VGA. Using other PCs with windows this bug doesn't happen at all!!!

@mke1ms
Copy link

mke1ms commented Aug 19, 2016

Same here, problem only occurs on Firefox (47.0) on Ubuntu 14.04, Chrome works fine

@liquidpele
Copy link
Contributor

Well that's just weird. Are there any javascript errors or anything?

@joserocha3
Copy link

@liquidpele I don't get any

@mke1ms
Copy link

mke1ms commented Aug 19, 2016

@liquidpele Nope, no errors, just bits and pieces of tooltips all over the screen
tooltip

@mehranshakeri
Copy link
Contributor

No JS error. It seems it's they way FireFox uses graphic card.

@liquidpele
Copy link
Contributor

Wow... so not even the full div, just part of it shows... I'm not sure that's something we can fix... it looks like a firefox rendering bug... if anyone can figure out a workaround we can implement let me know though. Maybe even submit it as a bug report to bugzilla?

@slestang
Copy link

It is a Firefox bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1280060
It should be fix with Firefox 49.
I have a branch to work around the bug but it isn't very clean: https://github.com/slestang/nvd3/tree/workaround_firefox_bug_tooltip

@liquidpele
Copy link
Contributor

According to their release calendar, 49 will be released Sep 13th.

https://wiki.mozilla.org/RapidRelease/Calendar

That's soon enough to just wait I think.

@rodrigorrm
Copy link

I use Chrome 55.0.2883.87 (64-bit) on Ubuntu 16.04 and have the same issue. Is there any development on this issue?

@pgrm
Copy link

pgrm commented Aug 15, 2017

I see a similar issue again on Firefox 54, IE and chrome work for me.

@hajdbo
Copy link

hajdbo commented Feb 16, 2019

related to #1886

@stla
Copy link

stla commented Aug 8, 2021

I have a similar bug when including a NVD3 multibarchart in Power BI:

nvd3_bug_tooltips

Does someone has a solution now?

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

No branches or pull requests