Giter Club home page Giter Club logo

Comments (9)

iobee avatar iobee commented on May 21, 2024

I also have such a problem,and I'm looking for a solution.

from d3-tip.

jure avatar jure commented on May 21, 2024

I solved it with something like this:

    var direction = function (d) {
        var upper = this.y(d) > (0.75 * this.yScale.domain()[1])
        var left = this.x(d) < (0.25 * this.xScale.domain()[1])
        var right = this.x(d) > (0.75 * this.xScale.domain()[1])

        if(upper && left) {
            return 'se';
        } else if (upper && right) {
            return 'sw';
        } else if (upper) {
            return 's';
        } else if (right) {
            return 'w';
        } else if (left) {
            return 'e';
        } else {
            return 'n';
        }
    }

    // Tooltips
    this.tip = d3.tip().attr('class', 'tooltip').html(tooltip.bind(this));

    this.tip.direction(direction.bind(this));

Basically it checks where the center of data (a circle in my case) roughly is and then adjusts the direction.

from d3-tip.

iobee avatar iobee commented on May 21, 2024

Great!Thank you, jure!

from d3-tip.

caged avatar caged commented on May 21, 2024

There's some related conversation here #117

from d3-tip.

chrisknoll avatar chrisknoll commented on May 21, 2024

There looks like there's a pull request #153 for this but has conflicts. Is there a preferred approach to addressing this or will #153 be used as the solution?

from d3-tip.

vlascik avatar vlascik commented on May 21, 2024

@chrisknoll I did a new PR for this, with conflicts solved, #198

from d3-tip.

stale avatar stale commented on May 21, 2024

Hey there! It looks like this issue has been automatically marked as stale because it has not had recent activity. To help the maintainers stay focused, it will be closed if no further activity occurs. Thank you for your contributions.

from d3-tip.

chrisknoll avatar chrisknoll commented on May 21, 2024

Buming this PR so that it does not look stale...

from d3-tip.

stale avatar stale commented on May 21, 2024

Hey there! It looks like this issue has been automatically marked as stale because it has not had recent activity. To help the maintainers stay focused, it will be closed if no further activity occurs. Thank you for your contributions.

from d3-tip.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.