DiagramConnectionHoverSettingsBuilder
Methods
Stroke(System.Action)
Defines the hover stroke configuration of the connection.
Parameters
configurator - System.Action<DiagramConnectionHoverStrokeSettingsBuilder>
The action that configures the stroke settings.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Hover(h => h.Stroke(s => s.Color("red")))
)
)