DiagramConnectionDefaultsHoverSettingsBuilder
Methods
Stroke(System.Action)
Defines the default styling that is applied when the user hovers over a connection.
Parameters
configurator - System.Action<DiagramConnectionDefaultsHoverStrokeSettingsBuilder>
The action that configures the stroke settings.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.ConnectionDefaults(cd => cd
.Hover(h => h.Stroke(s => s.Color("red")))
)
)