DiagramConnectionSelectionHandlesStrokeSettingsBuilder
Methods
Color(System.String)
Defines the handles stroke color.
Parameters
value - System.String
The value that configures the color.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Selection(s => s.Handles(h=> h.Stroke(s => s.Color("white"))))
)
)