Skip to main content

PolarChartArgumentAxisBuilder.HoverMode(ArgumentAxisHoverMode) Method

Specifies the elements that will be highlighted when the argument axis is hovered over. Mirrors the client-side hoverMode option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public PolarChartArgumentAxisBuilder HoverMode(
    ArgumentAxisHoverMode value
)

Parameters

Name Type Description
value ArgumentAxisHoverMode

The option value.

Returns

Type Description
PolarChartArgumentAxisBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().PolarChart()
    .ArgumentAxis(axis => axis
        .HoverMode(ArgumentAxisHoverMode.AllArgumentPoints)
    )
)
See Also