Back to Devexpress

DxPolarChart<T>.SeriesSelectionMode Property

blazor-devexpress-dot-blazor-dot-dxpolarchart-1-072ad7c7.md

latest2.1 KB
Original Source

DxPolarChart<T>.SeriesSelectionMode Property

Specifies whether a user can select series.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(ChartSelectionMode.None)]
[Parameter]
public ChartSelectionMode SeriesSelectionMode { get; set; }

Property Value

TypeDefaultDescription
ChartSelectionModeNone

An enumeration value.

|

Available values:

NameDescription
None

A user cannot select points or series.

| | Single |

A single point or series can be selected at the same time.

| | Multiple |

Multiple points or series can be selected at the same time.

|

Remarks

A user can click a series to select or deselect it:

Use the following properties to enable or disable selection at the series level:

You can also specify the DxPolarChart.PointSelectionMode property to set the selection mode for points. Note that for bar and stacked bar series, the PointSelectionMode property has higher priority than SeriesSelectionMode.

The following code snippet sets the SeriesSelectionMode to Single:

razor
<DxPolarChart Data=@DataSource SeriesSelectionMode="ChartSelectionMode.Single">
    @* ... *@
<DxPolarChart />

See Also

DxPolarChart<T> Class

DxPolarChart<T> Members

DevExpress.Blazor Namespace