DiagramEditableResizeSettingsBuilder
Methods
Handles(System.Action)
Specifies the settings of the resizing handles.
Parameters
configurator - System.Action<DiagramEditableResizeHandlesSettingsBuilder>
The action that configures the handles settings.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Resize(r => r.Handles(h => h.Stroke(s => s.Color("blue")).Fill(f => f.Opacity(0.5)))))
)