DxChartCommonSeries<T, TGroup, TValue, TArgument>.ArgumentField Property
Specifies a data source field that stores arguments for series values.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public Expression<Func<T, TArgument>> ArgumentField { get; set; }
Property Value
| Type | Description |
|---|---|
| Expression<Func<T, TArgument>> | A lambda expression that returns chart arguments. |
Remarks

<DxChart Data="@WWSalesData"
Width="100%">
<DxChartTitle Text="World Wide Sales" />
<DxChartCommonSeries NameField="@((SaleInfo s) => s.Date.Year)"
ArgumentField="@(s => s.City)"
ValueField="@(s => s.Amount)"
SummaryMethod="Enumerable.Sum"
SeriesType="ChartSeriesType.Bar" />
<DxChartLegend Position="RelativePosition.Outside"
HorizontalAlignment="HorizontalAlignment.Right" />
</DxChart>
See Also