Back to Devexpress

ChartContinuousSeriesHoverMode Enum

blazor-devexpress-dot-blazor-99dc59e4.md

latest2.9 KB
Original Source

ChartContinuousSeriesHoverMode Enum

Lists values that specify which series elements to highlight when a user hovers over the series.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public enum ChartContinuousSeriesHoverMode

Members

NameDescriptionImage
NearestPoint

The series changes its style along with the point that is the nearest to the cursor.

|

| | SeriesAndAllPoints |

The series changes its style along with all the points.

|

| | Series |

The series changes its style, but the points do not.

|

| | None |

The series does not react to hovering.

|

|

The following properties accept/return ChartContinuousSeriesHoverMode values:

Remarks

The following code specifies hover mode for series and series points:

razor
@using Chart.Data

<DxChart Data="@SalesData">
    @* ... *@
    <DxChartLineSeries Name="Total Sales"
                       ArgumentField="@((SaleInfo s) => s.City)"
                       ValueField="@((SaleInfo s) => s.Amount)"
                       SummaryMethod="Enumerable.Sum"
                       HoverMode="ChartContinuousSeriesHoverMode.NearestPoint">
            @* ... *@
    </DxChartLineSeries>
</DxChart>

@code {
    IEnumerable<SaleInfo> SalesData;

    protected override async Task OnInitializedAsync() {
        SalesData = await Sales.GetSalesAsync();
    }
}

See Also

DevExpress.Blazor Namespace