How to write the force guide diagram of d3.js version 5.0 or above?

  var force = d3.layout.force()
    .nodes(nodes) //
    .links(edges) //
    .size([width,height]) //
    .linkDistance(150) //
    .charge([-400]); //

this is the previous

Oct.10,2021
Menu