DiagramConnectionDefaultsSelectionHandlesStrokeSettingsBuilder
Methods
Color(System.String)
Defines the default handles stroke color when connections are selected.
Parameters
value - System.String
The value that configures the color.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.ConnectionDefaults(cd => cd
.Selection(s => s.Handles(h => h.Stroke(s => s.Color("white"))))
)
)