DiagramEditableResizeHandlesHoverFillSettingsBuilder
Methods
Color(System.String)
Specifies the fill color on hovering over the resizing handles.
Parameters
value - System.String
The value that configures the color.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Resize(r => r.Handles(h => h.Hover(hh => hh.Fill(f => f.Color("green"))))))
)
Opacity(System.Double)
Specifies the fill opacity on hovering over the resizing handles.
Parameters
value - System.Double
The value that configures the opacity.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Editable(e => e.Resize(r => r.Handles(h => h.Hover(hh => hh.Fill(f => f.Opacity(0.8))))))
)