Get the example diagram in https://dojo.telerik.com/oNOJidug from example in Diagram Connections page reference
With the basic configuration:
$("#diagram").kendoDiagram({
shapes:[
{
id:"1",
content:{
text: "State 1"
},
x: 20,
y: 20
},
{
id:"2",
content: {
text: "State 2"
},
x: 300,
y: 20
}
],
connections:[
{
from: "1",
to: "2",
content: {
text: "Step 1"
},
stroke: {
color: "#33ccff"
}
}
]
});
My question is, is there a way to keep the connectors of both shapes visible without need to keep mouse hover?
I want this:
instead of: