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

DiagramEditableRotateSettingsBuilder

Methods

Fill(System.Action)

Specifies the fill settings of the rotation thumb.

Parameters

configurator - System.Action<DiagramEditableRotateFillSettingsBuilder>

The action that configures the fill.

Example


             @(Html.Kendo().Diagram()
                .Name("diagram")
                .Editable(e => e.Rotate(r => r.Fill(f => f.Color("green").Opacity(0.5))))
              )

Stroke(System.Action)

Specifies the stroke settings of the rotation thumb.

Parameters

configurator - System.Action<DiagramEditableRotateStrokeSettingsBuilder>

The action that configures the stroke.

Example


             @(Html.Kendo().Diagram()
                .Name("diagram")
                .Editable(e => e.Rotate(r => r.Stroke(s => s.Color("blue").Width(5))))
              )

In this article
Not finding the help you need?