DiagramEditableRotateFillSettingsBuilder
Methods
Color(System.String)
Specifies the fill 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.Fill(f => f.Color("green"))))
)
Opacity(System.Double)
Specifies the fill opacity of the rotation thumb.
Parameters
value - System.Double
The value that configures the opacity.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Rotate(r => r.Fill(f => f.Opacity(0.5))))
)