New to Telerik UI for ASP.NET MVC? Download free 30-day trial

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"))))
               )
             )

In this article
Not finding the help you need?