DiagramEditableSettingsToolFactory
Methods
Custom()
Adds an item for a custom action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.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")
.Editable(e => e.Tools(tt => tt.Edit()))
)
CreateShape()
Adds an item for the createShape action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Tools(tt => tt.CreateShape()))
)
CreateConnection()
Adds an item for the createConnection action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Tools(tt => tt.CreateConnection()))
)
Undo()
Adds an item for the undo action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Tools(tt => tt.Undo()))
)
Redo()
Adds an item for the redo action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Tools(tt => tt.Redo()))
)
RotateClockwise()
Adds an item for the rotateClockwise action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Tools(tt => tt.RotateClockwise()))
)
RotateAnticlockwise()
Adds an item for the rotateAnticlockwise action.
RETURNS
Returns a with the available configuration options.
Example
Razor
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Tools(tt => tt.RotateAnticlockwise()))
)