Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxPolarChartBarSeries<T, TArgument, TValue>.HoverMode Property

Specifies highlighted series elements when a user hovers the mouse pointer over the series.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(ChartSeriesPointHoverMode.Point)]
[Parameter]
public ChartSeriesPointHoverMode HoverMode { get; set; }

#Property Value

Type Default Description
ChartSeriesPointHoverMode Point

An enumertion value.

Available values:

Name Description Image
Point

Only the point that a user hovers over changes its style.

blazor-chart-series-hover-mode-point

AllPoints

All points in the series change their style.

blazor-chart-series-hover-mode-all-points

AllPointsForArgument

The point that a user hovers over and all other points with the same argument change their style.

blazor-chart-series-hover-mode-all-points-for-argument

None

The point does not change its style when a user hovers over it.

blazor-chart-series-hover-mode-none

#Remarks

The Polar Chart highlights series elements when the mouse pointer is hovers over the series. Use the HoverMode property to specify highlighted series elements.

The following example disables the highlight effect when a user hovers the mouse pointer over a series:

Bar Series - Hover Disabled

Razor
<DxPolarChart Data=@DataSource>
    <DxPolarChartBarSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
                           ValueField="@((DiscretePoint i) => i.Day)"
                           HoverMode="ChartSeriesPointHoverMode.None"
                           Name="Day">
    </DxPolarChartBarSeries>
</DxPolarChart>
See Also