DiagramEditableResizeHandlesHoverSettingsBuilder
Methods
Fill(System.Action)
Specifies the fill settings on hovering over the resizing handles,
Parameters
configurator - System.Action<DiagramEditableResizeHandlesHoverFillSettingsBuilder>
The action that configures the fill.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Resize(r => r.Handles(h => h.Hover(hh => hh.Fill(f => f.Color("green").Opacity(0.8))))))
)
Stroke(System.Action)
Specifies the stroke on hovering over the resizing handles.
Parameters
configurator - System.Action<DiagramEditableResizeHandlesHoverStrokeSettingsBuilder>
The action that configures the stroke.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Resize(r => r.Handles(h => h.Hover(hh => hh.Stroke(s => s.Color("purple").Width(5))))))
)