FunnelItemHoverStyleBorderBuilder.Visible(Boolean) Method
Shows a funnel item's border when a user presses the item or hovers the mouse pointer over it. Mirrors the client-side visible option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public FunnelItemHoverStyleBorderBuilder Visible(
bool value
)
Parameters
Name | Type | Description |
---|---|---|
value | Boolean | The option value. |
Returns
Type | Description |
---|---|
FunnelItemHoverStyleBorderBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Funnel()
.Item(item => item
.HoverStyle(style => style
.Border(border => border
.Visible(true)
)
)
)
)
See Also