DiagramConnectionEditableSettingsToolFactory
Methods
Custom()
Adds an item for a custom action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Editable(e => e.Tools(tt => tt.Custom().Name("settingsBtn").Text("User settings").Type("button")))
)
)
Edit()
Adds an item for the edit action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Editable(e => e.Tools(tt => tt.Edit()))
)
)
Delete()
Adds an item for the delete action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Editable(e => e.Tools(tt => tt.Delete()))
)
)