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

208
Views
Firing D3 event for an element

I have attached a click event to an element of a D3 chart:

import * as d3 from 'd3';

const vis = {}
vis.svg = d3.select(element)
    .append("svg")
    .attr("width", 500)
    .attr("height", 500)
vis.g = vis.svg
    .append("g")
const circles = [20];
const myCircles = vis.g.selectAll('circle').data(circles).enter()
myCircles
    .append('circle')
    .attr('id', (d, i) => { return 'myCircle' + i})
    .attr('cx', 100)
    .attr('cy', 100)
    .attr('r', (d, i) => d)
    .attr('fill', 'gainsboro')
    .attr('stroke', 'grey')
    .on('click', function(event, d) {
        d3.select(this).attr('stroke', 'black')
        d3.select(this).attr('stroke-width', '2px')
    })

Is there a way to fire this click event from outside of an element? I tried doing this:

d3.select("#myCircle0").click();

But it does not work. Is there an alternative way of firing D3 event for a specific element?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You have to dispatch the event:

d3.select("#myCircle0").dispatch("click");

Here is a demo with a slightly modified code, dispatching the click to the first circle:

const vis = {}
vis.svg = d3.select("body")
  .append("svg")
  .attr("width", 500)
  .attr("height", 500)
vis.g = vis.svg
  .append("g")
const circles = [20, 20, 20];
const myCircles = vis.g.selectAll('circle').data(circles).enter()
myCircles
  .append('circle')
  .attr('id', (d, i) => {
    return 'myCircle' + i
  })
  .attr('cx', (_, i) => 100 + 50 * i)
  .attr('cy', 100)
  .attr('r', (d, i) => d)
  .attr('fill', 'gainsboro')
  .attr('stroke', 'grey')
  .on('click', function(event, d) {
    d3.select(this).attr('stroke', 'black')
    d3.select(this).attr('stroke-width', '2px')
  });

d3.select("#myCircle0").dispatch("click");
<script src="https://d3js.org/d3.v7.min.js"></script>

about 4 years ago · Juan Pablo Isaza Report
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!