I'm using JSPlumb to connect a bunch of blocks and I am able to set a label for a connection using:
JSPLUMB_INSTANCE.bind("connection", function (info) {
info.connection.getOverlay("label").setLabel("w="+width+"<br>p="+pipelining);
});
This way the label is always visible on the connection. Is there a way to make the label only appear on mouse hover?