简体   繁体   中英

d3 v4 accessing x and y value from Object _data_

dx and dy inside the transform attribute return 'undefined'.

   this.nodeElements = this.nodeGroup.selectAll('circle')
  .data(this.sensors);

console.log(this.sensors[0].x); // this returns the correct x value


const nodeEnter = this.nodeElements
  .enter()
  .append('svg:g')
  .attr('transform', d => 'translate(' + d.x + ', ' + d.y + ')');
  • how can I get the defined dx or dy ? Thank you in advance.

The problem was actually related to ionic life cycles. Thank you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM