d3-dag
    Preparing search index...

    Function coordTopological

    • create a new CoordTopological

      The topological coordinate assignment operator requires a topological layering created by layeringTopological. It assigns all real nodes the same x coordinate, and curves the links around the column of nodes.

      It may also be worth considering zherebko as a layout as it's created entirely for layouts like this.

      Parameters

      • ...args: never[]

      Returns CoordTopological

      const layout = sugiyama()
      .layering(layeringTopological())
      .coord(coordTopological());