Skip to main content

DxChartFinancialSeriesBase<T, TArgument, TValue>.HoverMode Property

Specifies series elements to be highlighted when a user hovers over a series point.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Default Description
ChartSeriesPointHoverMode Point

A ChartSeriesPointHoverMode enumeration 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

See Also