DiagramConnectionSelectionSettingsBuilder
Methods
Handles(System.Action)
Defines the connection selection handles configuration.
Parameters
configurator - System.Action<DiagramConnectionSelectionHandlesSettingsBuilder>
The action that configures the handles settings.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Selection(s => s.Handles(h=> h.Width(20).Height(20).Stroke(s => s.Color("white")).Fill(f => f.Color("yellow"))))
)
)