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

Static position on container messes up which plot point is hovered #3437

Open
nchen63 opened this issue Feb 2, 2018 · 0 comments
Open

Static position on container messes up which plot point is hovered #3437

nchen63 opened this issue Feb 2, 2018 · 0 comments

Comments

@nchen63
Copy link

nchen63 commented Feb 2, 2018

Hovering over plot points can hover over the wrong point if there is a static container somewhere in the chart's ancestors.

The fix is to check if the ancestor statically positioned in getCumulativeTransform(). Something functionally equivalent to:

        var styles = window.getComputedStyle(elem);
        if (styles.getPropertyValue("position") == "static") {
            return transform;
        }
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

1 participant