Skip to main content
All docs
V24.1

DxPolarChartBaseSeries<T, TArgument, TValue>.ArgumentField Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[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