Hello,
I need to set stroke color of individual connections between shapes depending on Model data from Controller.
Is that possible with Html.Kendo() helper?
.DataSource(d => d
.Read(read => read.Action("_SomeDiagram", "Diagram"))
.Model(m => {
m.Children("Entities");
m.Id("Name"); }))
.ConnectionDefaults(c => c.Stroke(s => s.Color("#979797").Width(2)))
ViewModel structure is simple with one root entity and three children.