DiagramConnectionSelectionHandlesSettingsBuilder
Methods
Fill(System.Action)
Defines the handles fill options.
Parameters
configurator - System.Action<DiagramConnectionSelectionHandlesFillSettingsBuilder>
The action that configures the fill.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Selection(s => s.Handles(h=> h.Fill(f => f.Color("yellow"))))
)
)
Stroke(System.Action)
Defines the handles stroke options.
Parameters
configurator - System.Action<DiagramConnectionSelectionHandlesStrokeSettingsBuilder>
The action that configures the stroke.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Connections(c => c
.Add().Selection(s => s.Handles(h=> h.Stroke(s => s.Color("white"))))
)
)