DiagramEditableRotateStrokeSettingsBuilder
Methods
Color(System.String)
Specifies the stroke color of the rotation thumb.
Parameters
value - System.String
The value that configures the color.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Rotate(r => r.Stroke(s => s.Color("blue"))))
)
Width(System.Double)
Specifies the stroke thickness of the rotation thumb.
Parameters
value - System.Double
The value that configures the width.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Rotate(r => r.Stroke(s => s.Width(5))))
)