Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

139
Views
why d3 tooltip is not moving with movemove event?

It seems to me that, my tooltip is not moving with the mousemove event. Here is my code sample: my tooltip div is looking like that.

<div id="tooltip" class="chart_tooltip"></div>

Now trying to create a tooltip with bellow code sample:

 let tooltip = d3.select('#tooltip');
 let tipBox = g
            .append('rect')
            .attr('width', width)
            .attr('height', height)
            .attr('opacity', 0)
            .on('mousemove', function (event: MouseEvent) {
                 let posX = event.clientX;
                 let posY = event.clientY;

                      tooltip
                        .html('I am a tooltip')
                        .style('display', 'block')
                        .style('left', posX + 'px')
                        .style('right', posY+ 'px')
                        .selectAll()
                        .data([nearDate])
                        .enter()
                        .append('div')
             }

But the problem is that, tooltip is not updating it's position with mousemove event. It stuck at end of my chart not updating it's position on musemoe event. Can someone please tell me how to fix that?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!