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

DxPolarChartBaseSeries<T, TArgument, TValue>.ArgumentField Property

Specifies a data source field that contains arguments for series values.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public Expression<Func<T, TArgument>> ArgumentField { get; set; }

#Property Value

Type Description
Expression<Func<T, TArgument>>

The field name.

#Remarks

Use the Data property to bind the Polar Chart to a data source. Assign data source fields that contain arguments and values for data points to ArgumentField and ValueField properties.

The following example specifies the Arg field as the argument source and the Day field as the value source:

<DxPolarChart Data=@DataSource>
    <DxPolarChartAreaSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
                            ValueField="@((DiscretePoint i) => i.Day)">
    </DxPolarChartAreaSeries>
    <DxChartLegend Visible="false" />
</DxPolarChart>

Closed graph in polar coordinates

See Also