DiagramConnectionDefaultsStartCapFillSettingsBuilder
Methods
Color(System.String)
Defines the default start cap fill color of the connection.
Parameters
value - System.String
The value that configures the color.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.ConnectionDefaults(cd => cd
.StartCap(startCap => startCap.Fill(f => f.Color("yellow")))
)
)