DiagramConnectionDefaultsSelectionSettingsBuilder
Methods
Handles(System.Action)
Defines the default handles options for selected connections.
Parameters
configurator - System.Action<DiagramConnectionDefaultsSelectionHandlesSettingsBuilder>
The action that configures the handles settings.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.ConnectionDefaults(cd => cd
.Selection(s => s.Handles(h => h.Stroke(s => s.Color("white")).Fill(f => f.Color("yellow"))))
)
)