jsplumb how do I use the straight connector

739 Views Asked by At

I want to ask some help,This is my first time to use the jsPlumb...I want to change the connectors by using the straight connector,I tried to read there docs,but I am having difficulties to understand it.How can I change the connector to straight line in the hierarchical chart.?

Thank you in advance.

1

There are 1 best solutions below

1
On

Here are the documentation links for different types of connectors:

Doc: https://jsplumbtoolkit.com/doc/connectors.html

API: http://www.jsplumb.org/apidocs/classes/Connectors.Straight.html

You can set it in defaults as:

jsPlumb.importDefaults({
    Connector: ["Straight"]
});

To set additional parameters use:

jsPlumb.importDefaults({
    Connector: ["Straight", {stub: 10, gap: 10}] // By default stub and gap are 0
});