Skip to main content
All docs
V25.1
  • DxPolarChartBaseSeries<T, TArgument, TValue>.ValueField Property

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

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public Expression<Func<T, TValue>> ValueField { get; set; }

    Property Value

    Type Description
    Expression<Func<T, TValue>>

    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