DiagramShapeHoverSettingsBuilder
Methods
Fill(System.Action)
Defines the shape hover fill options.
Parameters
configurator - System.Action<DiagramShapeHoverFillSettingsBuilder>
The action that configures the hover fill settings.
Example
@(Html.Kendo().Diagram()
.Name("diagram")
.Shapes(shape => shape
.Add().Hover(h => h.Fill(f => f.Color("pink").Opacity(0.5)))
)
)