DiagramConnectionHoverStrokeSettingsBuilder
Methods
Color(System.String)
Defines the highlight color when the pointer is hovering over the connection.
Parameters
value - System.String
The value that configures the color.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Hover(h => h.Stroke(s => s.Color("red")))
)
)