DiagramConnectionEditableSettingsBuilder
Methods
Tools(System.Action)
Specifies the connection toolbar tools. The built-in tools are: Edit() and Delete().
Parameters
configurator - System.Action<DiagramConnectionEditableSettingsToolFactory>
The action that configures the tools.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Editable(e => e.Tools(tt => tt.Edit()))
)
)