DiagramConnectionEndCapFillSettingsBuilder
Methods
Color(System.String)
Defines the connection end cap fill color.
Parameters
value - System.String
The value that configures the color.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().EndCap(endCap => endCap.Fill(f => f.Color("red")))
)
)